MenuView.st
changeset 45 e900c30938c8
parent 38 4b9b70b2cc87
child 59 450ce95a72a4
--- a/MenuView.st	Fri Aug 12 01:47:09 1994 +0200
+++ b/MenuView.st	Fri Aug 12 01:48:09 1994 +0200
@@ -24,7 +24,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
 
-$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.8 1994-08-07 13:22:51 claus Exp $
+$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.9 1994-08-11 23:47:51 claus Exp $
 '!
 
 !MenuView class methodsFor:'documentation'!
@@ -45,7 +45,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.8 1994-08-07 13:22:51 claus Exp $
+$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.9 1994-08-11 23:47:51 claus Exp $
 "
 !
 
@@ -67,7 +67,22 @@
     menu entries starting with '\c' are check-entries.
     menu entries conisting of '-' alone, are separating lines.
 
-    written summer 89 by claus
+    Examples:
+        Notice: normally, menuviews are wrapped into either a popup-
+        menu or pulldown-menu. But they can also be used stand-alone
+        as in:
+
+        |m|
+        m := MenuView
+                labels:#('foo'
+                         'bar'
+                         'baz')
+                selectors:#(
+                            #foo
+                            #bar
+                            #baz)
+                receiver:nil.
+        m open
 "
 ! !