File: inherits.html

package info (click to toggle)
cegui-mk2 0.7.6-3.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 105,388 kB
  • ctags: 82,178
  • sloc: cpp: 142,729; ansic: 27,984; sh: 11,010; makefile: 2,275; python: 916; xml: 17
file content (524 lines) | stat: -rw-r--r-- 134,642 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<!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: Class Hierarchy</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 class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li class="current"><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="headertitle">
<div class="title">Class Hierarchy</div>  </div>
</div>
<div class="contents">
<div class="textblock">
<p><a href="hierarchy.html">Go to the textual class hierarchy</a></p>
</div><table border="0" cellspacing="10" cellpadding="0">
<tr><td><img src="inherit_graph_0.gif" border="0" alt="" usemap="#CEGUI_1_1Affector"/>
<map name="CEGUI_1_1Affector" id="CEGUI_1_1Affector">
<area shape="rect" id="node1" href="classCEGUI_1_1Affector.html" title="Defines an &#39;affector&#39; class." alt="" coords="7,5,124,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_1.gif" border="0" alt="" usemap="#CEGUI_1_1Animation"/>
<map name="CEGUI_1_1Animation" id="CEGUI_1_1Animation">
<area shape="rect" id="node1" href="classCEGUI_1_1Animation.html" title="Defines an &#39;animation&#39; class." alt="" coords="5,5,136,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_2.gif" border="0" alt="" usemap="#CEGUI_1_1AnimationInstance"/>
<map name="CEGUI_1_1AnimationInstance" id="CEGUI_1_1AnimationInstance">
<area shape="rect" id="node1" href="classCEGUI_1_1AnimationInstance.html" title="Defines an &#39;animation instance&#39; class." alt="" coords="5,5,187,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_3.gif" border="0" alt="" usemap="#CEGUI_1_1BaseDim"/>
<map name="CEGUI_1_1BaseDim" id="CEGUI_1_1BaseDim">
<area shape="rect" id="node1" href="classCEGUI_1_1BaseDim.html" title="Abstract interface for a generic &#39;dimension&#39; class." alt="" coords="7,139,132,168"/><area shape="rect" id="node3" href="classCEGUI_1_1AbsoluteDim.html" title="Dimension type that represents an absolute pixel value. Implements BaseDim interface." alt="" coords="183,5,329,35"/><area shape="rect" id="node5" href="classCEGUI_1_1FontDim.html" title="Dimension type that represents some metric of a Font. Implements BaseDim interface." alt="" coords="195,59,317,88"/><area shape="rect" id="node7" href="classCEGUI_1_1ImageDim.html" title="Dimension type that represents some dimension of a named Image. Implements BaseDim interface..." alt="" coords="189,112,323,141"/><area shape="rect" id="node9" href="classCEGUI_1_1PropertyDim.html" title="Dimension type that represents the value of a Window property. Implements BaseDim interface..." alt="" coords="183,165,329,195"/><area shape="rect" id="node11" href="classCEGUI_1_1UnifiedDim.html" title="Dimension type that represents an Unified dimension. Implements BaseDim interface." alt="" coords="187,219,325,248"/><area shape="rect" id="node13" href="classCEGUI_1_1WidgetDim.html" title="Dimension type that represents some dimension of a Window/widget. Implements BaseDim interface..." alt="" coords="187,272,325,301"/></map>
</td></tr>
<tr><td><img src="inherit_graph_4.gif" border="0" alt="" usemap="#CEGUI_1_1BiDiVisualMapping"/>
<map name="CEGUI_1_1BiDiVisualMapping" id="CEGUI_1_1BiDiVisualMapping">
<area shape="rect" id="node1" href="classCEGUI_1_1BiDiVisualMapping.html" title="Abstract class to wrap a BiDi visual mapping of a text string." alt="" coords="7,32,188,61"/><area shape="rect" id="node3" href="classCEGUI_1_1FribidiVisualMapping.html" title="fribidi based implementation of BiDiVisualMapping." alt="" coords="243,5,435,35"/><area shape="rect" id="node5" href="classCEGUI_1_1MinibidiVisualMapping.html" title="minibidi based implementation of BiDiVisualMapping." alt="" coords="237,59,440,88"/></map>
</td></tr>
<tr><td><img src="inherit_graph_5.gif" border="0" alt="" usemap="#CEGUI_1_1BoundSlot"/>
<map name="CEGUI_1_1BoundSlot" id="CEGUI_1_1BoundSlot">
<area shape="rect" id="node1" href="classCEGUI_1_1BoundSlot.html" title="Class that tracks a SubscriberSlot, its group, and the Event to which it was subscribed. This is effectively what gets returned from the calls to the Event::subscribe members, though BoundSlot is always wrapped in a reference counted pointer. When a BoundSlot is deleted, the connection is unsubscribed and the SubscriberSlot is deleted." alt="" coords="5,5,139,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_6.gif" border="0" alt="" usemap="#CEGUI_1_1colour"/>
<map name="CEGUI_1_1colour" id="CEGUI_1_1colour">
<area shape="rect" id="node1" href="classCEGUI_1_1colour.html" title="Class representing colour values within the system." alt="" coords="7,5,113,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_7.gif" border="0" alt="" usemap="#CEGUI_1_1ColourRect"/>
<map name="CEGUI_1_1ColourRect" id="CEGUI_1_1ColourRect">
<area shape="rect" id="node1" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle." alt="" coords="5,5,144,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_8.gif" border="0" alt="" usemap="#CEGUI_1_1ComponentArea"/>
<map name="CEGUI_1_1ComponentArea" id="CEGUI_1_1ComponentArea">
<area shape="rect" id="node1" href="classCEGUI_1_1ComponentArea.html" title="Class that represents a target area for a widget or imagery component." alt="" coords="7,5,172,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_9.gif" border="0" alt="" usemap="#CEGUI_1_1ConstBaseIterator_3_01T_01_4"/>
<map name="CEGUI_1_1ConstBaseIterator_3_01T_01_4" id="CEGUI_1_1ConstBaseIterator_3_01T_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1ConstBaseIterator.html" title="Base class constant iterator used to offer iteration over various collections within the system..." alt="" coords="5,5,216,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_10.gif" border="0" alt="" usemap="#CEGUI_1_1CoordConverter"/>
<map name="CEGUI_1_1CoordConverter" id="CEGUI_1_1CoordConverter">
<area shape="rect" id="node1" href="classCEGUI_1_1CoordConverter.html" title="Utility class that helps in converting various types of co&#45;ordinate between absolute screen positions..." alt="" coords="5,5,171,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_11.gif" border="0" alt="" usemap="#CEGUI_1_1Dimension"/>
<map name="CEGUI_1_1Dimension" id="CEGUI_1_1Dimension">
<area shape="rect" id="node1" href="classCEGUI_1_1Dimension.html" title="Class representing some kind of dimension." alt="" coords="7,5,140,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_12.gif" border="0" alt="" usemap="#CEGUI_1_1Direct3D10GeometryBuffer_1_1D3DVertex"/>
<map name="CEGUI_1_1Direct3D10GeometryBuffer_1_1D3DVertex" id="CEGUI_1_1Direct3D10GeometryBuffer_1_1D3DVertex">
<area shape="rect" id="node1" href="structCEGUI_1_1Direct3D10GeometryBuffer_1_1D3DVertex.html" title="internal Vertex structure used for Direct3D based geometry." alt="" coords="5,5,309,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_13.gif" border="0" alt="" usemap="#CEGUI_1_1Direct3D11GeometryBuffer_1_1D3DVertex"/>
<map name="CEGUI_1_1Direct3D11GeometryBuffer_1_1D3DVertex" id="CEGUI_1_1Direct3D11GeometryBuffer_1_1D3DVertex">
<area shape="rect" id="node1" href="structCEGUI_1_1Direct3D11GeometryBuffer_1_1D3DVertex.html" title="internal Vertex structure used for Direct3D based geometry." alt="" coords="5,5,309,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_14.gif" border="0" alt="" usemap="#CEGUI_1_1Direct3D9GeometryBuffer_1_1D3DVertex"/>
<map name="CEGUI_1_1Direct3D9GeometryBuffer_1_1D3DVertex" id="CEGUI_1_1Direct3D9GeometryBuffer_1_1D3DVertex">
<area shape="rect" id="node1" href="structCEGUI_1_1Direct3D9GeometryBuffer_1_1D3DVertex.html" title="internal Vertex structure used for Direct3D based geometry." alt="" coords="7,5,303,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_15.gif" border="0" alt="" usemap="#CEGUI_1_1DynamicModule"/>
<map name="CEGUI_1_1DynamicModule" id="CEGUI_1_1DynamicModule">
<area shape="rect" id="node1" href="classCEGUI_1_1DynamicModule.html" title="Class that wraps and gives access to a dynamically linked module (.dll, .so, etc...)" alt="" coords="7,5,172,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_16.gif" border="0" alt="" usemap="#CEGUI_1_1Event"/>
<map name="CEGUI_1_1Event" id="CEGUI_1_1Event">
<area shape="rect" id="node1" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties." alt="" coords="5,5,112,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_17.gif" border="0" alt="" usemap="#CEGUI_1_1Event_1_1ScopedConnection"/>
<map name="CEGUI_1_1Event_1_1ScopedConnection" id="CEGUI_1_1Event_1_1ScopedConnection">
<area shape="rect" id="node1" href="classCEGUI_1_1Event_1_1ScopedConnection.html" title="Event::Connection wrapper that automatically disconnects the connection when the object is deleted (o..." alt="" coords="7,5,231,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_18.gif" border="0" alt="" usemap="#CEGUI_1_1EventArgs"/>
<map name="CEGUI_1_1EventArgs" id="CEGUI_1_1EventArgs">
<area shape="rect" id="node1" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object." alt="" coords="7,139,140,168"/><area shape="rect" id="node3" href="classCEGUI_1_1AnimationEventArgs.html" title="EventArgs based class that holds information about which animation instnace fired given event..." alt="" coords="201,5,393,35"/><area shape="rect" id="node5" href="classCEGUI_1_1DisplayEventArgs.html" title="EventArgs based class that is used for notifications regarding the main display." alt="" coords="208,59,387,88"/><area shape="rect" id="node7" href="classCEGUI_1_1MouseCursorEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse cursor..." alt="" coords="192,112,403,141"/><area shape="rect" id="node9" href="classCEGUI_1_1RenderQueueEventArgs.html" title="EventArgs based class that is passed to handlers subcribed to hear about begin/end events on renderin..." alt="" coords="191,165,404,195"/><area shape="rect" id="node11" href="classCEGUI_1_1ResourceEventArgs.html" title="EventArgs based class that is used for notifications regarding resources." alt="" coords="203,219,392,248"/><area shape="rect" id="node13" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som..." alt="" coords="207,272,388,301"/><area shape="rect" id="node15" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events." alt="" coords="475,112,667,141"/><area shape="rect" id="node17" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications." alt="" coords="476,165,665,195"/><area shape="rect" id="node19" href="classCEGUI_1_1HeaderSequenceEventArgs.html" title="EventArgs class used for segment move (sequence changed) events." alt="" coords="453,219,688,248"/><area shape="rect" id="node21" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp..." alt="" coords="492,272,649,301"/><area shape="rect" id="node23" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input..." alt="" coords="484,325,657,355"/><area shape="rect" id="node25" href="classCEGUI_1_1TreeEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning Tree events..." alt="" coords="491,379,651,408"/><area shape="rect" id="node27" href="classCEGUI_1_1UpdateEventArgs.html" title="WindowEventArgs class that is primarily used by lua scripts." alt="" coords="483,432,659,461"/></map>
</td></tr>
<tr><td><img src="inherit_graph_19.gif" border="0" alt="" usemap="#CEGUI_1_1Exception"/>
<map name="CEGUI_1_1Exception" id="CEGUI_1_1Exception">
<area shape="rect" id="node1" href="classCEGUI_1_1Exception.html" title="Root exception class used within the GUI system." alt="" coords="5,245,136,275"/><area shape="rect" id="node3" href="classCEGUI_1_1AlreadyExistsException.html" title="Exception class used when an attempt is made create a named object of a particular type when an objec..." alt="" coords="191,5,401,35"/><area shape="rect" id="node5" href="classCEGUI_1_1FileIOException.html" title="Exception class used when a file handling problem occurs." alt="" coords="213,59,379,88"/><area shape="rect" id="node7" href="classCEGUI_1_1GenericException.html" title="Exception class used when none of the other classes are applicable." alt="" coords="208,112,384,141"/><area shape="rect" id="node9" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system." alt="" coords="187,165,405,195"/><area shape="rect" id="node11" href="classCEGUI_1_1MemoryException.html" title="Exception class used when a memory handling error is detected." alt="" coords="207,219,385,248"/><area shape="rect" id="node13" href="classCEGUI_1_1NullObjectException.html" title="Exception class used when some required object or parameter is null." alt="" coords="200,272,392,301"/><area shape="rect" id="node15" href="classCEGUI_1_1ObjectInUseException.html" title="Exception class used when some attempt to delete, remove, or otherwise invalidate some object that is..." alt="" coords="195,325,397,355"/><area shape="rect" id="node17" href="classCEGUI_1_1RendererException.html" title="Exception class used for problems in the rendering subsystem classes." alt="" coords="204,379,388,408"/><area shape="rect" id="node19" href="classCEGUI_1_1ScriptException.html" title="Exception class used for issues in scripting subsystem." alt="" coords="213,432,379,461"/><area shape="rect" id="node21" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object." alt="" coords="184,485,408,515"/></map>
</td></tr>
<tr><td><img src="inherit_graph_20.gif" border="0" alt="" usemap="#CEGUI_1_1FactoryModule"/>
<map name="CEGUI_1_1FactoryModule" id="CEGUI_1_1FactoryModule">
<area shape="rect" id="node1" href="classCEGUI_1_1FactoryModule.html" title="Class that encapsulates access to a dynamic loadable module containing implementations of Windows..." alt="" coords="7,5,164,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_21.gif" border="0" alt="" usemap="#CEGUI_1_1FalagardComponentBase"/>
<map name="CEGUI_1_1FalagardComponentBase" id="CEGUI_1_1FalagardComponentBase">
<area shape="rect" id="node1" href="classCEGUI_1_1FalagardComponentBase.html" title="Common base class used for renderable components within an ImagerySection." alt="" coords="7,59,225,88"/><area shape="rect" id="node3" href="classCEGUI_1_1FrameComponent.html" title="Class that encapsulates information for a frame with background (9 images in total)" alt="" coords="280,5,456,35"/><area shape="rect" id="node5" href="classCEGUI_1_1ImageryComponent.html" title="Class that encapsulates information for a single image component." alt="" coords="275,59,461,88"/><area shape="rect" id="node7" href="classCEGUI_1_1TextComponent.html" title="Class that encapsulates information for a text component." alt="" coords="285,112,451,141"/></map>
</td></tr>
<tr><td><img src="inherit_graph_22.gif" border="0" alt="" usemap="#CEGUI_1_1FalagardXMLHelper"/>
<map name="CEGUI_1_1FalagardXMLHelper" id="CEGUI_1_1FalagardXMLHelper">
<area shape="rect" id="node1" href="classCEGUI_1_1FalagardXMLHelper.html" title="Utility helper class primarily intended for use by the falagard xml parser." alt="" coords="7,5,193,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_23.gif" border="0" alt="" usemap="#CEGUI_1_1FontGlyph"/>
<map name="CEGUI_1_1FontGlyph" id="CEGUI_1_1FontGlyph">
<area shape="rect" id="node1" href="classCEGUI_1_1FontGlyph.html" title="internal class representing a single font glyph." alt="" coords="5,5,139,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_24.gif" border="0" alt="" usemap="#CEGUI_1_1FormattedRenderedString"/>
<map name="CEGUI_1_1FormattedRenderedString" id="CEGUI_1_1FormattedRenderedString">
<area shape="rect" id="node1" href="classCEGUI_1_1FormattedRenderedString.html" title="Root of a class hierarchy that wrap RenderedString objects and render them with additional formatting..." alt="" coords="7,112,228,141"/><area shape="rect" id="node3" href="classCEGUI_1_1CentredRenderedString.html" title="FormattedRenderedString implementation that renders the RenderedString with centred formatting..." alt="" coords="311,5,519,35"/><area shape="rect" id="node5" href="classCEGUI_1_1JustifiedRenderedString.html" title="FormattedRenderedString implementation that renders the RenderedString with justified formatting..." alt="" coords="309,59,520,88"/><area shape="rect" id="node7" href="classCEGUI_1_1LeftAlignedRenderedString.html" title="FormattedRenderedString implementation that renders the RenderedString with left aligned formatting..." alt="" coords="301,112,528,141"/><area shape="rect" id="node9" href="classCEGUI_1_1RenderedStringWordWrapper.html" title="Class that handles wrapping of a rendered string into sub&#45;strings. Each sub&#45;string is rendered using ..." alt="" coords="277,165,552,195"/><area shape="rect" id="node11" href="classCEGUI_1_1RightAlignedRenderedString.html" title="FormattedRenderedString implementation that renders the RenderedString with right aligned formatting..." alt="" coords="296,219,533,248"/></map>
</td></tr>
<tr><td><img src="inherit_graph_25.gif" border="0" alt="" usemap="#CEGUI_1_1FunctorReferenceBinder_3_01T_01_4"/>
<map name="CEGUI_1_1FunctorReferenceBinder_3_01T_01_4" id="CEGUI_1_1FunctorReferenceBinder_3_01T_01_4">
<area shape="rect" id="node1" href="structCEGUI_1_1FunctorReferenceBinder.html" title="Class that enables the creation of a reference binding for a functor object to be used as a callback ..." alt="" coords="7,5,252,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_26.gif" border="0" alt="" usemap="#CEGUI_1_1GeometryBuffer"/>
<map name="CEGUI_1_1GeometryBuffer" id="CEGUI_1_1GeometryBuffer">
<area shape="rect" id="node1" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering." alt="" coords="5,192,171,221"/><area shape="rect" id="node3" href="classCEGUI_1_1Direct3D10GeometryBuffer.html" title="Implementation of CEGUI::GeometryBuffer for the Direct3D 10 API." alt="" coords="220,5,449,35"/><area shape="rect" id="node5" href="classCEGUI_1_1Direct3D11GeometryBuffer.html" title="Implementation of CEGUI::GeometryBuffer for the Direct3D 10 API." alt="" coords="220,59,449,88"/><area shape="rect" id="node7" href="classCEGUI_1_1Direct3D9GeometryBuffer.html" title="Direct3D9 based implementation of the GeometryBuffer interface." alt="" coords="223,112,447,141"/><area shape="rect" id="node9" href="classCEGUI_1_1DirectFBGeometryBuffer.html" title="Implemetation of CEGUI::GeometryBuffer for DirectFB." alt="" coords="227,165,443,195"/><area shape="rect" id="node11" href="classCEGUI_1_1IrrlichtGeometryBuffer.html" title="GeometryBuffer implementation for the Irrlicht engine." alt="" coords="235,219,435,248"/><area shape="rect" id="node13" href="classCEGUI_1_1NullGeometryBuffer.html" title="Implementation of CEGUI::GeometryBuffer for the Null engine." alt="" coords="241,272,428,301"/><area shape="rect" id="node15" href="classCEGUI_1_1OgreGeometryBuffer.html" title="Implementation of CEGUI::GeometryBuffer for the Ogre engine." alt="" coords="239,325,431,355"/><area shape="rect" id="node17" href="classCEGUI_1_1OpenGLGeometryBuffer.html" title="OpenGL based implementation of the GeometryBuffer interface." alt="" coords="228,379,441,408"/></map>
</td></tr>
<tr><td><img src="inherit_graph_27.gif" border="0" alt="" usemap="#CEGUI_1_1Image"/>
<map name="CEGUI_1_1Image" id="CEGUI_1_1Image">
<area shape="rect" id="node1" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset." alt="" coords="5,5,115,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_28.gif" border="0" alt="" usemap="#CEGUI_1_1ImageCodec"/>
<map name="CEGUI_1_1ImageCodec" id="CEGUI_1_1ImageCodec">
<area shape="rect" id="node1" href="classCEGUI_1_1ImageCodec.html" title="Abstract ImageLoader class. An image loader encapsulate the loading of a texture." alt="" coords="5,192,152,221"/><area shape="rect" id="node3" href="classCEGUI_1_1CoronaImageCodec.html" title="Image codec based on the Corona library." alt="" coords="211,5,400,35"/><area shape="rect" id="node5" href="classCEGUI_1_1DevILImageCodec.html" title="Image codec based on the DevIL library." alt="" coords="215,59,396,88"/><area shape="rect" id="node7" href="classCEGUI_1_1FreeImageImageCodec.html" title="Image codec based on the FreeImage library." alt="" coords="201,112,409,141"/><area shape="rect" id="node9" href="classCEGUI_1_1IrrlichtImageCodec.html" title="ImageCodec object that loads data via image loading facilities in Irrlicht." alt="" coords="215,165,396,195"/><area shape="rect" id="node11" href="classCEGUI_1_1OgreImageCodec.html" title="ImageCodec object that loads data via image loading facilities in Ogre." alt="" coords="219,219,392,248"/><area shape="rect" id="node13" href="classCEGUI_1_1SILLYImageCodec.html" title="Image codec based on the SILLY library." alt="" coords="215,272,396,301"/><area shape="rect" id="node15" href="classCEGUI_1_1STBImageCodec.html" title="Image codec based on stb_image.c." alt="" coords="219,325,392,355"/><area shape="rect" id="node17" href="classCEGUI_1_1TGAImageCodec.html" title="Default image codec." alt="" coords="219,379,392,408"/></map>
</td></tr>
<tr><td><img src="inherit_graph_29.gif" border="0" alt="" usemap="#CEGUI_1_1ImagerySection"/>
<map name="CEGUI_1_1ImagerySection" id="CEGUI_1_1ImagerySection">
<area shape="rect" id="node1" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re&#45;usable collection of imagery specifications." alt="" coords="7,5,169,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_30.gif" border="0" alt="" usemap="#CEGUI_1_1Imageset"/>
<map name="CEGUI_1_1Imageset" id="CEGUI_1_1Imageset">
<area shape="rect" id="node1" href="classCEGUI_1_1Imageset.html" title="Offers functions to define, access, and draw, a set of image components on a single graphical surface..." alt="" coords="7,5,132,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_31.gif" border="0" alt="" usemap="#CEGUI_1_1Interpolator"/>
<map name="CEGUI_1_1Interpolator" id="CEGUI_1_1Interpolator">
<area shape="rect" id="node1" href="classCEGUI_1_1Interpolator.html" title="Defines a &#39;interpolator&#39; class." alt="" coords="5,379,144,408"/><area shape="rect" id="node3" href="classCEGUI_1_1BoolInterpolator.html" title="CEGUI::BoolInterpolator" alt="" coords="213,5,376,35"/><area shape="rect" id="node5" href="classCEGUI_1_1ColourInterpolator.html" title="CEGUI::ColourInterpolator" alt="" coords="207,59,383,88"/><area shape="rect" id="node7" href="classCEGUI_1_1ColourRectInterpolator.html" title="CEGUI::ColourRectInterpolator" alt="" coords="193,112,396,141"/><area shape="rect" id="node9" href="classCEGUI_1_1FloatInterpolator.html" title="CEGUI::FloatInterpolator" alt="" coords="212,165,377,195"/><area shape="rect" id="node11" href="classCEGUI_1_1IntInterpolator.html" title="CEGUI::IntInterpolator" alt="" coords="219,219,371,248"/><area shape="rect" id="node13" href="classCEGUI_1_1PointInterpolator.html" title="CEGUI::PointInterpolator" alt="" coords="211,272,379,301"/><area shape="rect" id="node15" href="classCEGUI_1_1RectInterpolator.html" title="CEGUI::RectInterpolator" alt="" coords="212,325,377,355"/><area shape="rect" id="node17" href="classCEGUI_1_1SizeInterpolator.html" title="CEGUI::SizeInterpolator" alt="" coords="213,379,376,408"/><area shape="rect" id="node19" href="classCEGUI_1_1StringInterpolator.html" title="CEGUI::StringInterpolator" alt="" coords="209,432,380,461"/><area shape="rect" id="node21" href="classCEGUI_1_1UBoxInterpolator.html" title="CEGUI::UBoxInterpolator" alt="" coords="209,485,380,515"/><area shape="rect" id="node23" href="classCEGUI_1_1UDimInterpolator.html" title="CEGUI::UDimInterpolator" alt="" coords="209,539,380,568"/><area shape="rect" id="node25" href="classCEGUI_1_1UintInterpolator.html" title="CEGUI::UintInterpolator" alt="" coords="213,592,376,621"/><area shape="rect" id="node27" href="classCEGUI_1_1URectInterpolator.html" title="CEGUI::URectInterpolator" alt="" coords="207,645,383,675"/><area shape="rect" id="node29" href="classCEGUI_1_1UVector2Interpolator.html" title="CEGUI::UVector2Interpolator" alt="" coords="199,699,391,728"/><area shape="rect" id="node31" href="classCEGUI_1_1Vector3Interpolator.html" title="CEGUI::Vector3Interpolator" alt="" coords="204,752,385,781"/></map>
</td></tr>
<tr><td><img src="inherit_graph_32.gif" border="0" alt="" usemap="#CEGUI_1_1IrrlichtEventPusher"/>
<map name="CEGUI_1_1IrrlichtEventPusher" id="CEGUI_1_1IrrlichtEventPusher">
<area shape="rect" id="node1" href="classCEGUI_1_1IrrlichtEventPusher.html" title="CEGUI::IrrlichtEventPusher" alt="" coords="5,5,189,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_33.gif" border="0" alt="" usemap="#CEGUI_1_1IrrlichtMemoryFile"/>
<map name="CEGUI_1_1IrrlichtMemoryFile" id="CEGUI_1_1IrrlichtMemoryFile">
<area shape="rect" id="node1" href="classCEGUI_1_1IrrlichtMemoryFile.html" title="Class to wrap a file access interface around a memory buffer to enable us to pass data that has been ..." alt="" coords="7,5,183,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_34.gif" border="0" alt="" usemap="#CEGUI_1_1Key"/>
<map name="CEGUI_1_1Key" id="CEGUI_1_1Key">
<area shape="rect" id="node1" href="structCEGUI_1_1Key.html" title="struct to give scope to scan code enumeration." alt="" coords="5,5,101,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_35.gif" border="0" alt="" usemap="#CEGUI_1_1KeyFrame"/>
<map name="CEGUI_1_1KeyFrame" id="CEGUI_1_1KeyFrame">
<area shape="rect" id="node1" href="classCEGUI_1_1KeyFrame.html" title="Defines a &#39;key frame&#39; class." alt="" coords="5,5,139,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_36.gif" border="0" alt="" usemap="#CEGUI_1_1LayerSpecification"/>
<map name="CEGUI_1_1LayerSpecification" id="CEGUI_1_1LayerSpecification">
<area shape="rect" id="node1" href="classCEGUI_1_1LayerSpecification.html" title="Class that encapsulates a single layer of imagery." alt="" coords="7,5,185,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_37.gif" border="0" alt="" usemap="#CEGUI_1_1ListboxItem"/>
<map name="CEGUI_1_1ListboxItem" id="CEGUI_1_1ListboxItem">
<area shape="rect" id="node1" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items." alt="" coords="5,5,147,35"/><area shape="rect" id="node3" href="classCEGUI_1_1ListboxTextItem.html" title="Class used for textual items in a list box." alt="" coords="196,5,361,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_38.gif" border="0" alt="" usemap="#CEGUI_1_1LuaFunctor"/>
<map name="CEGUI_1_1LuaFunctor" id="CEGUI_1_1LuaFunctor">
<area shape="rect" id="node1" href="classCEGUI_1_1LuaFunctor.html" title="Functor class used for subscribing Lua functions to CEGUI events." alt="" coords="5,5,144,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_39.gif" border="0" alt="" usemap="#CEGUI_1_1MCLGridRef"/>
<map name="CEGUI_1_1MCLGridRef" id="CEGUI_1_1MCLGridRef">
<area shape="rect" id="node1" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure." alt="" coords="5,5,152,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_40.gif" border="0" alt="" usemap="#CEGUI_1_1MultiColumnList_1_1ListRow"/>
<map name="CEGUI_1_1MultiColumnList_1_1ListRow" id="CEGUI_1_1MultiColumnList_1_1ListRow">
<area shape="rect" id="node1" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows..." alt="" coords="7,5,228,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_41.gif" border="0" alt="" usemap="#CEGUI_1_1MultiLineEditbox_1_1LineInfo"/>
<map name="CEGUI_1_1MultiLineEditbox_1_1LineInfo" id="CEGUI_1_1MultiLineEditbox_1_1LineInfo">
<area shape="rect" id="node1" href="structCEGUI_1_1MultiLineEditbox_1_1LineInfo.html" title="struct used to store information about a formatted line within the paragraph." alt="" coords="7,5,228,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_42.gif" border="0" alt="" usemap="#CEGUI_1_1NamedArea"/>
<map name="CEGUI_1_1NamedArea" id="CEGUI_1_1NamedArea">
<area shape="rect" id="node1" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique..." alt="" coords="7,5,148,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_43.gif" border="0" alt="" usemap="#CEGUI_1_1OgreGeometryBuffer_1_1OgreVertex"/>
<map name="CEGUI_1_1OgreGeometryBuffer_1_1OgreVertex" id="CEGUI_1_1OgreGeometryBuffer_1_1OgreVertex">
<area shape="rect" id="node1" href="structCEGUI_1_1OgreGeometryBuffer_1_1OgreVertex.html" title="vertex structure used internally and also by Ogre." alt="" coords="5,5,272,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_44.gif" border="0" alt="" usemap="#CEGUI_1_1OpenGLGeometryBuffer_1_1GLVertex"/>
<map name="CEGUI_1_1OpenGLGeometryBuffer_1_1GLVertex" id="CEGUI_1_1OpenGLGeometryBuffer_1_1GLVertex">
<area shape="rect" id="node1" href="structCEGUI_1_1OpenGLGeometryBuffer_1_1GLVertex.html" title="internal Vertex structure used for GL based geometry." alt="" coords="7,5,281,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_45.gif" border="0" alt="" usemap="#CEGUI_1_1Property"/>
<map name="CEGUI_1_1Property" id="CEGUI_1_1Property">
<area shape="rect" id="node1" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name." alt="" coords="5,5685,128,5715"/><area shape="rect" id="node3" href="classCEGUI_1_1CheckboxProperties_1_1Selected.html" title="Property to access the selected state of the check box." alt="" coords="256,5,507,35"/><area shape="rect" id="node5" href="classCEGUI_1_1ComboboxProperties_1_1CaratIndex.html" title="Property to access the current carat index." alt="" coords="248,59,515,88"/><area shape="rect" id="node7" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionLength.html" title="Property to access the current selection length." alt="" coords="223,112,540,141"/><area shape="rect" id="node9" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionStart.html" title="Property to access the current selection start index." alt="" coords="228,165,535,195"/><area shape="rect" id="node11" href="classCEGUI_1_1ComboboxProperties_1_1ForceHorzScrollbar.html" title="Property to access the &#39;always show&#39; setting for the horizontal scroll bar of the list box..." alt="" coords="224,219,539,248"/><area shape="rect" id="node13" href="classCEGUI_1_1ComboboxProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the list box..." alt="" coords="227,272,536,301"/><area shape="rect" id="node15" href="classCEGUI_1_1ComboboxProperties_1_1MaxEditTextLength.html" title="Property to access the maximum text length for the edit box." alt="" coords="224,325,539,355"/><area shape="rect" id="node17" href="classCEGUI_1_1ComboboxProperties_1_1ReadOnly.html" title="Property to access the read&#45;only setting of the edit box." alt="" coords="251,379,512,408"/><area shape="rect" id="node19" href="classCEGUI_1_1ComboboxProperties_1_1SingleClickMode.html" title="Property to access the &#39;single click mode&#39; setting for the combo box." alt="" coords="231,432,532,461"/><area shape="rect" id="node21" href="classCEGUI_1_1ComboboxProperties_1_1SortList.html" title="Property to access the sort setting of the list box." alt="" coords="257,485,505,515"/><area shape="rect" id="node23" href="classCEGUI_1_1ComboboxProperties_1_1ValidationString.html" title="Property to access the string used for regular expression validation of the edit box text..." alt="" coords="235,539,528,568"/><area shape="rect" id="node25" href="classCEGUI_1_1DragContainerProperties_1_1DragAlpha.html" title="Property to access the dragging alpha value." alt="" coords="239,592,524,621"/><area shape="rect" id="node27" href="classCEGUI_1_1DragContainerProperties_1_1DragCursorImage.html" title="Property to access the dragging mouse cursor setting." alt="" coords="219,645,544,675"/><area shape="rect" id="node29" href="classCEGUI_1_1DragContainerProperties_1_1DraggingEnabled.html" title="Property to access the state of the dragging enabled setting." alt="" coords="220,699,543,728"/><area shape="rect" id="node31" href="classCEGUI_1_1DragContainerProperties_1_1DragThreshold.html" title="Property to access the dragging threshold value." alt="" coords="227,752,536,781"/><area shape="rect" id="node33" href="classCEGUI_1_1DragContainerProperties_1_1FixedDragOffset.html" title="Property to access the state of the fixed dragging offset setting." alt="" coords="221,805,541,835"/><area shape="rect" id="node35" href="classCEGUI_1_1DragContainerProperties_1_1StickyMode.html" title="Property to access the state of the sticky mode setting." alt="" coords="235,859,528,888"/><area shape="rect" id="node37" href="classCEGUI_1_1DragContainerProperties_1_1UseFixedDragOffset.html" title="Property to access the setting that controls whether the fixed drag offset will be used..." alt="" coords="209,912,553,941"/><area shape="rect" id="node39" href="classCEGUI_1_1EditboxProperties_1_1ActiveSelectionColour.html" title="Property to access the colour used for rendering the selection highlight when the edit box is active..." alt="" coords="225,965,537,995"/><area shape="rect" id="node41" href="classCEGUI_1_1EditboxProperties_1_1CaratIndex.html" title="Property to access the current carat index." alt="" coords="257,1019,505,1048"/><area shape="rect" id="node43" href="classCEGUI_1_1EditboxProperties_1_1InactiveSelectionColour.html" title="Property to access the colour used for rendering the selection highlight when the edit box is inactiv..." alt="" coords="220,1072,543,1101"/><area shape="rect" id="node45" href="classCEGUI_1_1EditboxProperties_1_1MaskCodepoint.html" title="Property to access the mask text setting of the edit box." alt="" coords="244,1125,519,1155"/><area shape="rect" id="node47" href="classCEGUI_1_1EditboxProperties_1_1MaskText.html" title="Property to access the mask text setting of the edit box." alt="" coords="260,1179,503,1208"/><area shape="rect" id="node49" href="classCEGUI_1_1EditboxProperties_1_1MaxTextLength.html" title="Property to access the maximum text length for the edit box." alt="" coords="244,1232,519,1261"/><area shape="rect" id="node51" href="classCEGUI_1_1EditboxProperties_1_1NormalTextColour.html" title="Property to access the normal, unselected, text colour used for rendering text." alt="" coords="236,1285,527,1315"/><area shape="rect" id="node53" href="classCEGUI_1_1EditboxProperties_1_1ReadOnly.html" title="Property to access the read&#45;only setting of the edit box." alt="" coords="260,1339,503,1368"/><area shape="rect" id="node55" href="classCEGUI_1_1EditboxProperties_1_1SelectedTextColour.html" title="Property to access the colour used for rendering text within the selection area." alt="" coords="232,1392,531,1421"/><area shape="rect" id="node57" href="classCEGUI_1_1EditboxProperties_1_1SelectionLength.html" title="Property to access the current selection length." alt="" coords="243,1445,520,1475"/><area shape="rect" id="node59" href="classCEGUI_1_1EditboxProperties_1_1SelectionStart.html" title="Property to access the current selection start index." alt="" coords="248,1499,515,1528"/><area shape="rect" id="node61" href="classCEGUI_1_1EditboxProperties_1_1ValidationString.html" title="Property to access the string used for regular expression validation of the edit box text..." alt="" coords="244,1552,519,1581"/><area shape="rect" id="node63" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaret.html" title="Property to access the setting that controls whether the caret will blink." alt="" coords="235,1605,528,1635"/><area shape="rect" id="node65" href="classCEGUI_1_1FalagardEditboxProperties_1_1BlinkCaretTimeout.html" title="Property to access the setting that controls the speed at which the caret blinks when the caret blink..." alt="" coords="211,1659,552,1688"/><area shape="rect" id="node67" href="classCEGUI_1_1FalagardEditboxProperties_1_1TextFormatting.html" title="Property to access the horizontal formatting mode setting." alt="" coords="220,1712,543,1741"/><area shape="rect" id="node69" href="classCEGUI_1_1FalagardListHeaderProperties_1_1SegmentWidgetType.html" title="Property to access the segment widget type." alt="" coords="195,1765,568,1795"/><area shape="rect" id="node71" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaret.html" title="Property to access the setting that controls whether the caret will blink." alt="" coords="208,1819,555,1848"/><area shape="rect" id="node73" href="classCEGUI_1_1FalagardMultiLineEditboxProperties_1_1BlinkCaretTimeout.html" title="Property to access the setting that controls the speed at which the caret blinks when the caret blink..." alt="" coords="184,1872,579,1901"/><area shape="rect" id="node75" href="classCEGUI_1_1FalagardProgressBarProperties_1_1ReversedProgress.html" title="Property to access the setting that controls the direction that progress &#39;grows&#39; towards." alt="" coords="196,1925,567,1955"/><area shape="rect" id="node77" href="classCEGUI_1_1FalagardProgressBarProperties_1_1VerticalProgress.html" title="Property to access the setting that controls whether the progress bar is horizontal or vertical..." alt="" coords="203,1979,560,2008"/><area shape="rect" id="node79" href="classCEGUI_1_1FalagardScrollbarProperties_1_1VerticalScrollbar.html" title="Property to access the setting that controls whether the scrollbar is horizontal or vertical..." alt="" coords="213,2032,549,2061"/><area shape="rect" id="node81" href="classCEGUI_1_1FalagardSliderProperties_1_1ReversedDirection.html" title="Property to access the setting that controls the positive direction for the slider." alt="" coords="216,2085,547,2115"/><area shape="rect" id="node83" href="classCEGUI_1_1FalagardSliderProperties_1_1VerticalSlider.html" title="Property to access the setting that controls whether the slider is horizontal or vertical." alt="" coords="232,2139,531,2168"/><area shape="rect" id="node85" href="classCEGUI_1_1FalagardStaticImageProperties_1_1Image.html" title="Property to access the image for the FalagardStaticImage widget." alt="" coords="233,2192,529,2221"/><area shape="rect" id="node87" href="classCEGUI_1_1FalagardStaticProperties_1_1BackgroundEnabled.html" title="Property to access the state of the frame background setting for the FalagardStatic widget..." alt="" coords="212,2245,551,2275"/><area shape="rect" id="node89" href="classCEGUI_1_1FalagardStaticProperties_1_1FrameEnabled.html" title="Property to access the state of the frame enabled setting for the FalagardStatic widget." alt="" coords="228,2299,535,2328"/><area shape="rect" id="node91" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzExtent.html" title="Read&#45;only property to access the current horizontal extent of the formatted StaticText string..." alt="" coords="224,2352,539,2381"/><area shape="rect" id="node93" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzFormatting.html" title="Property to access the horizontal formatting mode setting." alt="" coords="212,2405,551,2435"/><area shape="rect" id="node95" href="classCEGUI_1_1FalagardStaticTextProperties_1_1HorzScrollbar.html" title="Property to access the setting for enabling the horizontal scroll bar." alt="" coords="217,2459,545,2488"/><area shape="rect" id="node97" href="classCEGUI_1_1FalagardStaticTextProperties_1_1TextColours.html" title="Property to access the text colours for the FalagardStaticText widget." alt="" coords="221,2512,541,2541"/><area shape="rect" id="node99" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertExtent.html" title="Read&#45;only property to access the current vertical extent of the formatted StaticText string..." alt="" coords="225,2565,537,2595"/><area shape="rect" id="node101" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertFormatting.html" title="Property to access the vertical formatting mode setting." alt="" coords="213,2619,549,2648"/><area shape="rect" id="node103" href="classCEGUI_1_1FalagardStaticTextProperties_1_1VertScrollbar.html" title="Property to access the setting for enabling the vertical scroll bar." alt="" coords="219,2672,544,2701"/><area shape="rect" id="node105" href="classCEGUI_1_1FalagardTabControlProperties_1_1TabButtonType.html" title="Property to access the segment sizing cursor image." alt="" coords="211,2725,552,2755"/><area shape="rect" id="node107" href="classCEGUI_1_1FrameWindowProperties_1_1CloseButtonEnabled.html" title="Property to access the setting for whether the window close button will be enabled (or displayed depe..." alt="" coords="211,2779,552,2808"/><area shape="rect" id="node109" href="classCEGUI_1_1FrameWindowProperties_1_1DragMovingEnabled.html" title="Property to access the setting for whether the user may drag the window around by its title bar..." alt="" coords="211,2832,552,2861"/><area shape="rect" id="node111" href="classCEGUI_1_1FrameWindowProperties_1_1EWSizingCursorImage.html" title="Property to access the E&#45;W (left/right) sizing cursor image." alt="" coords="203,2885,560,2915"/><area shape="rect" id="node113" href="classCEGUI_1_1FrameWindowProperties_1_1FrameEnabled.html" title="Property to access the setting for whether the window frame will be displayed." alt="" coords="228,2939,535,2968"/><area shape="rect" id="node115" href="classCEGUI_1_1FrameWindowProperties_1_1NESWSizingCursorImage.html" title="Property to access the NE&#45;SW diagonal sizing cursor image." alt="" coords="193,2992,569,3021"/><area shape="rect" id="node117" href="classCEGUI_1_1FrameWindowProperties_1_1NSSizingCursorImage.html" title="Property to access the N&#45;S (up&#45;down) sizing cursor image." alt="" coords="204,3045,559,3075"/><area shape="rect" id="node119" href="classCEGUI_1_1FrameWindowProperties_1_1NWSESizingCursorImage.html" title="Property to access the NW&#45;SE diagonal sizing cursor image." alt="" coords="193,3099,569,3128"/><area shape="rect" id="node121" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpEnabled.html" title="Property to access the setting for whether the user is able to roll&#45;up / shade the window..." alt="" coords="227,3152,536,3181"/><area shape="rect" id="node123" href="classCEGUI_1_1FrameWindowProperties_1_1RollUpState.html" title="Property to access the roll&#45;up / shade state of the window." alt="" coords="235,3205,528,3235"/><area shape="rect" id="node125" href="classCEGUI_1_1FrameWindowProperties_1_1SizingBorderThickness.html" title="Property to access the setting for the sizing border thickness." alt="" coords="203,3259,560,3288"/><area shape="rect" id="node127" href="classCEGUI_1_1FrameWindowProperties_1_1SizingEnabled.html" title="Property to access the state of the sizable setting for the FrameWindow." alt="" coords="228,3312,535,3341"/><area shape="rect" id="node129" href="classCEGUI_1_1FrameWindowProperties_1_1TitlebarEnabled.html" title="Property to access the setting for whether the window title&#45;bar will be enabled (or displayed dependi..." alt="" coords="224,3365,539,3395"/><area shape="rect" id="node131" href="classCEGUI_1_1GridLayoutContainerProperties_1_1AutoPositioning.html" title="CEGUI::GridLayoutContainerProperties::AutoPositioning" alt="" coords="207,3419,556,3448"/><area shape="rect" id="node133" href="classCEGUI_1_1GridLayoutContainerProperties_1_1GridSize.html" title="CEGUI::GridLayoutContainerProperties::GridSize" alt="" coords="227,3472,536,3501"/><area shape="rect" id="node135" href="classCEGUI_1_1ItemEntryProperties_1_1Selectable.html" title="Property to access the state of the selectable setting." alt="" coords="252,3525,511,3555"/><area shape="rect" id="node137" href="classCEGUI_1_1ItemEntryProperties_1_1Selected.html" title="Property to access the state of the selected setting." alt="" coords="257,3579,505,3608"/><area shape="rect" id="node139" href="classCEGUI_1_1ItemListBaseProperties_1_1AutoResizeEnabled.html" title="Property to access the state of the auto resize enabled setting." alt="" coords="216,3632,547,3661"/><area shape="rect" id="node141" href="classCEGUI_1_1ItemListBaseProperties_1_1SortEnabled.html" title="Property to access the state of the sorting enabled setting." alt="" coords="237,3685,525,3715"/><area shape="rect" id="node143" href="classCEGUI_1_1ItemListBaseProperties_1_1SortMode.html" title="Property to access the sorting mode." alt="" coords="245,3739,517,3768"/><area shape="rect" id="node145" href="classCEGUI_1_1ItemListboxProperties_1_1MultiSelect.html" title="Property to access the state of the multiselect enabled setting." alt="" coords="245,3792,517,3821"/><area shape="rect" id="node147" href="classCEGUI_1_1ListboxProperties_1_1ForceHorzScrollbar.html" title="Property to access the &#39;always show&#39; setting for the horizontal scroll bar of the list box..." alt="" coords="235,3845,528,3875"/><area shape="rect" id="node149" href="classCEGUI_1_1ListboxProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the list box..." alt="" coords="236,3899,527,3928"/><area shape="rect" id="node151" href="classCEGUI_1_1ListboxProperties_1_1ItemTooltips.html" title="Property to access the show item tooltips setting of the list box." alt="" coords="255,3952,508,3981"/><area shape="rect" id="node153" href="classCEGUI_1_1ListboxProperties_1_1MultiSelect.html" title="Property to access the multi&#45;select setting of the list box." alt="" coords="259,4005,504,4035"/><area shape="rect" id="node155" href="classCEGUI_1_1ListboxProperties_1_1Sort.html" title="Property to access the sort setting of the list box." alt="" coords="279,4059,484,4088"/><area shape="rect" id="node157" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html" title="Property to access the setting for user moving of the column headers." alt="" coords="229,4112,533,4141"/><area shape="rect" id="node159" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsSizable.html" title="Property to access the setting for user sizing of the column headers." alt="" coords="232,4165,531,4195"/><area shape="rect" id="node161" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html" title="Property to access the current sort column (via ID code)." alt="" coords="239,4219,524,4248"/><area shape="rect" id="node163" href="classCEGUI_1_1ListHeaderProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the list header." alt="" coords="243,4272,520,4301"/><area shape="rect" id="node165" href="classCEGUI_1_1ListHeaderProperties_1_1SortSettingEnabled.html" title="Property to access the setting for user modification of the sort column &amp; direction." alt="" coords="224,4325,539,4355"/><area shape="rect" id="node167" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Clickable.html" title="Property to access the click&#45;able setting of the header segment." alt="" coords="227,4379,536,4408"/><area shape="rect" id="node169" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Dragable.html" title="Property to access the drag&#45;able setting of the header segment." alt="" coords="228,4432,535,4461"/><area shape="rect" id="node171" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1MovingCursorImage.html" title="Property to access the segment moving cursor image." alt="" coords="196,4485,567,4515"/><area shape="rect" id="node173" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Sizable.html" title="Property to access the sizable setting of the header segment." alt="" coords="232,4539,531,4568"/><area shape="rect" id="node175" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SizingCursorImage.html" title="Property to access the segment sizing cursor image." alt="" coords="199,4592,564,4621"/><area shape="rect" id="node177" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the header segment." alt="" coords="216,4645,547,4675"/><area shape="rect" id="node179" href="classCEGUI_1_1MenuBaseProperties_1_1AllowMultiplePopups.html" title="Property to access the state of the allow multiple popups setting." alt="" coords="220,4699,543,4728"/><area shape="rect" id="node181" href="classCEGUI_1_1MenuBaseProperties_1_1AutoCloseNestedPopups.html" title="Property to set if the menu should close all its open child popups, when it gets hidden." alt="" coords="207,4752,556,4781"/><area shape="rect" id="node183" href="classCEGUI_1_1MenuBaseProperties_1_1ItemSpacing.html" title="Property to access the item spacing of the menu." alt="" coords="244,4805,519,4835"/><area shape="rect" id="node185" href="classCEGUI_1_1MenuItemProperties_1_1AutoPopupTimeout.html" title="Property to specify the time, which has to elapse before the popup window is opened/closed if the hov..." alt="" coords="227,4859,536,4888"/><area shape="rect" id="node187" href="classCEGUI_1_1MenuItemProperties_1_1PopupOffset.html" title="Property to specify an offset for the popup menu position." alt="" coords="247,4912,516,4941"/><area shape="rect" id="node189" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnHeader.html" title="Property to access a column." alt="" coords="221,4965,541,4995"/><area shape="rect" id="node191" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsMovable.html" title="Property to access the setting for user moving of the column headers." alt="" coords="215,5019,548,5048"/><area shape="rect" id="node193" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsSizable.html" title="Property to access the setting for user sizing of the column headers." alt="" coords="217,5072,545,5101"/><area shape="rect" id="node195" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceHorzScrollbar.html" title="Property to access the &#39;always show&#39; setting for the horizontal scroll bar of the list box..." alt="" coords="208,5125,555,5155"/><area shape="rect" id="node197" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the list box..." alt="" coords="211,5179,552,5208"/><area shape="rect" id="node199" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionColumnID.html" title="Property to access the nominated selection column (via ID)." alt="" coords="176,5232,587,5261"/><area shape="rect" id="node201" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionRow.html" title="Property to access the nominated selection row." alt="" coords="192,5285,571,5315"/><area shape="rect" id="node203" href="classCEGUI_1_1MultiColumnListProperties_1_1RowCount.html" title="Property to access the number of rows in the list (read&#45;only)" alt="" coords="233,5339,529,5368"/><area shape="rect" id="node205" href="classCEGUI_1_1MultiColumnListProperties_1_1SelectionMode.html" title="Property to access the selection mode setting of the list." alt="" coords="221,5392,541,5421"/><area shape="rect" id="node207" href="classCEGUI_1_1MultiColumnListProperties_1_1SortColumnID.html" title="Property to access the current sort column (via ID code)." alt="" coords="223,5445,540,5475"/><area shape="rect" id="node209" href="classCEGUI_1_1MultiColumnListProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the list." alt="" coords="227,5499,536,5528"/><area shape="rect" id="node211" href="classCEGUI_1_1MultiColumnListProperties_1_1SortSettingEnabled.html" title="Property to access the setting for user modification of the sort column &amp; direction." alt="" coords="208,5552,555,5581"/><area shape="rect" id="node213" href="classCEGUI_1_1MultiLineEditboxProperties_1_1CaratIndex.html" title="Property to access the current carat index." alt="" coords="232,5605,531,5635"/><area shape="rect" id="node215" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the box." alt="" coords="209,5659,553,5688"/><area shape="rect" id="node217" href="classCEGUI_1_1MultiLineEditboxProperties_1_1MaxTextLength.html" title="Property to access the maximum text length for the edit box." alt="" coords="219,5712,544,5741"/><area shape="rect" id="node219" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ReadOnly.html" title="Property to access the read&#45;only setting of the edit box." alt="" coords="235,5765,528,5795"/><area shape="rect" id="node221" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionBrushImage.html" title="Property to access the selection brush image." alt="" coords="201,5819,561,5848"/><area shape="rect" id="node223" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionLength.html" title="Property to access the current selection length." alt="" coords="217,5872,545,5901"/><area shape="rect" id="node225" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionStart.html" title="Property to access the current selection start index." alt="" coords="223,5925,540,5955"/><area shape="rect" id="node227" href="classCEGUI_1_1MultiLineEditboxProperties_1_1WordWrap.html" title="Property to access the word&#45;wrap setting of the edit box." alt="" coords="232,5979,531,6008"/><area shape="rect" id="node229" href="classCEGUI_1_1PopupMenuProperties_1_1FadeInTime.html" title="Property to access the fade in time in seconds of the popup menu." alt="" coords="243,6032,520,6061"/><area shape="rect" id="node231" href="classCEGUI_1_1PopupMenuProperties_1_1FadeOutTime.html" title="Property to access the fade out time in seconds of the popup menu." alt="" coords="237,6085,525,6115"/><area shape="rect" id="node233" href="classCEGUI_1_1ProgressBarProperties_1_1CurrentProgress.html" title="Property to access the current progress of the progress bar." alt="" coords="228,6139,535,6168"/><area shape="rect" id="node235" href="classCEGUI_1_1ProgressBarProperties_1_1StepSize.html" title="Property to access the step size setting for the progress bar." alt="" coords="249,6192,513,6221"/><area shape="rect" id="node237" href="classCEGUI_1_1PropertyDefinitionBase.html" title="common base class used for types representing a new property to be available on all widgets that use ..." alt="" coords="279,6245,484,6275"/><area shape="rect" id="node243" href="classCEGUI_1_1RadioButtonProperties_1_1GroupID.html" title="Property to access the radio button group ID." alt="" coords="251,6299,512,6328"/><area shape="rect" id="node245" href="classCEGUI_1_1RadioButtonProperties_1_1Selected.html" title="Property to access the selected state of the RadioButton." alt="" coords="251,6352,512,6381"/><area shape="rect" id="node247" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentArea.html" title="Property to access the current content pane area rectangle (as window relative pixels)." alt="" coords="232,6405,531,6435"/><area shape="rect" id="node249" href="classCEGUI_1_1ScrollablePaneProperties_1_1ContentPaneAutoSized.html" title="Property to access the setting which controls whether the content pane is automatically resized accor..." alt="" coords="200,6459,563,6488"/><area shape="rect" id="node251" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceHorzScrollbar.html" title="Property to access the setting which controls whether the horizontal scroll bar will always be displa..." alt="" coords="212,6512,551,6541"/><area shape="rect" id="node253" href="classCEGUI_1_1ScrollablePaneProperties_1_1ForceVertScrollbar.html" title="Property to access the setting which controls whether the vertical scroll bar will always be displaye..." alt="" coords="215,6565,548,6595"/><area shape="rect" id="node255" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzOverlapSize.html" title="Property to access the overlap size for the horizontal Scrollbar." alt="" coords="219,6619,544,6648"/><area shape="rect" id="node257" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzScrollPosition.html" title="Property to access the scroll position of the horizontal Scrollbar." alt="" coords="215,6672,548,6701"/><area shape="rect" id="node259" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzStepSize.html" title="Property to access the step size for the horizontal Scrollbar." alt="" coords="228,6725,535,6755"/><area shape="rect" id="node261" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertOverlapSize.html" title="Property to access the overlap size for the vertical Scrollbar." alt="" coords="220,6779,543,6808"/><area shape="rect" id="node263" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertScrollPosition.html" title="Property to access the scroll position of the vertical Scrollbar." alt="" coords="216,6832,547,6861"/><area shape="rect" id="node265" href="classCEGUI_1_1ScrollablePaneProperties_1_1VertStepSize.html" title="Property to access the step size for the vertical Scrollbar." alt="" coords="229,6885,533,6915"/><area shape="rect" id="node267" href="classCEGUI_1_1ScrollbarProperties_1_1DocumentSize.html" title="Property to access the document size for the Scrollbar." alt="" coords="243,6939,520,6968"/><area shape="rect" id="node269" href="classCEGUI_1_1ScrollbarProperties_1_1EndLockEnabled.html" title="Property to access the end lock mode setting for the Scrollbar." alt="" coords="237,6992,525,7021"/><area shape="rect" id="node271" href="classCEGUI_1_1ScrollbarProperties_1_1OverlapSize.html" title="Property to access the overlap size for the Scrollbar." alt="" coords="251,7045,512,7075"/><area shape="rect" id="node273" href="classCEGUI_1_1ScrollbarProperties_1_1PageSize.html" title="Property to access the page size for the Scrollbar." alt="" coords="259,7099,504,7128"/><area shape="rect" id="node275" href="classCEGUI_1_1ScrollbarProperties_1_1ScrollPosition.html" title="Property to access the scroll position of the Scrollbar." alt="" coords="247,7152,516,7181"/><area shape="rect" id="node277" href="classCEGUI_1_1ScrollbarProperties_1_1StepSize.html" title="Property to access the step size for the Scrollbar." alt="" coords="260,7205,503,7235"/><area shape="rect" id="node279" href="classCEGUI_1_1ScrolledContainerProperties_1_1ChildExtentsArea.html" title="Property offering read&#45;only access to the current content extents rectangle (as window relative pixel..." alt="" coords="209,7259,553,7288"/><area shape="rect" id="node281" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentArea.html" title="Property to access the current content pane area rectangle (as window relative pixels)." alt="" coords="224,7312,539,7341"/><area shape="rect" id="node283" href="classCEGUI_1_1ScrolledContainerProperties_1_1ContentPaneAutoSized.html" title="Property to access the setting which controls whether the content pane is automatically resized accor..." alt="" coords="192,7365,571,7395"/><area shape="rect" id="node285" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceHorzScrollbar.html" title="Property to access the state of the force horizontal scrollbar setting." alt="" coords="193,7419,569,7448"/><area shape="rect" id="node287" href="classCEGUI_1_1ScrolledItemListBaseProperties_1_1ForceVertScrollbar.html" title="Property to access the state of the force vertical scrollbar setting." alt="" coords="196,7472,567,7501"/><area shape="rect" id="node289" href="classCEGUI_1_1SliderProperties_1_1ClickStepSize.html" title="Property to access the click&#45;step size for the slider." alt="" coords="253,7525,509,7555"/><area shape="rect" id="node291" href="classCEGUI_1_1SliderProperties_1_1CurrentValue.html" title="Property to access the current value of the slider." alt="" coords="257,7579,505,7608"/><area shape="rect" id="node293" href="classCEGUI_1_1SliderProperties_1_1MaximumValue.html" title="Property to access the maximum value of the slider." alt="" coords="251,7632,512,7661"/><area shape="rect" id="node295" href="classCEGUI_1_1SpinnerProperties_1_1CurrentValue.html" title="Property to access the current value of the spinner." alt="" coords="252,7685,511,7715"/><area shape="rect" id="node297" href="classCEGUI_1_1SpinnerProperties_1_1MaximumValue.html" title="Property to access the maximum value setting of the spinner." alt="" coords="244,7739,519,7768"/><area shape="rect" id="node299" href="classCEGUI_1_1SpinnerProperties_1_1MinimumValue.html" title="Property to access the minimum value setting of the spinner." alt="" coords="247,7792,516,7821"/><area shape="rect" id="node301" href="classCEGUI_1_1SpinnerProperties_1_1StepSize.html" title="Property to access the step size of the spinner." alt="" coords="263,7845,500,7875"/><area shape="rect" id="node303" href="classCEGUI_1_1SpinnerProperties_1_1TextInputMode.html" title="Property to access the TextInputMode setting." alt="" coords="247,7899,516,7928"/><area shape="rect" id="node305" href="classCEGUI_1_1TabControlProperties_1_1TabHeight.html" title="Property to access the tab height setting of the tab control." alt="" coords="249,7952,513,7981"/><area shape="rect" id="node307" href="classCEGUI_1_1TabControlProperties_1_1TabPanePosition.html" title="Property to query/set the position of the button pane in tab control." alt="" coords="231,8005,532,8035"/><area shape="rect" id="node309" href="classCEGUI_1_1TabControlProperties_1_1TabTextPadding.html" title="Property to access the tab text padding setting of the tab control." alt="" coords="232,8059,531,8088"/><area shape="rect" id="node311" href="classCEGUI_1_1ThumbProperties_1_1HorzFree.html" title="Property to access the state the setting to free the thumb horizontally." alt="" coords="264,8112,499,8141"/><area shape="rect" id="node313" href="classCEGUI_1_1ThumbProperties_1_1HorzRange.html" title="Property to access the horizontal movement range for the thumb." alt="" coords="259,8165,504,8195"/><area shape="rect" id="node315" href="classCEGUI_1_1ThumbProperties_1_1HotTracked.html" title="Property to access the state of the &quot;hot&#45;tracked&quot; setting for the thumb." alt="" coords="257,8219,505,8248"/><area shape="rect" id="node317" href="classCEGUI_1_1ThumbProperties_1_1VertFree.html" title="Property to access the state the setting to free the thumb vertically." alt="" coords="267,8272,496,8301"/><area shape="rect" id="node319" href="classCEGUI_1_1ThumbProperties_1_1VertRange.html" title="Property to access the vertical movement range for the thumb." alt="" coords="260,8325,503,8355"/><area shape="rect" id="node321" href="classCEGUI_1_1TitlebarProperties_1_1DraggingEnabled.html" title="Property to access the state of the dragging enabled setting for the Titlebar." alt="" coords="240,8379,523,8408"/><area shape="rect" id="node323" href="classCEGUI_1_1TooltipProperties_1_1DisplayTime.html" title="Property to access the time after which the tooltip automatically de&#45;activates itself." alt="" coords="256,8432,507,8461"/><area shape="rect" id="node325" href="classCEGUI_1_1TooltipProperties_1_1FadeTime.html" title="Property to access the duration of the fade effect for the tooltip." alt="" coords="263,8485,500,8515"/><area shape="rect" id="node327" href="classCEGUI_1_1TooltipProperties_1_1HoverTime.html" title="Property to access the timout that must expire before the tooltip gets activated." alt="" coords="260,8539,503,8568"/><area shape="rect" id="node329" href="classCEGUI_1_1TreeProperties_1_1ForceHorzScrollbar.html" title="Property to access the &#39;always show&#39; setting for the horizontal scroll bar of the tree..." alt="" coords="243,8592,520,8621"/><area shape="rect" id="node331" href="classCEGUI_1_1TreeProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the tree." alt="" coords="244,8645,519,8675"/><area shape="rect" id="node333" href="classCEGUI_1_1TreeProperties_1_1ItemTooltips.html" title="Property to access the show item tooltips setting of the tree." alt="" coords="263,8699,500,8728"/><area shape="rect" id="node335" href="classCEGUI_1_1TreeProperties_1_1MultiSelect.html" title="Property to access the multi&#45;select setting of the tree." alt="" coords="267,8752,496,8781"/><area shape="rect" id="node337" href="classCEGUI_1_1TreeProperties_1_1Sort.html" title="Property to access the sort setting of the Tree." alt="" coords="287,8805,476,8835"/><area shape="rect" id="node339" href="classCEGUI_1_1WindowProperties_1_1Alpha.html" title="Property to access window alpha setting." alt="" coords="272,8859,491,8888"/><area shape="rect" id="node341" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html" title="Property to access window &quot;Always&#45;On&#45;Top&quot; setting." alt="" coords="247,8912,516,8941"/><area shape="rect" id="node343" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html" title="Property to get/set whether the Window will automatically attempt to use a full imagery caching Rende..." alt="" coords="223,8965,540,8995"/><area shape="rect" id="node345" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html" title="Property to access window autorepeat delay value." alt="" coords="236,9019,527,9048"/><area shape="rect" id="node347" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html" title="Property to access window autorepeat rate value." alt="" coords="240,9072,523,9101"/><area shape="rect" id="node349" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html" title="Property to access window &quot;clipped by parent&quot; setting." alt="" coords="239,9125,524,9155"/><area shape="rect" id="node351" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html" title="Property to access the custom tooltip for this Window." alt="" coords="231,9179,532,9208"/><area shape="rect" id="node353" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html" title="Property to access window Destroyed by Parent setting." alt="" coords="231,9232,532,9261"/><area shape="rect" id="node355" href="classCEGUI_1_1WindowProperties_1_1Disabled.html" title="Property to access window Disabled setting." alt="" coords="263,9285,500,9315"/><area shape="rect" id="node357" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html" title="Property to access whether inputs are passed to child windows when input is captured to this window..." alt="" coords="216,9339,547,9368"/><area shape="rect" id="node359" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html" title="Property to get/set whether the Window will receive drag and drop related notifications." alt="" coords="241,9392,521,9421"/><area shape="rect" id="node361" href="classCEGUI_1_1WindowProperties_1_1Font.html" title="Property to access window Font setting." alt="" coords="275,9445,488,9475"/><area shape="rect" id="node363" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html" title="Property to access the horizontal alignment setting for the window." alt="" coords="229,9499,533,9528"/><area shape="rect" id="node365" href="classCEGUI_1_1WindowProperties_1_1ID.html" title="Property to access window ID field." alt="" coords="281,9552,481,9581"/><area shape="rect" id="node367" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html" title="Property to access window &quot;Inherits Alpha&quot; setting." alt="" coords="251,9605,512,9635"/><area shape="rect" id="node369" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html" title="Property to access whether the window inherits its tooltip text from its parent when it has no toolti..." alt="" coords="235,9659,528,9688"/><area shape="rect" id="node371" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html" title="Property to access/change the assigned look&#39;n&#39;feel." alt="" coords="256,9712,507,9741"/><area shape="rect" id="node373" href="classCEGUI_1_1WindowProperties_1_1Margin.html" title="Property to access window margin." alt="" coords="268,9765,495,9795"/><area shape="rect" id="node375" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html" title="Property to control whether the window will receive autorepeat mouse button down events." alt="" coords="199,9819,564,9848"/><area shape="rect" id="node377" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html" title="Property to access window mouse cursor setting." alt="" coords="231,9872,532,9901"/><area shape="rect" id="node379" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html" title="Property to access the setting that controls whether mouse input not handled directly by the window w..." alt="" coords="196,9925,567,9955"/><area shape="rect" id="node381" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html" title="Property to access whether the window ignores mouse events and pass them through to any windows behin..." alt="" coords="207,9979,556,10008"/><area shape="rect" id="node383" href="classCEGUI_1_1WindowProperties_1_1NonClient.html" title="Property to access window non&#45;client setting." alt="" coords="259,10032,504,10061"/><area shape="rect" id="node385" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html" title="Property to access window Restore Old Capture setting." alt="" coords="232,10085,531,10115"/><area shape="rect" id="node387" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html" title="Property to access whether the window rises to the top of the z order when clicked." alt="" coords="251,10139,512,10168"/><area shape="rect" id="node389" href="classCEGUI_1_1WindowProperties_1_1Rotation.html" title="Property to access the rotation factors of the window." alt="" coords="264,10192,499,10221"/><area shape="rect" id="node391" href="classCEGUI_1_1WindowProperties_1_1Text.html" title="Property to access window text setting." alt="" coords="275,10245,488,10275"/><area shape="rect" id="node393" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html" title="Property to access window text parsing enabled setting." alt="" coords="229,10299,533,10328"/><area shape="rect" id="node395" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html" title="Property to access the tooltip text for this Window." alt="" coords="268,10352,495,10381"/><area shape="rect" id="node397" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html" title="Property to access the unified area rectangle of the window." alt="" coords="240,10405,523,10435"/><area shape="rect" id="node399" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html" title="Property to access the unified height of the window." alt="" coords="248,10459,515,10488"/><area shape="rect" id="node401" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html" title="Property to access the unified maximum size of the window." alt="" coords="243,10512,520,10541"/><area shape="rect" id="node403" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html" title="Property to access the unified minimum size of the window." alt="" coords="244,10565,519,10595"/><area shape="rect" id="node405" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html" title="Property to access the unified position of the window." alt="" coords="244,10619,519,10648"/><area shape="rect" id="node407" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html" title="Property to access the unified position of the window." alt="" coords="255,10672,508,10701"/><area shape="rect" id="node409" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html" title="Property to access the unified width of the window." alt="" coords="251,10725,512,10755"/><area shape="rect" id="node411" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html" title="Property to access the unified position x&#45;coordinate of the window." alt="" coords="240,10779,523,10808"/><area shape="rect" id="node413" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html" title="Property to access the unified position y&#45;coordinate of the window." alt="" coords="240,10832,523,10861"/><area shape="rect" id="node415" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html" title="Property to access the update mode setting for the window." alt="" coords="251,10885,512,10915"/><area shape="rect" id="node417" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html" title="Property to access the vertical alignment setting for the window." alt="" coords="237,10939,525,10968"/><area shape="rect" id="node419" href="classCEGUI_1_1WindowProperties_1_1Visible.html" title="Property to access window Visible setting." alt="" coords="268,10992,495,11021"/><area shape="rect" id="node421" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html" title="Property to control whether the window will receive double/triple&#45;click events." alt="" coords="220,11045,543,11075"/><area shape="rect" id="node423" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html" title="Property to access/change the assigned window renderer object." alt="" coords="239,11099,524,11128"/><area shape="rect" id="node425" href="classCEGUI_1_1WindowProperties_1_1XRotation.html" title="Property to access the x axis rotation factor of the window." alt="" coords="259,11152,504,11181"/><area shape="rect" id="node427" href="classCEGUI_1_1WindowProperties_1_1YRotation.html" title="Property to access the y axis rotation factor of the window." alt="" coords="259,11205,504,11235"/><area shape="rect" id="node429" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html" title="Property to access window Z&#45;Order changing enabled setting." alt="" coords="223,11259,540,11288"/><area shape="rect" id="node431" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html" title="Property to access the z axis rotation factor of the window." alt="" coords="260,11312,503,11341"/><area shape="rect" id="node433" href="classCEGUI_1_1XercesParserProperties_1_1SchemaDefaultResourceGroup.html" title="Property to access the resource group used to load .xsd schema files." alt="" coords="181,11365,581,11395"/><area shape="rect" id="node239" href="classCEGUI_1_1PropertyDefinition.html" title="Class representing a generic get/set property." alt="" coords="648,6219,824,6248"/><area shape="rect" id="node241" href="classCEGUI_1_1PropertyLinkDefinition.html" title="Class representing a property that links to another property defined on an attached child widget..." alt="" coords="636,6272,836,6301"/></map>
</td></tr>
<tr><td><img src="inherit_graph_46.gif" border="0" alt="" usemap="#CEGUI_1_1PropertyHelper"/>
<map name="CEGUI_1_1PropertyHelper" id="CEGUI_1_1PropertyHelper">
<area shape="rect" id="node1" href="classCEGUI_1_1PropertyHelper.html" title="Helper class used to convert various data types to and from the format expected in Propery strings..." alt="" coords="5,5,165,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_47.gif" border="0" alt="" usemap="#CEGUI_1_1PropertyInitialiser"/>
<map name="CEGUI_1_1PropertyInitialiser" id="CEGUI_1_1PropertyInitialiser">
<area shape="rect" id="node1" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value." alt="" coords="7,5,180,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_48.gif" border="0" alt="" usemap="#CEGUI_1_1PropertyLinkDefinition_1_1LinkTarget"/>
<map name="CEGUI_1_1PropertyLinkDefinition_1_1LinkTarget" id="CEGUI_1_1PropertyLinkDefinition_1_1LinkTarget">
<area shape="rect" id="node1" href="structCEGUI_1_1PropertyLinkDefinition_1_1LinkTarget.html" title="Internal struct used to keep track of targets." alt="" coords="7,5,276,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_49.gif" border="0" alt="" usemap="#CEGUI_1_1RawDataContainer"/>
<map name="CEGUI_1_1RawDataContainer" id="CEGUI_1_1RawDataContainer">
<area shape="rect" id="node1" href="classCEGUI_1_1RawDataContainer.html" title="Class used as the databuffer for loading files throughout the library." alt="" coords="5,5,189,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_50.gif" border="0" alt="" usemap="#CEGUI_1_1Rect"/>
<map name="CEGUI_1_1Rect" id="CEGUI_1_1Rect">
<area shape="rect" id="node1" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle." alt="" coords="5,5,107,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_51.gif" border="0" alt="" usemap="#CEGUI_1_1RefCounted_3_01T_01_4"/>
<map name="CEGUI_1_1RefCounted_3_01T_01_4" id="CEGUI_1_1RefCounted_3_01T_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1RefCounted.html" title="Simple, generic, reference counted pointer class. This is primarily here for use by the Events system..." alt="" coords="7,5,180,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_52.gif" border="0" alt="" usemap="#CEGUI_1_1RegexMatcher"/>
<map name="CEGUI_1_1RegexMatcher" id="CEGUI_1_1RegexMatcher">
<area shape="rect" id="node1" href="classCEGUI_1_1RegexMatcher.html" title="Interface for Regex matching support classes." alt="" coords="7,5,164,35"/><area shape="rect" id="node3" href="classCEGUI_1_1PCRERegexMatcher.html" title="Implementation of RegexMatcher using PCRE." alt="" coords="215,5,409,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_53.gif" border="0" alt="" usemap="#CEGUI_1_1RenderedString"/>
<map name="CEGUI_1_1RenderedString" id="CEGUI_1_1RenderedString">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities." alt="" coords="5,5,168,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_54.gif" border="0" alt="" usemap="#CEGUI_1_1RenderedStringComponent"/>
<map name="CEGUI_1_1RenderedStringComponent" id="CEGUI_1_1RenderedStringComponent">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderedStringComponent.html" title="Base class representing a part of a rendered string. The &#39;part&#39; represented may be a text string..." alt="" coords="7,59,236,88"/><area shape="rect" id="node3" href="classCEGUI_1_1RenderedStringImageComponent.html" title="String component that draws an image." alt="" coords="288,5,555,35"/><area shape="rect" id="node5" href="classCEGUI_1_1RenderedStringTextComponent.html" title="String component that draws an image." alt="" coords="293,59,549,88"/><area shape="rect" id="node7" href="classCEGUI_1_1RenderedStringWidgetComponent.html" title="String component that moves a widget to appear as part of the string." alt="" coords="287,112,556,141"/></map>
</td></tr>
<tr><td><img src="inherit_graph_55.gif" border="0" alt="" usemap="#CEGUI_1_1RenderedStringParser"/>
<map name="CEGUI_1_1RenderedStringParser" id="CEGUI_1_1RenderedStringParser">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderedStringParser.html" title="Specifies interface for classes that parse text into RenderedString objects." alt="" coords="7,32,207,61"/><area shape="rect" id="node3" href="classCEGUI_1_1BasicRenderedStringParser.html" title="Basic RenderedStringParser class that offers support for the following tags:" alt="" coords="260,5,495,35"/><area shape="rect" id="node5" href="classCEGUI_1_1DefaultRenderedStringParser.html" title="Effectively a &#39;null&#39; parser that returns a RenderedString representation that will draw the input tex..." alt="" coords="256,59,499,88"/></map>
</td></tr>
<tr><td><img src="inherit_graph_56.gif" border="0" alt="" usemap="#CEGUI_1_1RenderEffect"/>
<map name="CEGUI_1_1RenderEffect" id="CEGUI_1_1RenderEffect">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved." alt="" coords="7,5,156,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_57.gif" border="0" alt="" usemap="#CEGUI_1_1RenderEffectFactory"/>
<map name="CEGUI_1_1RenderEffectFactory" id="CEGUI_1_1RenderEffectFactory">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderEffectFactory.html" title="Interface for factory objects that create RenderEffect instances. Currently this interface is intende..." alt="" coords="5,5,200,35"/><area shape="rect" id="node3" href="classCEGUI_1_1TplRenderEffectFactory.html" title="Templatised RenderEffectFactory subclass used internally by the system." alt="" coords="249,5,492,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_58.gif" border="0" alt="" usemap="#CEGUI_1_1Renderer"/>
<map name="CEGUI_1_1Renderer" id="CEGUI_1_1Renderer">
<area shape="rect" id="node1" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects." alt="" coords="7,192,132,221"/><area shape="rect" id="node3" href="classCEGUI_1_1Direct3D10Renderer.html" title="Renderer implementation using Direct3D 10." alt="" coords="181,5,373,35"/><area shape="rect" id="node5" href="classCEGUI_1_1Direct3D11Renderer.html" title="Renderer implementation using Direct3D 10." alt="" coords="181,59,373,88"/><area shape="rect" id="node7" href="classCEGUI_1_1Direct3D9Renderer.html" title="Renderer class to interface with Direct3D 9." alt="" coords="185,112,369,141"/><area shape="rect" id="node9" href="classCEGUI_1_1DirectFBRenderer.html" title="Implementation of CEGUI::Renderer interface using DirectFB." alt="" coords="188,165,367,195"/><area shape="rect" id="node11" href="classCEGUI_1_1IrrlichtRenderer.html" title="CEGUI::Renderer implementation for the Irrlicht engine." alt="" coords="196,219,359,248"/><area shape="rect" id="node13" href="classCEGUI_1_1NullRenderer.html" title="CEGUI::Renderer implementation for no particular engine." alt="" coords="203,272,352,301"/><area shape="rect" id="node15" href="classCEGUI_1_1OgreRenderer.html" title="CEGUI::Renderer implementation for the Ogre engine." alt="" coords="200,325,355,355"/><area shape="rect" id="node17" href="classCEGUI_1_1OpenGLRenderer.html" title="Renderer class to interface with OpenGL." alt="" coords="191,379,364,408"/></map>
</td></tr>
<tr><td><img src="inherit_graph_59.gif" border="0" alt="" usemap="#CEGUI_1_1RenderingContext"/>
<map name="CEGUI_1_1RenderingContext" id="CEGUI_1_1RenderingContext">
<area shape="rect" id="node1" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object." alt="" coords="5,5,184,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_60.gif" border="0" alt="" usemap="#CEGUI_1_1RenderQueue"/>
<map name="CEGUI_1_1RenderQueue" id="CEGUI_1_1RenderQueue">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderQueue.html" title="Class that represents a queue of GeometryBuffer objects to be rendered." alt="" coords="7,5,159,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_61.gif" border="0" alt="" usemap="#CEGUI_1_1RenderTarget"/>
<map name="CEGUI_1_1RenderTarget" id="CEGUI_1_1RenderTarget">
<area shape="rect" id="node1" href="classCEGUI_1_1RenderTarget.html" title="Defines interface to some surface that can be rendered to. Concrete instances of objects that impleme..." alt="" coords="5,379,157,408"/><area shape="rect" id="node3" href="classCEGUI_1_1Direct3D10RenderTarget.html" title="Implementation of an ntermediate RenderTarget for the Direct3D 10 API." alt="" coords="205,112,424,141"/><area shape="rect" id="node9" href="classCEGUI_1_1Direct3D11RenderTarget.html" title="Implementation of an ntermediate RenderTarget for the Direct3D 10 API." alt="" coords="205,219,424,248"/><area shape="rect" id="node15" href="classCEGUI_1_1Direct3D9RenderTarget.html" title="Intermediate Direct3D9 implementation of a RenderTarget." alt="" coords="209,272,420,301"/><area shape="rect" id="node21" href="classCEGUI_1_1DirectFBRenderTarget.html" title="Implementation of CEGUI::RenderTarget for DirectFB." alt="" coords="213,592,416,621"/><area shape="rect" id="node23" href="classCEGUI_1_1IrrlichtRenderTarget.html" title="Intermediate RenderTarget implementing common parts for Irrlicht engine." alt="" coords="221,432,408,461"/><area shape="rect" id="node29" href="classCEGUI_1_1NullRenderTarget.html" title="Intermediate RenderTarget." alt="" coords="228,379,401,408"/><area shape="rect" id="node33" href="classCEGUI_1_1OgreRenderTarget.html" title="Intermediate RenderTarget implementing common parts for Ogre engine." alt="" coords="225,485,404,515"/><area shape="rect" id="node39" href="classCEGUI_1_1OpenGLRenderTarget.html" title="Intermediate OpenGL implementation of a RenderTarget." alt="" coords="215,539,415,568"/><area shape="rect" id="node53" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that..." alt="" coords="237,325,392,355"/><area shape="rect" id="node5" href="classCEGUI_1_1Direct3D10TextureTarget.html" title="Direct3D10TextureTarget &#45; allows rendering to Direct3D 10 textures." alt="" coords="476,112,695,141"/><area shape="rect" id="node7" href="classCEGUI_1_1Direct3D10ViewportTarget.html" title="Direct3D10 based RenderTarget that represents the screen or a portion of it." alt="" coords="472,5,699,35"/><area shape="rect" id="node11" href="classCEGUI_1_1Direct3D11TextureTarget.html" title="Direct3D11TextureTarget &#45; allows rendering to Direct3D 10 textures." alt="" coords="476,219,695,248"/><area shape="rect" id="node13" href="classCEGUI_1_1Direct3D11ViewportTarget.html" title="Direct3D10 based RenderTarget that represents the screen or a portion of it." alt="" coords="472,59,699,88"/><area shape="rect" id="node17" href="classCEGUI_1_1Direct3D9TextureTarget.html" title="Direct3D9TextureTarget &#45; allows rendering to an Direct3D9 texture via ." alt="" coords="479,272,692,301"/><area shape="rect" id="node19" href="classCEGUI_1_1Direct3D9ViewportTarget.html" title="Direct3D9 RenderTarget that represents a screen viewport." alt="" coords="476,165,695,195"/><area shape="rect" id="node25" href="classCEGUI_1_1IrrlichtTextureTarget.html" title="CEGUI::TextureTarget implementation for the Irrlicht engine." alt="" coords="491,379,680,408"/><area shape="rect" id="node27" href="classCEGUI_1_1IrrlichtWindowTarget.html" title="CEGUI::RenderTarget that targets a window, or a part of a window." alt="" coords="489,485,681,515"/><area shape="rect" id="node31" href="classCEGUI_1_1NullTextureTarget.html" title="CEGUI::TextureTarget implementation for the Null engine." alt="" coords="497,325,673,355"/><area shape="rect" id="node35" href="classCEGUI_1_1OgreTextureTarget.html" title="CEGUI::TextureTarget implementation for the Ogre engine." alt="" coords="495,432,676,461"/><area shape="rect" id="node37" href="classCEGUI_1_1OgreWindowTarget.html" title="CEGUI::RenderTarget that targets an existing gre::RenderTarget." alt="" coords="493,592,677,621"/><area shape="rect" id="node41" href="classCEGUI_1_1OpenGLTextureTarget.html" title="OpenGLTextureTarget &#45; Common base class for all OpenGL render targets based on some form of RTT suppo..." alt="" coords="484,539,687,568"/><area shape="rect" id="node51" href="classCEGUI_1_1OpenGLViewportTarget.html" title="OpenGL implementation of a RenderTarget that represents am on&#45;scren viewport." alt="" coords="481,645,689,675"/><area shape="rect" id="node43" href="classCEGUI_1_1OpenGLApplePBTextureTarget.html" title="OpenGLApplePBTextureTarget &#45; allows rendering to an OpenGL texture via the Apple pbuffer extension..." alt="" coords="747,459,1000,488"/><area shape="rect" id="node45" href="classCEGUI_1_1OpenGLFBOTextureTarget.html" title="OpenGLFBOTextureTarget &#45; allows rendering to an OpenGL texture via FBO." alt="" coords="759,512,988,541"/><area shape="rect" id="node47" href="classCEGUI_1_1OpenGLGLXPBTextureTarget.html" title="OpenGLGLXPBTextureTarget &#45; allows rendering to an OpenGL texture via the pbuffer provided in GLX 1..." alt="" coords="751,565,996,595"/><area shape="rect" id="node49" href="classCEGUI_1_1OpenGLWGLPBTextureTarget.html" title="OpenGLWGLPBTextureTarget &#45; allows rendering to an OpenGL texture via the pbuffer WGL extension..." alt="" coords="748,619,999,648"/></map>
</td></tr>
<tr><td><img src="inherit_graph_62.gif" border="0" alt="" usemap="#CEGUI_1_1ResourceProvider"/>
<map name="CEGUI_1_1ResourceProvider" id="CEGUI_1_1ResourceProvider">
<area shape="rect" id="node1" href="classCEGUI_1_1ResourceProvider.html" title="Abstract class that defines the required interface for all resource provider sub&#45;classes." alt="" coords="7,59,183,88"/><area shape="rect" id="node3" href="classCEGUI_1_1DefaultResourceProvider.html" title="CEGUI::DefaultResourceProvider" alt="" coords="232,32,451,61"/><area shape="rect" id="node9" href="classCEGUI_1_1OgreResourceProvider.html" title="CEGUI::OgreResourceProvider" alt="" coords="239,85,444,115"/><area shape="rect" id="node5" href="classCEGUI_1_1IrrlichtResourceProvider.html" title="CEGUI::IrrlichtResourceProvider" alt="" coords="501,5,715,35"/><area shape="rect" id="node7" href="classCEGUI_1_1MinizipResourceProvider.html" title="CEGUI::MinizipResourceProvider" alt="" coords="499,59,717,88"/></map>
</td></tr>
<tr><td><img src="inherit_graph_63.gif" border="0" alt="" usemap="#CEGUI_1_1Scheme"/>
<map name="CEGUI_1_1Scheme" id="CEGUI_1_1Scheme">
<area shape="rect" id="node1" href="classCEGUI_1_1Scheme.html" title="A class that groups a set of GUI elements and initialises the system to access those elements..." alt="" coords="7,5,127,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_64.gif" border="0" alt="" usemap="#CEGUI_1_1ScriptFunctor"/>
<map name="CEGUI_1_1ScriptFunctor" id="CEGUI_1_1ScriptFunctor">
<area shape="rect" id="node1" href="classCEGUI_1_1ScriptFunctor.html" title="Functor class used for binding named script functions to events." alt="" coords="7,5,156,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_65.gif" border="0" alt="" usemap="#CEGUI_1_1ScriptModule"/>
<map name="CEGUI_1_1ScriptModule" id="CEGUI_1_1ScriptModule">
<area shape="rect" id="node1" href="classCEGUI_1_1ScriptModule.html" title="Abstract interface required for all scripting support modules to be used with the CEGUI system..." alt="" coords="5,5,155,35"/><area shape="rect" id="node3" href="classCEGUI_1_1LuaScriptModule.html" title="Interface for the LuaScriptModule class." alt="" coords="203,5,373,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_66.gif" border="0" alt="" usemap="#CEGUI_1_1SectionSpecification"/>
<map name="CEGUI_1_1SectionSpecification" id="CEGUI_1_1SectionSpecification">
<area shape="rect" id="node1" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection." alt="" coords="5,5,197,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_67.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01AnimationManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01AnimationManager_01_4" id="CEGUI_1_1Singleton_3_01AnimationManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; AnimationManager \&gt;" alt="" coords="5,5,264,35"/><area shape="rect" id="node3" href="classCEGUI_1_1AnimationManager.html" title="CEGUI::AnimationManager" alt="" coords="312,5,493,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_68.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01Logger_01_4"/>
<map name="CEGUI_1_1Singleton_3_01Logger_01_4" id="CEGUI_1_1Singleton_3_01Logger_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; Logger \&gt;" alt="" coords="7,5,196,35"/><area shape="rect" id="node3" href="classCEGUI_1_1Logger.html" title="Abstract class that defines the interface of a logger object for the GUI system. The default implemen..." alt="" coords="245,5,357,35"/><area shape="rect" id="node5" href="classCEGUI_1_1DefaultLogger.html" title="Default implementation for the Logger class. If you want to redirect CEGUI logs to some place other t..." alt="" coords="405,5,560,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_69.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01RenderEffectManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01RenderEffectManager_01_4" id="CEGUI_1_1Singleton_3_01RenderEffectManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; RenderEffectManager \&gt;" alt="" coords="7,5,284,35"/><area shape="rect" id="node3" href="classCEGUI_1_1RenderEffectManager.html" title="Singleton class that manages creation and destruction of RenderEffect based objects." alt="" coords="333,5,533,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_70.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01T_01_4"/>
<map name="CEGUI_1_1Singleton_3_01T_01_4" id="CEGUI_1_1Singleton_3_01T_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; T \&gt;" alt="" coords="7,5,164,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_71.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01WidgetLookManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01WidgetLookManager_01_4" id="CEGUI_1_1Singleton_3_01WidgetLookManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WidgetLookManager \&gt;" alt="" coords="7,5,276,35"/><area shape="rect" id="node3" href="classCEGUI_1_1WidgetLookManager.html" title="Manager class that gives top&#45;level access to widget data based &quot;look and feel&quot; specifications loaded ..." alt="" coords="325,5,517,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_72.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01WindowFactoryManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01WindowFactoryManager_01_4" id="CEGUI_1_1Singleton_3_01WindowFactoryManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WindowFactoryManager \&gt;" alt="" coords="7,5,297,35"/><area shape="rect" id="node3" href="classCEGUI_1_1WindowFactoryManager.html" title="Class that manages WindowFactory objects." alt="" coords="348,5,561,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_73.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01WindowManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01WindowManager_01_4" id="CEGUI_1_1Singleton_3_01WindowManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1EventSet.html" title="Class that collects together a set of Event objects." alt="" coords="291,325,416,355"/><area shape="rect" id="node3" href="classCEGUI_1_1GlobalEventSet.html" title="The GlobalEventSet singleton allows you to subscribe to an event for all instances of a class..." alt="" coords="536,165,699,195"/><area shape="rect" id="node5" href="classCEGUI_1_1MouseCursor.html" title="Class that allows access to the GUI system mouse cursor." alt="" coords="543,219,692,248"/><area shape="rect" id="node7" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it." alt="" coords="529,325,705,355"/><area shape="rect" id="node13" href="classCEGUI_1_1ResourceEventSet.html" title="implementation class to gather EventSet parts for all template instances." alt="" coords="527,272,708,301"/><area shape="rect" id="node29" href="classCEGUI_1_1System.html" title="The System class is the CEGUI class that provides access to all other elements in this system..." alt="" coords="559,379,676,408"/><area shape="rect" id="node31" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="557,1152,677,1181"/><area shape="rect" id="node117" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects..." alt="" coords="532,432,703,461"/><area shape="rect" id="node9" href="classCEGUI_1_1RenderingRoot.html" title="CEGUI::RenderingRoot" alt="" coords="908,325,1068,355"/><area shape="rect" id="node11" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p..." alt="" coords="899,432,1077,461"/><area shape="rect" id="node15" href="classCEGUI_1_1NamedXMLResourceManager.html" title="Templatised manager class that loads and manages named XML based resources." alt="" coords="839,272,1137,301"/><area shape="rect" id="node17" href="classCEGUI_1_1NamedXMLResourceManager.html" title="CEGUI::NamedXMLResourceManager\&lt; Font, Font_xmlHandler \&gt;" alt="" coords="785,5,1191,35"/><area shape="rect" id="node21" href="classCEGUI_1_1NamedXMLResourceManager.html" title="CEGUI::NamedXMLResourceManager\&lt; Imageset, Imageset_xmlHandler \&gt;" alt="" coords="757,165,1219,195"/><area shape="rect" id="node25" href="classCEGUI_1_1NamedXMLResourceManager.html" title="CEGUI::NamedXMLResourceManager\&lt; Scheme, Scheme_xmlHandler \&gt;" alt="" coords="764,219,1212,248"/><area shape="rect" id="node19" href="classCEGUI_1_1FontManager.html" title="Class providing a shared library of Font objects to the system." alt="" coords="1307,32,1456,61"/><area shape="rect" id="node23" href="classCEGUI_1_1ImagesetManager.html" title="Class providing a shared library of Imageset objects to the system." alt="" coords="1293,139,1469,168"/><area shape="rect" id="node27" href="classCEGUI_1_1SchemeManager.html" title="A class that manages the creation of, access to, and destruction of GUI Scheme objects." alt="" coords="1296,299,1467,328"/><area shape="rect" id="node33" href="classCEGUI_1_1ButtonBase.html" title="Base class for all the &#39;button&#39; type widgets (push button, radio button, check&#45;box, etc)" alt="" coords="917,1659,1059,1688"/><area shape="rect" id="node45" href="classCEGUI_1_1ClippedContainer.html" title="Helper container window that has configurable clipping. Used by the ItemListbox widget." alt="" coords="901,1712,1075,1741"/><area shape="rect" id="node47" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget." alt="" coords="920,1765,1056,1795"/><area shape="rect" id="node49" href="classCEGUI_1_1DragContainer.html" title="Generic drag &amp; drop enabled window class." alt="" coords="909,1819,1067,1848"/><area shape="rect" id="node51" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget." alt="" coords="929,485,1047,515"/><area shape="rect" id="node53" href="classCEGUI_1_1FrameWindow.html" title="Abstract base class for a movable, sizable, window with a title&#45;bar and a frame." alt="" coords="909,539,1067,568"/><area shape="rect" id="node55" href="classCEGUI_1_1GroupBox.html" title="Base class for standard GroupBox widget." alt="" coords="923,592,1053,621"/><area shape="rect" id="node57" href="classCEGUI_1_1GUISheet.html" title="Window class intended to be used as a simple, generic Window." alt="" coords="923,645,1053,675"/><area shape="rect" id="node59" href="classCEGUI_1_1ItemEntry.html" title="Base class for item type widgets." alt="" coords="923,699,1053,728"/><area shape="rect" id="node63" href="classCEGUI_1_1ItemListBase.html" title="Base class for item list widgets." alt="" coords="913,752,1063,781"/><area shape="rect" id="node75" href="classCEGUI_1_1LayoutContainer.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="904,805,1072,835"/><area shape="rect" id="node85" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget." alt="" coords="931,859,1045,888"/><area shape="rect" id="node89" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget." alt="" coords="920,912,1056,941"/><area shape="rect" id="node91" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window." alt="" coords="895,965,1081,995"/><area shape="rect" id="node93" href="classCEGUI_1_1MultiColumnList.html" title="Base class for the multi column list widget." alt="" coords="905,1019,1071,1048"/><area shape="rect" id="node95" href="classCEGUI_1_1MultiLineEditbox.html" title="Base class for the multi&#45;line edit box widget." alt="" coords="904,1072,1072,1101"/><area shape="rect" id="node97" href="classCEGUI_1_1ProgressBar.html" title="Base class for progress bars." alt="" coords="916,1125,1060,1155"/><area shape="rect" id="node99" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget." alt="" coords="908,1179,1068,1208"/><area shape="rect" id="node101" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class." alt="" coords="927,1232,1049,1261"/><area shape="rect" id="node103" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class..." alt="" coords="900,1285,1076,1315"/><area shape="rect" id="node105" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets." alt="" coords="935,1339,1041,1368"/><area shape="rect" id="node107" href="classCEGUI_1_1Spinner.html" title="Base class for the Spinner widget." alt="" coords="929,1392,1047,1421"/><area shape="rect" id="node109" href="classCEGUI_1_1TabControl.html" title="Base class for standard Tab Control widget." alt="" coords="920,1445,1056,1475"/><area shape="rect" id="node111" href="classCEGUI_1_1Titlebar.html" title="Class representing the title bar for Frame Windows." alt="" coords="931,1499,1045,1528"/><area shape="rect" id="node113" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets." alt="" coords="932,1552,1044,1581"/><area shape="rect" id="node115" href="classCEGUI_1_1Tree.html" title="Base class for standard Tree widget." alt="" coords="939,1605,1037,1635"/><area shape="rect" id="node35" href="classCEGUI_1_1Checkbox.html" title="Base class providing logic for Check&#45;box widgets." alt="" coords="1316,1685,1447,1715"/><area shape="rect" id="node37" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets." alt="" coords="1311,1739,1452,1768"/><area shape="rect" id="node41" href="classCEGUI_1_1RadioButton.html" title="Base class to provide the logic for Radio Button widgets." alt="" coords="1309,1579,1453,1608"/><area shape="rect" id="node43" href="classCEGUI_1_1TabButton.html" title="Base class for TabButtons. A TabButton based class is used internally as the button that appears at t..." alt="" coords="1315,1632,1448,1661"/><area shape="rect" id="node39" href="classCEGUI_1_1Thumb.html" title="Base class for Thumb widget." alt="" coords="1601,1739,1713,1768"/><area shape="rect" id="node61" href="classCEGUI_1_1MenuItem.html" title="Base class for menu items." alt="" coords="1316,645,1447,675"/><area shape="rect" id="node65" href="classCEGUI_1_1MenuBase.html" title="Abstract base class for menus." alt="" coords="1315,699,1448,728"/><area shape="rect" id="node71" href="classCEGUI_1_1ScrolledItemListBase.html" title="ScrolledItemListBase window class." alt="" coords="1283,752,1480,781"/><area shape="rect" id="node67" href="classCEGUI_1_1Menubar.html" title="Base class for menu bars." alt="" coords="1596,699,1719,728"/><area shape="rect" id="node69" href="classCEGUI_1_1PopupMenu.html" title="Base class for popup menus." alt="" coords="1587,645,1728,675"/><area shape="rect" id="node73" href="classCEGUI_1_1ItemListbox.html" title="ItemListbox window class." alt="" coords="1587,752,1728,781"/><area shape="rect" id="node77" href="classCEGUI_1_1GridLayoutContainer.html" title="A Layout Container window layouting it&#39;s children into a grid." alt="" coords="1285,805,1477,835"/><area shape="rect" id="node79" href="classCEGUI_1_1SequentialLayoutContainer.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="1267,859,1496,888"/><area shape="rect" id="node81" href="classCEGUI_1_1HorizontalLayoutContainer.html" title="A Layout Container window layouting it&#39;s children Horizontally." alt="" coords="1544,832,1771,861"/><area shape="rect" id="node83" href="classCEGUI_1_1VerticalLayoutContainer.html" title="A Layout Container window layouting it&#39;s children vertically." alt="" coords="1552,885,1763,915"/><area shape="rect" id="node87" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class..." alt="" coords="1300,912,1463,941"/><area shape="rect" id="node118" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers." alt="" coords="7,1899,180,1928"/><area shape="rect" id="node120" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="283,1899,424,1928"/><area shape="rect" id="node122" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface." alt="" coords="568,1899,667,1928"/><area shape="rect" id="node129" href="classCEGUI_1_1XMLParser.html" title="This is an abstract class that is used by CEGUI to interface with XML parser libraries." alt="" coords="548,2059,687,2088"/><area shape="rect" id="node124" href="classCEGUI_1_1FreeTypeFont.html" title="Implementation of the Font class interface using the FreeType library." alt="" coords="911,1925,1065,1955"/><area shape="rect" id="node126" href="classCEGUI_1_1PixmapFont.html" title="Implementation of the Font class interface using static Imageset&#39;s." alt="" coords="917,1872,1059,1901"/><area shape="rect" id="node131" href="classCEGUI_1_1ExpatParser.html" title="Implementation of XMLParser using Expat." alt="" coords="916,2192,1060,2221"/><area shape="rect" id="node133" href="classCEGUI_1_1LibxmlParser.html" title="Implementation of XMLParser using libxml." alt="" coords="913,1979,1063,2008"/><area shape="rect" id="node135" href="classCEGUI_1_1RapidXMLParser.html" title="Implementation of XMLParser using RapidXML." alt="" coords="903,2032,1073,2061"/><area shape="rect" id="node137" href="classCEGUI_1_1TinyXMLParser.html" title="Implementation of XMLParser using TinyXML." alt="" coords="907,2085,1069,2115"/><area shape="rect" id="node139" href="classCEGUI_1_1XercesParser.html" title="Implementation of XMLParser using Xerces&#45;C++." alt="" coords="912,2139,1064,2168"/><area shape="rect" id="node140" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; FontManager \&gt;" alt="" coords="875,59,1101,88"/><area shape="rect" id="node142" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; GlobalEventSet \&gt;" alt="" coords="232,165,475,195"/><area shape="rect" id="node144" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; ImagesetManager \&gt;" alt="" coords="861,112,1115,141"/><area shape="rect" id="node146" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; MouseCursor \&gt;" alt="" coords="239,219,468,248"/><area shape="rect" id="node148" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; SchemeManager \&gt;" alt="" coords="864,379,1112,408"/><area shape="rect" id="node150" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; System \&gt;" alt="" coords="256,379,451,408"/><area shape="rect" id="node152" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WindowManager \&gt;" alt="" coords="229,432,477,461"/></map>
</td></tr>
<tr><td><img src="inherit_graph_74.gif" border="0" alt="" usemap="#CEGUI_1_1Singleton_3_01WindowRendererManager_01_4"/>
<map name="CEGUI_1_1Singleton_3_01WindowRendererManager_01_4" id="CEGUI_1_1Singleton_3_01WindowRendererManager_01_4">
<area shape="rect" id="node1" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WindowRendererManager \&gt;" alt="" coords="5,5,307,35"/><area shape="rect" id="node3" href="classCEGUI_1_1WindowRendererManager.html" title="CEGUI::WindowRendererManager" alt="" coords="356,5,577,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_75.gif" border="0" alt="" usemap="#CEGUI_1_1Size"/>
<map name="CEGUI_1_1Size" id="CEGUI_1_1Size">
<area shape="rect" id="node1" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something." alt="" coords="5,5,104,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_76.gif" border="0" alt="" usemap="#CEGUI_1_1SlotFunctorBase"/>
<map name="CEGUI_1_1SlotFunctorBase" id="CEGUI_1_1SlotFunctorBase">
<area shape="rect" id="node1" href="classCEGUI_1_1SlotFunctorBase.html" title="Defines abstract interface which will be used when constructing various functor objects that bind slo..." alt="" coords="5,112,176,141"/><area shape="rect" id="node3" href="classCEGUI_1_1FreeFunctionSlot.html" title="Slot functor class that calls back via a free function pointer." alt="" coords="255,5,425,35"/><area shape="rect" id="node5" href="classCEGUI_1_1FunctorCopySlot.html" title="Slot template class that creates a functor that calls back via a copy of a functor object..." alt="" coords="239,59,441,88"/><area shape="rect" id="node7" href="classCEGUI_1_1FunctorPointerSlot.html" title="Slot template class that creates a functor that calls back via a functor object pointer." alt="" coords="233,112,447,141"/><area shape="rect" id="node9" href="classCEGUI_1_1FunctorReferenceSlot.html" title="Slot template class that creates a functor that calls back via a functor object reference." alt="" coords="224,165,456,195"/><area shape="rect" id="node11" href="classCEGUI_1_1MemberFunctionSlot.html" title="Slot template class that creates a functor that calls back via a class member function." alt="" coords="228,219,452,248"/></map>
</td></tr>
<tr><td><img src="inherit_graph_77.gif" border="0" alt="" usemap="#CEGUI_1_1StateImagery"/>
<map name="CEGUI_1_1StateImagery" id="CEGUI_1_1StateImagery">
<area shape="rect" id="node1" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state." alt="" coords="7,5,156,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_78.gif" border="0" alt="" usemap="#CEGUI_1_1String"/>
<map name="CEGUI_1_1String" id="CEGUI_1_1String">
<area shape="rect" id="node1" href="classCEGUI_1_1String.html" title="String class used within the GUI system." alt="" coords="5,5,112,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_79.gif" border="0" alt="" usemap="#CEGUI_1_1String_1_1const__iterator"/>
<map name="CEGUI_1_1String_1_1const__iterator" id="CEGUI_1_1String_1_1const__iterator">
<area shape="rect" id="node1" href="classCEGUI_1_1String_1_1const__iterator.html" title="const iterator for String." alt="" coords="5,5,200,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_80.gif" border="0" alt="" usemap="#CEGUI_1_1String_1_1FastLessCompare"/>
<map name="CEGUI_1_1String_1_1FastLessCompare" id="CEGUI_1_1String_1_1FastLessCompare">
<area shape="rect" id="node1" href="structCEGUI_1_1String_1_1FastLessCompare.html" title="Functor that can be used as comparator in a std::map with String keys. It&#39;s faster than using the def..." alt="" coords="7,5,228,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_81.gif" border="0" alt="" usemap="#CEGUI_1_1String_1_1iterator"/>
<map name="CEGUI_1_1String_1_1iterator" id="CEGUI_1_1String_1_1iterator">
<area shape="rect" id="node1" href="classCEGUI_1_1String_1_1iterator.html" title="regular iterator for String." alt="" coords="5,5,160,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_82.gif" border="0" alt="" usemap="#CEGUI_1_1SubscriberSlot"/>
<map name="CEGUI_1_1SubscriberSlot" id="CEGUI_1_1SubscriberSlot">
<area shape="rect" id="node1" href="classCEGUI_1_1SubscriberSlot.html" title="SubscriberSlot class which is used when subscribing to events." alt="" coords="7,5,164,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_83.gif" border="0" alt="" usemap="#CEGUI_1_1Texture"/>
<map name="CEGUI_1_1Texture" id="CEGUI_1_1Texture">
<area shape="rect" id="node1" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects." alt="" coords="5,192,123,221"/><area shape="rect" id="node3" href="classCEGUI_1_1Direct3D10Texture.html" title="Texture implementation for the Direct3D10Renderer." alt="" coords="172,5,353,35"/><area shape="rect" id="node5" href="classCEGUI_1_1Direct3D11Texture.html" title="Texture implementation for the Direct3D11Renderer." alt="" coords="172,59,353,88"/><area shape="rect" id="node7" href="classCEGUI_1_1Direct3D9Texture.html" title="Texture implementation for the Direct3D9Renderer." alt="" coords="175,112,351,141"/><area shape="rect" id="node9" href="classCEGUI_1_1DirectFBTexture.html" title="Implementation of CEGUI::Texture interface using DirectFB." alt="" coords="179,165,347,195"/><area shape="rect" id="node11" href="classCEGUI_1_1IrrlichtTexture.html" title="Implementation of the CEGUI::Texture class for the Irrlicht engine." alt="" coords="187,219,339,248"/><area shape="rect" id="node13" href="classCEGUI_1_1NullTexture.html" title="Implementation of the CEGUI::Texture class for no particular engine." alt="" coords="193,272,332,301"/><area shape="rect" id="node15" href="classCEGUI_1_1OgreTexture.html" title="Implementation of the CEGUI::Texture class for the Ogre engine." alt="" coords="191,325,335,355"/><area shape="rect" id="node17" href="classCEGUI_1_1OpenGLTexture.html" title="Texture implementation for the OpenGLRenderer." alt="" coords="180,379,345,408"/></map>
</td></tr>
<tr><td><img src="inherit_graph_84.gif" border="0" alt="" usemap="#CEGUI_1_1TextUtils"/>
<map name="CEGUI_1_1TextUtils" id="CEGUI_1_1TextUtils">
<area shape="rect" id="node1" href="classCEGUI_1_1TextUtils.html" title="Text utility support class. This class is all static members. You do not create instances of this cla..." alt="" coords="7,5,132,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_85.gif" border="0" alt="" usemap="#CEGUI_1_1TreeItem"/>
<map name="CEGUI_1_1TreeItem" id="CEGUI_1_1TreeItem">
<area shape="rect" id="node1" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items." alt="" coords="5,5,131,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_86.gif" border="0" alt="" usemap="#CEGUI_1_1UBox"/>
<map name="CEGUI_1_1UBox" id="CEGUI_1_1UBox">
<area shape="rect" id="node1" href="classCEGUI_1_1UBox.html" title="Class encapsulating the &#39;Unified Box&#39; &#45; this is usually used for margin." alt="" coords="5,5,112,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_87.gif" border="0" alt="" usemap="#CEGUI_1_1UDim"/>
<map name="CEGUI_1_1UDim" id="CEGUI_1_1UDim">
<area shape="rect" id="node1" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ..." alt="" coords="5,5,112,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_88.gif" border="0" alt="" usemap="#CEGUI_1_1URect"/>
<map name="CEGUI_1_1URect" id="CEGUI_1_1URect">
<area shape="rect" id="node1" href="classCEGUI_1_1URect.html" title="Area rectangle class built using unified dimensions (UDims)." alt="" coords="7,5,116,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_89.gif" border="0" alt="" usemap="#CEGUI_1_1UVector2"/>
<map name="CEGUI_1_1UVector2" id="CEGUI_1_1UVector2">
<area shape="rect" id="node1" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r..." alt="" coords="5,5,133,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_90.gif" border="0" alt="" usemap="#CEGUI_1_1Vector2"/>
<map name="CEGUI_1_1Vector2" id="CEGUI_1_1Vector2">
<area shape="rect" id="node1" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)" alt="" coords="7,5,124,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_91.gif" border="0" alt="" usemap="#CEGUI_1_1Vector3"/>
<map name="CEGUI_1_1Vector3" id="CEGUI_1_1Vector3">
<area shape="rect" id="node1" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector." alt="" coords="7,5,124,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_92.gif" border="0" alt="" usemap="#CEGUI_1_1Vertex"/>
<map name="CEGUI_1_1Vertex" id="CEGUI_1_1Vertex">
<area shape="rect" id="node1" href="structCEGUI_1_1Vertex.html" title="structure that is used to hold details of a single vertex in 3D space." alt="" coords="7,5,116,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_93.gif" border="0" alt="" usemap="#CEGUI_1_1WidgetComponent"/>
<map name="CEGUI_1_1WidgetComponent" id="CEGUI_1_1WidgetComponent">
<area shape="rect" id="node1" href="classCEGUI_1_1WidgetComponent.html" title="Class that encapsulates information regarding a sub&#45;widget required for a widget." alt="" coords="5,5,187,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_94.gif" border="0" alt="" usemap="#CEGUI_1_1WidgetLookFeel"/>
<map name="CEGUI_1_1WidgetLookFeel" id="CEGUI_1_1WidgetLookFeel">
<area shape="rect" id="node1" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type." alt="" coords="7,5,172,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_95.gif" border="0" alt="" usemap="#CEGUI_1_1WindowFactory"/>
<map name="CEGUI_1_1WindowFactory" id="CEGUI_1_1WindowFactory">
<area shape="rect" id="node1" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects." alt="" coords="7,5,169,35"/><area shape="rect" id="node3" href="classCEGUI_1_1TplWindowFactory.html" title="Template based WindowFactory that can be used to automatically generate a WindowFactory given a Windo..." alt="" coords="220,5,433,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_96.gif" border="0" alt="" usemap="#CEGUI_1_1WindowFactoryManager_1_1AliasTargetStack"/>
<map name="CEGUI_1_1WindowFactoryManager_1_1AliasTargetStack" id="CEGUI_1_1WindowFactoryManager_1_1AliasTargetStack">
<area shape="rect" id="node1" href="classCEGUI_1_1WindowFactoryManager_1_1AliasTargetStack.html" title="Class used to track active alias targets for Window factory types." alt="" coords="5,5,328,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_97.gif" border="0" alt="" usemap="#CEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping"/>
<map name="CEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping" id="CEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping">
<area shape="rect" id="node1" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html" title="struct used to hold mapping information required to create a falagard based window." alt="" coords="5,5,373,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_98.gif" border="0" alt="" usemap="#CEGUI_1_1WindowRenderer"/>
<map name="CEGUI_1_1WindowRenderer" id="CEGUI_1_1WindowRenderer">
<area shape="rect" id="node1" href="classCEGUI_1_1WindowRenderer.html" title="Base&#45;class for the assignable WindowRenderer object." alt="" coords="5,539,179,568"/><area shape="rect" id="node3" href="classCEGUI_1_1EditboxWindowRenderer.html" title="Base class for the EditboxWindowRenderer class." alt="" coords="253,5,469,35"/><area shape="rect" id="node7" href="classCEGUI_1_1FalagardButton.html" title="Button class for the FalagardBase module." alt="" coords="281,59,441,88"/><area shape="rect" id="node13" href="classCEGUI_1_1FalagardDefault.html" title="Default class for the FalagardBase module." alt="" coords="279,112,444,141"/><area shape="rect" id="node15" href="classCEGUI_1_1FalagardFrameWindow.html" title="FrameWindow class for the FalagardBase module." alt="" coords="259,165,464,195"/><area shape="rect" id="node17" href="classCEGUI_1_1FalagardListHeaderSegment.html" title="ListHeaderSegment class for the FalagardBase module." alt="" coords="243,219,480,248"/><area shape="rect" id="node19" href="classCEGUI_1_1FalagardProgressBar.html" title="ProgressBar class for the FalagardBase module." alt="" coords="264,272,459,301"/><area shape="rect" id="node21" href="classCEGUI_1_1FalagardStatic.html" title="Static class for the FalagardBase module." alt="" coords="283,325,440,355"/><area shape="rect" id="node27" href="classCEGUI_1_1FalagardTabButton.html" title="TabButton class for the FalagardBase module." alt="" coords="271,379,452,408"/><area shape="rect" id="node29" href="classCEGUI_1_1FalagardTitlebar.html" title="Titlebar class for the FalagardBase module." alt="" coords="279,432,444,461"/><area shape="rect" id="node31" href="classCEGUI_1_1FalagardTree.html" title="Tree class for the FalagardBase module." alt="" coords="287,485,436,515"/><area shape="rect" id="node33" href="classCEGUI_1_1ItemEntryWindowRenderer.html" title="Base class for ItemEntry window renderer objects." alt="" coords="247,539,476,568"/><area shape="rect" id="node39" href="classCEGUI_1_1ItemListBaseWindowRenderer.html" title="Base class for ItemListBase window renderer." alt="" coords="236,592,487,621"/><area shape="rect" id="node47" href="classCEGUI_1_1ListboxWindowRenderer.html" title="Base class for Listbox window renderer." alt="" coords="255,645,468,675"/><area shape="rect" id="node51" href="classCEGUI_1_1ListHeaderWindowRenderer.html" title="Base class for the multi column list header window renderer." alt="" coords="244,699,479,728"/><area shape="rect" id="node55" href="classCEGUI_1_1MultiColumnListWindowRenderer.html" title="Base class for the multi column list window renderer." alt="" coords="228,752,495,781"/><area shape="rect" id="node59" href="classCEGUI_1_1MultiLineEditboxWindowRenderer.html" title="Base class for multi&#45;line edit box window renderer objects." alt="" coords="227,805,496,835"/><area shape="rect" id="node63" href="classCEGUI_1_1ScrollablePaneWindowRenderer.html" title="Base class for ScrollablePane window renderer objects." alt="" coords="232,859,491,888"/><area shape="rect" id="node67" href="classCEGUI_1_1ScrollbarWindowRenderer.html" title="Base class for Scrollbar window renderer objects." alt="" coords="249,912,473,941"/><area shape="rect" id="node71" href="classCEGUI_1_1SliderWindowRenderer.html" title="Base class for ItemEntry window renderer objects." alt="" coords="259,965,464,995"/><area shape="rect" id="node75" href="classCEGUI_1_1TabControlWindowRenderer.html" title="Base class for TabControl window renderer objects." alt="" coords="243,1019,480,1048"/><area shape="rect" id="node79" href="classCEGUI_1_1TooltipWindowRenderer.html" title="Base class for Tooltip window renderer objects." alt="" coords="256,1072,467,1101"/><area shape="rect" id="node5" href="classCEGUI_1_1FalagardEditbox.html" title="Editbox class for the FalagardBase module." alt="" coords="571,5,736,35"/><area shape="rect" id="node9" href="classCEGUI_1_1FalagardSystemButton.html" title="SystemButton class for the FalagardBase module. This class should be used for &#39;system&#39; buttons on a F..." alt="" coords="551,59,756,88"/><area shape="rect" id="node11" href="classCEGUI_1_1FalagardToggleButton.html" title="ToggleButton class for the FalagardBase module." alt="" coords="553,112,753,141"/><area shape="rect" id="node23" href="classCEGUI_1_1FalagardStaticImage.html" title="StaticImage class for the FalagardBase module." alt="" coords="557,272,749,301"/><area shape="rect" id="node25" href="classCEGUI_1_1FalagardStaticText.html" title="StaticText class for the FalagardBase module." alt="" coords="563,325,744,355"/><area shape="rect" id="node35" href="classCEGUI_1_1FalagardItemEntry.html" title="ItemEntry class for the FalagardBase module." alt="" coords="564,379,743,408"/><area shape="rect" id="node37" href="classCEGUI_1_1FalagardMenuItem.html" title="MenuItem class for the FalagardBase module." alt="" coords="563,432,744,461"/><area shape="rect" id="node41" href="classCEGUI_1_1FalagardItemListbox.html" title="ItemListbox class for the FalagardBase module." alt="" coords="559,485,748,515"/><area shape="rect" id="node43" href="classCEGUI_1_1FalagardMenubar.html" title="Menubar class for the FalagardBase module." alt="" coords="567,539,740,568"/><area shape="rect" id="node45" href="classCEGUI_1_1FalagardPopupMenu.html" title="PopupMenu class for the FalagardBase module." alt="" coords="557,592,749,621"/><area shape="rect" id="node49" href="classCEGUI_1_1FalagardListbox.html" title="Listbox class for the FalagardBase module." alt="" coords="571,645,736,675"/><area shape="rect" id="node53" href="classCEGUI_1_1FalagardListHeader.html" title="ListHeader class for the FalagardBase module." alt="" coords="560,699,747,728"/><area shape="rect" id="node57" href="classCEGUI_1_1FalagardMultiColumnList.html" title="MultiColumnList class for the FalagardBase module." alt="" coords="545,752,761,781"/><area shape="rect" id="node61" href="classCEGUI_1_1FalagardMultiLineEditbox.html" title="MultiLineEditbox class for the FalagardBase module." alt="" coords="544,805,763,835"/><area shape="rect" id="node65" href="classCEGUI_1_1FalagardScrollablePane.html" title="ScrollablePane class for the FalagardBase module." alt="" coords="548,859,759,888"/><area shape="rect" id="node69" href="classCEGUI_1_1FalagardScrollbar.html" title="Scrollbar class for the FalagardBase module." alt="" coords="567,912,740,941"/><area shape="rect" id="node73" href="classCEGUI_1_1FalagardSlider.html" title="Slider class for the FalagardBase module." alt="" coords="576,965,731,995"/><area shape="rect" id="node77" href="classCEGUI_1_1FalagardTabControl.html" title="TabControl class for the FalagardBase module." alt="" coords="560,1019,747,1048"/><area shape="rect" id="node81" href="classCEGUI_1_1FalagardTooltip.html" title="Tooltip class for the FalagardBase module." alt="" coords="572,1072,735,1101"/></map>
</td></tr>
<tr><td><img src="inherit_graph_99.gif" border="0" alt="" usemap="#CEGUI_1_1WindowRendererFactory"/>
<map name="CEGUI_1_1WindowRendererFactory" id="CEGUI_1_1WindowRendererFactory">
<area shape="rect" id="node1" href="classCEGUI_1_1WindowRendererFactory.html" title="Base&#45;class for WindowRendererFactory." alt="" coords="7,5,223,35"/><area shape="rect" id="node3" href="classCEGUI_1_1TplWindowRendererFactory.html" title="Template based WindowRendererFactory that can be used to automatically generate a WindowRendererFacto..." alt="" coords="272,5,539,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_100.gif" border="0" alt="" usemap="#CEGUI_1_1WindowRendererModule"/>
<map name="CEGUI_1_1WindowRendererModule" id="CEGUI_1_1WindowRendererModule">
<area shape="rect" id="node1" href="classCEGUI_1_1WindowRendererModule.html" title="Abstract interface for window renderer module objects." alt="" coords="7,5,220,35"/><area shape="rect" id="node3" href="classCEGUI_1_1FalagardWRModule.html" title="Implementation of WindowRendererModule for the Falagard window renderers." alt="" coords="271,5,457,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_101.gif" border="0" alt="" usemap="#CEGUI_1_1WRFactoryRegisterer"/>
<map name="CEGUI_1_1WRFactoryRegisterer" id="CEGUI_1_1WRFactoryRegisterer">
<area shape="rect" id="node1" href="classCEGUI_1_1WRFactoryRegisterer.html" title="Base class encapsulating a type name and common parts of WindowRenderer factory registration." alt="" coords="5,5,205,35"/><area shape="rect" id="node3" href="classCEGUI_1_1TplWRFactoryRegisterer.html" title="Template based implementation of WRFactoryRegisterer that allows easy registration of a factory for a..." alt="" coords="253,5,504,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_102.gif" border="0" alt="" usemap="#CEGUI_1_1XercesHandler"/>
<map name="CEGUI_1_1XercesHandler" id="CEGUI_1_1XercesHandler">
<area shape="rect" id="node1" href="classCEGUI_1_1XercesHandler.html" title="CEGUI::XercesHandler" alt="" coords="7,5,164,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_103.gif" border="0" alt="" usemap="#CEGUI_1_1XMLAttributes"/>
<map name="CEGUI_1_1XMLAttributes" id="CEGUI_1_1XMLAttributes">
<area shape="rect" id="node1" href="classCEGUI_1_1XMLAttributes.html" title="Class representing a block of attributes associated with an XML element." alt="" coords="7,5,161,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_104.gif" border="0" alt="" usemap="#CEGUI_1_1XMLHandler"/>
<map name="CEGUI_1_1XMLHandler" id="CEGUI_1_1XMLHandler">
<area shape="rect" id="node1" href="classCEGUI_1_1XMLHandler.html" title="CEGUI::XMLHandler" alt="" coords="7,272,151,301"/><area shape="rect" id="node3" href="classCEGUI_1_1ChainedXMLHandler.html" title="Abstract XMLHandler based class." alt="" coords="209,139,401,168"/><area shape="rect" id="node17" href="classCEGUI_1_1Config__xmlHandler.html" title="Handler class used to parse the Configuration XML file." alt="" coords="213,192,397,221"/><area shape="rect" id="node19" href="classCEGUI_1_1Font__xmlHandler.html" title="Handler class used to parse the Font XML files to create Font objects." alt="" coords="220,245,391,275"/><area shape="rect" id="node21" href="classCEGUI_1_1GUILayout__xmlHandler.html" title="Handler class used to parse the GUILayout XML files using SAX2." alt="" coords="201,299,409,328"/><area shape="rect" id="node23" href="classCEGUI_1_1Imageset__xmlHandler.html" title="Class used to parse the Imageset XML files to create Imageset objects." alt="" coords="205,352,405,381"/><area shape="rect" id="node25" href="classCEGUI_1_1Scheme__xmlHandler.html" title="Handler class used to parse the Scheme XML files using SAX2." alt="" coords="208,405,403,435"/><area shape="rect" id="node5" href="classCEGUI_1_1Animation__xmlHandler.html" title="Class used to parse stand alone Animation XML files." alt="" coords="481,5,684,35"/><area shape="rect" id="node7" href="classCEGUI_1_1AnimationAffectorHandler.html" title="Chained sub&#45;handler for Affector XML elements." alt="" coords="472,59,693,88"/><area shape="rect" id="node9" href="classCEGUI_1_1AnimationDefinitionHandler.html" title="Chained sub&#45;handler for AnimationDefinition XML elements." alt="" coords="468,112,697,141"/><area shape="rect" id="node11" href="classCEGUI_1_1AnimationKeyFrameHandler.html" title="Chained sub&#45;handler for KeyFrame XML elements." alt="" coords="465,165,700,195"/><area shape="rect" id="node13" href="classCEGUI_1_1AnimationSubscriptionHandler.html" title="Chained sub&#45;handler for Subscription XML elements." alt="" coords="459,219,707,248"/><area shape="rect" id="node15" href="classCEGUI_1_1Falagard__xmlHandler.html" title="Handler class used to parse look &amp; feel XML files used by the Falagard system." alt="" coords="485,272,680,301"/></map>
</td></tr>
<tr><td><img src="inherit_graph_105.gif" border="0" alt="" usemap="#CEGUI_1_1XMLSerializer"/>
<map name="CEGUI_1_1XMLSerializer" id="CEGUI_1_1XMLSerializer">
<area shape="rect" id="node1" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document." alt="" coords="5,5,160,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_106.gif" border="0" alt="" usemap="#IDevice11"/>
<map name="IDevice11" id="IDevice11">
<area shape="rect" id="node1" href="structIDevice11.html" title="IDevice11" alt="" coords="7,5,87,35"/></map>
</td></tr>
<tr><td><img src="inherit_graph_107.gif" border="0" alt="" usemap="#tolua__Error"/>
<map name="tolua__Error" id="tolua__Error">
<area shape="rect" id="node1" href="structtolua__Error.html" title="tolua_Error" alt="" coords="5,5,91,35"/></map>
</td></tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:40 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>