MenuEvent.st
changeset 6756 8dfdd5d43579
parent 4616 e596ef7df96f
equal deleted inserted replaced
6755:e57e71d8231b 6756:8dfdd5d43579
       
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "
       
     4  COPYRIGHT (c) 2018 by eXept Software AG
       
     5               All Rights Reserved
       
     6 
       
     7  This software is furnished under a license and may be used
       
     8  only in accordance with the terms of that license and with the
       
     9  inclusion of the above copyright notice.   This software may not
       
    10  be provided or otherwise made available to, or used by, any
       
    11  other person.  No title to or ownership of the software is
       
    12  hereby transferred.
       
    13 "
     1 "{ Package: 'stx:libwidg' }"
    14 "{ Package: 'stx:libwidg' }"
       
    15 
       
    16 "{ NameSpace: Smalltalk }"
     2 
    17 
     3 WidgetEvent subclass:#MenuEvent
    18 WidgetEvent subclass:#MenuEvent
     4 	instanceVariableNames:'menu itemIndex item itemLabel itemValue menuReceiver'
    19 	instanceVariableNames:'menu itemIndex item itemLabel itemValue menuReceiver'
     5 	classVariableNames:''
    20 	classVariableNames:''
     6 	poolDictionaries:''
    21 	poolDictionaries:''
    41 	poolDictionaries:''
    56 	poolDictionaries:''
    42 	privateIn:MenuEvent
    57 	privateIn:MenuEvent
    43 !
    58 !
    44 
    59 
    45 !MenuEvent class methodsFor:'documentation'!
    60 !MenuEvent class methodsFor:'documentation'!
       
    61 
       
    62 copyright
       
    63 "
       
    64  COPYRIGHT (c) 2018 by eXept Software AG
       
    65               All Rights Reserved
       
    66 
       
    67  This software is furnished under a license and may be used
       
    68  only in accordance with the terms of that license and with the
       
    69  inclusion of the above copyright notice.   This software may not
       
    70  be provided or otherwise made available to, or used by, any
       
    71  other person.  No title to or ownership of the software is
       
    72  hereby transferred.
       
    73 "
       
    74 !
    46 
    75 
    47 documentation
    76 documentation
    48 "
    77 "
    49     Internal menu events.
    78     Internal menu events.
    50     These have been added very lately to support capture & replay inside st/x applications.
    79     These have been added very lately to support capture & replay inside st/x applications.
   192 ! !
   221 ! !
   193 
   222 
   194 !MenuEvent class methodsFor:'documentation'!
   223 !MenuEvent class methodsFor:'documentation'!
   195 
   224 
   196 version_CVS
   225 version_CVS
   197     ^ '$Header: /cvs/stx/stx/libwidg/MenuEvent.st,v 1.3 2013-06-21 13:40:23 cg Exp $'
   226     ^ '$Header$'
   198 ! !
   227 ! !
   199 
   228