Crazy Eddies GUI System
0.7.7
Main Page
Related Pages
Namespaces
Classes
Files
File List
cegui
include
falagard
CEGUIFalEnums.h
1
/***********************************************************************
2
filename: CEGUIFalEnums.h
3
created: Mon Jun 13 2005
4
author: Paul D Turner <paul@cegui.org.uk>
5
*************************************************************************/
6
/***************************************************************************
7
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
8
*
9
* Permission is hereby granted, free of charge, to any person obtaining
10
* a copy of this software and associated documentation files (the
11
* "Software"), to deal in the Software without restriction, including
12
* without limitation the rights to use, copy, modify, merge, publish,
13
* distribute, sublicense, and/or sell copies of the Software, and to
14
* permit persons to whom the Software is furnished to do so, subject to
15
* the following conditions:
16
*
17
* The above copyright notice and this permission notice shall be
18
* included in all copies or substantial portions of the Software.
19
*
20
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26
* OTHER DEALINGS IN THE SOFTWARE.
27
***************************************************************************/
28
#ifndef _CEGUIFalEnums_h_
29
#define _CEGUIFalEnums_h_
30
31
// Start of CEGUI namespace section
32
namespace
CEGUI
33
{
38
enum
DimensionType
39
{
40
DT_LEFT_EDGE
,
41
DT_X_POSITION
,
42
DT_TOP_EDGE
,
43
DT_Y_POSITION
,
44
DT_RIGHT_EDGE
,
45
DT_BOTTOM_EDGE
,
46
DT_WIDTH
,
47
DT_HEIGHT
,
48
DT_X_OFFSET
,
49
DT_Y_OFFSET
,
50
DT_INVALID
51
};
52
57
enum
VerticalFormatting
58
{
59
VF_TOP_ALIGNED
,
60
VF_CENTRE_ALIGNED
,
61
VF_BOTTOM_ALIGNED
,
62
VF_STRETCHED
,
63
VF_TILED
64
};
65
70
enum
HorizontalFormatting
71
{
72
HF_LEFT_ALIGNED
,
73
HF_CENTRE_ALIGNED
,
74
HF_RIGHT_ALIGNED
,
75
HF_STRETCHED
,
76
HF_TILED
77
};
78
83
enum
VerticalTextFormatting
84
{
85
VTF_TOP_ALIGNED
,
86
VTF_CENTRE_ALIGNED
,
87
VTF_BOTTOM_ALIGNED
88
};
89
94
enum
HorizontalTextFormatting
95
{
96
HTF_LEFT_ALIGNED
,
97
HTF_RIGHT_ALIGNED
,
98
HTF_CENTRE_ALIGNED
,
99
HTF_JUSTIFIED
,
100
HTF_WORDWRAP_LEFT_ALIGNED
,
101
HTF_WORDWRAP_RIGHT_ALIGNED
,
102
HTF_WORDWRAP_CENTRE_ALIGNED
,
103
HTF_WORDWRAP_JUSTIFIED
104
};
105
110
enum
FontMetricType
111
{
112
FMT_LINE_SPACING
,
113
FMT_BASELINE
,
114
FMT_HORZ_EXTENT
115
};
116
121
enum
DimensionOperator
122
{
123
DOP_NOOP
,
124
DOP_ADD
,
125
DOP_SUBTRACT
,
126
DOP_MULTIPLY
,
127
DOP_DIVIDE
128
};
129
134
enum
FrameImageComponent
135
{
136
FIC_BACKGROUND
,
137
FIC_TOP_LEFT_CORNER
,
138
FIC_TOP_RIGHT_CORNER
,
139
FIC_BOTTOM_LEFT_CORNER
,
140
FIC_BOTTOM_RIGHT_CORNER
,
141
FIC_LEFT_EDGE
,
142
FIC_RIGHT_EDGE
,
143
FIC_TOP_EDGE
,
144
FIC_BOTTOM_EDGE
,
145
FIC_FRAME_IMAGE_COUNT
146
};
147
148
}
// End of CEGUI namespace section
149
150
151
#endif // end of guard _CEGUIFalEnums_h_
Generated by
1.8.3.1