ClickMenuView.st
changeset 0 e6a541c1c0eb
child 2 880bbcc50207
equal deleted inserted replaced
-1:000000000000 0:e6a541c1c0eb
       
     1 "
       
     2  COPYRIGHT (c) 1991-92 by Claus Gittinger
       
     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 "
       
    12 
       
    13 MenuView subclass:#ClickMenuView
       
    14        instanceVariableNames:''
       
    15        classVariableNames:''
       
    16        poolDictionaries:''
       
    17        category:'Views-Menus'
       
    18 !
       
    19 
       
    20 ClickMenuView comment:'
       
    21 
       
    22 COPYRIGHT (c) 1991-92 by Claus Gittinger
       
    23               All Rights Reserved
       
    24 
       
    25 like a menuView - deselects after clicked on an entry
       
    26 
       
    27 @(#)ClckMenuV.st	3.1 92/08/23
       
    28 written spring 91 by claus
       
    29 '!
       
    30 
       
    31 !ClickMenuView methodsFor:'event handling'!
       
    32 
       
    33 buttonRelease:button x:x y:y
       
    34     super buttonRelease:button x:x y:y.
       
    35     self selection:nil
       
    36 ! !