| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | from Tkinter import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # this file demonstrates a more sophisticated movement --  | 
					
						
							|  |  |  | # move dots or create new ones if you click outside the dots | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	# gets tagged as CURRENT for free by tk. | 
					
						
							|  |  |  | 	if not event.widget.find_withtag(CURRENT): | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 	    # there is no dot here, so we can make one, | 
					
						
							|  |  |  | 	    # and bind some interesting behavior to it. | 
					
						
							|  |  |  | 	    # ------ | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	    # create a dot, and mark it as CURRENT | 
					
						
							|  |  |  | 	    fred = self.draw.create_oval( | 
					
						
							|  |  |  | 		event.x - 10, event.y -10, event.x +10, event.y + 10, | 
					
						
							|  |  |  | 		fill="green", tags=CURRENT) | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-24 13:39:51 +00:00
										 |  |  | 	    self.draw.tag_bind(fred, "<Any-Enter>", self.mouseEnter) | 
					
						
							|  |  |  | 	    self.draw.tag_bind(fred, "<Any-Leave>", self.mouseLeave) | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 	self.lastx = event.x | 
					
						
							|  |  |  | 	self.lasty = event.y | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  |     def mouseMove(self, event): | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	self.draw.move(CURRENT, event.x - self.lastx, event.y - self.lasty) | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00: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 18:57:18 +00:00
										 |  |  |         # the CURRENT tag is applied to the object the cursor is over. | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 	# this happens automatically. | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	self.draw.itemconfig(CURRENT, fill="red") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  |     def mouseLeave(self, event): | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	# the CURRENT tag is applied to the object the cursor is over. | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 	# this happens automatically. | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	self.draw.itemconfig(CURRENT, fill="blue") | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def createWidgets(self): | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00: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 09:55:26 +00: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() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |