From a082d76fda730120764af09aa9bccce162cb36f9 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sun, 25 Apr 2010 11:04:31 +0000 Subject: added mouse event support to sample code --- (limited to 'tawindow.py') diff --git a/tawindow.py b/tawindow.py index 775c0c6..aa0bd4a 100644 --- a/tawindow.py +++ b/tawindow.py @@ -94,6 +94,9 @@ class TurtleArtWindow(): self.keypress = "" self.keyvalue = 0 self.dead_key = "" + self.mouse_flag = 0 + self.mouse_x = 0 + self.mouse_y = 0 self.area = self.window.window self.gc = self.area.new_gc() self.orientation = HORIZONTAL_PALETTE @@ -636,6 +639,9 @@ class TurtleArtWindow(): """ Button press """ self.window.grab_focus() x, y = xy(event) + self.mouse_flag = 1 + self.mouse_x = x + self.mouse_y = y self.button_press(event.get_state()>k.gdk.CONTROL_MASK, x, y) return True -- cgit v0.9.1