- don't draw background for ePixmap
[enigma2.git] / lib / python / Components / config.py
index 4571fd4c59604b1dc675d9ef1faa4832ee946fa5..0d1489aa800b01d1e29362a2b2679a30676be479 100644 (file)
@@ -1,15 +1,35 @@
 #  temp stuff :)
 class configBoolean:
-       def __init__(self, reg):
-               self.reg = reg
-               self.val = 0
-       
-       def toggle(self):
-               self.val += 1
-               self.val %= 3
+       def __init__(self, parent):
+               self.parent = parent
+               
+       def checkValues(self):
+               if self.parent.value < 0:
+                       self.parent.value = 0   
+
+               if(self.parent.value >= (len(self.parent.vals) - 1)):
+                       self.parent.value = len(self.parent.vals) - 1
+
+       def cancel(self):
+               print "cancel"
+
+       def save(self):
+               print "save"
+
+       def handleKey(self, key):
+               if key == 1:
+                       self.parent.value = self.parent.value - 1
+               if key == 2:
+                       self.parent.value = self.parent.value + 1
+               
+               self.checkValues()                      
+
+               self.parent.change()    
+
+       def __call__(self):                     #needed by configlist
+               self.checkValues()                      
        
-       def __str__(self):
-               return ("NO", "YES", "MAYBE")[self.val]
+               return ("text", self.parent.vals[self.parent.value])
 
 class configValue:
        def __init__(self, obj):
@@ -36,32 +56,51 @@ config = Config();
 class ConfigSlider:
        def __init__(self, parent):
                self.parent = parent
-               self.val = parent.value
+
+       def cancel(self):
+               print "slider - cancel"
+
+       def save(self):
+               print "slider - save"
+
+       def checkValues(self):
+               if self.parent.value < 0:
+                       self.parent.value = 0   
+
+               if self.parent.value > 10:
+                       self.parent.value = 10  
+
        def handleKey(self, key):
                if key == 1:
-                       self.val = self.val - 1
+                       self.parent.value = self.parent.value - 1
                if key == 2:
-                       self.val = self.val + 1
-                       
-               if self.val < 0:
-                       self.val = 0    
+                       self.parent.value = self.parent.value + 1
+                                       
+               self.checkValues()      
+               self.parent.change()    
 
-               if self.val > 10:
-                       self.val = 10   
-                       
-       def __str__(self):                      #needed by configlist
-               return ("0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100")[self.val]
+       def __call__(self):                     #needed by configlist
+               self.checkValues()      
+               return ("slider", self.parent.value * 10)
 
 class ConfigSubsection:
        def __init__(self):
                pass
 
 class configElement:
-       def __init__(self, configPath, control, defaultValue):
+       def __init__(self, configPath, control, defaultValue, vals):
                self.configPath = configPath
-               self.value = 0  #read from registry else use default
+#              self.value = 0  #read from registry else use default
+               self.value = defaultValue       #read from registry else use default
+               self.defaultValue = defaultValue
                self.controlType = control
+               self.vals = vals
                self.notifierList = [ ]
        def addNotifier(self, notifier):
                self.notifierList.append(notifier);
                notifier(self);
+       def change(self):
+               for notifier in self.notifierList:
+                       notifier(self)
+       def reload(self):
+               self.value = self.defaultValue  #HACK :-)