ListView.st
changeset 911 22a930d19a9b
parent 909 be8e88881f4d
child 919 f74955edb307
--- a/ListView.st	Fri Jan 03 03:05:13 1997 +0100
+++ b/ListView.st	Fri Jan 03 03:23:33 1997 +0100
@@ -99,9 +99,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
@@ -120,27 +120,22 @@
       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)
-      menuPerformer                           who performs menu actions
-					      (default: nil or model here, self in textViews)
-
     [StyleSheet parameters:]
 
       textForegroundColor                defaults to Black
@@ -149,10 +144,10 @@
       textTabPositions                   defaults to #(1 9 17 25 ...)
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 
     [see also:]
-	TextView EditTextView
+        TextView EditTextView
         
 "
 !
@@ -3452,5 +3447,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.113 1997-01-02 16:32:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.114 1997-01-03 02:23:33 stefan Exp $'
 ! !