File: classCEGUI_1_1SectionSpecification.html

package info (click to toggle)
cegui-mk2 0.7.6-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 105,384 kB
  • sloc: cpp: 142,729; ansic: 27,984; sh: 11,010; makefile: 2,275; python: 916; xml: 17
file content (723 lines) | stat: -rw-r--r-- 48,268 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
<!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::SectionSpecification 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_1SectionSpecification.html">SectionSpecification</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::SectionSpecification Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::SectionSpecification" -->
<p>Class that represents a simple 'link' to an <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>.  
 <a href="classCEGUI_1_1SectionSpecification.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::SectionSpecification:</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_1SectionSpecification__coll__graph.gif" border="0" usemap="#CEGUI_1_1SectionSpecification_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1SectionSpecification_coll__map" id="CEGUI_1_1SectionSpecification_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle." alt="" coords="5,152,144,181"/><area shape="rect" id="node4" href="classCEGUI_1_1colour.html" title="Class representing colour values within the system." alt="" coords="21,5,128,35"/><area shape="rect" id="node6" href="classCEGUI_1_1String.html" title="String class used within the GUI system." alt="" coords="168,152,275,181"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1SectionSpecification-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1SectionSpecification.html#a2f4e68f1fd7a1786d5bf0f512a0be35b">SectionSpecification</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;owner, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;sectionName, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertySource, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertyValue, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertyWidget)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a2f4e68f1fd7a1786d5bf0f512a0be35b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1SectionSpecification.html#aa14b3cfca1367b9ae7706aebdae1c70d">SectionSpecification</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;owner, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;sectionName, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertySource, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertyValue, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;controlPropertyWidget, const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;cols)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#aa14b3cfca1367b9ae7706aebdae1c70d"></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_1SectionSpecification.html#add2d3482e27acc892f0476e7614c3382">render</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;srcWindow, const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> *modcols=0, const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> *clipper=0, bool clipToDisplay=false) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Render the section specified by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.  <a href="#add2d3482e27acc892f0476e7614c3382"></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_1SectionSpecification.html#a95e154eb02424d7e67765367cb198c52">render</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;srcWindow, const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &amp;baseRect, const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> *modcols=0, const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> *clipper=0, bool clipToDisplay=false) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Render the section specified by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.  <a href="#a95e154eb02424d7e67765367cb198c52"></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_1SectionSpecification.html#a76337a33f3d3e42a02e9109217114b6b">getOwnerWidgetLookFeel</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return 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> object containing the target section.  <a href="#a76337a33f3d3e42a02e9109217114b6b"></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_1SectionSpecification.html#a22911f41c7397d7eda639a75c37a380e">getSectionName</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the name of the target <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>.  <a href="#a22911f41c7397d7eda639a75c37a380e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1SectionSpecification.html#a7d0d3cada6730059c88d59958f6f010c">getOverrideColours</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current override colours.  <a href="#a7d0d3cada6730059c88d59958f6f010c"></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_1SectionSpecification.html#ab287fb50cc67fb03630e337ae0986449">setOverrideColours</a> (const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;cols)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the override colours to be used by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.  <a href="#ab287fb50cc67fb03630e337ae0986449"></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_1SectionSpecification.html#ae4c0e29cdd0c067c06de8f70224573e2">isUsingOverrideColours</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">return whether the use of override colours is enabled on this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.  <a href="#ae4c0e29cdd0c067c06de8f70224573e2"></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_1SectionSpecification.html#ade6b103ee51c6ea06615f14fc0e8e76e">setUsingOverrideColours</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Enable or disable the use of override colours for this section.  <a href="#ade6b103ee51c6ea06615f14fc0e8e76e"></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_1SectionSpecification.html#a1751cf10bd5ec0ef139c37f8cc924895">setOverrideColoursPropertySource</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;property)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the name of the property where override colour values can be obtained.  <a href="#a1751cf10bd5ec0ef139c37f8cc924895"></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_1SectionSpecification.html#aebc07b5f3101cc212fe164638058261a">setOverrideColoursPropertyIsColourRect</a> (bool setting=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set whether the override colours property source represents a full <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a>.  <a href="#aebc07b5f3101cc212fe164638058261a"></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_1SectionSpecification.html#a0f674f5a73a6265f9e42a7b57ab6603c">setRenderControlPropertySource</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;property)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the name of the property that controls whether to actually render this section.  <a href="#a0f674f5a73a6265f9e42a7b57ab6603c"></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_1SectionSpecification.html#a945724dd75b9300167a65047225d885a">setRenderControlValue</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;value)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the test value used when determining whether to render this section.  <a href="#a945724dd75b9300167a65047225d885a"></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_1SectionSpecification.html#aec81f33f462a9d76b8c9fbf6736c8c33">setRenderControlWidget</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;widget)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the widget what will be used as the source of the property named as the control property.  <a href="#aec81f33f462a9d76b8c9fbf6736c8c33"></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_1SectionSpecification.html#a70ede3eb83f7d24cd3d0a5956ff87366">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_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a> to <em>out_stream</em>.  <a href="#a70ede3eb83f7d24cd3d0a5956ff87366"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1SectionSpecification.html#a27df03c0bb268900777594bc8aa201fa">initColourRectForOverride</a> (const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;wnd, <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;cr) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Helper method to initialise a <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> with appropriate values according to the way the section sepcification is set up.  <a href="#a27df03c0bb268900777594bc8aa201fa"></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_1SectionSpecification.html#af492f77b549e422ee3d0c2b76f157741">shouldBeDrawn</a> (const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;wnd) const </td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Class that represents a simple 'link' to an <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>. </p>
<p>This class enables sections to be easily re-used, by different states and/or layers, by allowing sections to be specified by name rather than having mutiple copies of the same thing all over the place. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a2f4e68f1fd7a1786d5bf0f512a0be35b"></a><!-- doxytag: member="CEGUI::SectionSpecification::SectionSpecification" ref="a2f4e68f1fd7a1786d5bf0f512a0be35b" args="(const String &amp;owner, const String &amp;sectionName, const String &amp;controlPropertySource, const String &amp;controlPropertyValue, const String &amp;controlPropertyWidget)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">CEGUI::SectionSpecification::SectionSpecification </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>owner</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>sectionName</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>controlPropertySource</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>controlPropertyValue</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>controlPropertyWidget</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">owner</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_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> object that contains the target section.</td></tr>
    <tr><td class="paramname">sectionName</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 target section.</td></tr>
    <tr><td class="paramname">controlPropertySource</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the name of a property that will control whether rendering for this secion will actually occur or not.</td></tr>
    <tr><td class="paramname">controlPropertyValue</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the value to be tested for from the property named in controlPropertySource. If this is empty, then controlPropertySource will be accessed as a boolean property, otherwise rendering will only occur when the value returned via controlPropertySource matches the value specified here.</td></tr>
    <tr><td class="paramname">controlPropertyWidget</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding either a widget name suffix or the special value of '__parent__' indicating the window upon which the property named in controlPropertySource should be accessed. If this is empty then the window itself is used as the source, rather than a child or the parent. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa14b3cfca1367b9ae7706aebdae1c70d"></a><!-- doxytag: member="CEGUI::SectionSpecification::SectionSpecification" ref="aa14b3cfca1367b9ae7706aebdae1c70d" args="(const String &amp;owner, const String &amp;sectionName, const String &amp;controlPropertySource, const String &amp;controlPropertyValue, const String &amp;controlPropertyWidget, const ColourRect &amp;cols)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">CEGUI::SectionSpecification::SectionSpecification </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>owner</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>sectionName</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>controlPropertySource</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>controlPropertyValue</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>controlPropertyWidget</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;&#160;</td>
          <td class="paramname"><em>cols</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">owner</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_1WidgetLookFeel.html" title="Class that encapsulates look &amp; feel information for a particular widget type.">WidgetLookFeel</a> object that contains the target section.</td></tr>
    <tr><td class="paramname">sectionName</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 target section.</td></tr>
    <tr><td class="paramname">controlPropertySource</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the name of a property that will control whether rendering for this secion will actually occur or not.</td></tr>
    <tr><td class="paramname">controlPropertyValue</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the value to be tested for from the property named in controlPropertySource. If this is empty, then controlPropertySource will be accessed as a boolean property, otherwise rendering will only occur when the value returned via controlPropertySource matches the value specified here.</td></tr>
    <tr><td class="paramname">controlPropertyWidget</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding either a widget name suffix or the special value of '__parent__' indicating the window upon which the property named in controlPropertySource should be accessed. If this is empty then the window itself is used as the source, rather than a child or the parent.</td></tr>
    <tr><td class="paramname">cols</td><td>Override colours to be used (modulates sections master colours). </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a7d0d3cada6730059c88d59958f6f010c"></a><!-- doxytag: member="CEGUI::SectionSpecification::getOverrideColours" ref="a7d0d3cada6730059c88d59958f6f010c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a>&amp; CEGUI::SectionSpecification::getOverrideColours </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current override colours. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> holding the colours that will be modulated with the sections master colours if colour override is enabled on this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </dd></dl>

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

<p>Return 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> object containing the target section. </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> that contains the target <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>. </dd></dl>

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

<p>Return the name of the target <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>. </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 target <a class="el" href="classCEGUI_1_1ImagerySection.html" title="Class that encapsulates a re-usable collection of imagery specifications.">ImagerySection</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a27df03c0bb268900777594bc8aa201fa"></a><!-- doxytag: member="CEGUI::SectionSpecification::initColourRectForOverride" ref="a27df03c0bb268900777594bc8aa201fa" args="(const Window &amp;wnd, ColourRect &amp;cr) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::initColourRectForOverride </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>wnd</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;&#160;</td>
          <td class="paramname"><em>cr</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Helper method to initialise a <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> with appropriate values according to the way the section sepcification is set up. </p>
<p>This will try and get values from multiple places:</p>
<ul>
<li>a property attached to <em>wnd</em> </li>
<li>the integral d_coloursOverride values.</li>
<li>or default to colour(1,1,1,1); </li>
</ul>

</div>
</div>
<a class="anchor" id="ae4c0e29cdd0c067c06de8f70224573e2"></a><!-- doxytag: member="CEGUI::SectionSpecification::isUsingOverrideColours" ref="ae4c0e29cdd0c067c06de8f70224573e2" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::SectionSpecification::isUsingOverrideColours </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>return whether the use of override colours is enabled on this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if override colours will be used for this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.</li>
<li>false if override colours will not be used for this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </li>
</ul>
</dd></dl>

</div>
</div>
<a class="anchor" id="add2d3482e27acc892f0476e7614c3382"></a><!-- doxytag: member="CEGUI::SectionSpecification::render" ref="add2d3482e27acc892f0476e7614c3382" args="(Window &amp;srcWindow, const ColourRect *modcols=0, const Rect *clipper=0, bool clipToDisplay=false) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::render </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>srcWindow</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> *&#160;</td>
          <td class="paramname"><em>modcols</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> *&#160;</td>
          <td class="paramname"><em>clipper</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>clipToDisplay</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Render the section specified by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">srcWindow</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 to be used when calculating pixel values from <a class="el" href="classCEGUI_1_1BaseDim.html" title="Abstract interface for a generic &#39;dimension&#39; class.">BaseDim</a> values.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a95e154eb02424d7e67765367cb198c52"></a><!-- doxytag: member="CEGUI::SectionSpecification::render" ref="a95e154eb02424d7e67765367cb198c52" args="(Window &amp;srcWindow, const Rect &amp;baseRect, const ColourRect *modcols=0, const Rect *clipper=0, bool clipToDisplay=false) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::render </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>srcWindow</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &amp;&#160;</td>
          <td class="paramname"><em>baseRect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> *&#160;</td>
          <td class="paramname"><em>modcols</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> *&#160;</td>
          <td class="paramname"><em>clipper</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>clipToDisplay</em> = <code>false</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Render the section specified by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">srcWindow</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 to be used when calculating pixel values from <a class="el" href="classCEGUI_1_1BaseDim.html" title="Abstract interface for a generic &#39;dimension&#39; class.">BaseDim</a> values.</td></tr>
    <tr><td class="paramname">baseRect</td><td><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object to be used when calculating pixel values from <a class="el" href="classCEGUI_1_1BaseDim.html" title="Abstract interface for a generic &#39;dimension&#39; class.">BaseDim</a> values.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ab287fb50cc67fb03630e337ae0986449"></a><!-- doxytag: member="CEGUI::SectionSpecification::setOverrideColours" ref="ab287fb50cc67fb03630e337ae0986449" args="(const ColourRect &amp;cols)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::setOverrideColours </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &amp;&#160;</td>
          <td class="paramname"><em>cols</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the override colours to be used by this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">cols</td><td><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> describing the override colours to set for this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="aebc07b5f3101cc212fe164638058261a"></a><!-- doxytag: member="CEGUI::SectionSpecification::setOverrideColoursPropertyIsColourRect" ref="aebc07b5f3101cc212fe164638058261a" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::setOverrideColoursPropertyIsColourRect </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set whether the override colours property source represents a full <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">setting</td><td><ul>
<li>true if the override colours property will access a <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object.</li>
<li>false if the override colours property will access a colour object.</li>
</ul>
</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Set the name of the property where override colour values can be obtained. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">property</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing the name of the property.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Set the name of the property that controls whether to actually render this section. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">property</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> containing the name of the property.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Set the test value used when determining whether to render this section. </p>
<p>The value set here will be compared to the current value of the property named as the render control property, if they match the secion will be drawn, otherwise the section will not be drawn. If this value is set to the empty string, the control property will instead be treated as a boolean property. </p>

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

<p>Set the widget what will be used as the source of the property named as the control property. </p>
<p>The value of this setting will be interpreted as follows:</p>
<ul>
<li>empty string: The target widget being drawn will be the source of the property value.</li>
<li>'__parent__': The parent of the widget being drawn will be the source of the property value.</li>
<li>any other value: The value will be taken as a name suffix and a window with the name of the widget being drawn with the specified suffix will be the source of the property value. </li>
</ul>

</div>
</div>
<a class="anchor" id="ade6b103ee51c6ea06615f14fc0e8e76e"></a><!-- doxytag: member="CEGUI::SectionSpecification::setUsingOverrideColours" ref="ade6b103ee51c6ea06615f14fc0e8e76e" args="(bool setting=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::setUsingOverrideColours </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>setting</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Enable or disable the use of override colours for this section. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">setting</td><td><ul>
<li>true if override colours should be used for this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.</li>
<li>false if override colours should not be used for this <a class="el" href="classCEGUI_1_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</a>.</li>
</ul>
</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="af492f77b549e422ee3d0c2b76f157741"></a><!-- doxytag: member="CEGUI::SectionSpecification::shouldBeDrawn" ref="af492f77b549e422ee3d0c2b76f157741" args="(const Window &amp;wnd) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::SectionSpecification::shouldBeDrawn </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> &amp;&#160;</td>
          <td class="paramname"><em>wnd</em></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p>return whether the section should be drawn, based upon the render control property and associated items. </p>

</div>
</div>
<a class="anchor" id="a70ede3eb83f7d24cd3d0a5956ff87366"></a><!-- doxytag: member="CEGUI::SectionSpecification::writeXMLToStream" ref="a70ede3eb83f7d24cd3d0a5956ff87366" args="(XMLSerializer &amp;xml_stream) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::SectionSpecification::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_1SectionSpecification.html" title="Class that represents a simple &#39;link&#39; to an ImagerySection.">SectionSpecification</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>