1 from HTMLComponent import *
2 from GUIComponent import *
3 from VariableText import *
5 from enigma import eLabel
7 class Header(HTMLComponent, GUIComponent, VariableText):
9 def __init__(self, message):
10 GUIComponent.__init__(self)
11 VariableText.__init__(self)
14 def produceHTML(self):
15 return "<h2>" + self.getText() + "</h2>\n"
17 def createWidget(self, parent):