WidgetEvent.st
author mawalch
Thu, 07 Jul 2016 20:21:22 +0200
changeset 7403 9a4c5d6da62c
parent 5772 16aace2a98ce
child 7783 601f74796881
permissions -rw-r--r--
#OTHER by mawalch Spelling fixes.

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