File: classCEGUI_1_1WindowFactoryManager.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 (712 lines) | stat: -rw-r--r-- 55,705 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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
<!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: CEGUI::WindowFactoryManager Class Reference</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><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 id="nav-path" class="navpath">
    <ul>
      <li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a>      </li>
      <li class="navelem"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html">WindowFactoryManager</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#nested-classes">Classes</a> &#124;
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::WindowFactoryManager Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::WindowFactoryManager" --><!-- doxytag: inherits="Singleton&lt; WindowFactoryManager &gt;" -->
<p>Class that manages <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects.  
 <a href="classCEGUI_1_1WindowFactoryManager.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::WindowFactoryManager:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1WindowFactoryManager__inherit__graph.gif" border="0" usemap="#CEGUI_1_1WindowFactoryManager_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1WindowFactoryManager_inherit__map" id="CEGUI_1_1WindowFactoryManager_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WindowFactoryManager \&gt;" alt="" coords="5,5,296,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::WindowFactoryManager:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1WindowFactoryManager__coll__graph.gif" border="0" usemap="#CEGUI_1_1WindowFactoryManager_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1WindowFactoryManager_coll__map" id="CEGUI_1_1WindowFactoryManager_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Singleton.html" title="CEGUI::Singleton\&lt; WindowFactoryManager \&gt;" alt="" coords="5,101,296,131"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1WindowFactoryManager-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager_1_1AliasTargetStack.html">AliasTargetStack</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Class used to track active alias targets for <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> factory types.  <a href="classCEGUI_1_1WindowFactoryManager_1_1AliasTargetStack.html#details">More...</a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html">FalagardWindowMapping</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">struct used to hold mapping information required to create a falagard based window.  <a href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html#details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa713a52f8b478116928d64b255dc7c90"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::WindowFactoryIterator" ref="aa713a52f8b478116928d64b255dc7c90" args="" -->
typedef <a class="el" href="classCEGUI_1_1ConstBaseIterator.html">ConstBaseIterator</a><br class="typebreak"/>
&lt; WindowFactoryRegistry &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>WindowFactoryIterator</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c8753b1cae7763395632f4b67940046"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::TypeAliasIterator" ref="a5c8753b1cae7763395632f4b67940046" args="" -->
typedef <a class="el" href="classCEGUI_1_1ConstBaseIterator.html">ConstBaseIterator</a><br class="typebreak"/>
&lt; TypeAliasRegistry &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>TypeAliasIterator</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7af72eddb57e9b79045141309fa7a58c"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::FalagardMappingIterator" ref="a7af72eddb57e9b79045141309fa7a58c" args="" -->
typedef <a class="el" href="classCEGUI_1_1ConstBaseIterator.html">ConstBaseIterator</a><br class="typebreak"/>
&lt; FalagardMapRegistry &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>FalagardMappingIterator</b></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f3ceb60ebfc49983b25ec5680481381"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::WindowFactoryManager" ref="a1f3ceb60ebfc49983b25ec5680481381" args="(void)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a1f3ceb60ebfc49983b25ec5680481381">WindowFactoryManager</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a new <a class="el" href="classCEGUI_1_1WindowFactoryManager.html" title="Class that manages WindowFactory objects.">WindowFactoryManager</a> object. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2ce18b9a0889181dacb8fee92c2b02ec"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::~WindowFactoryManager" ref="a2ce18b9a0889181dacb8fee92c2b02ec" args="(void)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a2ce18b9a0889181dacb8fee92c2b02ec">~WindowFactoryManager</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1WindowFactoryManager.html" title="Class that manages WindowFactory objects.">WindowFactoryManager</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a02c8bb07749157557fa336df08785845">addFactory</a> (<a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a> *factory)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a new <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> to the list of registered factories.  <a href="#a02c8bb07749157557fa336df08785845"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a7465cef33657bf3c460dc8d6108cdb13">removeFactory</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> from the list of registered factories.  <a href="#a7465cef33657bf3c460dc8d6108cdb13"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#adf54670dd94cce530ce1f31c79e35214">removeFactory</a> (<a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a> *factory)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> from the list of registered factories.  <a href="#adf54670dd94cce530ce1f31c79e35214"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#abfc1f5f6f70349550625b398a0d22103">removeAllFactories</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove all <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects from the list.  <a href="#abfc1f5f6f70349550625b398a0d22103"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#aba6744e9f6cc2722fff683be363943cf">getFactory</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a pointer to the specified <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object.  <a href="#aba6744e9f6cc2722fff683be363943cf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a06814169667846199678a7d59d0253e3">isFactoryPresent</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks the list of registered <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects, aliases, and falagard mapped types for one which can create <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> objects of the specified type.  <a href="#a06814169667846199678a7d59d0253e3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a15f5e4835b44a84816f326425780bdd5">addWindowTypeAlias</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;aliasName, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;targetType)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds an alias for a current window type.  <a href="#a15f5e4835b44a84816f326425780bdd5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a076f7a34585e89a35fc74c5037d654b3">removeWindowTypeAlias</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;aliasName, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;targetType)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the specified alias mapping. If the alias mapping does not exist, nothing happens.  <a href="#a076f7a34585e89a35fc74c5037d654b3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a7f9382c9e1affcd1130cbed13997e2fa">addFalagardWindowMapping</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;newType, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;targetType, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;lookName, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;renderer, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;effectName=<a class="el" href="classCEGUI_1_1String.html">String</a>(&quot;&quot;))</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a mapping for a falagard based window.  <a href="#a7f9382c9e1affcd1130cbed13997e2fa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a9c9c588b1e57f9e75aac58bb8380780e">removeFalagardWindowMapping</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the specified falagard type mapping if it exists.  <a href="#a9c9c588b1e57f9e75aac58bb8380780e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a0a158456a40fd777aecf7b4d1e130b3b">isFalagardMappedType</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether the given type is a falagard mapped type.  <a href="#a0a158456a40fd777aecf7b4d1e130b3b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a7b517901440a0925cb060481e05bceae">getMappedLookForType</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the name of the LookN'Feel assigned to the specified window mapping.  <a href="#a7b517901440a0925cb060481e05bceae"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a3ad5d3856576b27acf49f801147fa8dc">getMappedRendererForType</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the name of the <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> assigned to the specified window mapping.  <a href="#a3ad5d3856576b27acf49f801147fa8dc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#ab74775a1c3c638c723146492057dc579">getDereferencedAliasType</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Use the alias system, where required, to 'de-reference' the specified type to an actual window type that can be created directly (that being either a concrete window type, or a falagard mapped type).  <a href="#ab74775a1c3c638c723146492057dc579"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html">FalagardWindowMapping</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a79b8c0a5c0820efe2207c6a01cd7ba82">getFalagardMappingForType</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html" title="struct used to hold mapping information required to create a falagard based window.">FalagardWindowMapping</a> for the specified window mapping <em>type</em>.  <a href="#a79b8c0a5c0820efe2207c6a01cd7ba82"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa2e6f45913e7d27d0854f150f6dd8d77"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getIterator" ref="aa2e6f45913e7d27d0854f150f6dd8d77" args="(void) const " -->
<a class="el" href="classCEGUI_1_1ConstBaseIterator.html">WindowFactoryIterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#aa2e6f45913e7d27d0854f150f6dd8d77">getIterator</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a WindowFactoryManager::WindowFactoryIterator object to iterate over the available <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> types. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af876b3f284fe78fba191123c1fca8591"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getAliasIterator" ref="af876b3f284fe78fba191123c1fca8591" args="(void) const " -->
<a class="el" href="classCEGUI_1_1ConstBaseIterator.html">TypeAliasIterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#af876b3f284fe78fba191123c1fca8591">getAliasIterator</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a WindowFactoryManager::TypeAliasIterator object to iterate over the defined aliases for window types. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10e10a880b0c915c735a97ed27bf415e"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getFalagardMappingIterator" ref="a10e10a880b0c915c735a97ed27bf415e" args="() const " -->
<a class="el" href="classCEGUI_1_1ConstBaseIterator.html">FalagardMappingIterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#a10e10a880b0c915c735a97ed27bf415e">getFalagardMappingIterator</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a WindowFactoryManager::FalagardMappingIterator object to iterate over the defined falagard window mappings. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top">static void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WindowFactoryManager.html#aba30b7195b992b7e6d0b91c4d1ea770b">addFactory</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> of the type <em>T</em> and adds it to the system for use. The created <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> will automatically be deleted when the factory is removed from the system (either directly or at system deletion time).  <a href="#aba30b7195b992b7e6d0b91c4d1ea770b"></a><br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Class that manages <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects. </p>
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000002">Todo:</a></b></dt><dd>I think we could clean up the mapping stuff a bit. Possibly make it more generic now with the window renderers and all. </dd></dl>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a02c8bb07749157557fa336df08785845"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::addFactory" ref="a02c8bb07749157557fa336df08785845" args="(WindowFactory *factory)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::addFactory </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a> *&#160;</td>
          <td class="paramname"><em>factory</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a new <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> to the list of registered factories. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">factory</td><td>Pointer to the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> to be added to the <a class="el" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1NullObjectException.html" title="Exception class used when some required object or parameter is null.">NullObjectException</a></td><td><em>factory</em> was null. </td></tr>
    <tr><td class="paramname"><a class="el" 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...">AlreadyExistsException</a></td><td><em>factory</em> provided a <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> type name which is in use by another registered <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aba30b7195b992b7e6d0b91c4d1ea770b"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::addFactory" ref="aba30b7195b992b7e6d0b91c4d1ea770b" args="()" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template&lt;typename T &gt; </div>
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::addFactory </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Creates a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> of the type <em>T</em> and adds it to the system for use. The created <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> will automatically be deleted when the factory is removed from the system (either directly or at system deletion time). </p>
<dl><dt><b>Template Parameters:</b></dt><dd>
  <table class="">
    <tr><td class="paramname">T</td><td>Specifies the type of <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> subclass to add a factory for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>

<p>References <a class="el" href="classCEGUI_1_1WindowFactory.html#ab2cb168dc985ef374ca8660fa3604415">CEGUI::WindowFactory::getTypeName()</a>.</p>

</div>
</div>
<a class="anchor" id="a7f9382c9e1affcd1130cbed13997e2fa"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::addFalagardWindowMapping" ref="a7f9382c9e1affcd1130cbed13997e2fa" args="(const String &amp;newType, const String &amp;targetType, const String &amp;lookName, const String &amp;renderer, const String &amp;effectName=String(&quot;&quot;))" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::addFalagardWindowMapping </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>newType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>targetType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>lookName</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>renderer</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>effectName</em> = <code><a class="el" href="classCEGUI_1_1String.html">String</a>(&quot;&quot;)</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add a mapping for a falagard based window. </p>
<p>This function creates maps a target window type and target 'look' name onto a registered window type, thus allowing the ususal window creation interface to be used to create windows that require extra information to full initialise themselves. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>These mappings support 'late binding' to the target window type, as such the type indicated by <em>targetType</em> need not exist in the system until attempting to create a <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> using the type. </dd></dl>
<dl class="user"><dt><b></b></dt><dd>Also note that creating a mapping for an existing type will replace any previous mapping for that same type.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">newType</td><td>The type name that will be used to create windows using the target type and look.</td></tr>
    <tr><td class="paramname">targetType</td><td>The base window type.</td></tr>
    <tr><td class="paramname">lookName</td><td>The name of the 'look' that will be used by windows of this type.</td></tr>
    <tr><td class="paramname">renderer</td><td>The type of window renderer to assign for windows of this type.</td></tr>
    <tr><td class="paramname">effectName</td><td>The identifier of the <a class="el" 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.">RenderEffect</a> to attempt to set up for windows of this type.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a15f5e4835b44a84816f326425780bdd5"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::addWindowTypeAlias" ref="a15f5e4835b44a84816f326425780bdd5" args="(const String &amp;aliasName, const String &amp;targetType)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::addWindowTypeAlias </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>aliasName</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>targetType</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds an alias for a current window type. </p>
<p>This method allows you to create an alias for a specified window type. This means that you can then use either name as the type parameter when creating a window.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>You need to be careful using this system. Creating an alias using a name that already exists will replace the previous mapping for that alias. Each alias name maintains a stack, which means that it is possible to remove an alias and have the previous alias restored. The windows created via an alias use the real type, so removing an alias after window creation is always safe (i.e. it is not the same as removing a real factory, which would cause an exception when trying to destroy a window with a missing factory).</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">aliasName</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the alias name. That is the name that <em>targetType</em> will also be known as from no on.</td></tr>
    <tr><td class="paramname">targetType</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the type window type name that is to be aliased. This type must already exist.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>thrown if <em>targetType</em> is not known within the system. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab74775a1c3c638c723146492057dc579"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getDereferencedAliasType" ref="ab74775a1c3c638c723146492057dc579" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1String.html">String</a> CEGUI::WindowFactoryManager::getDereferencedAliasType </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Use the alias system, where required, to 'de-reference' the specified type to an actual window type that can be created directly (that being either a concrete window type, or a falagard mapped type). </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Even though implied by the above description, this method does not check that a factory for the final type exists; we simply say that the returned type is not an alias for some other type.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> describing the type to be de-referenced.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding a type for a window that can be created directly; that is, a type that does not describe an alias to some other type. </dd></dl>

</div>
</div>
<a class="anchor" id="aba6744e9f6cc2722fff683be363943cf"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getFactory" ref="aba6744e9f6cc2722fff683be363943cf" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a>* CEGUI::WindowFactoryManager::getFactory </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a pointer to the specified <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> object type to return the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object that creates Windows of the type <em>type</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>No <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object for <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> objects of type <em>type</em> was found. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a79b8c0a5c0820efe2207c6a01cd7ba82"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getFalagardMappingForType" ref="a79b8c0a5c0820efe2207c6a01cd7ba82" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html">FalagardWindowMapping</a>&amp; CEGUI::WindowFactoryManager::getFalagardMappingForType </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html" title="struct used to hold mapping information required to create a falagard based window.">FalagardWindowMapping</a> for the specified window mapping <em>type</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>Name of a window type. The window type referenced should be a falagard mapped type.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="structCEGUI_1_1WindowFactoryManager_1_1FalagardWindowMapping.html" title="struct used to hold mapping information required to create a falagard based window.">FalagardWindowMapping</a> object describing the falagard mapping.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>type</em> is not a falagard mapping type (or maybe the type didn't exist). </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7b517901440a0925cb060481e05bceae"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getMappedLookForType" ref="a7b517901440a0925cb060481e05bceae" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>&amp; CEGUI::WindowFactoryManager::getMappedLookForType </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the name of the LookN'Feel assigned to the specified window mapping. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>Name of a window type. The window type referenced should be a falagard mapped type.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the name of the look mapped for the requested type.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>type</em> is not a falagard mapping type (or maybe the type didn't exist). </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3ad5d3856576b27acf49f801147fa8dc"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::getMappedRendererForType" ref="a3ad5d3856576b27acf49f801147fa8dc" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>&amp; CEGUI::WindowFactoryManager::getMappedRendererForType </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the name of the <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> assigned to the specified window mapping. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>Name of a window type. The window type referenced should be a falagard mapped type.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the name of the window renderer mapped for the requested type.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>type</em> is not a falagard mapping type (or maybe the type didn't exist). </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a06814169667846199678a7d59d0253e3"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::isFactoryPresent" ref="a06814169667846199678a7d59d0253e3" args="(const String &amp;name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::WindowFactoryManager::isFactoryPresent </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Checks the list of registered <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects, aliases, and falagard mapped types for one which can create <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> objects of the specified type. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> type name to check for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a>, alias, or falagard mapping for <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> objects of type <em>name</em> is registered.</li>
<li>false if the system knows nothing about windows of type <em>name</em>. </li>
</ul>
</dd></dl>

</div>
</div>
<a class="anchor" id="a0a158456a40fd777aecf7b4d1e130b3b"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::isFalagardMappedType" ref="a0a158456a40fd777aecf7b4d1e130b3b" args="(const String &amp;type) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::WindowFactoryManager::isFalagardMappedType </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return whether the given type is a falagard mapped type. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>Name of a window type.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the requested type is a Falagard mapped window type.</li>
<li>false if the requested type is a normal <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> (or alias), or if the type does not exist. </li>
</ul>
</dd></dl>

</div>
</div>
<a class="anchor" id="abfc1f5f6f70349550625b398a0d22103"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::removeAllFactories" ref="abfc1f5f6f70349550625b398a0d22103" args="(void)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::removeAllFactories </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Remove all <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> objects from the list. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>

</div>
</div>
<a class="anchor" id="a7465cef33657bf3c460dc8d6108cdb13"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::removeFactory" ref="a7465cef33657bf3c460dc8d6108cdb13" args="(const String &amp;name)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::removeFactory </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Removes a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> from the list of registered factories. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>The <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object is not destroyed (since it was created externally), instead it is just removed from the list.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> which holds the name (technically, <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> type name) of the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> to be removed. If <em>name</em> is not in the list, no error occurs (nothing happens).</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>

</div>
</div>
<a class="anchor" id="adf54670dd94cce530ce1f31c79e35214"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::removeFactory" ref="adf54670dd94cce530ce1f31c79e35214" args="(WindowFactory *factory)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::removeFactory </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1WindowFactory.html">WindowFactory</a> *&#160;</td>
          <td class="paramname"><em>factory</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Removes a <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> from the list of registered factories. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>The <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> object is not destroyed (since it was created externally), instead it is just removed from the list.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">factory</td><td>Pointer to the factory object to be removed. If <em>factory</em> is null, or if no such <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> is in the list, no error occurs (nothing happens).</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>

</div>
</div>
<a class="anchor" id="a9c9c588b1e57f9e75aac58bb8380780e"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::removeFalagardWindowMapping" ref="a9c9c588b1e57f9e75aac58bb8380780e" args="(const String &amp;type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::removeFalagardWindowMapping </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>type</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Remove the specified falagard type mapping if it exists. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a076f7a34585e89a35fc74c5037d654b3"></a><!-- doxytag: member="CEGUI::WindowFactoryManager::removeWindowTypeAlias" ref="a076f7a34585e89a35fc74c5037d654b3" args="(const String &amp;aliasName, const String &amp;targetType)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WindowFactoryManager::removeWindowTypeAlias </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>aliasName</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>targetType</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Remove the specified alias mapping. If the alias mapping does not exist, nothing happens. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>You are required to supply both the alias and target names because there may exist more than one entry for a given alias - therefore you are required to be explicit about which alias is to be removed.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">aliasName</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the alias name.</td></tr>
    <tr><td class="paramname">targetType</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the type window type name that was aliased.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 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>