diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-10-15 12:39:08 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-10-15 12:39:08 +0000 |
| commit | 4cb23507b16682ceeb4ad31a7de837ef2f4326f3 (patch) | |
| tree | 64b9c553122b6aa686393984c542651457b64d7d /lib/python/Screens/Ci.py | |
| parent | f0b76c452d227a86a7ddf5ffaf45ac0a2a2ad80a (diff) | |
| download | enigma2-4cb23507b16682ceeb4ad31a7de837ef2f4326f3.tar.gz enigma2-4cb23507b16682ceeb4ad31a7de837ef2f4326f3.zip | |
add ci
Diffstat (limited to 'lib/python/Screens/Ci.py')
| -rw-r--r-- | lib/python/Screens/Ci.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/python/Screens/Ci.py b/lib/python/Screens/Ci.py new file mode 100644 index 00000000..79e06b33 --- /dev/null +++ b/lib/python/Screens/Ci.py @@ -0,0 +1,50 @@ +from Screen import * +from Components.MenuList import MenuList +from Components.ActionMap import ActionMap +from Components.Header import Header +from Components.Button import Button +from Components.Label import Label + +class CiMmi(Screen): + def addEntry(self, list, entry): + if entry[0] == "TEXT": #handle every item (text / pin only?) + pass + pass + + def __init__(self, session, slotid, title, subtitle, bottom, entries): + Screen.__init__(self, session) + + self.slotid = slotid + self["title"] = Label(title) + self["subtitle"] = Label(subtitle) + self["bottom"] = Label(bottom) + + list = [ ] + for entry in entries: + self.addEntry(list, entry) + self["entries"] = MenuList(list) #menulist!? + + self["actions"] = ActionMap(["OkCancelActions"], + { + #"ok": self.okbuttonClick, + "cancel": self.close + }) + +#just for testing - we need an cimanager? (or not?) +class CiSelection(Screen): + def okbuttonClick(self): + #generate menu / list + list = [ ] + list.append( ("TEXT", "CA-Info") ) + list.append( ("TEXT", "Card Status") ) + #list.append( ("PIN", "Card Pin") ) + self.session.open(CiMmi, 0, "Wichtiges CI", "Mainmenu", "Footer", list) + + def __init__(self, session): + Screen.__init__(self, session) + + self["actions"] = ActionMap(["OkCancelActions"], + { + "ok": self.okbuttonClick, + "cancel": self.close + }) |
