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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
|
"""
Python script for a GUI-dialog.
Description:
Python script to provide an abstract GUI for other python scripts. That
way we've all the GUI-related code within one single file and are
able to easily modify GUI-stuff in a central place.
Author:
Sebastian Sauer <mail@dipe.org>
Copyright:
Published as-is without any warranties.
"""
def getHome():
""" Return the homedirectory. """
import os
try:
home = os.getenv("HOME")
if not home:
import pwd
user = os.getenv("USER") or os.getenv("LOGNAME")
if not user:
pwent = pwd.getpwuid(os.getuid())
else:
pwent = pwd.getpwnam(user)
home = pwent[6]
return home
except (KeyError, ImportError):
return os.curdir
class TkDialog:
""" This class is used to wrap Tkinter into a more abstract interface."""
def __init__(self, title):
import Tkinter
self.root = Tkinter.Tk()
self.root.title(title)
self.root.deiconify()
mainframe = self.Frame(self, self.root)
self.widget = mainframe.widget
class Widget:
def __init__(self, dialog, parent):
self.dialog = dialog
self.parent = parent
#def setVisible(self, visibled): pass
#def setEnabled(self, enabled): pass
class Frame(Widget):
def __init__(self, dialog, parent):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
self.widget = Tkinter.Frame(parent)
self.widget.pack()
class Label(Widget):
def __init__(self, dialog, parent, caption):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
self.widget = Tkinter.Label(parent, text=caption)
self.widget.pack(side=Tkinter.TOP)
class CheckBox(Widget):
def __init__(self, dialog, parent, caption, checked = True):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
self.checkstate = Tkinter.IntVar()
self.checkstate.set(checked)
self.widget = Tkinter.Checkbutton(parent, text=caption, variable=self.checkstate)
self.widget.pack(side=Tkinter.TOP)
def isChecked(self):
return self.checkstate.get()
class List(Widget):
def __init__(self, dialog, parent, caption, items):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
listframe = Tkinter.Frame(parent)
listframe.pack()
Tkinter.Label(listframe, text=caption).pack(side=Tkinter.LEFT)
self.items = items
self.variable = Tkinter.StringVar()
itemlist = apply(Tkinter.OptionMenu, (listframe, self.variable) + tuple( items ))
itemlist.pack(side=Tkinter.LEFT)
def get(self):
return self.variable.get()
def set(self, index):
self.variable.set( self.items[index] )
class Button(Widget):
def __init__(self, dialog, parent, caption, commandmethod):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
self.widget = Tkinter.Button(parent, text=caption, command=self.doCommand)
self.commandmethod = commandmethod
self.widget.pack(side=Tkinter.LEFT)
def doCommand(self):
try:
self.commandmethod()
except:
#TODO why the heck we arn't able to redirect exceptions?
import traceback
import StringIO
fp = StringIO.StringIO()
traceback.print_exc(file=fp)
import tkMessageBox
tkMessageBox.showerror("Exception", fp.getvalue())
#self.dialog.root.destroy()
class Edit(Widget):
def __init__(self, dialog, parent, caption, text):
#TkDialog.Widget.__init__(self, dialog, parent)
import Tkinter
self.widget = Tkinter.Frame(parent)
self.widget.pack()
label = Tkinter.Label(self.widget, text=caption)
label.pack(side=Tkinter.LEFT)
self.entrytext = Tkinter.StringVar()
self.entrytext.set(text)
self.entry = Tkinter.Entry(self.widget, width=36, textvariable=self.entrytext)
self.entry.pack(side=Tkinter.LEFT)
def get(self):
return self.entrytext.get()
class FileChooser(Edit):
def __init__(self, dialog, parent, caption, initialfile = None, filetypes = None):
TkDialog.Edit.__init__(self, dialog, parent, caption, initialfile)
import Tkinter
self.initialfile = initialfile
self.entrytext.set(initialfile)
btn = Tkinter.Button(self.widget, text="...", command=self.browse)
btn.pack(side=Tkinter.LEFT)
if filetypes:
self.filetypes = filetypes
else:
self.filetypes = (('All files', '*'),)
def browse(self):
import os
text = self.entrytext.get()
d = os.path.dirname(text) or os.path.dirname(self.initialfile)
f = os.path.basename(text) or os.path.basename(self.initialfile)
import tkFileDialog
file = tkFileDialog.asksaveasfilename(
initialdir=d,
initialfile=f,
#defaultextension='.html',
filetypes=self.filetypes
)
if file:
self.entrytext.set( file )
class MessageBox:
def __init__(self, dialog, typename, caption, message):
self.widget = dialog.widget
self.typename = typename
self.caption = str(caption)
self.message = str(message)
def show(self):
import tkMessageBox
if self.typename == "okcancel":
return tkMessageBox.askokcancel(self.caption, self.message,icon=tkmessageBox.QESTION)
else:
tkMessageBox.showinfo(self.caption, self.message)
return True
def show(self):
self.root.mainloop()
def close(self):
self.root.destroy()
class QtDialog:
""" This class is used to wrap pyQt/pyKDE into a more abstract interface."""
def __init__(self, title):
import qt
class Dialog(qt.QDialog):
def __init__(self, parent = None, name = None, modal = 0, fl = 0):
qt.QDialog.__init__(self, parent, name, modal, fl)
qt.QDialog.accept = self.accept
self.layout = qt.QVBoxLayout(self)
self.layout.setSpacing(6)
self.layout.setMargin(11)
class Label(qt.QLabel):
def __init__(self, dialog, parent, caption):
qt.QLabel.__init__(self, parent)
self.setText("<qt>%s</qt>" % caption.replace("\n","<br>"))
class Frame(qt.QHBox):
def __init__(self, dialog, parent):
qt.QHBox.__init__(self, parent)
self.widget = self
self.setSpacing(6)
class Edit(qt.QHBox):
def __init__(self, dialog, parent, caption, text):
qt.QHBox.__init__(self, parent)
self.setSpacing(6)
label = qt.QLabel(caption, self)
self.edit = qt.QLineEdit(self)
self.edit.setText( str(text) )
self.setStretchFactor(self.edit, 1)
label.setBuddy(self.edit)
def get(self):
return self.edit.text()
class Button(qt.QPushButton):
#def __init__(self, *args):
def __init__(self, dialog, parent, caption, commandmethod):
#apply(qt.QPushButton.__init__, (self,) + args)
qt.QPushButton.__init__(self, parent)
self.commandmethod = commandmethod
self.setText(caption)
qt.QObject.connect(self, qt.SIGNAL("clicked()"), self.commandmethod)
class CheckBox(qt.QCheckBox):
def __init__(self, dialog, parent, caption, checked = True):
#TkDialog.Widget.__init__(self, dialog, parent)
qt.QCheckBox.__init__(self, parent)
self.setText(caption)
self.setChecked(checked)
#def isChecked(self):
# return self.isChecked()
class List(qt.QHBox):
def __init__(self, dialog, parent, caption, items):
qt.QHBox.__init__(self, parent)
self.setSpacing(6)
label = qt.QLabel(caption, self)
self.combo = qt.QComboBox(self)
self.setStretchFactor(self.combo, 1)
label.setBuddy(self.combo)
for item in items:
self.combo.insertItem( str(item) )
def get(self):
return self.combo.currentText()
def set(self, index):
self.combo.setCurrentItem(index)
class FileChooser(qt.QHBox):
def __init__(self, dialog, parent, caption, initialfile = None, filetypes = None):
#apply(qt.QHBox.__init__, (self,) + args)
qt.QHBox.__init__(self, parent)
self.setMinimumWidth(400)
self.initialfile = initialfile
self.filetypes = filetypes
self.setSpacing(6)
label = qt.QLabel(caption, self)
self.edit = qt.QLineEdit(self)
self.edit.setText(self.initialfile)
self.setStretchFactor(self.edit, 1)
label.setBuddy(self.edit)
browsebutton = Button(dialog, self, "...", self.browseButtonClicked)
#qt.QObject.connect(browsebutton, qt.SIGNAL("clicked()"), self.browseButtonClicked)
def get(self):
return self.edit.text()
def browseButtonClicked(self):
filtermask = ""
import types
if isinstance(self.filetypes, types.TupleType):
for ft in self.filetypes:
if len(ft) == 1:
filtermask += "%s\n" % (ft[0])
if len(ft) == 2:
filtermask += "%s|%s (%s)\n" % (ft[1],ft[0],ft[1])
if filtermask == "":
filtermask = "All files (*.*)"
else:
filtermask = filtermask[:-1]
filename = None
try:
print "QtDialog.FileChooser.browseButtonClicked() kfile.KFileDialog"
# try to use the kfile module included in pykde
import kfile
filename = kfile.KFileDialog.getOpenFileName(self.initialfile, filtermask, self, "Save to file")
except:
print "QtDialog.FileChooser.browseButtonClicked() qt.QFileDialog"
# fallback to Qt filedialog
filename = qt.QFileDialog.getOpenFileName(self.initialfile, filtermask, self, "Save to file")
if filename != None and filename != "":
self.edit.setText(filename)
class MessageBox:
def __init__(self, dialog, typename, caption, message):
self.widget = dialog.widget
self.typename = typename
self.caption = str(caption)
self.message = str(message)
def show(self):
result = 1
if self.typename == "okcancel":
result = qt.QMessageBox.question(self.widget, self.caption, self.message, "&Ok", "&Cancel", "", 1)
else:
qt.QMessageBox.information(self.widget, self.caption, self.message, "&Ok")
result = 0
if result == 0:
return True
return False
self.app = qt.qApp
self.dialog = Dialog(self.app.mainWidget(), "Dialog", 1, qt.Qt.WDestructiveClose)
self.dialog.setCaption(title)
self.widget = qt.QVBox(self.dialog)
self.widget.setSpacing(6)
self.dialog.layout.addWidget(self.widget)
self.Frame = Frame
self.Label = Label
self.Edit = Edit
self.Button = Button
self.CheckBox = CheckBox
self.List = List
self.FileChooser = FileChooser
self.MessageBox = MessageBox
def show(self):
import qt
qt.QApplication.setOverrideCursor(qt.Qt.arrowCursor)
self.dialog.exec_loop()
qt.QApplication.restoreOverrideCursor()
def close(self):
print "QtDialog.close()"
self.dialog.close()
#self.dialog.deleteLater()
class Dialog:
""" Central class that provides abstract GUI-access to the outer world. """
def __init__(self, title):
self.dialog = None
try:
print "Trying to import PyQt..."
self.dialog = QtDialog(title)
print "PyQt is our toolkit!"
except:
try:
print "Failed to import PyQt. Trying to import TkInter..."
self.dialog = TkDialog(title)
print "Falling back to TkInter as our toolkit!"
except:
raise "Failed to import GUI-toolkit. Please install the PyQt or the Tkinter python module."
self.widget = self.dialog.widget
def show(self):
self.dialog.show()
def close(self):
self.dialog.close()
def addFrame(self, parentwidget):
return self.dialog.Frame(self.dialog, parentwidget.widget)
def addLabel(self, parentwidget, caption):
return self.dialog.Label(self.dialog, parentwidget.widget, caption)
def addCheckBox(self, parentwidget, caption, checked = True):
return self.dialog.CheckBox(self.dialog, parentwidget.widget, caption, checked)
def addButton(self, parentwidget, caption, commandmethod):
return self.dialog.Button(self.dialog, parentwidget.widget, caption, commandmethod)
def addEdit(self, parentwidget, caption, text):
return self.dialog.Edit(self.dialog, parentwidget.widget, caption, text)
def addFileChooser(self, parentwidget, caption, initialfile = None, filetypes = None):
return self.dialog.FileChooser(self.dialog, parentwidget.widget, caption, initialfile, filetypes)
def addList(self, parentwidget, caption, items):
return self.dialog.List(self.dialog, parentwidget.widget, caption, items)
def showMessageBox(self, typename, caption, message):
return self.dialog.MessageBox(self.dialog, typename, caption, message)
|