ListView.st
changeset 586 032b3245e53a
parent 566 ba9b486ff769
child 587 19deffec383d
--- a/ListView.st	Thu Apr 25 19:26:41 1996 +0200
+++ b/ListView.st	Thu Apr 25 19:34:16 1996 +0200
@@ -92,7 +92,7 @@
     code will be totally removed here and the inherited functionality be used in the next version.
 
 
-    Instance variables:
+    [Instance variables:]
 
       list            <aCollection>           the text strings
 
@@ -100,9 +100,9 @@
       leftOffset      <Number>                left offset for horizontal scroll
 
       nFullLinesShown <Number>                the number of unclipped lines in visible area
-					      (internal; updated on size changes)
+                                              (internal; updated on size changes)
       nLinesShown     <Number>                the number of lines in visible area, incl. partial
-					      (internal; updated on size changes)
+                                              (internal; updated on size changes)
 
       fgColor         <Color>                 color to draw characters
       bgColor         <Color>                 the background
@@ -121,33 +121,40 @@
       lineSpacing     <Number>                pixels between lines
       searchPattern   <String>                last pattern for searching
       wordCheck       <Block>                 rule used for check for word boundaries in word select
-					      The default rule is to return true for alphaNumeric characters.
-					      (can be changed to allow for underscore and other
-					       characters to be treated as alphaCharacters)
+                                              The default rule is to return true for alphaNumeric characters.
+                                              (can be changed to allow for underscore and other
+                                               characters to be treated as alphaCharacters)
 
       autoScrollBlock <Block>                 block installed as timeoutBlock when doing an
-					      autoScroll (internal)
+                                              autoScroll (internal)
       autoScrollDeltaT                        computed scroll time delta in seconds (internal)
 
       includesNonStrings                      cached flag if any non-strings are in list
       widthOfWidestLine                       cached width of widest line
       listMsg                                 if view has a model and listMsg is non-nil,
-					      this is sent to the model to aquired a new contents
-					      whenever a change of the aspect  (aspectMsg) occurs.
+                                              this is sent to the model to aquired a new contents
+                                              whenever a change of the aspect  (aspectMsg) occurs.
 
       viewOrigin                              the current origin 
 
       menuHolder                              who has a menu 
-					      (default: nil or model here, self in textViews)
+                                              (default: nil or model here, self in textViews)
       menuPerformer                           who performs menu actions
-					      (default: nil or model here, self in textViews)
-
-    StyleSheet parameters:
+                                              (default: nil or model here, self in textViews)
+
+    [StyleSheet parameters:]
 
       textForegroundColor                defaults to Black
       textBackgroundColor                defaults to White
       textFont                           defaults to defaultFont
       textTabPositions                   defaults to #(1 9 17 25 ...)
+
+    [author:]
+        Claus Gittinger
+
+    [see also:]
+        TextView EditTextView
+        
 "
 !
 
@@ -2963,5 +2970,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.76 1996-04-20 17:31:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.77 1996-04-25 17:32:39 cg Exp $'
 ! !