aboutsummaryrefslogtreecommitdiff
path: root/components.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-01-31 22:51:14 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-01-31 22:51:14 +0000
commit4bc08995411e21f3564f09e136809be68ddf96a8 (patch)
tree59e2f1babc2b85b61782fe76aadd031faa704f73 /components.py
parent6b7b7977a92c9a092763bf699cba85347f9f2ec6 (diff)
downloadenigma2-4bc08995411e21f3564f09e136809be68ddf96a8.tar.gz
enigma2-4bc08995411e21f3564f09e136809be68ddf96a8.zip
- fixed dvb scan
- fixed dvbdb (reading/writing lamedb) - fixed (i.e. disallow) operator= in iObject (destroyed refcounts before) - implemented listboxcontent for servicelists - implemented getServiceInformation for non-playing services (still not happy with the result, though) - implemented first try of serviceSelector component
Diffstat (limited to 'components.py')
-rw-r--r--components.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/components.py b/components.py
index bd4c068f..8015621f 100644
--- a/components.py
+++ b/components.py
@@ -241,3 +241,19 @@ class MenuList(HTMLComponent, GUIComponent):
def GUIdeleteInstance(self, g):
g.setContent(None)
+
+class ServiceList(HTMLComponent, GUIComponent):
+ def __init__(self):
+ GUIComponent.__init__(self)
+ self.l = eListboxServiceContent()
+
+ def GUIcreateInstance(self, priv, parent, skindata):
+ g = eListbox(parent)
+ g.setContent(self.l)
+ return g
+
+ def GUIdeleteInstance(self, g):
+ g.setContent(None)
+
+ def setRoot(self, root):
+ self.l.setRoot(root)