ClckMenuV.st
changeset 0 e6a541c1c0eb
child 2 880bbcc50207
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ClckMenuV.st	Fri Jul 16 11:44:44 1993 +0200
@@ -0,0 +1,36 @@
+"
+ COPYRIGHT (c) 1991-92 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+MenuView subclass:#ClickMenuView
+       instanceVariableNames:''
+       classVariableNames:''
+       poolDictionaries:''
+       category:'Views-Menus'
+!
+
+ClickMenuView comment:'
+
+COPYRIGHT (c) 1991-92 by Claus Gittinger
+              All Rights Reserved
+
+like a menuView - deselects after clicked on an entry
+
+@(#)ClckMenuV.st	3.1 92/08/23
+written spring 91 by claus
+'!
+
+!ClickMenuView methodsFor:'event handling'!
+
+buttonRelease:button x:x y:y
+    super buttonRelease:button x:x y:y.
+    self selection:nil
+! !