Workspace.st
changeset 123 25ab7ade4d3a
parent 121 4e63bbdb266a
child 125 3ffa271732f7
--- a/Workspace.st	Sun May 07 02:16:56 1995 +0200
+++ b/Workspace.st	Sun May 07 03:58:55 1995 +0200
@@ -23,7 +23,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	     All Rights Reserved
 
-$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.20 1995-05-06 14:18:13 claus Exp $
+$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.21 1995-05-07 01:58:55 claus Exp $
 '!
 
 !Workspace class methodsFor:'documentation'!
@@ -44,7 +44,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.20 1995-05-06 14:18:13 claus Exp $
+$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.21 1995-05-07 01:58:55 claus Exp $
 "
 !
 
@@ -62,9 +62,17 @@
     selection as a smalltalk expression. (but, a lisp or prolog
     view could define its own action ...)
 
+
+    Caveat:
+	in this version, Workspace does not yet support doIt in MVC setups.
+	For now, simulate this by setting the doItAction, to notify the
+	model manually about the doIt.
+
+
     instance variables:
 
       doItAction      <Block>         block to evaluate for doIt
+
       codeStartPosition               temporary
 
       errorFgColor    <Color>         fg-Color to be used when highlighting errors 
@@ -75,9 +83,9 @@
     styleSheet values:
 
       codeErrorSelectionForegroundColor     fg color to highlight errors
-				            (default: selection fg)
+					    (default: selection fg)
       codeErrorSelectionBackgroundColor     bg color to highlight errors
-				            (default: selection bg)
+					    (default: selection bg)
 "
 ! !