summaryrefslogtreecommitdiffstats
path: root/gui.py
Commit message (Collapse)AuthorAgeFilesLines
* 2005-04-27 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-271-4/+0
| | | | | | | * gui.py (InstallInterface.run): Don't set SUPPORTED unnecessarily (#155847) * language.py (Language.getDefault): Likewise. * text.py (InstallInterface.run): Likewise.
* Work around the buttons being drawn in English only.Chris Lumens2005-04-261-11/+16
|
* 2005-04-26 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-261-0/+3
| | | | | | | | | | | | | | * text.py (InstallInterface.beep): Add no-op beep method. Could actually do something if newtBell() were bound in snack. * cmdline.py (InstallInterface.beep): Add (no-op) beep method. * gui.py (InstallInterface.beep): Add beep method. * scripts/mk-images.x86_64 (COMMONMODULES): Add pcspkr module. * scripts/mk-images.i386 (COMMONMODULES): Likewise. * loader2/loader.c (main): Load pcspkr module.
* Fix the WrappingLabel class so it actually wraps text. Cleaned up UIChris Lumens2005-04-141-1/+0
| | | | | | elements on the bootloader configuration screen so elements no longer disappear off the bottom of the screen in certain languages (#153071, #154786).
* Don't set the list of supported languages in Language.__init__ by default.Chris Lumens2005-04-131-1/+5
| | | | | Instead, only set this list in the install interfaces if kickstart hasn't taken care of it already.
* Support setting the system's runtime language even if it's not supportedChris Lumens2005-04-131-11/+7
| | | | by a translation in anaconda. Set LC_COLLATE=C in the loader.
* 2005-04-10 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-101-1/+1
| | | | * gui.py (ExceptionWindow.__init__): Fix typo (menthos, #154324)
* Removed language_support_gui.py and all references to it, since we wereChris Lumens2005-04-011-1/+0
| | | | already skipping that step. Bump version.
* 2005-03-29 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-03-291-12/+5
| | | | | | | | | | | | | | | | | | * anaconda: Remove essentially unused config file data code, product.img basically supplanted this. * Makefile: Likewise. * cmdline.py: Likewise. * gui.py: Likewise. * text.py: Likewise. * dispatch.py: Likewise. * instdata.py: Likewise. * splashscreen.py: Likewise. * iw/welcome_gui.py: Likewise. * textw/welcome_text.py: Likewise. * anaconda.conf: Remove file. * configFileData.py: Likewise. * readConfigFile.py: Likewise.
* 2005-03-29 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-03-291-2/+0
| | | | | | | * text.py (stepToClasses): Remove silo stuff. * gui.py (stepToClasses): Likewise. * iw/silo_gui.py: Remove. * textw/silo_text.py: Remove.
* 2005-03-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-03-241-3/+3
| | | | | | | | * textw/timezone_text.py (TimezoneWindow.__call__): Mark strings for translation. * gui.py (ExceptionWindow.__init__): Likewise. * iw/network_gui.py (NetworkWindow.handleIPError): Likewise. * textw/mouse_text.py (MouseWindow.__call__): Likewise.
* Combined Language and InstallTimeLanguage in language.py into a singleChris Lumens2005-03-231-2/+3
| | | | | | class, updated the lang-table format to remove an unused column, and changed langSupport to instLanguage everywhere to reinforce the class merge idea.
* 2005-03-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-03-231-3/+3
| | | | * gui.py (readImageFromFile): Fix gtk Deprecation warning.
* Fixed UI problems: kill the big empty box on the congrats screen (which IChris Lumens2005-03-161-13/+21
| | | | | caused when I did the help button enable/disable dance) and let the buttons on the button bar grow for lengthy translations.
* fix warnings about gtk.TRUE and gtk.FALSE, partly based on a patchPeter Jones2005-03-121-35/+35
| | | | from Colin Walters.
* fix "debug"Peter Jones2005-02-241-1/+1
|
* If help is disabled, don't redraw the help pane when the next button isChris Lumens2005-02-071-20/+19
| | | | clicked (#145691).
* Use urlgrabber for retrieving files instead of urllib2 directly.Chris Lumens2005-02-021-6/+0
|
* Fixed UI deprecation warnings.Chris Lumens2005-01-261-9/+10
|
* 2005-01-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-01-131-13/+9
| | | | | | | | | | * gui.py (InstallControlWindow.prevClicked): Allow programatically going back even if prev isn't active. (InstallControlWindow.nextClicked): Likewise. (InstallControlState.setHelpButtonEnabled): Fixup for newer help handling. (InstallControlWindow.refreshHelp): Don't try to show help for a non-existent screen
* 2005-01-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-01-131-3/+3
| | | | | | * gui.py (InstallControlState.findPixmap): Fix warning syntax. (InstallControlState.readPixmap): Likewise. (InstallControlState.readPixmapDithered): Likewise.
* 2005-01-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-01-131-61/+66
| | | | | | | | | | | | | | | | | | * iw/package_gui.py (PackageSelectionWindow.getScreen): Use gui.readImageFromFile instead of deprecated ics methods. * splashscreen.py (splashScreenShow): Use gui.readImageFromFile to find the splashscreen. * gui.py (readImageFromFile): Pull pixbuf handling out of ICS into stand-alone methods. (getPixbuf): Likewise. (findPixbuf): Likewise. (InstallControlWindow.createWidgets): Remove the hack of using ics for finding the header image. (InstallControlState.findPixmap): Deprecate. (InstallControlState.readPixmap): Deprecate. (InstallControlState.readPixmapDithered): Deprecate.
* 2005-01-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-01-131-1/+10
| | | | | * gui.py (findGladeFile): Look for the glade file in the appropriate places
* 2005-01-12 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-01-131-310/+107
| | | | | * gui.py: Switch to using glade. Nuke some dead code. Note that low-res isn't currently 100% functional.
* 2004-11-07 Jeremy Katz <katzj@redhat.com>Jeremy Katz2004-11-071-1/+3
| | | | | * gui.py (MnemonicLabel.__init__): Allow setting of label alignment on creation.
* jrb broke it!Jeremy Katz2004-08-261-3/+0
| | | | | remove extra unneeded call to gtk.mainloop(). this causes a need for double clicking exit and probably other weird things too (#131028)
* don't log the parted exceptions we can't do anything aboutJeremy Katz2004-08-261-1/+1
|
* log parted exceptionsmikem2004-08-241-0/+1
|
* make rootpath work nicerjrb2004-08-231-6/+36
|
* add calls to zfcp stuffKarsten Hopp2004-08-021-0/+1
|
* fix deprecation warningJeremy Katz2004-06-211-2/+2
|
* fix tyop (noticed on fedora-trans-list)Jeremy Katz2004-06-081-1/+1
|
* duh. fix gui installsJeremy Katz2004-05-201-1/+1
|
* the start of better kickstart error handling. create KickstartError classJeremy Katz2004-05-181-0/+9
| | | | | | | | and raise that on kickstart errors. provide basic intf kickstartWindow methods don't pass intf in yet, because this is before the intf is up and running, so we can't use it
* merge anaconda-10_0-branch changes back to HEADJeremy Katz2004-05-181-0/+4
|
* and more warnings! (#122496)Jeremy Katz2004-05-071-2/+2
|
* set ltr on startup so that we work in nfs installs too with rtl languagesJeremy Katz2004-04-161-6/+9
|
* fix rtl direction stuff (#120924)Jeremy Katz2004-04-151-15/+10
|
* unbreak things from jjneely. this is a hackJeremy Katz2003-11-181-1/+3
|
* use stock function for finding header pixmapJeremy Katz2003-11-141-21/+2
|
* dither the header bar for garrettJeremy Katz2003-10-211-1/+7
|
* get rid of unused labelsJeremy Katz2003-10-021-15/+0
|
* take screenshot when autostepping and remove title from right hand paneMike Fulbright2003-10-021-3/+7
|
* don't show the title on progress windows eitherJeremy Katz2003-10-011-1/+1
|
* make it so that WaitWindow doesn't show the title in the titlebar to makeJeremy Katz2003-10-011-7/+11
| | | | them look less klunky
* some hig-y goodness. frame borders go away, bold text, better spacingJeremy Katz2003-10-011-6/+18
|
* enable new progress window for GUIMike Fulbright2003-10-011-1/+1
|
* merge from taroon branch. product.img stuff, md can be modular, lots ofJeremy Katz2003-07-161-2/+8
| | | | little things across the board
* helps to add the box to the window (#98875)Jeremy Katz2003-07-091-0/+1
|
* add more frames (#68460)Jeremy Katz2003-07-091-9/+4
|