introduce statictext

This commit is contained in:
Henrique Santiago
2011-12-29 15:45:59 -02:00
parent ad82c549b8
commit d67442dc49
13 changed files with 234 additions and 12 deletions

View File

@@ -51,7 +51,8 @@ namespace Fw
darkTeal = 0xff808000,
gray = 0xffa0a0a0,
darkGray = 0xff808080,
lightGray = 0xffc0c0c0
lightGray = 0xffc0c0c0,
orange = 0xffff8c00
};
enum Key : uint8 {

View File

@@ -153,6 +153,8 @@ inline std::istream& operator>>(std::istream& in, Color& color)
color = Fw::darkGray;
} else if(tmp == "lightGray") {
color = Fw::lightGray;
} else if(tmp == "orange") {
color = Fw::orange;
} else {
in.seekg(-tmp.length(), ios_base::cur);
}