diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-08-13 19:51:17 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-08-13 19:51:17 +0000 |
| commit | 0877ce3b6f6cee972818a8c0a2d1bc862c8482be (patch) | |
| tree | 91d23f198dc8dba893cf47ac3d2bad660da1b366 /lib/python/Components/VolumeBar.py | |
| parent | a072a06516d83d3a11c52544bf2f7cb8ab567b4e (diff) | |
| download | enigma2-0877ce3b6f6cee972818a8c0a2d1bc862c8482be.tar.gz enigma2-0877ce3b6f6cee972818a8c0a2d1bc862c8482be.zip | |
adding volume control
Diffstat (limited to 'lib/python/Components/VolumeBar.py')
| -rw-r--r-- | lib/python/Components/VolumeBar.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/python/Components/VolumeBar.py b/lib/python/Components/VolumeBar.py index a6da5980..63771e24 100644 --- a/lib/python/Components/VolumeBar.py +++ b/lib/python/Components/VolumeBar.py @@ -1,12 +1,15 @@ from HTMLComponent import * from GUIComponent import * from VariableValue import * +from VariableText import * + +from enigma import eSlider +from enigma import eLabel class VolumeBar(HTMLComponent, GUIComponent, VariableValue): - def __init__(self): - GUIComponent.__init__(self) VariableValue.__init__(self) + GUIComponent.__init__(self) def createWidget(self, parent): g = eSlider(parent) |
