Workspace.st
changeset 578 5b82bc433c14
parent 489 5816aa12fec8
child 583 2ec13b7ceba5
--- a/Workspace.st	Wed Apr 24 08:56:43 1996 +0200
+++ b/Workspace.st	Thu Apr 25 09:56:34 1996 +0200
@@ -44,9 +44,10 @@
     (thus you can put a workspace into more complex widgets, and
      control what should happen on 'doIt').
 
-    A useful default action is set, which simply evaluates the
-    selection as a smalltalk expression. 
-    (but, a lisp or prolog workspace could define its own action ...)
+    A useful default action is automatically defined, which simply 
+    evaluates the selection as a smalltalk expression. 
+    (but, a lisp or prolog workspace would define its own action,
+     to call for another compiler/interpreter  ...)
 
 
     Caveat:
@@ -55,24 +56,28 @@
         model manually about the doIt.
 
 
-    instance variables:
+    [instance variables:]
 
       doItAction      <Block>         block to evaluate for doIt
 
-      codeStartPosition               temporary
-
       errorFgColor    <Color>         fg-Color to be used when highlighting errors 
 
       errorBgColor    <Color>         bg-Color to be used when highlighting errors
 
+      codeStartPosition               private temporary
 
-    styleSheet values:
+
+    [styleSheet values:]
 
       codeErrorSelectionForegroundColor     fg color to highlight errors
                                             (default: selection fg)
 
       codeErrorSelectionBackgroundColor     bg color to highlight errors
                                             (default: selection bg)
+
+    [see also:]
+        Workspace EditTextView 
+        Parser ByteCodeCompiler
 "
 ! !
 
@@ -554,4 +559,4 @@
 !Workspace class methodsFor:'documentation'!
 
 version
-^ '$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.42 1996-03-07 12:24:44 cg Exp $'! !
+^ '$Header: /cvs/stx/stx/libwidg/Workspace.st,v 1.43 1996-04-25 07:56:34 cg Exp $'! !