Smalltalk.st
changeset 13056 1fa92a4cd9cc
parent 13014 fe6484596968
child 13060 488c6ad12c93
--- a/Smalltalk.st	Sun Sep 05 18:08:47 2010 +0200
+++ b/Smalltalk.st	Sat Sep 11 14:07:26 2010 +0200
@@ -3311,6 +3311,13 @@
 !Smalltalk class methodsFor:'startup'!
 
 browserWindowStartup
+    "invoked, when st/x is started as a plugin in a (currently firefox) browser.
+     In contrast to squeak (where a single window is used to show the display bitmap),
+     the browser window is used as a pseudo root-window for a single aplication window.
+     If required, that app must ensure that multiple apps (if any) are setup as a
+     multiwindow application.
+     Actually, control is transferred to PluginSupport, which is suppoesed to know what to do"
+
     |windowIDString numericWindowID windowID params idx process|
 
     idx := CommandLineArguments indexOf:'--browserWindow:'.
@@ -3343,6 +3350,8 @@
 
     Processor dispatchLoop.
     Smalltalk exit.
+
+    "Modified: / 11-09-2010 / 14:06:59 / cg"
 !
 
 displayInitializationDone
@@ -7403,9 +7412,9 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.938 2010-08-11 23:21:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.939 2010-09-11 12:07:26 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.938 2010-08-11 23:21:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.939 2010-09-11 12:07:26 cg Exp $'
 ! !