Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: ea3e040cd84d87f2b3dada968a92a1f4dfd254f6 (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
30
31
/*
   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
};

const float			 pointer_size = 48.0f;

}

#endif //  __INCLUDED_UI_DEFINITIONS_H__