WidgetEvent.st
author Stefan Vogel <sv@exept.de>
Wed, 09 Nov 2016 10:17:25 +0100
changeset 7673 8fcc7f754c03
parent 5772 16aace2a98ce
child 7783 601f74796881
permissions -rw-r--r--
#FEATURE by stefan class: XftFontDescription changed: #onDevice:ifAbsent: Slow font matching is a MAC-only feature

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