blob: e04082fe08ee36a621082990a04262a03f0d75a0 (
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__
|