class: Tools::CodeViewService
authorClaus Gittinger <cg@exept.de>
Thu, 06 Jun 2013 14:03:57 +0200
changeset 12861 3106975dc3e1
parent 12860 0f3e9cd38b91
child 12862 86e6e1dd9874
class: Tools::CodeViewService added: #buttonRelease:x:y:in: comment/format in: #buttonMotion:x:y:in: #buttonPress:x:y:in: #keyPress:x:y:in: #keyRelease:x:y:in:
Tools__CodeViewService.st
--- a/Tools__CodeViewService.st	Thu Jun 06 12:56:17 2013 +0200
+++ b/Tools__CodeViewService.st	Thu Jun 06 14:03:57 2013 +0200
@@ -237,7 +237,6 @@
 !CodeViewService methodsFor:'event handling'!
 
 buttonMotion: button x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -250,7 +249,6 @@
 !
 
 buttonPress: button x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -262,8 +260,15 @@
     "Modified (comment): / 18-08-2011 / 15:57:36 / cg"
 !
 
+buttonRelease: button x:x y:y in: view
+    "Handles an event in given view (a subview of codeView).
+     If the method returns true, it has eaten the event and it will not be processed
+     by the view."
+
+    ^false
+!
+
 keyPress:key x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -276,7 +281,6 @@
 !
 
 keyRelease: key x: x y: y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -390,9 +394,10 @@
 !CodeViewService class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.8 2012-01-24 12:56:23 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
 !
 
 version_SVN
-    ^ '§Id: Tools__CodeViewService.st 7790 2011-06-17 13:33:22Z vranyj1 §'
+    ^ '$Id: Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
 ! !
+