Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: b9b4e3c17d6de4ec1a5e3d0bf71e4d2bcf826179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
   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__