TerminalView.st
changeset 5164 ea62d7ad1bf9
parent 5156 5d9fc3da65f1
child 5197 4c7442c47ab5
child 5223 38366ed20368
equal deleted inserted replaced
5163:955f893d03f2 5164:ea62d7ad1bf9
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 1998 by eXept Software AG
     4  COPYRIGHT (c) 1998 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
  2105         'VT100: no shell' infoPrintCR.
  2107         'VT100: no shell' infoPrintCR.
  2106     ].
  2108     ].
  2107 !
  2109 !
  2108 
  2110 
  2109 setGreenDisplayMode
  2111 setGreenDisplayMode
  2110     self foregroundColor:Color green backgroundColor:Color black.
  2112     self foregroundColor:Color green backgroundColor:self blackColor.
  2111     self cursorForegroundColor:Color black backgroundColor:Color green.
  2113     self cursorForegroundColor:self blackColor backgroundColor:Color green.
  2112 !
  2114 !
  2113 
  2115 
  2114 setNormalDisplayMode
  2116 setNormalDisplayMode
  2115     self foregroundColor:Color black backgroundColor:Color white.
  2117     self foregroundColor:self blackColor backgroundColor:self whiteColor.
  2116     self cursorForegroundColor:Color white backgroundColor:Color black.
  2118     self cursorForegroundColor:self whiteColor backgroundColor:self blackColor.
  2117 !
  2119 !
  2118 
  2120 
  2119 setRedDisplayMode
  2121 setRedDisplayMode
  2120     self foregroundColor:(Color white) backgroundColor:(Color red:80).
  2122     self foregroundColor:(self whiteColor) backgroundColor:(Color red:80).
  2121     self cursorForegroundColor:(Color red:80) backgroundColor:(Color white).
  2123     self cursorForegroundColor:(Color red:80) backgroundColor:(self whiteColor).
  2122 !
  2124 !
  2123 
  2125 
  2124 setReverseDisplayMode
  2126 setReverseDisplayMode
  2125     |fg bg|
  2127     |fg bg|
  2126 
  2128