1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#
# partmethod_gui.py: allows the user to choose how to partition their disks
#
# Matt Wilson <msw@redhat.com>
#
# Copyright 2001 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
from iw_gui import *
from gtk import *
from translate import _
from autopart import PARTMETHOD_TYPE_DESCR_TEXT
class PartitionMethodWindow(InstallWindow):
def __init__(self, ics):
InstallWindow.__init__(self, ics)
ics.setTitle (_("Disk Partitioning Setup"))
def getNext(self):
if self.useFdisk.get_active():
self.partitions.useAutopartitioning = 0
self.partitions.useFdisk = 1
elif self.useAuto.get_active():
self.partitions.useAutopartitioning = 1
self.partitions.useFdisk = 0
else:
self.partitions.useAutopartitioning = 0
self.partitions.useFdisk = 0
return None
def getScreen (self, partitions, instclass):
self.ics.readHTML("howpartition")
self.partitions = partitions
box = GtkVBox (FALSE)
box.set_border_width (5)
label=GtkLabel(PARTMETHOD_TYPE_DESCR_TEXT)
label.set_line_wrap(1)
label.set_alignment(0.0, 0.0)
label.set_usize(400, -1)
box.pack_start(label, FALSE, FALSE)
radioBox = GtkVBox (FALSE)
self.useAuto = GtkRadioButton(
None, _("Have the installer automatically partition for you"))
radioBox.pack_start(self.useAuto, FALSE, FALSE)
self.useDS = GtkRadioButton(
self.useAuto, _("Manually partition with Disk Druid"))
radioBox.pack_start(self.useDS, FALSE, FALSE)
self.useFdisk = GtkRadioButton(
self.useAuto, _("Manually partition with fdisk [experts only]"))
radioBox.pack_start(self.useFdisk, FALSE, FALSE)
if partitions.useAutopartitioning:
self.useAuto.set_active(1)
elif partitions.useFdisk:
self.useFdisk.set_active(1)
else:
self.useDS.set_active(1)
align = GtkAlignment()
align.add(radioBox)
align.set(0.5, 0.5, 0.0, 0.0)
box.pack_start(align, FALSE, FALSE, 10)
box.set_border_width (5)
self.ics.setNextEnabled (TRUE)
align = GtkAlignment()
align.add(box)
align.set(0.5, 0.5, 0.0, 0.0)
return align
|