Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 02698f48eff4f17a0d7df8591b3699d956edc79d (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
32
33
34
35
36
/*
   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__

#include <string>
#include <deque>

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;

typedef std::deque<std::string> Text;

}

#endif //  __INCLUDED_UI_DEFINITIONS_H__