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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
from gtk import *
from iw import *
from gui import _
import string
import sys
"""
_("Video Card")
_("Monitor")
_("Video Ram")
_("Horizontal Frequency Range")
_("Vertical Frequency Range")
_("Test failed")
"""
class XCustomWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
self.todo = ics.getToDo ()
ics.setTitle (_("Customize X Configuration"))
ics.setHTML ("<HTML><BODY>This is the configuration customization screen<</BODY></HTML>")
self.ics.setNextEnabled (TRUE)
self.didTest = 0
def getNext (self):
newmodes = {}
for depth in self.toggles.keys ():
newmodes[depth] = []
for (res, button) in self.toggles[depth]:
if button.get_active ():
newmodes[depth].append (res)
self.todo.x.modes = newmodes
def getScreen (self):
box = GtkVBox (FALSE, 5)
box.set_border_width (5)
hbox = GtkHBox (FALSE, 5)
depths = self.todo.x.modes.keys ()
depths.sort ()
self.toggles = {}
for depth in depths:
self.toggles[depth] = []
vbox = GtkVBox (FALSE, 5)
vbox.pack_start (GtkLabel (depth + _("Bits per Pixel")), FALSE)
for res in self.todo.x.modes[depth]:
button = GtkCheckButton (res)
self.toggles[depth].append (res, button)
vbox.pack_start (button, FALSE)
hbox.pack_start (vbox)
box.pack_start (hbox, FALSE)
return box
def getPrev (self):
return XConfigWindow
class XConfigWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
self.ics.setNextEnabled (FALSE)
self.todo = ics.getToDo ()
ics.setTitle (_("X Configuration"))
ics.setHTML ("<HTML><BODY>This is the X configuration screen<</BODY></HTML>")
self.didTest = 0
def getNext (self):
if self.custom.get_active ():
return XCustomWindow
return None
def setNext (self):
if self.skip.get_active () or self.custom.get_active () or self.didTest:
self.ics.setNextEnabled (TRUE)
else:
self.ics.setNextEnabled (FALSE)
def customToggled (self, widget, *args):
self.setNext ()
def skipToggled (self, widget, *args):
self.autoBox.set_sensitive (not widget.get_active ())
self.todo.x.skip = widget.get_active ()
self.setNext ()
def testPressed (self, widget, *args):
try:
self.todo.x.test ()
except RuntimeError:
### test failed window
pass
else:
self.didTest = 1
self.setNext ()
def getScreen (self):
self.todo.x.probe ()
self.todo.x.filterModesByMemory ()
box = GtkVBox (FALSE, 5)
box.set_border_width (5)
self.autoBox = GtkVBox (FALSE, 5)
label = GtkLabel (_("In most cases your video hardware can "
"be probed to automatically determine the "
"best settings for your display."))
label.set_justify (JUSTIFY_LEFT)
label.set_line_wrap (TRUE)
label.set_alignment (0.0, 0.5)
self.autoBox.pack_start (label, FALSE)
label = GtkLabel (_("Autoprobe results:"))
label.set_alignment (0.0, 0.5)
self.autoBox.pack_start (label, FALSE)
report = self.todo.x.probeReport ()
report = string.replace (report, '\t', ' ')
result = GtkLabel (report)
result.set_alignment (0.2, 0.5)
result.set_justify (JUSTIFY_LEFT)
self.autoBox.pack_start (result, FALSE)
test = GtkAlignment ()
button = GtkButton (_("Test this configuration"))
button.connect ("pressed", self.testPressed)
test.add (button)
self.custom = GtkCheckButton (_("Customize X Configuration"))
self.custom.connect ("toggled", self.customToggled)
self.skip = GtkCheckButton (_("Skip X Configuration"))
self.skip.connect ("toggled", self.skipToggled)
self.autoBox.pack_start (test, FALSE)
self.autoBox.pack_start (self.custom, FALSE)
box.pack_start (self.autoBox, FALSE)
box.pack_start (self.skip, FALSE)
return box
|