ActiveHelp.st
changeset 2473 66754ea64440
parent 2391 f6af9239e999
child 2685 9b6fd90dc9e2
equal deleted inserted replaced
2472:882f7468e7f0 2473:66754ea64440
   350     "
   350     "
   351 ! !
   351 ! !
   352 
   352 
   353 !ActiveHelp methodsFor:'event handling'!
   353 !ActiveHelp methodsFor:'event handling'!
   354 
   354 
   355 buttonMotion:state x:x y:y view:aView
   355 buttonMotion:buttonAndModifierState x:x y:y view:aView
   356     "handle motion events - prepare to show help"
   356     "handle motion events - prepare to show help"
   357 
   357 
   358     state == 0 ifTrue:[
   358     buttonAndModifierState == 0 ifTrue:[
   359         self handleMouseIn:aView x:x y:y.
   359         self handleMouseIn:aView x:x y:y.
   360     ].
   360     ].
   361     ^ false
   361     ^ false
   362 !
   362 !
   363 
   363 
   718 ! !
   718 ! !
   719 
   719 
   720 !ActiveHelp class methodsFor:'documentation'!
   720 !ActiveHelp class methodsFor:'documentation'!
   721 
   721 
   722 version
   722 version
   723     ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.60 2008-02-26 10:25:51 cg Exp $'
   723     ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.61 2008-05-19 19:16:53 cg Exp $'
   724 ! !
   724 ! !
   725 
   725 
   726 ActiveHelp initialize!
   726 ActiveHelp initialize!