CodeViewTheme.st
branchjv
changeset 6853 08ec6f06d76f
parent 6360 1091acf82a3e
child 6854 1f5ae7573af6
equal deleted inserted replaced
6852:fa1eaaf3f69f 6853:08ec6f06d76f
     1 "
     1 "
     2  COPYRIGHT (c) 2018 Jan Vrany
     2  COPYRIGHT (c) 2018 Jan Vrany
       
     3  COPYRIGHT (c) 2021 LabWare
     3               All Rights Reserved
     4               All Rights Reserved
     4 
     5 
     5  This software is furnished under a license and may be used
     6  This software is furnished under a license and may be used
     6  only in accordance with the terms of that license and with the
     7  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     8  inclusion of the above copyright notice.   This software may not
    23 !CodeViewTheme class methodsFor:'documentation'!
    24 !CodeViewTheme class methodsFor:'documentation'!
    24 
    25 
    25 copyright
    26 copyright
    26 "
    27 "
    27  COPYRIGHT (c) 2018 Jan Vrany
    28  COPYRIGHT (c) 2018 Jan Vrany
       
    29  COPYRIGHT (c) 2021 LabWare
    28               All Rights Reserved
    30               All Rights Reserved
    29 
    31 
    30  This software is furnished under a license and may be used
    32  This software is furnished under a license and may be used
    31  only in accordance with the terms of that license and with the
    33  only in accordance with the terms of that license and with the
    32  inclusion of the above copyright notice.   This software may not
    34  inclusion of the above copyright notice.   This software may not
    90     "Created: / 31-03-1998 / 15:16:40 / cg"
    92     "Created: / 31-03-1998 / 15:16:40 / cg"
    91     "Modified: / 01-04-1998 / 13:19:55 / cg"
    93     "Modified: / 01-04-1998 / 13:19:55 / cg"
    92     "Modified: / 20-12-2017 / 22:12:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    94     "Modified: / 20-12-2017 / 22:12:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    93 !
    95 !
    94 
    96 
    95 assignmentHighlightEmphasis
       
    96     ^ Array with:(#backgroundColor -> Color lightGray)
       
    97 
       
    98     "Created: / 15-12-2017 / 22:37:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    99 !
       
   100 
       
   101 badIdentifierColor
    97 badIdentifierColor
   102     "the color used for illegal identifiers;
    98     "the color used for illegal identifiers;
   103      If syntaxColoring is turned on."
    99      If syntaxColoring is turned on."
   104 
   100 
   105     ^ self identifierColor
   101     ^ self identifierColor
   904     "
   900     "
   905 
   901 
   906     "Created: / 17-02-2011 / 14:18:01 / cg"
   902     "Created: / 17-02-2011 / 14:18:01 / cg"
   907 ! !
   903 ! !
   908 
   904 
       
   905 !CodeViewTheme methodsFor:'styles - navigation'!
       
   906 
       
   907 assignmentHighlightBackround
       
   908     ^ self variableHighlightBackground
       
   909 
       
   910     "Created: / 15-09-2021 / 21:28:41 / Jan Vrany <jan.vrany@labware.com>"
       
   911 !
       
   912 
       
   913 assignmentHighlightEmphasis
       
   914     ^ Array with:(#backgroundColor -> self assignmentHighlightBackround)
       
   915 
       
   916     "Created: / 15-12-2017 / 22:49:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   917     "Modified: / 15-09-2021 / 21:27:31 / Jan Vrany <jan.vrany@labware.com>"
       
   918 !
       
   919 
       
   920 selectorHighlightBackground
       
   921     ^ Color blue lighter lighter
       
   922 !
       
   923 
       
   924 selectorHighlightEmphasis
       
   925     ^ Array with:(#backgroundColor ->self selectorHighlightBackground)
       
   926 
       
   927     "Created: / 15-12-2017 / 22:49:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   928     "Modified: / 15-09-2021 / 21:30:06 / Jan Vrany <jan.vrany@labware.com>"
       
   929 !
       
   930 
       
   931 variableHighlightBackground
       
   932     ^ Color lightGray
       
   933 !
       
   934 
       
   935 variableHighlightEmphasis
       
   936     ^ Array with:(#backgroundColor -> self variableHighlightBackground)
       
   937 
       
   938     "Created: / 15-12-2017 / 22:49:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   939     "Modified: / 15-09-2021 / 21:29:47 / Jan Vrany <jan.vrany@labware.com>"
       
   940 ! !
       
   941 
   909 !CodeViewTheme class methodsFor:'documentation'!
   942 !CodeViewTheme class methodsFor:'documentation'!
   910 
   943 
   911 version_HG
   944 version_HG
   912 
   945 
   913     ^ '$Changeset: <not expanded> $'
   946     ^ '$Changeset: <not expanded> $'