WindowBuilder.st
changeset 587 5687da09a935
parent 586 8889c3e9a226
child 595 15d80dd3d974
--- a/WindowBuilder.st	Tue May 27 11:14:42 1997 +0200
+++ b/WindowBuilder.st	Wed May 28 12:30:40 1997 +0200
@@ -634,6 +634,22 @@
     "Created: 17.1.1997 / 20:01:24 / cg"
 !
 
+openWindowAt:aPoint
+    "open my topView at some location"
+
+    self openAt:aPoint
+!
+
+openWindowAt: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 or #normal, and specifies if the view 
+     should be opened as a modal view, blocking interaction to the currently 
+     active view, or as a normal view."
+
+    ^ self openAt:origin withExtent:ext andType:type
+!
+
 openWithExtent:aPoint
     "open my topView, as previously created, but override
      the extent."
@@ -659,5 +675,5 @@
 !WindowBuilder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.35 1997-05-27 09:14:42 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.36 1997-05-28 10:30:40 ca Exp $'
 ! !