X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ff90cba66b3ebe6adf9b436fa8ae9ac440a0c70c..c06f79c0451ca844f89809058a2767a1a319b137:/lib/python/Tools/NumericalTextInput.py diff --git a/lib/python/Tools/NumericalTextInput.py b/lib/python/Tools/NumericalTextInput.py index 260f80b4..74497895 100644 --- a/lib/python/Tools/NumericalTextInput.py +++ b/lib/python/Tools/NumericalTextInput.py @@ -2,21 +2,18 @@ from enigma import * class NumericalTextInput: mapping = [] - mapping.append ("abcABC") # 0 - mapping.append ("abcABC") # 1 - mapping.append ("abcABC") # 2 - mapping.append ("defDEF") # 3 - mapping.append ("ghiGHI") # 4 - mapping.append ("jklJKL") # 5 - mapping.append ("mnoMNO") # 6 - mapping.append ("pqrsPQRS") # 7 - mapping.append ("tuvTUV") # 8 - mapping.append ("wxyzWXYZ") # 9 - - - + mapping.append (".,?'\"0-()@/:_") # 0 + mapping.append (" 1") # 1 + mapping.append ("abc2ABC") # 2 + mapping.append ("def3DEF") # 3 + mapping.append ("ghi4GHI") # 4 + mapping.append ("jkl5JKL") # 5 + mapping.append ("mno6MNO") # 6 + mapping.append ("pqrs7PQRS") # 7 + mapping.append ("tuv8TUV") # 8 + mapping.append ("wxyz9WXYZ") # 9 - def __init__(self, nextFunction): + def __init__(self, nextFunction = None): self.nextFunction = nextFunction self.Timer = eTimer() self.Timer.timeout.get().append(self.nextChar) @@ -43,5 +40,6 @@ class NumericalTextInput: self.Timer.stop() print "Timer done" self.nextKey() - self.nextFunction() + if (self.nextFunction != None): + self.nextFunction() \ No newline at end of file