summaryrefslogtreecommitdiffstats
path: root/lib/kross/python/scripts/gui.py
blob: 693261dd5f159b4a42345a34d793bf1aca17d1e7 (plain)
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
"""
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 = 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 io
				fp = io.StringIO()
				traceback.print_exc(file=fp)
				import tkinter.messagebox
				tkinter.messagebox.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 tkinter.filedialog
			file = tkinter.filedialog.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 tkinter.messagebox
			if self.typename == "okcancel":
				return tkinter.messagebox.askokcancel(self.caption, self.message,icon=tkmessageBox.QESTION)
			else:
				tkinter.messagebox.showinfo(self.caption, self.message)
			return True

	def show(self):
		self.root.mainloop()

	def close(self):
		self.root.destroy()

class TQtDialog:
	""" This class is used to wrap PyTQt/PyTDE into a more abstract interface."""

	def __init__(self, title):
		from TQt import qt

		class Dialog(qt.TQDialog):
			def __init__(self, parent = None, name = None, modal = 0, fl = 0):
				qt.TQDialog.__init__(self, parent, name, modal, fl)
				qt.TQDialog.accept = self.accept
				self.layout = qt.TQVBoxLayout(self)
				self.layout.setSpacing(6)
				self.layout.setMargin(11)

		class Label(qt.TQLabel):
			def __init__(self, dialog, parent, caption):
				qt.TQLabel.__init__(self, parent)
				self.setText("<qt>%s</qt>" % caption.replace("\n","<br>"))

		class Frame(qt.TQHBox):
			def __init__(self, dialog, parent):
				qt.TQHBox.__init__(self, parent)
				self.widget = self
				self.setSpacing(6)

		class Edit(qt.TQHBox):
			def __init__(self, dialog, parent, caption, text):
				qt.TQHBox.__init__(self, parent)
				self.setSpacing(6)
				label = qt.TQLabel(caption, self)
				self.edit = qt.TQLineEdit(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.TQPushButton):
			#def __init__(self, *args):
			def __init__(self, dialog, parent, caption, commandmethod):
				#apply(qt.TQPushButton.__init__, (self,) + args)
				qt.TQPushButton.__init__(self, parent)
				self.commandmethod = commandmethod
				self.setText(caption)
				qt.TQObject.connect(self, qt.SIGNAL("clicked()"), self.commandmethod)


		class CheckBox(qt.TQCheckBox):
			def __init__(self, dialog, parent, caption, checked = True):
				#TkDialog.Widget.__init__(self, dialog, parent)
				qt.TQCheckBox.__init__(self, parent)
				self.setText(caption)
				self.setChecked(checked)
			#def isChecked(self):
			#	return self.isChecked()

		class List(qt.TQHBox):
			def __init__(self, dialog, parent, caption, items):
				qt.TQHBox.__init__(self, parent)
				self.setSpacing(6)
				label = qt.TQLabel(caption, self)
				self.combo = qt.TQComboBox(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.TQHBox):
			def __init__(self, dialog, parent, caption, initialfile = None, filetypes = None):
				#apply(qt.TQHBox.__init__, (self,) + args)
				qt.TQHBox.__init__(self, parent)
				self.setMinimumWidth(400)

				self.initialfile = initialfile
				self.filetypes = filetypes

				self.setSpacing(6)
				label = qt.TQLabel(caption, self)
				self.edit = qt.TQLineEdit(self)
				self.edit.setText(self.initialfile)
				self.setStretchFactor(self.edit, 1)
				label.setBuddy(self.edit)

				browsebutton = Button(dialog, self, "...", self.browseButtonClicked)
				#qt.TQObject.connect(browsebutton, qt.SIGNAL("clicked()"), self.browseButtonClicked)

			def get(self):
				return self.edit.text()

			def browseButtonClicked(self):
				filtermask = ""
				import types
				if isinstance(self.filetypes, tuple):
					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("TQtDialog.FileChooser.browseButtonClicked() tdefile.KFileDialog")
					# try to use the tdefile module included in pytde
					import tdefile
					filename = tdefile.KFileDialog.getOpenFileName(self.initialfile, filtermask, self, "Save to file")
				except:
					print("TQtDialog.FileChooser.browseButtonClicked() qt.TQFileDialog")
					# fallback to TQt filedialog
					filename = qt.TQFileDialog.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.TQMessageBox.question(self.widget, self.caption, self.message, "&Ok", "&Cancel", "", 1)
				else:
					qt.TQMessageBox.information(self.widget, self.caption, self.message, "&Ok")
					result = 0
				if result == 0:
					return True
				return False

		self.app = qt.tqApp
		self.dialog = Dialog(self.app.mainWidget(), "Dialog", 1, qt.TQt.WDestructiveClose)
		self.dialog.setCaption(title)

		self.widget = qt.TQVBox(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):
		from TQt import qt
		qt.TQApplication.setOverrideCursor(qt.TQt.arrowCursor)
		self.dialog.exec_loop()
		qt.TQApplication.restoreOverrideCursor()

	def close(self):
		print("TQtDialog.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 PyTQt...")
			self.dialog = TQtDialog(title)
			print("PyTQt is our toolkit!")
		except:
			try:
				print("Failed to import PyTQt. Trying to import TkInter...")
				self.dialog = TkDialog(title)
				print("Falling back to TkInter as our toolkit!")
			except:
				raise Exception("Failed to import GUI-toolkit. Please install the PyTQt 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)