File: CEGUIFalEnums_8h_source.html

package info (click to toggle)
cegui-mk2 0.7.6-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 105,384 kB
  • sloc: cpp: 142,729; ansic: 27,984; sh: 11,010; makefile: 2,275; python: 916; xml: 17
file content (204 lines) | stat: -rw-r--r-- 28,189 bytes parent folder | download | duplicates (2)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Crazy Eddies GUI System: CEGUIFalEnums.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
  if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
  if (hasClass(ele,cls)) {
    var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
    ele.className=ele.className.replace(reg,' ');
  }
}

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Crazy Eddies GUI System&#160;<span id="projectnumber">0.7.6</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="files.html"><span>File&#160;List</span></a></li>
    </ul>
  </div>
<div class="header">
  <div class="headertitle">
<div class="title">CEGUIFalEnums.h</div>  </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment">    filename:   CEGUIFalEnums.h</span>
<a name="l00003"></a>00003 <span class="comment">    created:    Mon Jun 13 2005</span>
<a name="l00004"></a>00004 <span class="comment">    author:     Paul D Turner &lt;paul@cegui.org.uk&gt;</span>
<a name="l00005"></a>00005 <span class="comment">*************************************************************************/</span>
<a name="l00006"></a>00006 <span class="comment">/***************************************************************************</span>
<a name="l00007"></a>00007 <span class="comment"> *   Copyright (C) 2004 - 2006 Paul D Turner &amp; The CEGUI Development Team</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> *   Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00010"></a>00010 <span class="comment"> *   a copy of this software and associated documentation files (the</span>
<a name="l00011"></a>00011 <span class="comment"> *   &quot;Software&quot;), to deal in the Software without restriction, including</span>
<a name="l00012"></a>00012 <span class="comment"> *   without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00013"></a>00013 <span class="comment"> *   distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00014"></a>00014 <span class="comment"> *   permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00015"></a>00015 <span class="comment"> *   the following conditions:</span>
<a name="l00016"></a>00016 <span class="comment"> *</span>
<a name="l00017"></a>00017 <span class="comment"> *   The above copyright notice and this permission notice shall be</span>
<a name="l00018"></a>00018 <span class="comment"> *   included in all copies or substantial portions of the Software.</span>
<a name="l00019"></a>00019 <span class="comment"> *</span>
<a name="l00020"></a>00020 <span class="comment"> *   THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00021"></a>00021 <span class="comment"> *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00022"></a>00022 <span class="comment"> *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00023"></a>00023 <span class="comment"> *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00024"></a>00024 <span class="comment"> *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00025"></a>00025 <span class="comment"> *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00026"></a>00026 <span class="comment"> *   OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00027"></a>00027 <span class="comment"> ***************************************************************************/</span>
<a name="l00028"></a>00028 <span class="preprocessor">#ifndef _CEGUIFalEnums_h_</span>
<a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIFalEnums_h_</span>
<a name="l00030"></a>00030 <span class="preprocessor"></span>
<a name="l00031"></a>00031 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00032"></a>00032 <span class="keyword">namespace </span>CEGUI
<a name="l00033"></a>00033 {
<a name="l00038"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059">00038</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059" title="Enumeration of possible values to indicate what a given dimension represents.">DimensionType</a>
<a name="l00039"></a>00039     {
<a name="l00040"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ac4950c2f33543fc84c57b57b44dcb8f5">00040</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ac4950c2f33543fc84c57b57b44dcb8f5" title="Dimension represents the left edge of some entity (same as DT_X_POSITION).">DT_LEFT_EDGE</a>,       
<a name="l00041"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a82e777061316ead35d2a0ae9b9c222f7">00041</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a82e777061316ead35d2a0ae9b9c222f7" title="Dimension represents the x position of some entity (same as DT_LEFT_EDGE).">DT_X_POSITION</a>,      
<a name="l00042"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a3f8b829534f8299c9e44eb23efc2a926">00042</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a3f8b829534f8299c9e44eb23efc2a926" title="Dimension represents the top edge of some entity (same as DT_Y_POSITION).">DT_TOP_EDGE</a>,        
<a name="l00043"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a77e4c63188eb14fee94538aaced700cb">00043</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a77e4c63188eb14fee94538aaced700cb" title="Dimension represents the y position of some entity (same as DT_TOP_EDGE).">DT_Y_POSITION</a>,      
<a name="l00044"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a71ad90f9b40c4ae1ee3a440f1d2e8dc3">00044</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a71ad90f9b40c4ae1ee3a440f1d2e8dc3" title="Dimension represents the right edge of some entity.">DT_RIGHT_EDGE</a>,      
<a name="l00045"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059afe9a75f956b4e9c802085ff473c0b0ec">00045</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059afe9a75f956b4e9c802085ff473c0b0ec" title="Dimension represents the bottom edge of some entity.">DT_BOTTOM_EDGE</a>,     
<a name="l00046"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a9fe19dc82f84f49174d5ae911c90176d">00046</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a9fe19dc82f84f49174d5ae911c90176d" title="Dimension represents the width of some entity.">DT_WIDTH</a>,           
<a name="l00047"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a4e03ce80376dcbda07c313a560bda429">00047</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a4e03ce80376dcbda07c313a560bda429" title="Dimension represents the height of some entity.">DT_HEIGHT</a>,          
<a name="l00048"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ad02ff4c83812c05f0358746d6fb5fc49">00048</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ad02ff4c83812c05f0358746d6fb5fc49" title="Dimension represents the x offset of some entity (usually only applies to an Image entity)...">DT_X_OFFSET</a>,        
<a name="l00049"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ac8962448e98f6230af5296b475139c80">00049</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059ac8962448e98f6230af5296b475139c80" title="Dimension represents the y offset of some entity (usually only applies to an Image entity)...">DT_Y_OFFSET</a>,        
<a name="l00050"></a><a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a6f104d823ed567945e22ad151a642b6a">00050</a>         <a class="code" href="namespaceCEGUI.html#ad6bcb4f4d32891fc48d05605b4c6b059a6f104d823ed567945e22ad151a642b6a" title="Invalid / uninitialised DimensionType.">DT_INVALID</a>          
<a name="l00051"></a>00051     };
<a name="l00052"></a>00052 
<a name="l00057"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98">00057</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98" title="Enumeration of possible values to indicate the vertical formatting to be used for an image component...">VerticalFormatting</a>
<a name="l00058"></a>00058     {
<a name="l00059"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98a3fb85513b40783c656b9eebcb391d760">00059</a>         <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98a3fb85513b40783c656b9eebcb391d760" title="Top of Image should be aligned with the top of the destination area.">VF_TOP_ALIGNED</a>,         
<a name="l00060"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98af68eea39a3703ec8c1e210fd6a052256">00060</a>         <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98af68eea39a3703ec8c1e210fd6a052256" title="Image should be vertically centred within the destination area.">VF_CENTRE_ALIGNED</a>,      
<a name="l00061"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98a208f2b822f20d34ca9542d4eb84098dd">00061</a>         <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98a208f2b822f20d34ca9542d4eb84098dd" title="Bottom of Image should be aligned with the bottom of the destination area.">VF_BOTTOM_ALIGNED</a>,      
<a name="l00062"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98aa29d33de51bf7bb8ee0958d0b85855ef">00062</a>         <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98aa29d33de51bf7bb8ee0958d0b85855ef" title="Image should be stretched vertically to fill the destination area.">VF_STRETCHED</a>,           
<a name="l00063"></a><a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98aeadfbb6db32c5f287d4f4dfd2e5cb0b3">00063</a>         <a class="code" href="namespaceCEGUI.html#abcc051c9002a0c4b5aef7b3c275d1d98aeadfbb6db32c5f287d4f4dfd2e5cb0b3" title="Image should be tiled vertically to fill the destination area (bottom-most tile may be clipped)...">VF_TILED</a>                
<a name="l00064"></a>00064     };
<a name="l00065"></a>00065 
<a name="l00070"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08">00070</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08" title="Enumeration of possible values to indicate the horizontal formatting to be used for an image componen...">HorizontalFormatting</a>
<a name="l00071"></a>00071     {
<a name="l00072"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a24731132b991bff795aaa582fd026f0b">00072</a>         <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a24731132b991bff795aaa582fd026f0b" title="Left of Image should be aligned with the left of the destination area.">HF_LEFT_ALIGNED</a>,        
<a name="l00073"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a4130ab8385e147382b619dabe092ed91">00073</a>         <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a4130ab8385e147382b619dabe092ed91" title="Image should be horizontally centred within the destination area.">HF_CENTRE_ALIGNED</a>,      
<a name="l00074"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a1d47d521278d03640c74535690b2ddb2">00074</a>         <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08a1d47d521278d03640c74535690b2ddb2" title="Right of Image should be aligned with the right of the destination area.">HF_RIGHT_ALIGNED</a>,       
<a name="l00075"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08aa1283b08463ede7cb6ef4d1f48445ca1">00075</a>         <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08aa1283b08463ede7cb6ef4d1f48445ca1" title="Image should be stretched horizontally to fill the destination area.">HF_STRETCHED</a>,           
<a name="l00076"></a><a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08aa85125b4da5dcf99a2c62ada2ac038e8">00076</a>         <a class="code" href="namespaceCEGUI.html#afc5f3c788be3972de90bf6f386613b08aa85125b4da5dcf99a2c62ada2ac038e8" title="Image should be tiled horizontally to fill the destination area (right-most tile may be clipped)...">HF_TILED</a>                
<a name="l00077"></a>00077     };
<a name="l00078"></a>00078 
<a name="l00083"></a><a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079">00083</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079" title="Enumeration of possible values to indicate the vertical formatting to be used for a text component...">VerticalTextFormatting</a>
<a name="l00084"></a>00084     {
<a name="l00085"></a><a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079a25f6e2e1218f0048825eb416b8f3a299">00085</a>         <a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079a25f6e2e1218f0048825eb416b8f3a299" title="Top of text should be aligned with the top of the destination area.">VTF_TOP_ALIGNED</a>,         
<a name="l00086"></a><a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079ac3ca8f95487b3149c1699a9c78fd27d0">00086</a>         <a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079ac3ca8f95487b3149c1699a9c78fd27d0" title="text should be vertically centred within the destination area.">VTF_CENTRE_ALIGNED</a>,      
<a name="l00087"></a><a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079ad37195df3f49d840cac0a69f30de9581">00087</a>         <a class="code" href="namespaceCEGUI.html#a19b33cf5bc5472259c143edbc3d77079ad37195df3f49d840cac0a69f30de9581" title="Bottom of text should be aligned with the bottom of the destination area.">VTF_BOTTOM_ALIGNED</a>       
<a name="l00088"></a>00088     };
<a name="l00089"></a>00089 
<a name="l00094"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5b">00094</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5b" title="Enumeration of possible values to indicate the horizontal formatting to be used for a text component...">HorizontalTextFormatting</a>
<a name="l00095"></a>00095     {
<a name="l00096"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baf52c42b4cb5f9512d10f040ba9832a71">00096</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baf52c42b4cb5f9512d10f040ba9832a71" title="Left of text should be aligned with the left of the destination area (single line of text only)...">HTF_LEFT_ALIGNED</a>,        
<a name="l00097"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba80f17d2037baf8a7a1ac411a373bdc07">00097</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba80f17d2037baf8a7a1ac411a373bdc07" title="Right of text should be aligned with the right of the destination area (single line of text only)...">HTF_RIGHT_ALIGNED</a>,       
<a name="l00098"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baf3e92dc808d91be901dc7b8929174307">00098</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baf3e92dc808d91be901dc7b8929174307" title="text should be horizontally centred within the destination area (single line of text only)...">HTF_CENTRE_ALIGNED</a>,      
<a name="l00099"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5bafa06c441e77b149e1263bb33192882da">00099</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5bafa06c441e77b149e1263bb33192882da" title="text should be spaced so that it takes the full width of the destination area (single line of text on...">HTF_JUSTIFIED</a>,           
<a name="l00100"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baff180a3a829c4833c8d7fb9fac718001">00100</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5baff180a3a829c4833c8d7fb9fac718001" title="Left of text should be aligned with the left of the destination area (word wrapped to multiple lines ...">HTF_WORDWRAP_LEFT_ALIGNED</a>,    
<a name="l00101"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba7c73bcf14338b88832372e1ab173d034">00101</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba7c73bcf14338b88832372e1ab173d034" title="Right of text should be aligned with the right of the destination area (word wrapped to multiple line...">HTF_WORDWRAP_RIGHT_ALIGNED</a>,   
<a name="l00102"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba14fde35ecd18079851582de213872fab">00102</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba14fde35ecd18079851582de213872fab" title="text should be horizontally centred within the destination area (word wrapped to multiple lines as ne...">HTF_WORDWRAP_CENTRE_ALIGNED</a>,  
<a name="l00103"></a><a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba56ee2e92243edd54848cabd31d0001c8">00103</a>         <a class="code" href="namespaceCEGUI.html#a379719d009ffa73a87100bb8b0b6fe5ba56ee2e92243edd54848cabd31d0001c8" title="text should be spaced so that it takes the full width of the destination area (word wrapped to multip...">HTF_WORDWRAP_JUSTIFIED</a>        
<a name="l00104"></a>00104     };
<a name="l00105"></a>00105 
<a name="l00110"></a><a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91">00110</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91" title="Enumeration of possible values to indicate a particular font metric.">FontMetricType</a>
<a name="l00111"></a>00111     {
<a name="l00112"></a><a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a268b2b316c897c2edb628534cff925e9">00112</a>         <a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a268b2b316c897c2edb628534cff925e9" title="Vertical line spacing value for font.">FMT_LINE_SPACING</a>,       
<a name="l00113"></a><a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a55a1a0f84f910ed2cc38c94444b604a2">00113</a>         <a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a55a1a0f84f910ed2cc38c94444b604a2" title="Vertical baseline value for font.">FMT_BASELINE</a>,           
<a name="l00114"></a><a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a0663b2926c1b82e264299729216c0950">00114</a>         <a class="code" href="namespaceCEGUI.html#ae6d9d1674edc92150006fbd354516c91a0663b2926c1b82e264299729216c0950" title="Horizontal extent of a string.">FMT_HORZ_EXTENT</a>         
<a name="l00115"></a>00115     };
<a name="l00116"></a>00116 
<a name="l00121"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72">00121</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72" title="Enumeration of values representing mathematical operations on dimensions.">DimensionOperator</a>
<a name="l00122"></a>00122     {
<a name="l00123"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72ac0ec7bdbef8b845aed10b002dffcd6fa">00123</a>         <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72ac0ec7bdbef8b845aed10b002dffcd6fa" title="Do nothing operator.">DOP_NOOP</a>,       
<a name="l00124"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72acf9ae5e99cad0d7c4f41e290135ee287">00124</a>         <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72acf9ae5e99cad0d7c4f41e290135ee287" title="Dims should be added.">DOP_ADD</a>,        
<a name="l00125"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72a85e85193c107d20c162a68f6444bdcc4">00125</a>         <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72a85e85193c107d20c162a68f6444bdcc4" title="Dims should be subtracted.">DOP_SUBTRACT</a>,   
<a name="l00126"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72a2f66b9877295b8c2b0e0d75be2454844">00126</a>         <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72a2f66b9877295b8c2b0e0d75be2454844" title="Dims should be multiplied.">DOP_MULTIPLY</a>,   
<a name="l00127"></a><a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72af1f3c2f542cc814ca1c4ed9503dbe545">00127</a>         <a class="code" href="namespaceCEGUI.html#a83eeabd743af4692fae93272f0e3be72af1f3c2f542cc814ca1c4ed9503dbe545" title="Dims should be divided.">DOP_DIVIDE</a>      
<a name="l00128"></a>00128     };
<a name="l00129"></a>00129 
<a name="l00134"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793">00134</a>     <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793" title="Enumeration of values referencing available images forming a frame component.">FrameImageComponent</a>
<a name="l00135"></a>00135     {
<a name="l00136"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793ac61b2df49bc4ff0b2f8f33d9b53f202e">00136</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793ac61b2df49bc4ff0b2f8f33d9b53f202e" title="References image used for the background.">FIC_BACKGROUND</a>,             
<a name="l00137"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793af2883017be106bd1dfe1889950593cb6">00137</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793af2883017be106bd1dfe1889950593cb6" title="References image used for the top-left corner.">FIC_TOP_LEFT_CORNER</a>,        
<a name="l00138"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1fcd7c4eb96a3b80f18aeb0d76604918">00138</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1fcd7c4eb96a3b80f18aeb0d76604918" title="References image used for the top-right corner.">FIC_TOP_RIGHT_CORNER</a>,       
<a name="l00139"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1580b65d0e862838c10f598b519cc432">00139</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1580b65d0e862838c10f598b519cc432" title="References image used for the bottom-left corner.">FIC_BOTTOM_LEFT_CORNER</a>,     
<a name="l00140"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a8877ed442c33a6d3d369df27c5e46591">00140</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a8877ed442c33a6d3d369df27c5e46591" title="References image used for the bottom-right corner.">FIC_BOTTOM_RIGHT_CORNER</a>,    
<a name="l00141"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a54f3c5338c319d6f665071b07b9a9f2a">00141</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a54f3c5338c319d6f665071b07b9a9f2a" title="References image used for the left edge.">FIC_LEFT_EDGE</a>,              
<a name="l00142"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a7381d33866d335bb8061a048de50d4be">00142</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a7381d33866d335bb8061a048de50d4be" title="References image used for the right edge.">FIC_RIGHT_EDGE</a>,             
<a name="l00143"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793aeef4683d3a18135be2fbae6600017a22">00143</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793aeef4683d3a18135be2fbae6600017a22" title="References image used for the top edge.">FIC_TOP_EDGE</a>,               
<a name="l00144"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1804c50a182c41a92e00aaf8d588893f">00144</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a1804c50a182c41a92e00aaf8d588893f" title="References image used for the bottom edge.">FIC_BOTTOM_EDGE</a>,            
<a name="l00145"></a><a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a0ce06f9708a2f9befb78cfa6eb8f2a31">00145</a>         <a class="code" href="namespaceCEGUI.html#a5ad9da1f6296813a89c26ad88d8b8793a0ce06f9708a2f9befb78cfa6eb8f2a31" title="Max number of images for a frame.">FIC_FRAME_IMAGE_COUNT</a>       
<a name="l00146"></a>00146     };
<a name="l00147"></a>00147 
<a name="l00148"></a>00148 } <span class="comment">// End of  CEGUI namespace section</span>
<a name="l00149"></a>00149 
<a name="l00150"></a>00150 
<a name="l00151"></a>00151 <span class="preprocessor">#endif  // end of guard _CEGUIFalEnums_h_</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:39 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>