Tools__CodeViewService.st
branchjv
changeset 13170 c9b815af5777
parent 12431 9f0c59c742d5
parent 12861 3106975dc3e1
child 13173 e9da2324940d
equal deleted inserted replaced
12819:0ce340e972c4 13170:c9b815af5777
   245 ! !
   245 ! !
   246 
   246 
   247 !CodeViewService methodsFor:'event handling'!
   247 !CodeViewService methodsFor:'event handling'!
   248 
   248 
   249 buttonMotion: button x:x y:y in: view
   249 buttonMotion: button x:x y:y in: view
   250 
       
   251     "Handles an event in given view (a subview of codeView).
   250     "Handles an event in given view (a subview of codeView).
   252      If the method returns true, it has eaten the event and it will not be processed
   251      If the method returns true, it has eaten the event and it will not be processed
   253      by the view."
   252      by the view."
   254 
   253 
   255     ^false
   254     ^false
   258     "Modified: / 17-06-2011 / 13:05:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   257     "Modified: / 17-06-2011 / 13:05:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   259     "Modified (comment): / 18-08-2011 / 15:57:40 / cg"
   258     "Modified (comment): / 18-08-2011 / 15:57:40 / cg"
   260 !
   259 !
   261 
   260 
   262 buttonPress: button x:x y:y in: view
   261 buttonPress: button x:x y:y in: view
   263 
       
   264     "Handles an event in given view (a subview of codeView).
   262     "Handles an event in given view (a subview of codeView).
   265      If the method returns true, it has eaten the event and it will not be processed
   263      If the method returns true, it has eaten the event and it will not be processed
   266      by the view."
   264      by the view."
   267 
   265 
   268     ^false
   266     ^false
   270     "Created: / 06-03-2010 / 20:36:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   268     "Created: / 06-03-2010 / 20:36:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   271     "Modified: / 17-06-2011 / 13:06:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   269     "Modified: / 17-06-2011 / 13:06:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   272     "Modified (comment): / 18-08-2011 / 15:57:36 / cg"
   270     "Modified (comment): / 18-08-2011 / 15:57:36 / cg"
   273 !
   271 !
   274 
   272 
   275 keyPress:key x:x y:y in: view
   273 buttonRelease: button x:x y:y in: view
   276 
       
   277     "Handles an event in given view (a subview of codeView).
   274     "Handles an event in given view (a subview of codeView).
   278      If the method returns true, it has eaten the event and it will not be processed
   275      If the method returns true, it has eaten the event and it will not be processed
   279      by the view."
   276      by the view."
   280 
   277 
   281     ^false
   278     ^false
       
   279 !
       
   280 
       
   281 keyPress:key x:x y:y in: view
       
   282     "Handles an event in given view (a subview of codeView).
       
   283      If the method returns true, it has eaten the event and it will not be processed
       
   284      by the view."
       
   285 
       
   286     ^false
   282 
   287 
   283     "Created: / 06-03-2010 / 20:34:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   288     "Created: / 06-03-2010 / 20:34:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   284     "Modified: / 17-06-2011 / 13:06:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   289     "Modified: / 17-06-2011 / 13:06:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   285     "Modified (comment): / 18-08-2011 / 15:57:28 / cg"
   290     "Modified (comment): / 18-08-2011 / 15:57:28 / cg"
   286 !
   291 !
   287 
   292 
   288 keyRelease: key x: x y: y in: view
   293 keyRelease: key x: x y: y in: view
   289 
       
   290     "Handles an event in given view (a subview of codeView).
   294     "Handles an event in given view (a subview of codeView).
   291      If the method returns true, it has eaten the event and it will not be processed
   295      If the method returns true, it has eaten the event and it will not be processed
   292      by the view."
   296      by the view."
   293 
   297 
   294     ^false
   298     ^false
   415 version
   419 version
   416     ^ '$Id: Tools__CodeViewService.st 7860 2012-02-01 10:42:29Z vranyj1 $'
   420     ^ '$Id: Tools__CodeViewService.st 7860 2012-02-01 10:42:29Z vranyj1 $'
   417 !
   421 !
   418 
   422 
   419 version_CVS
   423 version_CVS
   420     ^ '§Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.8 2012/01/24 12:56:23 vrany Exp §'
   424     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
   421 !
   425 !
   422 
   426 
   423 version_HG
   427 version_HG
   424 
   428 
   425     ^ '$Changeset: <not expanded> $'
   429     ^ '$Changeset: <not expanded> $'
   426 !
   430 !
   427 
   431 
   428 version_SVN
   432 version_SVN
   429     ^ '$Id: Tools__CodeViewService.st 7860 2012-02-01 10:42:29Z vranyj1 $'
   433     ^ '$Id: Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
   430 ! !
   434 ! !
   431 
   435