documentation
authorClaus Gittinger <cg@exept.de>
Thu, 25 Apr 1996 18:36:01 +0200
changeset 582 e151eeae2c9a
parent 581 4d48caecf4a0
child 583 2ec13b7ceba5
documentation
ButtonC.st
ButtonController.st
PopUpListController.st
PopUpLstC.st
RButtC.st
RadioButtonController.st
ToggleC.st
ToggleController.st
VarHPanelC.st
VarPanelC.st
VarVPanelC.st
VariableHorizontalPanelController.st
VariablePanelController.st
VariableVerticalPanelController.st
--- a/ButtonC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/ButtonC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -46,20 +46,20 @@
 
     See examples in the Button class.
 
-    Instance variables:
+    [Instance variables:]
 
       enableChannel           <ValueHolder    pressing is allowed (default: true)
-			       on Boolean>    
+                               on Boolean>    
 
       pressed                 <Boolean>       true if currently pressed (read-only)
 
       entered                 <Boolean>       true if the cursor is currently in this view
 
       isTriggerOnDown         <Boolean>       controls if the action should be executed on
-					      press or on release (default: on release).
+                                              press or on release (default: on release).
 
       isToggle                <Boolean>       controls if the button should show toggle
-					      behavior (as opposed to one-shot behavior)
+                                              behavior (as opposed to one-shot behavior)
 
       pressActionBlock        <Block>         block to evaluate when pressed (default: noop)
 
@@ -74,6 +74,9 @@
       repeatBlock             <Block>         block evaluated for auto-repeat (internal)
 
       active                  <Boolean>       true during action evaluation (internal)
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -569,5 +572,5 @@
 !ButtonController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/ButtonC.st,v 1.30 1996-02-27 13:51:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/ButtonC.st,v 1.31 1996-04-25 16:35:55 cg Exp $'
 ! !
--- a/ButtonController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/ButtonController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -46,20 +46,20 @@
 
     See examples in the Button class.
 
-    Instance variables:
+    [Instance variables:]
 
       enableChannel           <ValueHolder    pressing is allowed (default: true)
-			       on Boolean>    
+                               on Boolean>    
 
       pressed                 <Boolean>       true if currently pressed (read-only)
 
       entered                 <Boolean>       true if the cursor is currently in this view
 
       isTriggerOnDown         <Boolean>       controls if the action should be executed on
-					      press or on release (default: on release).
+                                              press or on release (default: on release).
 
       isToggle                <Boolean>       controls if the button should show toggle
-					      behavior (as opposed to one-shot behavior)
+                                              behavior (as opposed to one-shot behavior)
 
       pressActionBlock        <Block>         block to evaluate when pressed (default: noop)
 
@@ -74,6 +74,9 @@
       repeatBlock             <Block>         block evaluated for auto-repeat (internal)
 
       active                  <Boolean>       true during action evaluation (internal)
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -569,5 +572,5 @@
 !ButtonController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ButtonController.st,v 1.30 1996-02-27 13:51:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ButtonController.st,v 1.31 1996-04-25 16:35:55 cg Exp $'
 ! !
--- a/PopUpListController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/PopUpListController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -36,6 +36,9 @@
 documentation
 "
     redefined the behavior on various keys if my view has the focus.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -78,5 +81,5 @@
 !PopUpListController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/PopUpListController.st,v 1.9 1996-03-07 12:57:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/PopUpListController.st,v 1.10 1996-04-25 16:34:53 cg Exp $'
 ! !
--- a/PopUpLstC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/PopUpLstC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -36,6 +36,9 @@
 documentation
 "
     redefined the behavior on various keys if my view has the focus.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -78,5 +81,5 @@
 !PopUpListController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/PopUpLstC.st,v 1.9 1996-03-07 12:57:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/PopUpLstC.st,v 1.10 1996-04-25 16:34:53 cg Exp $'
 ! !
--- a/RButtC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/RButtC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ToggleController subclass:#RadioButtonController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !RadioButtonController class methodsFor:'documentation'!
@@ -44,6 +44,9 @@
 
     You can place both toggles (for 'zero-or-one-on' behavior) or
     radiobuttons (for 'one-on' behavior) into a buttongroup.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -61,5 +64,5 @@
 !RadioButtonController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/RButtC.st,v 1.6 1995-11-23 17:46:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/RButtC.st,v 1.7 1996-04-25 16:34:48 cg Exp $'
 ! !
--- a/RadioButtonController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/RadioButtonController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ToggleController subclass:#RadioButtonController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !RadioButtonController class methodsFor:'documentation'!
@@ -44,6 +44,9 @@
 
     You can place both toggles (for 'zero-or-one-on' behavior) or
     radiobuttons (for 'one-on' behavior) into a buttongroup.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -61,5 +64,5 @@
 !RadioButtonController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/RadioButtonController.st,v 1.6 1995-11-23 17:46:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/RadioButtonController.st,v 1.7 1996-04-25 16:34:48 cg Exp $'
 ! !
--- a/ToggleC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/ToggleC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ButtonController subclass:#ToggleController
-	 instanceVariableNames:'action'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:'action'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !ToggleController class methodsFor:'documentation'!
@@ -47,6 +47,9 @@
 
     Other than that, all model relations are inherited - i.e. if the view has a model,
     that one gets change-messages and the toggle updates on aspect changes.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -84,5 +87,5 @@
 !ToggleController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/ToggleC.st,v 1.10 1995-11-23 17:46:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/ToggleC.st,v 1.11 1996-04-25 16:36:01 cg Exp $'
 ! !
--- a/ToggleController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/ToggleController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 ButtonController subclass:#ToggleController
-	 instanceVariableNames:'action'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:'action'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !ToggleController class methodsFor:'documentation'!
@@ -47,6 +47,9 @@
 
     Other than that, all model relations are inherited - i.e. if the view has a model,
     that one gets change-messages and the toggle updates on aspect changes.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -84,5 +87,5 @@
 !ToggleController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ToggleController.st,v 1.10 1995-11-23 17:46:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ToggleController.st,v 1.11 1996-04-25 16:36:01 cg Exp $'
 ! !
--- a/VarHPanelC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VarHPanelC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 VariablePanelController subclass:#VariableHorizontalPanelController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariableHorizontalPanelController class methodsFor:'documentation'!
@@ -42,11 +42,17 @@
     whenever a variableVerticalPanel is created.
     Actually, these are simply panelControllers which initialize themself for
     horizontal orientation.
+
+    [see also:]
+        VariableHorizontalPanel
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
 !VariableHorizontalPanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarHPanelC.st,v 1.8 1996-01-18 00:09:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarHPanelC.st,v 1.9 1996-04-25 16:35:26 cg Exp $'
 ! !
--- a/VarPanelC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VarPanelC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Controller subclass:#VariablePanelController
-	 instanceVariableNames:'movedHandle prevPos startPos'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:'movedHandle prevPos startPos'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariablePanelController class methodsFor:'documentation'!
@@ -40,6 +40,9 @@
     whenever a variablePanel is created.
     Instances are responsible for tracking the mouse pointer and resize the
     views (a panel) subviews as appropriate.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -241,5 +244,5 @@
 !VariablePanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarPanelC.st,v 1.9 1996-01-18 00:09:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarPanelC.st,v 1.10 1996-04-25 16:35:18 cg Exp $'
 ! !
--- a/VarVPanelC.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VarVPanelC.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 VariablePanelController subclass:#VariableVerticalPanelController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariableVerticalPanelController class methodsFor:'documentation'!
@@ -42,11 +42,17 @@
     whenever a variableVerticalPanel is created.
     Actually, these are simply panelControllers which initialize themself for
     vertical orientation.
+
+    [see also:]
+        VariableVerticalPanel
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
 !VariableVerticalPanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarVPanelC.st,v 1.8 1996-01-18 00:09:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Attic/VarVPanelC.st,v 1.9 1996-04-25 16:35:39 cg Exp $'
 ! !
--- a/VariableHorizontalPanelController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VariableHorizontalPanelController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 VariablePanelController subclass:#VariableHorizontalPanelController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariableHorizontalPanelController class methodsFor:'documentation'!
@@ -42,11 +42,17 @@
     whenever a variableVerticalPanel is created.
     Actually, these are simply panelControllers which initialize themself for
     horizontal orientation.
+
+    [see also:]
+        VariableHorizontalPanel
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
 !VariableHorizontalPanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/VariableHorizontalPanelController.st,v 1.8 1996-01-18 00:09:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/VariableHorizontalPanelController.st,v 1.9 1996-04-25 16:35:26 cg Exp $'
 ! !
--- a/VariablePanelController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VariablePanelController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Controller subclass:#VariablePanelController
-	 instanceVariableNames:'movedHandle prevPos startPos'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:'movedHandle prevPos startPos'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariablePanelController class methodsFor:'documentation'!
@@ -40,6 +40,9 @@
     whenever a variablePanel is created.
     Instances are responsible for tracking the mouse pointer and resize the
     views (a panel) subviews as appropriate.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -241,5 +244,5 @@
 !VariablePanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/VariablePanelController.st,v 1.9 1996-01-18 00:09:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/VariablePanelController.st,v 1.10 1996-04-25 16:35:18 cg Exp $'
 ! !
--- a/VariableVerticalPanelController.st	Thu Apr 25 18:33:37 1996 +0200
+++ b/VariableVerticalPanelController.st	Thu Apr 25 18:36:01 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 VariablePanelController subclass:#VariableVerticalPanelController
-	 instanceVariableNames:''
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Interface-Support-Controllers'
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Support-Controllers'
 !
 
 !VariableVerticalPanelController class methodsFor:'documentation'!
@@ -42,11 +42,17 @@
     whenever a variableVerticalPanel is created.
     Actually, these are simply panelControllers which initialize themself for
     vertical orientation.
+
+    [see also:]
+        VariableVerticalPanel
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
 !VariableVerticalPanelController class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/VariableVerticalPanelController.st,v 1.8 1996-01-18 00:09:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/VariableVerticalPanelController.st,v 1.9 1996-04-25 16:35:39 cg Exp $'
 ! !