WidgetEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Jun 2016 22:07:40 +0100
branchjv
changeset 7399 143bc9c1a08e
parent 5772 16aace2a98ce
child 7783 601f74796881
permissions -rw-r--r--
Merge

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