diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-28 16:28:55 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-28 16:28:55 +0000 |
commit | ed85f526259fa0dd008780ddb78a9df7be472e65 (patch) | |
tree | 878d5795a2cb0ff57d7fd4e08d6941bf61d4556e /iw | |
parent | c7d615d8c53cee8584b0a9a7fc347acd03aacc23 (diff) | |
download | anaconda-ed85f526259fa0dd008780ddb78a9df7be472e65.tar.gz anaconda-ed85f526259fa0dd008780ddb78a9df7be472e65.tar.xz anaconda-ed85f526259fa0dd008780ddb78a9df7be472e65.zip |
rolled into install path selection
Diffstat (limited to 'iw')
-rw-r--r-- | iw/installtype.py | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/iw/installtype.py b/iw/installtype.py deleted file mode 100644 index a75efcc5c..000000000 --- a/iw/installtype.py +++ /dev/null @@ -1,38 +0,0 @@ -from gtk import * -from iw import * -from thread import * -from gui import _ - -WORKSTATION_GNOME = 1 -WORKSTATION_KDE = 2 -SERVER = 3 -CUSTOM = 4 - -class InstallTypeWindow (InstallWindow): - - def __init__ (self, ics): - InstallWindow.__init__ (self, ics) - - self.todo = ics.getToDo () - ics.setTitle (_("Installation Type")) - ics.setNextEnabled (TRUE) - - self.installTypes = ((WORKSTATION_GNOME, _("GNOME Workstation")), - (WORKSTATION_KDE, _("KDE Workstation")), - (SERVER, _("Server")), - (CUSTOM, _("Custom"))) - - self.type = self.installTypes[0][0] - - def typeSelected (self, button, data): - self.type = data - - def getScreen (self): - box = GtkVBox (FALSE, 10) - group = None - for i in range (len (self.installTypes)): - group = GtkRadioButton (group, self.installTypes[i][1]) - group.connect ("clicked", self.typeSelected, self.installTypes[i][0]) - box.pack_start (group, FALSE) - return box - |