aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/VariableText.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-07-08 16:41:35 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-07-08 16:41:35 +0000
commit98c4b5bb004e9297bffa8e1c3572572741fda933 (patch)
treefcd68e1dc4f97d0778348ae54e637368a80186ae /lib/python/Components/VariableText.py
parentdb493da3936b21410730a1c299b4c6937d56ca4e (diff)
downloadenigma2-98c4b5bb004e9297bffa8e1c3572572741fda933.tar.gz
enigma2-98c4b5bb004e9297bffa8e1c3572572741fda933.zip
- skins are now loaded first and applied later
- this allows use skin information to build special eWidgets, depending on skin - add "applet"-feature: code which is executed from skin - example: centering of messagebox
Diffstat (limited to 'lib/python/Components/VariableText.py')
-rw-r--r--lib/python/Components/VariableText.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/python/Components/VariableText.py b/lib/python/Components/VariableText.py
index 694355e7..76dc201a 100644
--- a/lib/python/Components/VariableText.py
+++ b/lib/python/Components/VariableText.py
@@ -1,3 +1,5 @@
+import skin
+
class VariableText:
"""VariableText can be used for components which have a variable text, based on any widget with setText call"""
@@ -13,8 +15,8 @@ class VariableText:
def getText(self):
return self.message
- def GUIcreate(self, parent, skindata):
- self.instance = self.createWidget(parent, skindata)
+ def GUIcreate(self, parent):
+ self.instance = self.createWidget(parent)
self.instance.setText(self.message)
def GUIdelete(self):