1994-10-07 06:55:26 -03:00
|
|
|
from Tkinter import *
|
|
|
|
|
|
|
|
# this file demonstrates the movement of a single canvas item under mouse control
|
|
|
|
|
|
|
|
class Test(Frame):
|
|
|
|
###################################################################
|
|
|
|
###### Event callbacks for THE CANVAS (not the stuff drawn on it)
|
|
|
|
###################################################################
|
|
|
|
def mouseDown(self, event):
|
|
|
|
# remember where the mouse went down
|
|
|
|
self.lastx = event.x
|
|
|
|
self.lasty = event.y
|
1996-07-30 15:57:18 -03:00
|
|
|
|
1994-10-07 06:55:26 -03:00
|
|
|
def mouseMove(self, event):
|
1996-07-30 15:57:18 -03:00
|
|
|
# whatever the mouse is over gets tagged as CURRENT for free by tk.
|
|
|
|
self.draw.move(CURRENT, event.x - self.lastx, event.y - self.lasty)
|
1994-10-07 06:55:26 -03:00
|
|
|
self.lastx = event.x
|
|
|
|
self.lasty = event.y
|
|
|
|
|
|
|
|
###################################################################
|
|
|
|
###### Event callbacks for canvas ITEMS (stuff drawn on the canvas)
|
|
|
|
###################################################################
|
|
|
|
def mouseEnter(self, event):
|
1996-07-30 15:57:18 -03:00
|
|
|
# the CURRENT tag is applied to the object the cursor is over.
|
1994-10-07 06:55:26 -03:00
|
|
|
# this happens automatically.
|
1996-07-30 15:57:18 -03:00
|
|
|
self.draw.itemconfig(CURRENT, fill="red")
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
def mouseLeave(self, event):
|
1996-07-30 15:57:18 -03:00
|
|
|
# the CURRENT tag is applied to the object the cursor is over.
|
1994-10-07 06:55:26 -03:00
|
|
|
# this happens automatically.
|
1996-07-30 15:57:18 -03:00
|
|
|
self.draw.itemconfig(CURRENT, fill="blue")
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
def createWidgets(self):
|
1996-07-30 15:57:18 -03:00
|
|
|
self.QUIT = Button(self, text='QUIT', foreground='red',
|
|
|
|
command=self.quit)
|
|
|
|
self.QUIT.pack(side=LEFT, fill=BOTH)
|
|
|
|
self.draw = Canvas(self, width="5i", height="5i")
|
|
|
|
self.draw.pack(side=LEFT)
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
fred = self.draw.create_oval(0, 0, 20, 20,
|
1996-07-30 15:57:18 -03:00
|
|
|
fill="green", tags="selected")
|
1994-10-07 06:55:26 -03:00
|
|
|
|
1996-05-24 15:40:46 -03:00
|
|
|
self.draw.tag_bind(fred, "<Any-Enter>", self.mouseEnter)
|
|
|
|
self.draw.tag_bind(fred, "<Any-Leave>", self.mouseLeave)
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
Widget.bind(self.draw, "<1>", self.mouseDown)
|
|
|
|
Widget.bind(self.draw, "<B1-Motion>", self.mouseMove)
|
|
|
|
|
|
|
|
def __init__(self, master=None):
|
|
|
|
Frame.__init__(self, master)
|
|
|
|
Pack.config(self)
|
|
|
|
self.createWidgets()
|
|
|
|
|
|
|
|
test = Test()
|
|
|
|
test.mainloop()
|