WidgetEvent.st
author Claus Gittinger <cg@exept.de>
Fri, 04 Nov 2016 16:12:42 +0100
changeset 7662 b603d95107c2
parent 5772 16aace2a98ce
child 7783 601f74796881
permissions -rw-r--r--
#DOCUMENTATION by cg class: XWorkstation comment/format in: #buttonPress:button:state:x:y:rootX:rootY:time: #buttonPress:x:y:view: changed: #colorNamed:

"{ Package: 'stx:libview' }"

WindowEvent subclass:#WidgetEvent
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Support-UI'
!

!WidgetEvent class methodsFor:'documentation'!

documentation
"
    Abstract superclass for higher level internal widget events (like menu-selections).
"
! !

!WidgetEvent methodsFor:'testing'!

isWidgetEvent
    ^ true

    "Created: / 29-06-2011 / 12:05:17 / cg"
! !

!WidgetEvent class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libview/WidgetEvent.st,v 1.2 2011-07-05 11:28:41 cg Exp $'
! !