canvas-mult-item-sel.py 2.39 KB
Newer Older
Guido van Rossum's avatar
Guido van Rossum committed
1 2 3 4 5 6 7 8 9 10 11 12 13
from Tkinter import *

# allows moving dots with multiple selection. 

SELECTED_COLOR = "red"
UNSELECTED_COLOR = "blue"

class Test(Frame):
    ###################################################################
    ###### Event callbacks for THE CANVAS (not the stuff drawn on it)
    ###################################################################
    def mouseDown(self, event):
	# see if we're inside a dot. If we are, it
14
	# gets tagged as CURRENT for free by tk.
Guido van Rossum's avatar
Guido van Rossum committed
15

16
	if not event.widget.find_withtag(CURRENT):
Guido van Rossum's avatar
Guido van Rossum committed
17 18 19
	    # we clicked outside of all dots on the canvas. unselect all.
	    
	    # re-color everything back to an unselected color
20
	    self.draw.itemconfig("selected", fill=UNSELECTED_COLOR)
Guido van Rossum's avatar
Guido van Rossum committed
21 22 23 24
	    # unselect everything
	    self.draw.dtag("selected")
	else:
	    # mark as "selected" the thing the cursor is under
25
	    self.draw.addtag("selected", "withtag", CURRENT)
Guido van Rossum's avatar
Guido van Rossum committed
26
	    # color it as selected
27
	    self.draw.itemconfig("selected", fill=SELECTED_COLOR)
Guido van Rossum's avatar
Guido van Rossum committed
28 29 30 31 32 33 34 35 36 37 38 39 40

	self.lastx = event.x
	self.lasty = event.y
		
	
    def mouseMove(self, event):
	self.draw.move("selected", event.x - self.lastx, event.y - self.lasty)
	self.lastx = event.x
	self.lasty = event.y

    def makeNewDot(self):
	# create a dot, and mark it as current
	fred = self.draw.create_oval(0, 0, 20, 20, 
41
				     fill=SELECTED_COLOR, tags=CURRENT)
Guido van Rossum's avatar
Guido van Rossum committed
42
	# and make it selected
43
	self.draw.addtag("selected", "withtag", CURRENT)
Guido van Rossum's avatar
Guido van Rossum committed
44 45
	
    def createWidgets(self):
46 47
	self.QUIT = Button(self, text='QUIT', foreground='red',
			   command=self.quit)
Guido van Rossum's avatar
Guido van Rossum committed
48 49 50 51

	################
	# make the canvas and bind some behavior to it
	################
52
	self.draw = Canvas(self, width="5i", height="5i")
Guido van Rossum's avatar
Guido van Rossum committed
53 54 55 56
	Widget.bind(self.draw, "<1>", self.mouseDown)
	Widget.bind(self.draw, "<B1-Motion>", self.mouseMove)

	# and other things.....
57 58 59 60 61 62 63 64 65 66 67 68 69 70
	self.button = Button(self, text="make a new dot", foreground="blue",
			     command=self.makeNewDot)

	message = ("%s dots are selected and can be dragged.\n"
		   "%s are not selected.\n"
		   "Click in a dot to select it.\n"
		   "Click on empty space to deselect all dots."
		   ) % (SELECTED_COLOR, UNSELECTED_COLOR)
	self.label = Message(self, width="5i", text=message)

	self.QUIT.pack(side=BOTTOM, fill=BOTH)
	self.label.pack(side=BOTTOM, fill=X, expand=1)
	self.button.pack(side=BOTTOM, fill=X)
	self.draw.pack(side=LEFT)
Guido van Rossum's avatar
Guido van Rossum committed
71 72 73 74 75 76 77 78 79 80 81

    def __init__(self, master=None):
	Frame.__init__(self, master)
	Pack.config(self)
	self.createWidgets()

test = Test()
test.mainloop()