summaryrefslogtreecommitdiffstats
path: root/Tools/pynche/ChipViewer.py
blob: e173a62d9659a86e53b16b996abbf28dee2273eb (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
from Tkinter import *
import Pmw

class ChipWidget(Pmw.MegaWidget):
    _WIDTH = 80
    _HEIGHT = 100

    def __init__(self, parent=None, **kw):
	optionsdefs = (('chipcolor', 'blue', self.__set_color),
		       ('width', self._WIDTH, self.__set_dims),
		       ('height', self._HEIGHT, self.__set_dims),
		       ('text', 'Color', self.__set_label),
		       )
	self.defineoptions(kw, optionsdefs)

	# initialize base class -- after defining options
	Pmw.MegaWidget.__init__(self, parent)
	interiorarg = (self.interior(),)

	# create the label
	self.__label = self.createcomponent(
	    # component name, aliases, group
	    'label', (), None,
	    # widget class, widget args
	    Label, interiorarg)
	self.__label.grid(row=0, column=0)

	# create the color chip
	self.__chip = self.createcomponent(
	    'chip', (), None,
	    Frame, interiorarg,
	    relief=RAISED, borderwidth=2)
	self.__chip.grid(row=1, column=0)

	# create the color name
	self.__name = self.createcomponent(
	    'name', (), None,
	    Label, interiorarg,)
	self.__name.grid(row=2, column=0)

	# Check keywords and initialize options
	self.initialiseoptions(ChipWidget)

    # called whenever `chipcolor' option is set
    def __set_color(self):
	color = self['chipcolor']
	self.__chip['background'] = color
	self.__name['text'] = color

    def __set_dims(self):
	width = self['width']
	height = self['height']
	self.__chip.configure(width=width, height=height)

    def __set_label(self):
	self.__label['text'] = self['text']

Pmw.forwardmethods(ChipWidget, Frame, '__chip')



if __name__ == '__main__':
    root = Pmw.initialise(fontScheme='pmw1')
    root.title('ChipWidget demonstration')

    exitbtn = Button(root, text='Exit', command=root.destroy)
    exitbtn.pack(side=BOTTOM)
    widget = ChipWidget(root, chipcolor='red', width=200,
			text='Selected Color')
    widget.pack()
    root.mainloop()