SimpleView.st
changeset 6856 36d81d2f7228
parent 6855 02ba4d520821
child 6857 a3c37c6169a2
child 6863 48127be3e1be
equal deleted inserted replaced
6855:02ba4d520821 6856:36d81d2f7228
  6764      (typically these are popup views like menus)
  6764      (typically these are popup views like menus)
  6765      Returns the view which precessed the event or nil."
  6765      Returns the view which precessed the event or nil."
  6766 
  6766 
  6767     |targetView pointXLated|
  6767     |targetView pointXLated|
  6768 
  6768 
  6769     (ev isButtonEvent or:[ev isPointerEvent]) ifTrue:[
  6769     (ev isButtonEvent or:[ev isPointerEnterLeaveEvent]) ifTrue:[
  6770         "/ if there is a pointer grab, the event has to sent to that one
  6770         "/ if there is a pointer grab, the event has to sent to that one
  6771         targetView := device activePointerGrab.
  6771         targetView := device activePointerGrab.
  6772     ] ifFalse:[
  6772     ] ifFalse:[
  6773         (ev isKeyEvent) ifTrue:[
  6773         (ev isKeyEvent) ifTrue:[
  6774             "/ if there is a pointer grab, the event has to sent to that one
  6774             "/ if there is a pointer grab, the event has to sent to that one
 11468 ! !
 11468 ! !
 11469 
 11469 
 11470 !SimpleView class methodsFor:'documentation'!
 11470 !SimpleView class methodsFor:'documentation'!
 11471 
 11471 
 11472 version
 11472 version
 11473     ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.787 2015-05-05 19:54:40 cg Exp $'
 11473     ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.788 2015-05-05 20:59:21 cg Exp $'
 11474 !
 11474 !
 11475 
 11475 
 11476 version_CVS
 11476 version_CVS
 11477     ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.787 2015-05-05 19:54:40 cg Exp $'
 11477     ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.788 2015-05-05 20:59:21 cg Exp $'
 11478 !
 11478 !
 11479 
 11479 
 11480 version_SVN
 11480 version_SVN
 11481     ^ '$ Id $'
 11481     ^ '$ Id $'
 11482 ! !
 11482 ! !