EventListener.st
author Claus Gittinger <cg@exept.de>
Thu, 23 Nov 1995 18:49:05 +0100
changeset 129 f890eaabc487
parent 127 4b1051c23b9b
child 212 874afdeb380a
permissions -rw-r--r--
checkin from browser

"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"



Object subclass:#EventListener
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Support'
!

!EventListener class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"


!

documentation
"
    abstract class for event listeners. EventListeners can be used to intercept
    incoming events (keyboard & mouse) directly from a sensor, or even
    for a complete display device.
    One application is the automatic help, which tracks entering/leaving
    views, to popup some help message. See concrete code in ActiveHelp.
    For each intercepted event, a corresponding method is called for in instances
    of myself - these should return true, if the event is to be ignored (i.e.
    assumed to be processed and consumed by the reader, or false, if the normal
    event procedure should be performed. Since this is an abstract class,
    all of my intercept methods return false. They are meant to be redefined
    in concrete subclasses.
"
! !

!EventListener methodsFor:'events'!

buttonMotion:state x:x y:y view:aView
    ^ false
!

buttonMultiPress:button x:x y:y view:aView
    ^ false

!

buttonPress:button x:x y:y view:aView
    ^ false

!

buttonRelease:button x:x y:y view:aView
    ^ false

!

buttonShiftPress:button x:x y:y view:aView
    ^ false

!

keyPress:key x:x y:y view:aView
    ^ false

!

keyRelease:key x:x y:y view:aView
    ^ false

!

pointerEnter:state x:x y:y view:view
    ^ false

!

pointerLeave:state view:view
    ^ false

! !

!EventListener methodsFor:'listen'!

listen
    "install myself as listener"

    WindowSensor eventListener:self

    "
     |listener|

     listener := EventListener new.
     listener listen.
     (Delay forSeconds:20) wait.
     listener unlisten
    "
!

unlisten
    "uninstall myself as listener"

    WindowSensor eventListener:nil 
! !

!EventListener class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview2/EventListener.st,v 1.8 1995-11-23 17:45:14 cg Exp $'
! !