summaryrefslogtreecommitdiff
path: root/src/interface/Appearance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interface/Appearance.cpp')
-rw-r--r--src/interface/Appearance.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/interface/Appearance.cpp b/src/interface/Appearance.cpp
new file mode 100644
index 0000000..c089d76
--- /dev/null
+++ b/src/interface/Appearance.cpp
@@ -0,0 +1,32 @@
+//
+// Appearance.cpp
+// The Powder Toy
+//
+// Created by Simon Robertshaw on 15/05/2012.
+//
+
+#include <iostream>
+#include "Appearance.h"
+
+namespace ui
+{
+ Appearance::Appearance():
+ HorizontalAlign(AlignCentre),
+ VerticalAlign(AlignMiddle),
+
+ BackgroundHover(30, 30, 30),
+ BackgroundInactive(0, 0, 0),
+ BackgroundActive(255, 255, 255),
+
+ TextHover(255, 255, 255),
+ TextInactive(255, 255, 255),
+ TextActive(0, 0, 0),
+
+ BorderHover(255, 255, 255),
+ BorderInactive(200, 200, 200),
+ BorderActive(255, 255, 255),
+ Margin(1, 4),
+
+ icon(NoIcon)
+ {};
+} \ No newline at end of file