fix bsod when select a not available service in channel selection
[enigma2.git] / lib / python / Components / Input.py
index e27ef524048b810b3353285c8d7a985c5375876c..e0a7f44972549c961c9f116fff5597cfefcec5ef 100644 (file)
@@ -1,49 +1,50 @@
-from HTMLComponent import *
-from GUIComponent import *
-from VariableText import *
+from HTMLComponent import HTMLComponent
+from GUIComponent import GUIComponent
+from VariableText import VariableText
 
-from enigma import eLabel, isUTF8, convertUTF8DVB, convertDVBUTF8
+from enigma import eLabel
 
 from Tools.NumericalTextInput import NumericalTextInput
 
-class Input(VariableText, HTMLComponent, GUIComponent):
+class Input(VariableText, HTMLComponent, GUIComponent, NumericalTextInput):
        TEXT = 0
        PIN = 1
-       NUMBER = 2      
+       NUMBER = 2
 
        def __init__(self, text="", maxSize = False, type = TEXT):
+               NumericalTextInput.__init__(self, self.right)
                GUIComponent.__init__(self)
                VariableText.__init__(self)
-               self.table = 0
-               self.numericalTextInput = NumericalTextInput(self.right)
                self.type = type
                self.maxSize = maxSize
                self.currPos = 0
-               self.Text = text
                self.overwrite = 0
-               self.update()
+               self.setText(text)
+               
+       def __len__(self):
+               return len(self.text)
 
        def update(self):
                self.setMarkedPos(self.currPos)
                if self.type == self.PIN:
-                       self.message = "*" * len(self.Text)
+                       self.text = "*" * len(self.Text)
                else:
-                       self.message = convertDVBUTF8(self.Text, self.table)
-               if self.instance:
-                       self.instance.setText(self.message)
+                       self.text = self.Text.encode("utf-8")
 
        def setText(self, text):
                if not len(text):
                        self.currPos = 0
-                       self.Text = ""
-               elif isUTF8(text):
-                       self.Text = convertUTF8DVB(text, self.table)
+                       self.Text = u""
                else:
-                       self.Text = text
+                       try:
+                               self.Text = text.decode("utf-8")
+                       except UnicodeDecodeError:
+                               print "utf8 kaputt!"
+                               self.Text = text
                self.update()
 
        def getText(self):
-               return convertDVBUTF8(self.Text, self.table)
+               return self.Text.encode("utf-8")
 
        def createWidget(self, parent):
                return eLabel(parent, self.currPos)
@@ -115,7 +116,7 @@ class Input(VariableText, HTMLComponent, GUIComponent):
                self.update()
 
        def handleAscii(self, code):
-               newChar = chr(code)
+               newChar = unichr(code)
                if self.overwrite==1:
                        self.Text = self.Text[0:self.currPos] + newChar + self.Text[self.currPos + 1:]
                else:
@@ -124,7 +125,7 @@ class Input(VariableText, HTMLComponent, GUIComponent):
 
        def number(self, number):
                if self.type == self.TEXT:
-                       newChar = self.numericalTextInput.getKey(number)
+                       newChar = self.getKey(number)
                elif self.type == self.PIN or self.type == self.NUMBER:
                        newChar = str(number)
                self.Text = self.Text[0:self.currPos] + newChar + self.Text[self.currPos + 1:]