diff options
author | Barry Warsaw <barry@python.org> | 1998-10-06 16:13:35 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-06 16:13:35 (GMT) |
commit | 5b67839ca3ef12e8fc540b864998f775ecdd7929 (patch) | |
tree | fc3a1bb6a32b05289a1539ca76252682b277e2f4 /Tools/pynche | |
parent | c2d8f573eb72121325613df760df4590d7b1e375 (diff) | |
download | cpython-5b67839ca3ef12e8fc540b864998f775ecdd7929.zip cpython-5b67839ca3ef12e8fc540b864998f775ecdd7929.tar.gz cpython-5b67839ca3ef12e8fc540b864998f775ecdd7929.tar.bz2 |
Added a hex button so arrow numbers can display in decimal or hex.
Diffstat (limited to 'Tools/pynche')
-rw-r--r-- | Tools/pynche/StripViewer.py | 37 |
1 files changed, 30 insertions, 7 deletions
diff --git a/Tools/pynche/StripViewer.py b/Tools/pynche/StripViewer.py index c6e2fbe..44f006a 100644 --- a/Tools/pynche/StripViewer.py +++ b/Tools/pynche/StripViewer.py @@ -153,13 +153,15 @@ class StripWidget: generator = None, axis = None, label = '', - uwdvar = None): + uwdvar = None, + hexvar = None): # instance variables self.__generator = generator self.__axis = axis self.__numchips = numchips assert self.__axis in (0, 1, 2) self.__uwd = uwdvar + self.__hexp = hexvar # the last chip selected self.__lastchip = None self.__sb = switchboard @@ -244,7 +246,12 @@ class StripWidget: self.__lastchip = chip # get the arrow's text coloraxis = rgbtuple[self.__axis] - text = repr(coloraxis) + if self.__hexp.get(): + # hex + text = hex(coloraxis) + else: + # decimal + text = repr(coloraxis) # move the arrow, and set it's text if coloraxis <= 128: # use the left arrow @@ -294,27 +301,39 @@ class StripViewer: self.__frame = Frame(parent) #, relief=GROOVE, borderwidth=2) self.__frame.grid(row=1, column=0, columnspan=2, sticky='EW') uwd = BooleanVar() + hexp = BooleanVar() self.__reds = StripWidget(switchboard, self.__frame, generator=constant_cyan_generator, axis=0, label='Red Variations', - uwdvar=uwd) + uwdvar=uwd, hexvar=hexp) self.__greens = StripWidget(switchboard, self.__frame, generator=constant_magenta_generator, axis=1, label='Green Variations', - uwdvar=uwd) + uwdvar=uwd, hexvar=hexp) self.__blues = StripWidget(switchboard, self.__frame, generator=constant_yellow_generator, axis=2, label='Blue Variations', - uwdvar=uwd) - self.__uwd = Checkbutton(self.__frame, + uwdvar=uwd, hexvar=hexp) + + frame = self.__frame1 = Frame(self.__frame) + frame.pack() + + self.__uwd = Checkbutton(frame, text='Update while dragging', variable=uwd) - self.__uwd.pack() + self.__uwd.grid(row=0, column=0, sticky=W) + + self.__hex = Checkbutton(frame, + text='Hexadecimal', + variable=hexp, + command=self.__togglehex) + self.__hex.grid(row=1, column=0, sticky=W) + self.__div = Frame(self.__frame, height=2, borderwidth=2, @@ -325,3 +344,7 @@ class StripViewer: self.__reds.update_yourself(red, green, blue) self.__greens.update_yourself(red, green, blue) self.__blues.update_yourself(red, green, blue) + + def __togglehex(self, event=None): + red, green, blue = self.__sb.current_rgb() + self.update_yourself(red, green, blue) |