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-10 16:41:38 +0000
committerStijn Buys <ingar@osirion.org>2008-10-10 16:41:38 +0000
commit02fcd22d8cde355aa898a8c6bb4773d9434b8e9a (patch)
tree9397f1f5b61a0978acadc4c15fd330ee7138c59b /src/ui/definitions.h
parent4331f5c17901f46693dcb5c2df96276f6851be25 (diff)
adds KeyPress, DevInfo and Stats widgets
Diffstat (limited to 'src/ui/definitions.h')
-rw-r--r--src/ui/definitions.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ui/definitions.h b/src/ui/definitions.h
new file mode 100644
index 0000000..d5d7fe9
--- /dev/null
+++ b/src/ui/definitions.h
@@ -0,0 +1,28 @@
+/*
+ ui/definitions.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_UI_DEFINITIONS_H__
+#define __INCLUDED_UI_DEFINITIONS_H__
+
+namespace ui {
+
+enum Alignment {
+ AlignAuto = 0x0000,
+ AlignLeft = 0x0001,
+ AlignHCenter = 0x0002,
+ AlignRight = 0x0004,
+
+ AlignTop = 0x0010,
+ AlignVCenter = 0x0020,
+ AlignBottom = 0x0040,
+
+ AlignCenter = AlignHCenter | AlignVCenter
+};
+
+}
+
+#endif // __INCLUDED_UI_DEFINITIONS_H__
+