add InputBox screen for textual input
[enigma2.git] / lib / python / Plugins / DemoPlugins / TestPlugin / plugin.py
index 5991f594e12dde81f577dafd5fe756b00d1d8d71..856c2f3b95896ed69825266fb0ecf55b03beab44 100644 (file)
@@ -7,6 +7,7 @@ from Components.Input import Input
 from Components.GUIComponent import *
 from Components.Pixmap import Pixmap
 from Components.FileList import FileEntryComponent, FileList
+from Screens.InputBox import InputBox
 from Plugins.Plugin import PluginDescriptor
 
 import os
@@ -45,6 +46,11 @@ class Test(Screen):
                        "0": self.keyNumberGlobal
                }, -1)
                
+               self.onShown.append(self.openTest)
+
+       def openTest(self):
+               self.session.open(InputBox)
+               
        def keyLeft(self):
                self["text"].left()
        
@@ -63,7 +69,12 @@ class Test(Screen):
                self["text"].number(number)
 
 def main(session):
-       session.open(Test)
+       session.openWithCallback(test, InputBox, title="Hallo", text="1234", maxSize=True, type=Input.NUMBER)
+       
+def test(returnValue):
+       print "You entered", returnValue
 
 def Plugins():
        return PluginDescriptor(name="Test", description="plugin to test some capabilities", where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main)
+
+       
\ No newline at end of file