summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbfox <bfox>2001-01-31 02:52:42 +0000
committerbfox <bfox>2001-01-31 02:52:42 +0000
commitfffe5b73f8385aeb42bad926b891f56c5d333e4a (patch)
tree5746c77b6df1dedda4b90d5e95b7408a1ad53036
parent36b8ac47ac1370b7804fc3101832b8598ff3a9f6 (diff)
downloadanaconda-fffe5b73f8385aeb42bad926b891f56c5d333e4a.tar.gz
anaconda-fffe5b73f8385aeb42bad926b891f56c5d333e4a.tar.xz
anaconda-fffe5b73f8385aeb42bad926b891f56c5d333e4a.zip
Added select all and reset buttons to language support screen.
-rw-r--r--text.py49
1 files changed, 33 insertions, 16 deletions
diff --git a/text.py b/text.py
index 813e9f08e..e0815bdae 100644
--- a/text.py
+++ b/text.py
@@ -127,6 +127,8 @@ class LanguageSupportWindow:
else:
current = None
+
+
ct = CheckboxTree(height = 8, scroll = 1)
for lang in languages:
@@ -135,40 +137,55 @@ class LanguageSupportWindow:
else:
ct.append(lang, lang, 0)
+
if langs != None:
for lang in langs:
ct.setEntryValue(lang, 1)
- bb = ButtonBar (screen, ((_("OK"), "ok"), (_("Back"), "back")))
+ bb = ButtonBar (screen, ((_("OK"), "ok"), (_("Select All"), "all"), (_("Reset"), "reset"), (_("Back"), "back")))
message = (_("Choose the languages to be installed:"))
width = len(message)
tb = Textbox (width, 2, message)
g = GridFormHelp (screen, _("Language Support"), "langsupport", 1, 4)
-
+
g.add (tb, 0, 0, (0, 0, 0, 0), anchorLeft = 1)
g.add (ct, 0, 1, (0, 0, 0, 1))
g.add (bb, 0, 3, growx = 1)
- result = g.runOnce()
+ while 1:
+ result = g.run()
- rc = bb.buttonPressed (result)
+ rc = bb.buttonPressed (result)
- if rc == "back":
- return INSTALL_BACK
+ if rc == "back":
+ screen.popWindow()
+ return INSTALL_BACK
- # --If they selected all langs, then set todo.language.setSupported to
- # None. This installs all langs
+ if rc == "all":
+ for lang in languages:
+ ct.setEntryValue(lang, 1)
- todo.language.setSupported (ct.getSelection())
-
- # we may need to reset the default language
- default = todo.language.getDefault()
- if default not in ct.getSelection():
- todo.language.setDefault(None)
+ if rc == "reset":
+ for lang in languages:
+ if lang == current:
+ ct.setEntryValue(lang, 1)
+ else:
+ ct.setEntryValue(lang, 0)
- return INSTALL_OK
+ if rc == "ok" or result == "F12":
+ # --If they selected all langs, then set todo.language.setSupported to
+ # None. This installs all langs
+
+ todo.language.setSupported (ct.getSelection())
+
+ # we may need to reset the default language
+ default = todo.language.getDefault()
+ if default not in ct.getSelection():
+ todo.language.setDefault(None)
+ screen.popWindow()
+ return INSTALL_OK
class LanguageDefaultWindow:
@@ -979,7 +996,7 @@ class InstallInterface:
self.drawFrame()
# uncomment this line to make the installer quit on <Ctrl+Z>
# handy for quick debugging.
-# self.screen.suspendCallback(killSelf, self.screen)
+ self.screen.suspendCallback(killSelf, self.screen)
# uncomment this line to drop into the python debugger on <Ctrl+Z>
# --VERY handy--
#self.screen.suspendCallback(debugSelf, self.screen)