Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-07 17:14:27 +0000
committerStijn Buys <ingar@osirion.org>2008-10-07 17:14:27 +0000
commitf54bd48a884e4e3c95818f042a4b2418a6e070a4 (patch)
tree73e82729a2f97b58e94ffd6944ac1ad47bf8314e /src/ui/palette.h
parentf8d1ee921c83b7b148883b3ee16e4ec9c776d6db (diff)
working button click
Diffstat (limited to 'src/ui/palette.h')
-rw-r--r--src/ui/palette.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/palette.h b/src/ui/palette.h
index 1b9eeb8..edd738f 100644
--- a/src/ui/palette.h
+++ b/src/ui/palette.h
@@ -20,12 +20,16 @@ public:
void set_foreground(math::Color const &color);
+ void set_highlight(math::Color const &color);
+
void set_background(math::Color const &color);
void set_border(math::Color const &color);
inline math::Color const &foreground() const { return palette_foreground; }
+ inline math::Color const &highlight() const { return palette_highlight; }
+
inline math::Color const &background() const { return palette_background; }
inline math::Color const &border() const { return palette_border; }
@@ -33,6 +37,7 @@ public:
private:
math::Color palette_foreground;
+ math::Color palette_highlight;
math::Color palette_background;
math::Color palette_border;
};