diff -r 8f395aba0173 -r 032b3245e53a ListView.st --- 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 the text strings @@ -100,9 +100,9 @@ leftOffset left offset for horizontal scroll nFullLinesShown the number of unclipped lines in visible area - (internal; updated on size changes) + (internal; updated on size changes) nLinesShown the number of lines in visible area, incl. partial - (internal; updated on size changes) + (internal; updated on size changes) fgColor color to draw characters bgColor the background @@ -121,33 +121,40 @@ lineSpacing pixels between lines searchPattern last pattern for searching wordCheck 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 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 $' ! !