TextView.st
changeset 1729 71462ffec5e3
parent 1728 516cb89919f1
child 1750 d87cc464fde2
equal deleted inserted replaced
1728:516cb89919f1 1729:71462ffec5e3
    14 	instanceVariableNames:'selectionStartLine selectionStartCol selectionEndLine
    14 	instanceVariableNames:'selectionStartLine selectionStartCol selectionEndLine
    15 		selectionEndCol clickStartLine clickStartCol clickLine clickCol
    15 		selectionEndCol clickStartLine clickStartCol clickLine clickCol
    16 		clickCount expandingTop wordStartCol wordStartLine wordEndCol
    16 		clickCount expandingTop wordStartCol wordStartLine wordEndCol
    17 		wordEndLine selectionFgColor selectionBgColor selectStyle
    17 		wordEndLine selectionFgColor selectionBgColor selectStyle
    18 		directoryForFileDialog defaultFileNameForFileDialog
    18 		directoryForFileDialog defaultFileNameForFileDialog
    19 		externalEncoding contentsWasSaved
    19 		externalEncoding contentsWasSaved lastSearchPattern
    20 		lastSearchPattern lastSearchIgnoredCase lastSearchDirection'
    20 		lastSearchIgnoredCase lastSearchDirection'
    21 	classVariableNames:'DefaultViewBackground DefaultSelectionForegroundColor
    21 	classVariableNames:'DefaultViewBackground DefaultSelectionForegroundColor
    22 		DefaultSelectionBackgroundColor MatchDelayTime
    22 		DefaultSelectionBackgroundColor MatchDelayTime
    23 		WordSelectCatchesBlanks ST80Selections LastSearchPatterns'
    23 		WordSelectCatchesBlanks ST80Selections LastSearchPatterns'
    24 	poolDictionaries:''
    24 	poolDictionaries:''
    25 	category:'Views-Text'
    25 	category:'Views-Text'
   203 
   203 
   204 defaultViewBackgroundColor
   204 defaultViewBackgroundColor
   205     "return the default view background"
   205     "return the default view background"
   206 
   206 
   207     ^DefaultViewBackground
   207     ^DefaultViewBackground
       
   208 !
       
   209 
       
   210 st80SelectMode
       
   211     ^ ST80Selections
       
   212 
       
   213     "Modified: / 6.1.1999 / 14:19:26 / cg"
       
   214 !
       
   215 
       
   216 st80SelectMode:aBoolean
       
   217     ST80Selections := aBoolean
       
   218 
       
   219     "Created: / 7.1.1999 / 13:35:24 / cg"
   208 !
   220 !
   209 
   221 
   210 updateStyleCache
   222 updateStyleCache
   211     "extract values from the styleSheet and cache them in class variables"
   223     "extract values from the styleSheet and cache them in class variables"
   212 
   224 
  2885 ! !
  2897 ! !
  2886 
  2898 
  2887 !TextView class methodsFor:'documentation'!
  2899 !TextView class methodsFor:'documentation'!
  2888 
  2900 
  2889 version
  2901 version
  2890     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.124 1999-01-07 12:09:16 cg Exp $'
  2902     ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.125 1999-01-07 13:24:21 cg Exp $'
  2891 ! !
  2903 ! !