X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/98c4b5bb004e9297bffa8e1c3572572741fda933..01f6932815a6a21ab46bb420be093685378b43dd:/lib/python/Components/Label.py diff --git a/lib/python/Components/Label.py b/lib/python/Components/Label.py index 7402d722..129180f4 100644 --- a/lib/python/Components/Label.py +++ b/lib/python/Components/Label.py @@ -2,6 +2,8 @@ from HTMLComponent import * from GUIComponent import * from VariableText import * +from ConditionalWidget import * + from enigma import eLabel class Label(HTMLComponent, GUIComponent, VariableText): @@ -22,3 +24,36 @@ class Label(HTMLComponent, GUIComponent, VariableText): s = self.instance.calculateSize() return (s.width(), s.height()) + def show(self): + self.instance.show() + + def hide(self): + self.instance.hide() + +class LabelConditional(Label, ConditionalWidget): + def __init__(self, text = "", withTimer = True): + ConditionalWidget.__init__(self, withTimer = withTimer) + Label.__init__(self, text = text) + +class BlinkingLabel(Label, BlinkingWidget): + def __init__(self, text = ""): + Label.__init__(text = text) + BlinkingWidget.__init__() + + def GUIcreate(self, parent): + LabelConditional.GUIcreate(self, parent) + + def GUIdelete(self): + LabelConditional.GUIcreate(self) + +class BlinkingLabelConditional(BlinkingWidgetConditional, LabelConditional): + def __init__(self, text = ""): + LabelConditional.__init__(self, text = text) + BlinkingWidgetConditional.__init__(self) + + def GUIcreate(self, parent): + LabelConditional.GUIcreate(self, parent) + + def GUIdelete(self): + LabelConditional.GUIcreate(self) + \ No newline at end of file