blob: a4f267cc1396b12391ccc2ed7c394cf82d77fca0 [file] [log] [blame]
Guido van Rossum35820f71994-10-07 09:55:26 +00001from Tkinter import *
2
Tim Peters182b5ac2004-07-18 06:16:08 +00003# allows moving dots with multiple selection.
Guido van Rossum35820f71994-10-07 09:55:26 +00004
5SELECTED_COLOR = "red"
6UNSELECTED_COLOR = "blue"
7
8class Test(Frame):
9 ###################################################################
10 ###### Event callbacks for THE CANVAS (not the stuff drawn on it)
11 ###################################################################
12 def mouseDown(self, event):
Tim Peters182b5ac2004-07-18 06:16:08 +000013 # see if we're inside a dot. If we are, it
14 # gets tagged as CURRENT for free by tk.
Guido van Rossum35820f71994-10-07 09:55:26 +000015
Tim Peters182b5ac2004-07-18 06:16:08 +000016 if not event.widget.find_withtag(CURRENT):
17 # we clicked outside of all dots on the canvas. unselect all.
Guido van Rossum35820f71994-10-07 09:55:26 +000018
Tim Peters182b5ac2004-07-18 06:16:08 +000019 # re-color everything back to an unselected color
20 self.draw.itemconfig("selected", fill=UNSELECTED_COLOR)
21 # unselect everything
22 self.draw.dtag("selected")
23 else:
24 # mark as "selected" the thing the cursor is under
25 self.draw.addtag("selected", "withtag", CURRENT)
26 # color it as selected
27 self.draw.itemconfig("selected", fill=SELECTED_COLOR)
28
29 self.lastx = event.x
30 self.lasty = event.y
31
32
Guido van Rossum35820f71994-10-07 09:55:26 +000033 def mouseMove(self, event):
Tim Peters182b5ac2004-07-18 06:16:08 +000034 self.draw.move("selected", event.x - self.lastx, event.y - self.lasty)
35 self.lastx = event.x
36 self.lasty = event.y
Guido van Rossum35820f71994-10-07 09:55:26 +000037
38 def makeNewDot(self):
Tim Peters182b5ac2004-07-18 06:16:08 +000039 # create a dot, and mark it as current
40 fred = self.draw.create_oval(0, 0, 20, 20,
41 fill=SELECTED_COLOR, tags=CURRENT)
42 # and make it selected
43 self.draw.addtag("selected", "withtag", CURRENT)
44
Guido van Rossum35820f71994-10-07 09:55:26 +000045 def createWidgets(self):
Tim Peters182b5ac2004-07-18 06:16:08 +000046 self.QUIT = Button(self, text='QUIT', foreground='red',
47 command=self.quit)
Guido van Rossum35820f71994-10-07 09:55:26 +000048
Tim Peters182b5ac2004-07-18 06:16:08 +000049 ################
50 # make the canvas and bind some behavior to it
51 ################
52 self.draw = Canvas(self, width="5i", height="5i")
53 Widget.bind(self.draw, "<1>", self.mouseDown)
54 Widget.bind(self.draw, "<B1-Motion>", self.mouseMove)
Guido van Rossum35820f71994-10-07 09:55:26 +000055
Tim Peters182b5ac2004-07-18 06:16:08 +000056 # and other things.....
57 self.button = Button(self, text="make a new dot", foreground="blue",
58 command=self.makeNewDot)
Guido van Rossum35820f71994-10-07 09:55:26 +000059
Tim Peters182b5ac2004-07-18 06:16:08 +000060 message = ("%s dots are selected and can be dragged.\n"
61 "%s are not selected.\n"
62 "Click in a dot to select it.\n"
63 "Click on empty space to deselect all dots."
64 ) % (SELECTED_COLOR, UNSELECTED_COLOR)
65 self.label = Message(self, width="5i", text=message)
Guido van Rossum35820f71994-10-07 09:55:26 +000066
Tim Peters182b5ac2004-07-18 06:16:08 +000067 self.QUIT.pack(side=BOTTOM, fill=BOTH)
68 self.label.pack(side=BOTTOM, fill=X, expand=1)
69 self.button.pack(side=BOTTOM, fill=X)
70 self.draw.pack(side=LEFT)
Guido van Rossum35820f71994-10-07 09:55:26 +000071
72 def __init__(self, master=None):
Tim Peters182b5ac2004-07-18 06:16:08 +000073 Frame.__init__(self, master)
74 Pack.config(self)
75 self.createWidgets()
Guido van Rossum35820f71994-10-07 09:55:26 +000076
77test = Test()
78test.mainloop()