File: classCEGUI_1_1WidgetLookFeel.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 (933 lines) | stat: -rw-r--r-- 65,547 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
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
<!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::WidgetLookFeel 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_1WidgetLookFeel.html">WidgetLookFeel</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::WidgetLookFeel Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::WidgetLookFeel" -->
<p>Class that encapsulates look &amp; feel information for a particular widget type.  
 <a href="classCEGUI_1_1WidgetLookFeel.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"/> Collaboration diagram for CEGUI::WidgetLookFeel:</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_1WidgetLookFeel__coll__graph.gif" border="0" usemap="#CEGUI_1_1WidgetLookFeel_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1WidgetLookFeel_coll__map" id="CEGUI_1_1WidgetLookFeel_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1String.html" title="String class used within the GUI system." alt="" coords="35,5,141,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1WidgetLookFeel-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2c66bb2298d8fa674338b4b31ae6781a">PropertyList</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a793e67aca71832675b584deacaf9cfd1"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::PropertyDefinitionList" ref="a793e67aca71832675b584deacaf9cfd1" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1PropertyDefinition.html">PropertyDefinition</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>PropertyDefinitionList</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4499aff1cee090a6ff00f0fe70502860"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::PropertyLinkDefinitionList" ref="a4499aff1cee090a6ff00f0fe70502860" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html">PropertyLinkDefinition</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>PropertyLinkDefinitionList</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="abc1573a3fb6e5e06547868035d102f49"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::WidgetLookFeel" ref="abc1573a3fb6e5e06547868035d102f49" args="(const String &amp;name)" -->
&#160;</td><td class="memItemRight" valign="bottom"><b>WidgetLookFeel</b> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1StateImagery.html">StateImagery</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#abcf43d6e0b73e299fb11a32aee001054">getStateImagery</a> (const <a class="el" href="classCEGUI_1_1String.html">CEGUI::String</a> &amp;state) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a const reference to the <a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object for the specified state.  <a href="#abcf43d6e0b73e299fb11a32aee001054"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1ImagerySection.html">ImagerySection</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#ae4ad86d437d386f445d9fa0fa78a4efe">getImagerySection</a> (const <a class="el" href="classCEGUI_1_1String.html">CEGUI::String</a> &amp;section) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a const reference to the <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> object with the specified name.  <a href="#ae4ad86d437d386f445d9fa0fa78a4efe"></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_1WidgetLookFeel.html#a9cdc77c0ded23d288b866bc0008bee53">getName</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the name of the widget look.  <a href="#a9cdc77c0ded23d288b866bc0008bee53"></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_1WidgetLookFeel.html#a1284801b7e7b7987cc3246f8ebd68b11">addImagerySection</a> (const <a class="el" href="classCEGUI_1_1ImagerySection.html">ImagerySection</a> &amp;section)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add an <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a1284801b7e7b7987cc3246f8ebd68b11"></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_1WidgetLookFeel.html#a4cbba1cc5d56ac18b41b978d4086d54d">addWidgetComponent</a> (const <a class="el" href="classCEGUI_1_1WidgetComponent.html">WidgetComponent</a> &amp;widget)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a <a class="el" href="classCEGUI_1_1WidgetComponent.html" title="Class that encapsulates information regarding a sub-widget required for a widget.">WidgetComponent</a> to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a4cbba1cc5d56ac18b41b978d4086d54d"></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_1WidgetLookFeel.html#a31769b7720df8c13f83b16bd5315e873">addStateSpecification</a> (const <a class="el" href="classCEGUI_1_1StateImagery.html">StateImagery</a> &amp;state)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a state specification (<a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object) to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a31769b7720df8c13f83b16bd5315e873"></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_1WidgetLookFeel.html#a45bdbc9a316fc3195cfe0a9351c14c74">addPropertyInitialiser</a> (const <a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a> &amp;initialiser)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a property initialiser to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a45bdbc9a316fc3195cfe0a9351c14c74"></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_1WidgetLookFeel.html#a021e622c370d874728aadf697d0f6ac9">clearImagerySections</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all ImagerySections from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a021e622c370d874728aadf697d0f6ac9"></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_1WidgetLookFeel.html#a78f43b273445a3751062c445bcb21fc0">clearWidgetComponents</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all WidgetComponents from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a78f43b273445a3751062c445bcb21fc0"></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_1WidgetLookFeel.html#a66c90cf37451f4809c29526edc4229e9">clearStateSpecifications</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all <a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> objects from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a66c90cf37451f4809c29526edc4229e9"></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_1WidgetLookFeel.html#aa13631b15716b6991ad1e5abe76c7947">clearPropertyInitialisers</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> objects from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#aa13631b15716b6991ad1e5abe76c7947"></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_1WidgetLookFeel.html#abc8693f9752757528bea7b66192d8750">initialiseWidget</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;widget) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Initialise the given window using PropertyInitialsers and component widgets specified for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#abc8693f9752757528bea7b66192d8750"></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_1WidgetLookFeel.html#aa7890215319b9213dfad7214f102efd3">cleanUpWidget</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;widget) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clean up the given window from all properties and component widgets created by this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#aa7890215319b9213dfad7214f102efd3"></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_1WidgetLookFeel.html#a7ba4bf2e0617ffea4fb7b21df6e2e03c">isStateImageryPresent</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;state) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether imagery is defined for the given state.  <a href="#a7ba4bf2e0617ffea4fb7b21df6e2e03c"></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_1WidgetLookFeel.html#a49fc59a090837fb8a8e3b620cf89499a">addNamedArea</a> (const <a class="el" href="classCEGUI_1_1NamedArea.html">NamedArea</a> &amp;area)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a named area to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a49fc59a090837fb8a8e3b620cf89499a"></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_1WidgetLookFeel.html#ae000d8206ebdb162f6d53f1eff7e4de9">clearNamedAreas</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all defined named areas from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#ae000d8206ebdb162f6d53f1eff7e4de9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1NamedArea.html">NamedArea</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#aaf1e4481533a814f426cde17130b57a2">getNamedArea</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">Return the <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> with the specified name.  <a href="#aaf1e4481533a814f426cde17130b57a2"></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_1WidgetLookFeel.html#af4f3b809876e2f8bf783c933afdea5be">isNamedAreaDefined</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">return whether a <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> object with the specified name exists for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#af4f3b809876e2f8bf783c933afdea5be"></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_1WidgetLookFeel.html#af9a1e87048af6bbe37b20847e014731f">layoutChildWidgets</a> (const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;owner) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Layout the child widgets defined for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> which are attached to the given window.  <a href="#af9a1e87048af6bbe37b20847e014731f"></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_1WidgetLookFeel.html#a835cd6fb6055f99bb4ecc69b0dd87f64">addPropertyDefinition</a> (const <a class="el" href="classCEGUI_1_1PropertyDefinition.html">PropertyDefinition</a> &amp;propdef)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a property definition to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a835cd6fb6055f99bb4ecc69b0dd87f64"></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_1WidgetLookFeel.html#a79e3c0a76afdb3d9a025e43c77fc9c35">addPropertyLinkDefinition</a> (const <a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html">PropertyLinkDefinition</a> &amp;propdef)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a property link definition to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a79e3c0a76afdb3d9a025e43c77fc9c35"></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_1WidgetLookFeel.html#ac6d122ba6ee9b9f5ba7f3c62e4de4a7e">clearPropertyDefinitions</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all defined property definitions from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#ac6d122ba6ee9b9f5ba7f3c62e4de4a7e"></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_1WidgetLookFeel.html#a62c9cf84abb044aefa33c15fa01c8d8e">clearPropertyLinkDefinitions</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Clear all defined property link definitions from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a62c9cf84abb044aefa33c15fa01c8d8e"></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_1WidgetLookFeel.html#a7bedeae2a2a98a7cfc7cb3085bd6440c">addAnimationName</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;anim_name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add the name of an animation that is associated with the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a7bedeae2a2a98a7cfc7cb3085bd6440c"></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_1WidgetLookFeel.html#a580465186826b8cededad91093e9733f">writeXMLToStream</a> (<a class="el" href="classCEGUI_1_1XMLSerializer.html">XMLSerializer</a> &amp;xml_stream) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Writes an xml representation of this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> to <em>out_stream</em>.  <a href="#a580465186826b8cededad91093e9733f"></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_1WidgetLookFeel.html#a8079e772ad32246a6b4a4d93e01811b7">renameChildren</a> (const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;widget, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;newBaseName) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Uses 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> to rename the child windows that are created for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a8079e772ad32246a6b4a4d93e01811b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2e23de0323f89e17aec07a1e5fdbc1e9">findPropertyInitialiser</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;propertyName) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Takes the name of a property and returns a pointer to the last <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> for this property or 0 if the is no <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> for this property in the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.  <a href="#a2e23de0323f89e17aec07a1e5fdbc1e9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1WidgetComponent.html">WidgetComponent</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a765ccfeb163ea267f1e085286817c71a">findWidgetComponent</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;nameSuffix) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Takes the namesuffix for a widget component and returns a pointer to it if it exists or 0 if it does'nt.  <a href="#a765ccfeb163ea267f1e085286817c71a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const PropertyDefinitionList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#af9541c708778452ac06e7345cc8af0c3">getPropertyDefinitions</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const PropertyLinkDefinitionList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a9776886b689583038a5222fa95e7747d">getPropertyLinkDefinitions</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2c66bb2298d8fa674338b4b31ae6781a">PropertyList</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a596ef53801d6788388ea75fa27a431ee">getProperties</a> () const </td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Class that encapsulates look &amp; feel information for a particular widget type. </p>
</div><hr/><h2>Member Typedef Documentation</h2>
<a class="anchor" id="a2c66bb2298d8fa674338b4b31ae6781a"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::PropertyList" ref="a2c66bb2298d8fa674338b4b31ae6781a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef std::vector&lt;<a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a>&gt; <a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2c66bb2298d8fa674338b4b31ae6781a">CEGUI::WidgetLookFeel::PropertyList</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Typedefs for property related lists. </p>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a7bedeae2a2a98a7cfc7cb3085bd6440c"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addAnimationName" ref="a7bedeae2a2a98a7cfc7cb3085bd6440c" args="(const String &amp;anim_name)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addAnimationName </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>anim_name</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add the name of an animation that is associated with the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">anim_name</td><td>Reference to a <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object that contains the name of the animation to be associated with this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1284801b7e7b7987cc3246f8ebd68b11"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addImagerySection" ref="a1284801b7e7b7987cc3246f8ebd68b11" args="(const ImagerySection &amp;section)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addImagerySection </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ImagerySection.html">ImagerySection</a> &amp;&#160;</td>
          <td class="paramname"><em>section</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add an <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">section</td><td><a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a49fc59a090837fb8a8e3b620cf89499a"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addNamedArea" ref="a49fc59a090837fb8a8e3b620cf89499a" args="(const NamedArea &amp;area)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addNamedArea </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1NamedArea.html">NamedArea</a> &amp;&#160;</td>
          <td class="paramname"><em>area</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a named area to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">area</td><td><a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a835cd6fb6055f99bb4ecc69b0dd87f64"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addPropertyDefinition" ref="a835cd6fb6055f99bb4ecc69b0dd87f64" args="(const PropertyDefinition &amp;propdef)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addPropertyDefinition </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyDefinition.html">PropertyDefinition</a> &amp;&#160;</td>
          <td class="paramname"><em>propdef</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a property definition to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">propdef</td><td><a class="el" href="classCEGUI_1_1PropertyDefinition.html" title="Class representing a generic get/set property.">PropertyDefinition</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a45bdbc9a316fc3195cfe0a9351c14c74"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addPropertyInitialiser" ref="a45bdbc9a316fc3195cfe0a9351c14c74" args="(const PropertyInitialiser &amp;initialiser)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addPropertyInitialiser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a> &amp;&#160;</td>
          <td class="paramname"><em>initialiser</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add a property initialiser to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">initialiser</td><td><a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a79e3c0a76afdb3d9a025e43c77fc9c35"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addPropertyLinkDefinition" ref="a79e3c0a76afdb3d9a025e43c77fc9c35" args="(const PropertyLinkDefinition &amp;propdef)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addPropertyLinkDefinition </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html">PropertyLinkDefinition</a> &amp;&#160;</td>
          <td class="paramname"><em>propdef</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Adds a property link definition to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">propdef</td><td><a class="el" href="classCEGUI_1_1PropertyLinkDefinition.html" title="Class representing a property that links to another property defined on an attached child widget...">PropertyLinkDefinition</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a31769b7720df8c13f83b16bd5315e873"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addStateSpecification" ref="a31769b7720df8c13f83b16bd5315e873" args="(const StateImagery &amp;state)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addStateSpecification </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1StateImagery.html">StateImagery</a> &amp;&#160;</td>
          <td class="paramname"><em>state</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add a state specification (<a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object) to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">section</td><td><a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a4cbba1cc5d56ac18b41b978d4086d54d"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::addWidgetComponent" ref="a4cbba1cc5d56ac18b41b978d4086d54d" args="(const WidgetComponent &amp;widget)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::addWidgetComponent </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1WidgetComponent.html">WidgetComponent</a> &amp;&#160;</td>
          <td class="paramname"><em>widget</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add a <a class="el" href="classCEGUI_1_1WidgetComponent.html" title="Class that encapsulates information regarding a sub-widget required for a widget.">WidgetComponent</a> to the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">widget</td><td><a class="el" href="classCEGUI_1_1WidgetComponent.html" title="Class that encapsulates information regarding a sub-widget required for a widget.">WidgetComponent</a> object to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="aa7890215319b9213dfad7214f102efd3"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::cleanUpWidget" ref="aa7890215319b9213dfad7214f102efd3" args="(Window &amp;widget) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::cleanUpWidget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>widget</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clean up the given window from all properties and component widgets created by this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">widget</td><td><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> based object to be cleaned up.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a021e622c370d874728aadf697d0f6ac9"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearImagerySections" ref="a021e622c370d874728aadf697d0f6ac9" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearImagerySections </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all ImagerySections from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ae000d8206ebdb162f6d53f1eff7e4de9"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearNamedAreas" ref="ae000d8206ebdb162f6d53f1eff7e4de9" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearNamedAreas </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all defined named areas from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ac6d122ba6ee9b9f5ba7f3c62e4de4a7e"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearPropertyDefinitions" ref="ac6d122ba6ee9b9f5ba7f3c62e4de4a7e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearPropertyDefinitions </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all defined property definitions from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="aa13631b15716b6991ad1e5abe76c7947"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearPropertyInitialisers" ref="aa13631b15716b6991ad1e5abe76c7947" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearPropertyInitialisers </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> objects from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a62c9cf84abb044aefa33c15fa01c8d8e"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearPropertyLinkDefinitions" ref="a62c9cf84abb044aefa33c15fa01c8d8e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearPropertyLinkDefinitions </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all defined property link definitions from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a66c90cf37451f4809c29526edc4229e9"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearStateSpecifications" ref="a66c90cf37451f4809c29526edc4229e9" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearStateSpecifications </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all <a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> objects from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a78f43b273445a3751062c445bcb21fc0"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::clearWidgetComponents" ref="a78f43b273445a3751062c445bcb21fc0" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::clearWidgetComponents </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Clear all WidgetComponents from the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a2e23de0323f89e17aec07a1e5fdbc1e9"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::findPropertyInitialiser" ref="a2e23de0323f89e17aec07a1e5fdbc1e9" args="(const String &amp;propertyName) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1PropertyInitialiser.html">PropertyInitialiser</a>* CEGUI::WidgetLookFeel::findPropertyInitialiser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>propertyName</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Takes the name of a property and returns a pointer to the last <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> for this property or 0 if the is no <a class="el" href="classCEGUI_1_1PropertyInitialiser.html" title="Class that holds information about a property and it&#39;s required initial value.">PropertyInitialiser</a> for this property in the <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">propertyName</td><td>The name of the property to look for. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a765ccfeb163ea267f1e085286817c71a"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::findWidgetComponent" ref="a765ccfeb163ea267f1e085286817c71a" args="(const String &amp;nameSuffix) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1WidgetComponent.html">WidgetComponent</a>* CEGUI::WidgetLookFeel::findWidgetComponent </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>nameSuffix</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Takes the namesuffix for a widget component and returns a pointer to it if it exists or 0 if it does'nt. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">nameSuffix</td><td>The name suffix of the Child component to look for. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Return a const reference to the <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> object with the specified name. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a> object with the specified name. </dd></dl>

</div>
</div>
<a class="anchor" id="a9cdc77c0ded23d288b866bc0008bee53"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::getName" ref="a9cdc77c0ded23d288b866bc0008bee53" args="() 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::WidgetLookFeel::getName </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the name of the widget look. </p>
<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 <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="aaf1e4481533a814f426cde17130b57a2"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::getNamedArea" ref="aaf1e4481533a814f426cde17130b57a2" args="(const String &amp;name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1NamedArea.html">NamedArea</a>&amp; CEGUI::WidgetLookFeel::getNamedArea </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>Return the <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> with the specified name. </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> object holding the name of the <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The requested <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> object. </dd></dl>

</div>
</div>
<a class="anchor" id="a596ef53801d6788388ea75fa27a431ee"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::getProperties" ref="a596ef53801d6788388ea75fa27a431ee" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2c66bb2298d8fa674338b4b31ae6781a">PropertyList</a>&amp; CEGUI::WidgetLookFeel::getProperties </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Obtains list of properties.  public </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1WidgetLookFeel.html#a2c66bb2298d8fa674338b4b31ae6781a">CEGUI::WidgetLookFeel::PropertyList</a> List of properties </dd></dl>

</div>
</div>
<a class="anchor" id="af9541c708778452ac06e7345cc8af0c3"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::getPropertyDefinitions" ref="af9541c708778452ac06e7345cc8af0c3" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const PropertyDefinitionList&amp; CEGUI::WidgetLookFeel::getPropertyDefinitions </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Obtains list of properties definitions.  public </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>CEGUI::WidgetLookFeel::PropertyDefinitionList List of properties definitions </dd></dl>

</div>
</div>
<a class="anchor" id="a9776886b689583038a5222fa95e7747d"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::getPropertyLinkDefinitions" ref="a9776886b689583038a5222fa95e7747d" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const PropertyLinkDefinitionList&amp; CEGUI::WidgetLookFeel::getPropertyLinkDefinitions </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>Obtains list of properties link definitions.  public </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>CEGUI::WidgetLookFeel::PropertyLinkDefinitionList List of properties link definitions </dd></dl>

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

<p>Return a const reference to the <a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object for the specified state. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1StateImagery.html" title="Class the encapsulates imagery for a given widget state.">StateImagery</a> object for the requested state. </dd></dl>

</div>
</div>
<a class="anchor" id="abc8693f9752757528bea7b66192d8750"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::initialiseWidget" ref="abc8693f9752757528bea7b66192d8750" args="(Window &amp;widget) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::initialiseWidget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>widget</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Initialise the given window using PropertyInitialsers and component widgets specified for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">widget</td><td><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> based object to be initialised.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="af4f3b809876e2f8bf783c933afdea5be"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::isNamedAreaDefined" ref="af4f3b809876e2f8bf783c933afdea5be" args="(const String &amp;name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::WidgetLookFeel::isNamedAreaDefined </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>return whether a <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> object with the specified name exists for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </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> holding the name of the <a class="el" href="classCEGUI_1_1NamedArea.html" title="NamedArea defines an area for a component which may later be obtained and referenced by a name unique...">NamedArea</a> to check for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if a named area with the requested name is defined for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>.</li>
<li>false if no such named area is defined for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </li>
</ul>
</dd></dl>

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

<p>Return whether imagery is defined for the given state. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">state</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing name of state to look for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if imagery exists for the specified state,</li>
<li>false if no imagery exists for the specified state. </li>
</ul>
</dd></dl>

</div>
</div>
<a class="anchor" id="af9a1e87048af6bbe37b20847e014731f"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::layoutChildWidgets" ref="af9a1e87048af6bbe37b20847e014731f" args="(const Window &amp;owner) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::layoutChildWidgets </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>owner</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Layout the child widgets defined for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> which are attached to the given window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">owner</td><td><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 that has the child widgets that require laying out.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a8079e772ad32246a6b4a4d93e01811b7"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::renameChildren" ref="a8079e772ad32246a6b4a4d93e01811b7" args="(const Window &amp;widget, const String &amp;newBaseName) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::renameChildren </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>widget</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>newBaseName</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Uses 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> to rename the child windows that are created for this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">widget</td><td>The target <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> containing the child windows that are to be renamed.</td></tr>
    <tr><td class="paramname">newBaseName</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the new base name that will be used when constructing new names for the child windows. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a580465186826b8cededad91093e9733f"></a><!-- doxytag: member="CEGUI::WidgetLookFeel::writeXMLToStream" ref="a580465186826b8cededad91093e9733f" args="(XMLSerializer &amp;xml_stream) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::WidgetLookFeel::writeXMLToStream </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1XMLSerializer.html">XMLSerializer</a> &amp;&#160;</td>
          <td class="paramname"><em>xml_stream</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Writes an xml representation of this <a class="el" href="classCEGUI_1_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> to <em>out_stream</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">xml_stream</td><td>Stream where xml data should be output.</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:42 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>