View.st
changeset 621 decaeae1910d
parent 616 56cf67c82664
child 1146 0167191529dd
--- a/View.st	Sat Apr 27 19:56:29 1996 +0200
+++ b/View.st	Sat Apr 27 20:14:40 1996 +0200
@@ -60,8 +60,9 @@
                                             menuHolder and menuPerformer.
 
     [see also:]
-        StandardSystemView TopView
+        StandardSystemView TopView DialogBox
         WindowGroup
+        Model ValueHolder
         ( introduction to view programming :html: programming/viewintro.html )
         
 
@@ -73,7 +74,7 @@
 examples
 "
     a subView in a topView:
-
+                                                                        [exBegin]
         |top v|
 
         topView := StandardSystemView new.
@@ -81,16 +82,18 @@
         v origin:0.25 @ 0.25 corner:0.75 @ 0.75.
         top addSubView:v.
         top open
-
+                                                                        [exEnd]
 
 
     the same, a bit more compact:
-
+                                                                        [exBegin]
         |top v|
 
         topView := StandardSystemView new.
         v := View origin:0.25 @ 0.25 corner:0.75 @ 0.75 in:topView.
         top open
+                                                                        [exEnd]
+
 "
 ! !
 
@@ -481,5 +484,5 @@
 !View class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/View.st,v 1.50 1996-04-25 17:15:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/View.st,v 1.51 1996-04-27 18:12:31 cg Exp $'
 ! !