summaryrefslogtreecommitdiff
path: root/src/smlrenderervt100.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/smlrenderervt100.h')
-rw-r--r--src/smlrenderervt100.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/smlrenderervt100.h b/src/smlrenderervt100.h
index ed5dd42..0f82ca9 100644
--- a/src/smlrenderervt100.h
+++ b/src/smlrenderervt100.h
@@ -14,8 +14,15 @@ public:
14private: 14private:
15 enum Style 15 enum Style
16 { 16 {
17 stNone = 0x000000,
18
17 stRed = 0x010001, 19 stRed = 0x010001,
18 stGreen = 0x010002, 20 stGreen = 0x010002,
21 stYellow = 0x010003,
22 stBlue = 0x010004,
23 stMagenta = 0x010005,
24 stCyan = 0x010006,
25 stWhite = 0x010007,
19 26
20 stColor = 0x01000f, 27 stColor = 0x01000f,
21 28
@@ -27,6 +34,7 @@ private:
27 void appendToken( Bu::Formatter &f, Bu::String &sCurLine, 34 void appendToken( Bu::Formatter &f, Bu::String &sCurLine,
28 Bu::String &sNextToken, int &iLineLen, int &iNextLen ); 35 Bu::String &sNextToken, int &iLineLen, int &iNextLen );
29 Bu::String getStyle( const StyleStack &sStyle ); 36 Bu::String getStyle( const StyleStack &sStyle );
37 Style strToStyle( const Bu::String &sStyle );
30}; 38};
31 39
32#endif 40#endif