WindowBuilder.st
changeset 4234 abfff228a728
parent 4224 8ce4f91fb3ef
child 4244 b60f87ce9eda
--- a/WindowBuilder.st	Fri Feb 22 11:18:16 2019 +0100
+++ b/WindowBuilder.st	Sat Feb 23 15:30:50 2019 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -1433,11 +1431,15 @@
 openAt:origin withExtent:ext andType:type
     "open my window, as previously created, optionally defining the
      windows origin and/or extent.
-     The type argument may be #dialog, #popup or #normal,
-     and specifies if the view should be opened as a
-        modal view (blocking interaction to the currently active view),
-        as popUp (also blocking)
-        or as a normal view."
+     The type argument may be 
+        #normal, #dialog, #popUp,
+        #toolDialog, #popupWithFrame, #slave, #partner, #popUpNotModal
+        #undecorated or #undecoratedResizable
+     and specifies how the view should be opened.
+     Most common are
+        #dialog: modal view (blocking interaction to the currently active view),
+        #popUp: blocking, undecorated
+        #normal: a standard view"
 
     |appWinClass windowsDevice wg mainWin x y monitorBounds newOrigin|
 
@@ -1638,6 +1640,7 @@
 
     "Created: / 14-02-1997 / 20:22:24 / cg"
     "Modified: / 22-03-2011 / 13:31:52 / cg"
+    "Modified (comment): / 23-02-2019 / 15:02:21 / Claus Gittinger"
 ! !
 
 !WindowBuilder methodsFor:'translating'!