Tools__CodeView2.st
changeset 15130 1e1510171b15
parent 14997 df3528dd1c58
child 15170 a4ce93833783
equal deleted inserted replaced
15129:4a6a102aa0dd 15130:1e1510171b15
    26 "{ Package: 'stx:libtool' }"
    26 "{ Package: 'stx:libtool' }"
    27 
    27 
    28 "{ NameSpace: Tools }"
    28 "{ NameSpace: Tools }"
    29 
    29 
    30 SimpleView subclass:#CodeView2
    30 SimpleView subclass:#CodeView2
    31         instanceVariableNames:'gutterView textView textViewScroller methodHolder languageHolder
    31 	instanceVariableNames:'gutterView textView textViewScroller methodHolder languageHolder
    32                 classHolder browserHolder codeAspect modifiedChannel
    32 		classHolder browserHolder codeAspect modifiedChannel
    33                 showGutterChannel showAcceptCancelBarChannel modeHolder services
    33 		showGutterChannel showAcceptCancelBarChannel modeHolder services
    34                 servicesFromClient syntaxElements currentParseNodeHolder
    34 		servicesFromClient syntaxElements currentParseNodeHolder
    35                 currentBlockNodeHolder syntaxElementSelection highlightEmphasis
    35 		currentBlockNodeHolder syntaxElementSelection highlightEmphasis
    36                 diffMode synchronizedCodeViews'
    36 		diffMode synchronizedCodeViews'
    37         classVariableNames:'TraceSelectors'
    37 	classVariableNames:'TraceSelectors'
    38         poolDictionaries:''
    38 	poolDictionaries:''
    39         category:'Interface-CodeView'
    39 	category:'Interface-CodeView'
    40 !
    40 !
    41 
    41 
    42 AbstractBackground subclass:#AnnotationShowingScrollerBackground
    42 AbstractBackground subclass:#AnnotationShowingScrollerBackground
    43         instanceVariableNames:'annotations textView'
    43 	instanceVariableNames:'annotations textView'
    44         classVariableNames:''
    44 	classVariableNames:''
    45         poolDictionaries:''
    45 	poolDictionaries:''
    46         privateIn:CodeView2
    46 	privateIn:CodeView2
    47 !
    47 !
    48 
    48 
    49 SimpleView subclass:#GutterView
    49 SimpleView subclass:#GutterView
    50         instanceVariableNames:'codeView textView textViewScroller widthAcceptCancel
    50 	instanceVariableNames:'codeView textView textViewScroller widthAcceptCancel
    51                 widthAnnotations widthDiffInfo numberOfLines acceptColor
    51 		widthAnnotations widthDiffInfo numberOfLines acceptColor
    52                 cancelColor diffColor menuHolder currentBlockNodeHolder
    52 		cancelColor diffColor menuHolder currentBlockNodeHolder
    53                 showLineNumbers blockWaitingForPossibleDoubleClick'
    53 		showLineNumbers blockWaitingForPossibleDoubleClick'
    54         classVariableNames:''
    54 	classVariableNames:''
    55         poolDictionaries:''
    55 	poolDictionaries:''
    56         privateIn:CodeView2
    56 	privateIn:CodeView2
    57 !
    57 !
    58 
    58 
    59 CodeView subclass:#TextView
    59 CodeView subclass:#TextView
    60         instanceVariableNames:'listOriginal codeView gutterView diffMode deletedLines
    60 	instanceVariableNames:'listOriginal codeView gutterView diffMode deletedLines
    61                 insertedLines lastFirstLine changedLines scrollInProgress
    61 		insertedLines lastFirstLine changedLines scrollInProgress
    62                 originDiffText emptyLines changedDiffText suppressNotifications
    62 		originDiffText emptyLines changedDiffText suppressNotifications
    63                 reallyModifiedChannel'
    63 		reallyModifiedChannel'
    64         classVariableNames:''
    64 	classVariableNames:''
    65         poolDictionaries:''
    65 	poolDictionaries:''
    66         privateIn:CodeView2
    66 	privateIn:CodeView2
    67 !
    67 !
    68 
    68 
    69 !CodeView2 class methodsFor:'documentation'!
    69 !CodeView2 class methodsFor:'documentation'!
    70 
    70 
    71 copyright
    71 copyright
  3045 
  3045 
  3046     "Created: / 26-04-2010 / 20:30:19 / Jakub <zelenja7@fel.cvut.cz>"
  3046     "Created: / 26-04-2010 / 20:30:19 / Jakub <zelenja7@fel.cvut.cz>"
  3047     "Modified: / 02-05-2010 / 19:13:32 / Jakub <zelenja7@fel.cvut.cz>"
  3047     "Modified: / 02-05-2010 / 19:13:32 / Jakub <zelenja7@fel.cvut.cz>"
  3048 !
  3048 !
  3049 
  3049 
       
  3050 codeView
       
  3051     ^ codeView
       
  3052 !
       
  3053 
  3050 contents: text
  3054 contents: text
  3051 
  3055 
  3052     super contents: text.
  3056     super contents: text.
  3053     reallyModifiedChannel value: false.
  3057     reallyModifiedChannel value: false.
  3054 
  3058 
  4219 ! !
  4223 ! !
  4220 
  4224 
  4221 !CodeView2 class methodsFor:'documentation'!
  4225 !CodeView2 class methodsFor:'documentation'!
  4222 
  4226 
  4223 version
  4227 version
  4224     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
  4228     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
  4225 !
  4229 !
  4226 
  4230 
  4227 version_CVS
  4231 version_CVS
  4228     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
  4232     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
  4229 !
  4233 !
  4230 
  4234 
  4231 version_SVN
  4235 version_SVN
  4232     ^ '$Id: Tools__CodeView2.st,v 1.181 2014-12-05 13:40:12 cg Exp $'
  4236     ^ '$Id: Tools__CodeView2.st,v 1.182 2015-01-31 02:00:20 cg Exp $'
  4233 ! !
  4237 ! !
  4234 
  4238 
  4235 
  4239 
  4236 CodeView2 initialize!
  4240 CodeView2 initialize!