WidgetEvent.st
author Claus Gittinger <cg@exept.de>
Tue, 05 Jul 2011 13:28:41 +0200
changeset 5772 16aace2a98ce
parent 5753 9935dec4f119
child 7783 601f74796881
permissions -rw-r--r--
changed: #documentation

"{ 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 $'
! !