aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-29 11:21:23 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-29 11:21:23 +0000
commit14cea6fc0a91a212d86010804c3dbb48cc2ac838 (patch)
tree11e8d6d29fe2f4bad062a2572fa7031bc9bcdb14 /lib/python/Screens
parent6cfa32d896455d1da9bcfe06a1f7d7e0f3f6d3ef (diff)
downloadenigma2-14cea6fc0a91a212d86010804c3dbb48cc2ac838.tar.gz
enigma2-14cea6fc0a91a212d86010804c3dbb48cc2ac838.zip
don't display clock on LCD/OLED for MessageBoxes anymore. instead display more of the question text plus answer
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/MessageBox.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/python/Screens/MessageBox.py b/lib/python/Screens/MessageBox.py
index c3e3813b..62d90712 100644
--- a/lib/python/Screens/MessageBox.py
+++ b/lib/python/Screens/MessageBox.py
@@ -2,6 +2,7 @@ from Screen import Screen
from Components.ActionMap import ActionMap
from Components.Label import Label
from Components.Pixmap import Pixmap
+from Components.Sources.StaticText import StaticText
from Components.MenuList import MenuList
from Components.Sources.StaticText import StaticText
from enigma import eTimer
@@ -16,8 +17,9 @@ class MessageBox(Screen):
self.type = type
Screen.__init__(self, session)
- self["text"] = Label(text)
+ self["text"] = Label(text)
self["Text"] = StaticText(text)
+ self["selectedChoice"] = StaticText()
self.text = text
self.close_on_any_key = close_on_any_key
@@ -41,7 +43,9 @@ class MessageBox(Screen):
self.list = [ (_("yes"), 0), (_("no"), 1) ]
else:
self.list = [ (_("no"), 1), (_("yes"), 0) ]
-
+
+ if len(self.list):
+ self["selectedChoice"].setText(self.list[0][0])
self["list"] = MenuList(self.list)
self["actions"] = ActionMap(["MsgBoxActions", "DirectionActions"],
@@ -130,6 +134,8 @@ class MessageBox(Screen):
if self.close_on_any_key:
self.close(True)
self["list"].instance.moveSelection(direction)
+ if len(self.list):
+ self["selectedChoice"].setText(self["list"].getCurrent()[0])
self.stopTimer()
def __repr__(self):