- remove old components.py
[enigma2.git] / screens.py
index bd0f6fc423bed4fe09a28424460c9e0360f14336..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,42 +0,0 @@
-from components import *
-
-# some screens
-def doGlobal(screen):
-       screen["clock"] = Clock()
-
-class Screen(dict, HTMLSkin, GUISkin):
-       """ bla """
-       
-# a test dialog
-class testDialog(Screen):
-       def testDialogClick(self):
-               print "test dialog clicked!"
-               self["title"].setText("bla")
-
-       def __init__(self):
-               HTMLSkin.__init__(self, ("title", "okbutton"))
-               b = Button("ok")
-               b.onClick = [ self.testDialogClick ]
-               self["okbutton"] = b
-               self["title"] = Header("Test Dialog - press ok to leave!")
-
-# a clock display dialog
-class clockDisplay(Screen):
-       def okbutton(self):
-               print "clockDisplay close"
-       
-       def __init__(self, clock):
-               HTMLSkin.__init__(self, ("title", "theClock", "okbutton"))
-               self["theClock"] = clock
-               b = Button("bye")
-               b.onClick = [ self.okbutton ]
-               self["okbutton"] = b
-               #VolumeBar()
-               self["title"] = Header("clock dialog: here you see the current uhrzeit!")
-
-# defined screens
-screens = {
-       "global": doGlobal,
-       "testDialog": testDialog,
-       "clockDisplay": clockDisplay }
-