Tools__CodeNavigationService.st
changeset 12485 bb59f9f6c001
parent 12353 9d725076871b
child 12486 0a82f2fcb6b3
equal deleted inserted replaced
12484:9d1e9ec9c62b 12485:bb59f9f6c001
    85 !CodeNavigationService class methodsFor:'accessing - defaults'!
    85 !CodeNavigationService class methodsFor:'accessing - defaults'!
    86 
    86 
    87 defaultSelectorEmphasis
    87 defaultSelectorEmphasis
    88     DefaultSelectorEmphasis isNil ifTrue:[
    88     DefaultSelectorEmphasis isNil ifTrue:[
    89         DefaultSelectorEmphasis :=
    89         DefaultSelectorEmphasis :=
    90              Array with:(#backgroundColor -> (Color rgbValue:16rADD9FF "16rDBEEFF"))
    90              Array with:(#backgroundColor -> (UserPreferences current selectorBackgroundColorForNavigationService))
    91     ].
    91     ].
    92     ^ DefaultSelectorEmphasis
    92     ^ DefaultSelectorEmphasis
    93 
    93 
    94     "Modified: / 21-08-2011 / 09:58:18 / cg"
    94     "Modified: / 21-08-2011 / 09:58:18 / cg"
    95 !
    95 !
    96 
    96 
    97 defaultVariableEmphasis
    97 defaultVariableEmphasis
    98     DefaultVariableEmphasis isNil ifTrue:[
    98     DefaultVariableEmphasis isNil ifTrue:[
    99         DefaultVariableEmphasis := Array with:(#backgroundColor -> (Color gray: 80 "90"))
    99         DefaultVariableEmphasis := Array with:(#backgroundColor -> (UserPreferences current variableBackgroundColorForNavigationService))
   100     ].
   100     ].
   101     ^ DefaultVariableEmphasis
   101     ^ DefaultVariableEmphasis
   102 
   102 
   103     "Created: / 25-06-2010 / 13:56:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   103     "Created: / 25-06-2010 / 13:56:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   104     "Modified: / 21-08-2011 / 11:04:20 / cg"
   104     "Modified: / 21-08-2011 / 11:04:20 / cg"
   624 ! !
   624 ! !
   625 
   625 
   626 !CodeNavigationService class methodsFor:'documentation'!
   626 !CodeNavigationService class methodsFor:'documentation'!
   627 
   627 
   628 version_CVS
   628 version_CVS
   629     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeNavigationService.st,v 1.20 2013-01-30 17:54:04 cg Exp $'
   629     ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeNavigationService.st,v 1.21 2013-03-19 19:22:13 cg Exp $'
   630 !
   630 !
   631 
   631 
   632 version_SVN
   632 version_SVN
   633     ^ '§Id: Tools__CodeNavigationService.st 7788 2011-06-17 07:57:48Z vranyj1 §'
   633     ^ '§Id: Tools__CodeNavigationService.st 7788 2011-06-17 07:57:48Z vranyj1 §'
   634 ! !
   634 ! !