summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/guido/AttrDialog.py
blob: 6eba09a324ace429dd9b45ea275a14031a9035c8 (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

# The options of a widget are described by the following attributes
# of the Pack and Widget dialogs:
#
# Dialog.current: {name: value}
# -- changes during Widget's lifetime
#
# Dialog.options: {name: (default, klass)}
# -- depends on widget class only
#
# Dialog.classes: {klass: (v0, v1, v2, ...) | 'boolean' | 'other'}
# -- totally static, though different between PackDialog and WidgetDialog
#    (but even that could be unified)


from Tkinter import *

class Option:

	def __init__(self, packdialog, option, varclass):
		self.packdialog = packdialog
		self.option = option
		self.master = packdialog.top
		self.default, self.klass = packdialog.options[option]
		self.var = varclass(self.master)
		self.frame = Frame(self.master,
				   {Pack: {'expand': 0, 'fill': 'x'}})
		self.label = Label(self.frame,
				   {'text': option + ':',
				    Pack: {'side': 'left'},
				    })
		self.update()

	def refresh(self):
		self.packdialog.refresh()
		self.update()

	def update(self):
		try:
			self.current = self.packdialog.current[self.option]
		except KeyError:
			self.current = self.default
		self.var.set(self.current)

	def set(self, e=None):
		pass

class BooleanOption(Option):

	def __init__(self, packdialog, option):
		Option.__init__(self, packdialog, option, BooleanVar)
		self.button = Checkbutton(self.frame,
					 {'text': 'on/off',
					  'onvalue': '1',
					  'offvalue': '0',
					  'variable': self.var,
					  'relief': 'raised',
					  'borderwidth': 2,
					  'command': self.set,
					  Pack: {'side': 'right'},
					  })

class EnumOption(Option):

	def __init__(self, packdialog, option):
		Option.__init__(self, packdialog, option, StringVar)
		self.button = Menubutton(self.frame,
					 {'textvariable': self.var,
					  'relief': 'raised',
					  'borderwidth': 2,
					  Pack: {'side': 'right'},
					  })
		self.menu = Menu(self.button)
		self.button['menu'] = self.menu
		for v in self.packdialog.classes[self.klass]:
			label = v
			if v == self.default: label = label + ' (default)'
			self.menu.add_radiobutton(
				{'label': label,
				 'variable': self.var,
				 'value': v,
				 'command': self.set,
				 })

class StringOption(Option):

	def __init__(self, packdialog, option):
		Option.__init__(self, packdialog, option, StringVar)
		self.entry = Entry(self.frame,
				   {'textvariable': self.var,
				    'width': 10,
				    'relief': 'sunken',
				    'borderwidth': 2,
				    Pack: {'side': 'right',
					   'fill': 'x', 'expand': 1},
				    })
		self.entry.bind('<Return>', self.set)

class PackOption: # Mix-in class

	def set(self, e=None):
		self.current = self.var.get()
		try:
			Pack.config(self.packdialog.widget,
				    {self.option: self.current})
		except TclError:
			self.refresh()

class BooleanPackOption(PackOption, BooleanOption): pass
class EnumPackOption(PackOption, EnumOption): pass
class StringPackOption(PackOption, StringOption): pass

class PackDialog:

	options = {
		'after': (None, 'Widet'),
		'anchor': ('center', 'Anchor'),
		'before': (None, 'Widget'),
		'expand': ('no', 'Boolean'),
		'fill': ('none', 'Fill'),
		'in': (None, 'Widget'),
		'ipadx': (0, 'Pad'),
		'ipady': (0, 'Pad'),
		'padx': (0, 'Pad'),
		'pady': (0, 'Pad'),
		'side': ('top', 'Side'),
		}

	classes = {
		'Anchor': ('n','ne', 'e','se', 's','sw', 'w','nw', 'center'),
		'Fill': ('none', 'x', 'y', 'both'),
		'Side': ('top', 'right', 'bottom', 'left'),
		'Expand': 'boolean',
		'Pad': 'pixel',
		'Widget': 'widget',
		}

	def __init__(self, widget):
		self.widget = widget
		self.refresh()
		self.top = Toplevel(self.widget)
		self.top.title('Pack: %s' % widget.widgetName)
		self.top.minsize(1, 1) # XXX
		self.anchor = EnumPackOption(self, 'anchor')
		self.side = EnumPackOption(self, 'side')
		self.fill = EnumPackOption(self, 'fill')
		self.expand = BooleanPackOption(self, 'expand')
		self.ipadx = StringPackOption(self, 'ipadx')
		self.ipady = StringPackOption(self, 'ipady')
		self.padx = StringPackOption(self, 'padx')
		self.pady = StringPackOption(self, 'pady')
		# XXX after, before, in

	def refresh(self):
		self.current = self.widget.newinfo()

class WidgetOption: # Mix-in class

	def set(self, e=None):
		self.current = self.var.get()
		try:
			self.packdialog.widget[self.option] = self.current
		except TclError:
			self.refresh()

class BooleanWidgetOption(WidgetOption, BooleanOption): pass
class EnumWidgetOption(WidgetOption, EnumOption): pass
class StringWidgetOption(WidgetOption, StringOption): pass

class WidgetDialog:

	# Universal classes
	classes = {
		'Anchor': ('n','ne', 'e','se', 's','sw', 'w','nw', 'center'),
		'Aspect': 'integer',
		'Background': 'color',
		'Bitmap': 'bitmap',
		'BorderWidth': 'pixel',
		'CloseEnough': 'double',
		'Command': 'command',
		'Confine': 'boolean',
		'Cursor': 'cursor',
		'CursorWidth': 'pixel',
		'DisabledForeground': 'color',
		'ExportSelection': 'boolean',
		'Font': 'font',
		'Foreground': 'color',
		'From': 'integer',
		'Geometry': 'geometry',
		'Height': 'pixel',
		'InsertWidth': 'time',
		'Justify': ('left', 'center', 'right'),
		'Label': 'string',
		'Length': 'pixel',
		'MenuName': 'widget',
		'OffTime': 'time',
		'OnTime': 'time',
		'Orient': ('horizontal', 'vertical'),
		'Pad': 'pixel',
		'Relief': ('raised', 'sunken', 'flat', 'ridge', 'groove'),
		'RepeatDelay': 'time',
		'RepeatInterval': 'time',
		'ScrollCommand': 'command',
		'ScrollIncrement': 'pixel',
		'ScrollRegion': 'rectangle',
		'ShowValue': 'boolean',
		'SetGrid': 'boolean',
		'Sliderforeground': 'color',
		'SliderLength': 'pixel',
		'Text': 'string',
		'TickInterval': 'integer',
		'To': 'integer',
		'Underline': 'index',
		'Variable': 'variable',
		'Value': 'string',
		'Width': 'pixel',
		'Wrap': ('none', 'char', 'word'),
		}

	# Classes that (may) differ per widget type
	_tristate = {'State': ('normal', 'active', 'disabled')}
	_bistate = {'State': ('normal', 'disabled')}
	addclasses = {
		'button': _tristate,
		'radiobutton': _tristate,
		'checkbutton': _tristate,
		'entry': _bistate,
		'text': _bistate,
		'menubutton': _tristate,
		'slider': _bistate,
		}
		

	def __init__(self, widget):
		self.widget = widget
		if self.addclasses.has_key(self.widget.widgetName):
			classes = {}
			for c in (self.classes,
				  self.addclasses[self.widget.widgetName]):
				for k in c.keys():
					classes[k] = c[k]
			self.classes = classes
		self.refresh()
		self.top = Toplevel(self.widget)
		self.top.title('Widget: %s' % widget.widgetName)
		self.top.minsize(1, 1)
		self.choices = {}
		for k, (d, c) in self.options.items():
			try:
				cl = self.classes[c]
			except KeyError:
				cl = 'unknown'
			if type(cl) == TupleType:
				cl = EnumWidgetOption
			elif cl == 'boolean':
				cl = BooleanWidgetOption
			else:
				cl = StringWidgetOption
			self.choices[k] = cl(self, k)

	def refresh(self):
		self.configuration = self.widget.config()
		self.current = {}
		self.options = {}
		for k, v in self.configuration.items():
			if len(v) > 4:
				self.current[k] = v[4]
				self.options[k] = v[3], v[2] # default, klass

def test():
	root = Tk()
	root.minsize(1, 1)
	frame = Frame(root, {Pack: {'expand': 1, 'fill': 'both'}})
	button = Button(frame, {'text': 'button',
				Pack: {'expand': 1}})
	canvas = Canvas(frame, {Pack: {}})
	bpd = PackDialog(button)
	bwd = WidgetDialog(button)
	cpd = PackDialog(canvas)
	cwd = WidgetDialog(canvas)
	root.mainloop()

test()