From 02fcd22d8cde355aa898a8c6bb4773d9434b8e9a Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 10 Oct 2008 16:41:38 +0000 Subject: adds KeyPress, DevInfo and Stats widgets --- src/ui/definitions.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/ui/definitions.h (limited to 'src/ui/definitions.h') 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__ + -- cgit v1.2.3