convert radiotext to utf8
[enigma2.git] / lib / python / Components / VolumeBar.py
1 from HTMLComponent import *
2 from GUIComponent import *
3 from VariableValue import *
4 from VariableText import *
5
6 from enigma import eSlider
7 from enigma import eLabel
8
9 class VolumeBar(VariableValue, HTMLComponent, GUIComponent):
10         def __init__(self):
11                 VariableValue.__init__(self)
12                 GUIComponent.__init__(self)
13
14         GUI_WIDGET = eSlider
15
16         def postWidgetCreate(self, instance):
17                 instance.setRange(0, 100)