*** empty log message ***
authorfm
Fri, 29 Sep 2006 11:28:16 +0200
changeset 4628 ebdab26dea16
parent 4627 c3992b15969c
child 4629 2cd474170180
*** empty log message ***
WindowEvent.st
--- a/WindowEvent.st	Wed Sep 27 13:07:05 2006 +0200
+++ b/WindowEvent.st	Fri Sep 29 11:28:16 2006 +0200
@@ -744,6 +744,14 @@
     "Created: 5.3.1997 / 12:25:43 / cg"
 !
 
+isButtonMultiPressEvent
+    "return true, if this event is a buttonMulti-Press event"
+
+    ^ false
+
+    "Created: 5.3.1997 / 12:25:43 / cg"
+!
+
 isButtonPressEvent
     "return true, if this event is a buttonPress event"
 
@@ -1163,6 +1171,10 @@
 
 !WindowEvent::ButtonMultiPressEvent methodsFor:'queries'!
 
+isButtonMultiPressEvent
+    ^ true
+!
+
 isButtonPressEvent
     "/ ATTENTION: temporary for bw. compatibility, since due to a bug,
     "/ multi-presses returned false to this query
@@ -1435,7 +1447,7 @@
 !WindowEvent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.85 2006-01-10 13:32:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.86 2006-09-29 09:28:16 fm Exp $'
 ! !
 
 WindowEvent::InputEvent initialize!