WidgetEvent.st
changeset 7783 601f74796881
parent 5772 16aace2a98ce
equal deleted inserted replaced
7782:5c396aabbe58 7783:601f74796881
       
     1 "
       
     2  COPYRIGHT (c) 2011 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libview' }"
    12 "{ Package: 'stx:libview' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
     2 
    15 
     3 WindowEvent subclass:#WidgetEvent
    16 WindowEvent subclass:#WidgetEvent
     4 	instanceVariableNames:''
    17 	instanceVariableNames:''
     5 	classVariableNames:''
    18 	classVariableNames:''
     6 	poolDictionaries:''
    19 	poolDictionaries:''
     7 	category:'Interface-Support-UI'
    20 	category:'Interface-Support-UI'
     8 !
    21 !
     9 
    22 
    10 !WidgetEvent class methodsFor:'documentation'!
    23 !WidgetEvent class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 2011 by eXept Software AG
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice.   This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person.  No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 !
    11 
    38 
    12 documentation
    39 documentation
    13 "
    40 "
    14     Abstract superclass for higher level internal widget events (like menu-selections).
    41     Abstract superclass for higher level internal widget events (like menu-selections).
    15 "
    42 "
    24 ! !
    51 ! !
    25 
    52 
    26 !WidgetEvent class methodsFor:'documentation'!
    53 !WidgetEvent class methodsFor:'documentation'!
    27 
    54 
    28 version_CVS
    55 version_CVS
    29     ^ '$Header: /cvs/stx/stx/libview/WidgetEvent.st,v 1.2 2011-07-05 11:28:41 cg Exp $'
    56     ^ '$Header$'
    30 ! !
    57 ! !
       
    58