File: CEGUIMultiColumnList_8h_source.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 (630 lines) | stat: -rw-r--r-- 75,473 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
<!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: CEGUIMultiColumnList.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

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

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

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Crazy Eddies GUI System&#160;<span id="projectnumber">0.7.6</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="files.html"><span>File&#160;List</span></a></li>
    </ul>
  </div>
<div class="header">
  <div class="headertitle">
<div class="title">CEGUIMultiColumnList.h</div>  </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment">        filename:       CEGUIMultiColumnList.h</span>
<a name="l00003"></a>00003 <span class="comment">        created:        13/4/2004</span>
<a name="l00004"></a>00004 <span class="comment">        author:         Paul D Turner</span>
<a name="l00005"></a>00005 <span class="comment"></span>
<a name="l00006"></a>00006 <span class="comment">        purpose:        Interface to base class for MultiColumnList widget</span>
<a name="l00007"></a>00007 <span class="comment">*************************************************************************/</span>
<a name="l00008"></a>00008 <span class="comment">/***************************************************************************</span>
<a name="l00009"></a>00009 <span class="comment"> *   Copyright (C) 2004 - 2006 Paul D Turner &amp; The CEGUI Development Team</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> *   Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00012"></a>00012 <span class="comment"> *   a copy of this software and associated documentation files (the</span>
<a name="l00013"></a>00013 <span class="comment"> *   &quot;Software&quot;), to deal in the Software without restriction, including</span>
<a name="l00014"></a>00014 <span class="comment"> *   without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00015"></a>00015 <span class="comment"> *   distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00016"></a>00016 <span class="comment"> *   permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00017"></a>00017 <span class="comment"> *   the following conditions:</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> *   The above copyright notice and this permission notice shall be</span>
<a name="l00020"></a>00020 <span class="comment"> *   included in all copies or substantial portions of the Software.</span>
<a name="l00021"></a>00021 <span class="comment"> *</span>
<a name="l00022"></a>00022 <span class="comment"> *   THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00023"></a>00023 <span class="comment"> *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00024"></a>00024 <span class="comment"> *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00025"></a>00025 <span class="comment"> *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00026"></a>00026 <span class="comment"> *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00027"></a>00027 <span class="comment"> *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00028"></a>00028 <span class="comment"> *   OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00029"></a>00029 <span class="comment"> ***************************************************************************/</span>
<a name="l00030"></a>00030 <span class="preprocessor">#ifndef _CEGUIMultiColumnList_h_</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIMultiColumnList_h_</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include &quot;../CEGUIBase.h&quot;</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include &quot;../CEGUIWindow.h&quot;</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include &quot;CEGUIListHeader.h&quot;</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include &quot;CEGUIMultiColumnListProperties.h&quot;</span>
<a name="l00037"></a>00037 
<a name="l00038"></a>00038 
<a name="l00039"></a>00039 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00040"></a>00040 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(push)</span>
<a name="l00041"></a>00041 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(disable : 4251)</span>
<a name="l00042"></a>00042 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00043"></a>00043 <span class="preprocessor"></span>
<a name="l00044"></a>00044 
<a name="l00045"></a>00045 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00046"></a>00046 <span class="keyword">namespace </span>CEGUI
<a name="l00047"></a>00047 {
<a name="l00048"></a>00048 
<a name="l00053"></a><a class="code" href="structCEGUI_1_1MCLGridRef.html">00053</a> <span class="keyword">struct </span>CEGUIEXPORT <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>
<a name="l00054"></a>00054 {
<a name="l00055"></a>00055         <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>(uint r, uint c) : row(r), column(c) {}
<a name="l00056"></a>00056 
<a name="l00057"></a><a class="code" href="structCEGUI_1_1MCLGridRef.html#a31b67446ba71f46ac2fec90e421f1207">00057</a>         uint    <a class="code" href="structCEGUI_1_1MCLGridRef.html#a31b67446ba71f46ac2fec90e421f1207" title="Zero based row index.">row</a>;            
<a name="l00058"></a><a class="code" href="structCEGUI_1_1MCLGridRef.html#ac8a02f196c8f40cf826fd27b2898a62e">00058</a>         uint    <a class="code" href="structCEGUI_1_1MCLGridRef.html#ac8a02f196c8f40cf826fd27b2898a62e" title="Zero based column index.">column</a>;         
<a name="l00059"></a>00059 
<a name="l00060"></a>00060         <span class="comment">// operators</span>
<a name="l00061"></a>00061         MCLGridRef&amp; operator=(<span class="keyword">const</span> MCLGridRef&amp; rhs);
<a name="l00062"></a>00062         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a513ed569681f56027e750775ae78d7c0" title="Return true if String str1 is lexicographically less than String str2.">operator&lt;</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00063"></a>00063         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a27d45d2a04c74549d97c7c80ffb70261" title="Return true if String str1 is lexicographically less than or equal to String str2.">operator&lt;=</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00064"></a>00064         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a28df333cb1d3a4839cf923f92001710e" title="Return true if String str1 is lexicographically greater than String str2.">operator&gt;</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00065"></a>00065         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a7ef866a2b8f1ab29d3ef8ccfa540e4e2" title="Return true if String str1 is lexicographically greater than or equal to String str2.">operator&gt;=</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00066"></a>00066         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a95d36e95ac85fdaba504ab17867fe165" title="Return true if String str1 is equal to String str2.">operator==</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00067"></a>00067         <span class="keywordtype">bool</span> <a class="code" href="namespaceCEGUI.html#a87df34019b9725a75ce764c2ea429b5c" title="Return true if String str1 is not equal to String str2.">operator!=</a>(<span class="keyword">const</span> MCLGridRef&amp; rhs) <span class="keyword">const</span>;
<a name="l00068"></a>00068 };
<a name="l00069"></a>00069 
<a name="l00074"></a><a class="code" href="classCEGUI_1_1MultiColumnListWindowRenderer.html">00074</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1MultiColumnListWindowRenderer.html" title="Base class for the multi column list window renderer.">MultiColumnListWindowRenderer</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a>
<a name="l00075"></a>00075 {
<a name="l00076"></a>00076 <span class="keyword">public</span>:
<a name="l00081"></a>00081     <a class="code" href="classCEGUI_1_1MultiColumnListWindowRenderer.html" title="Base class for the multi column list window renderer.">MultiColumnListWindowRenderer</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name);
<a name="l00082"></a>00082 
<a name="l00092"></a>00092     <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a>    getListRenderArea(<span class="keywordtype">void</span>) <span class="keyword">const</span> = 0;
<a name="l00093"></a>00093 };
<a name="l00094"></a>00094 
<a name="l00099"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html">00099</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1MultiColumnList.html" title="Base class for the multi column list widget.">MultiColumnList</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>
<a name="l00100"></a>00100 {
<a name="l00101"></a>00101 <span class="keyword">public</span>:
<a name="l00102"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#aa75bcfa5e3ee5c3a43345d8d8f190b40">00102</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#aa75bcfa5e3ee5c3a43345d8d8f190b40" title="Namespace for global events.">EventNamespace</a>;                             
<a name="l00103"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#aa90f36367ffbf9d090d469b5b8496367">00103</a>     <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#aa90f36367ffbf9d090d469b5b8496367" title="Window factory name.">WidgetTypeName</a>;             
<a name="l00104"></a>00104 
<a name="l00105"></a>00105         <span class="comment">/*************************************************************************</span>
<a name="l00106"></a>00106 <span class="comment">                Constants</span>
<a name="l00107"></a>00107 <span class="comment">        *************************************************************************/</span>
<a name="l00108"></a>00108         <span class="comment">// Event names</span>
<a name="l00114"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a6294f32b8269f0fdb1aba08e450eb83b">00114</a> <span class="comment"></span>        <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a6294f32b8269f0fdb1aba08e450eb83b">EventSelectionModeChanged</a>;
<a name="l00120"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a97fc9c076353e038a2eceb3d88718a4d">00120</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a97fc9c076353e038a2eceb3d88718a4d">EventNominatedSelectColumnChanged</a>;
<a name="l00126"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a9319a32b0e83fc3de6deb6f2413c2430">00126</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a9319a32b0e83fc3de6deb6f2413c2430">EventNominatedSelectRowChanged</a>;
<a name="l00132"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ab90ab1702331e03f4d482fb16819fbb1">00132</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#ab90ab1702331e03f4d482fb16819fbb1">EventVertScrollbarModeChanged</a>;
<a name="l00138"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a282dbd7e8ceaca139361af841cd82669">00138</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a282dbd7e8ceaca139361af841cd82669">EventHorzScrollbarModeChanged</a>;
<a name="l00144"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ab0d6a65386222f14dd75a182c7931963">00144</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#ab0d6a65386222f14dd75a182c7931963">EventSelectionChanged</a>;
<a name="l00150"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a22f8cdc3517f78c7c6b2c930cb6da9af">00150</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a22f8cdc3517f78c7c6b2c930cb6da9af">EventListContentsChanged</a>;
<a name="l00156"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ab2af1af6552872629f4681063e6dd455">00156</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#ab2af1af6552872629f4681063e6dd455">EventSortColumnChanged</a>;
<a name="l00162"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#abaf3fb6d2d2e7dca15fc3533554cb690">00162</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#abaf3fb6d2d2e7dca15fc3533554cb690">EventSortDirectionChanged</a>;
<a name="l00168"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a40a4146af8551a787e9b05a282404439">00168</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a40a4146af8551a787e9b05a282404439">EventListColumnSized</a>;
<a name="l00174"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a41391d9ae796cc7e3e83b178764bae32">00174</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a41391d9ae796cc7e3e83b178764bae32">EventListColumnMoved</a>;
<a name="l00175"></a>00175 
<a name="l00176"></a>00176     <span class="comment">/*************************************************************************</span>
<a name="l00177"></a>00177 <span class="comment">        Child Widget name suffix constants</span>
<a name="l00178"></a>00178 <span class="comment">    *************************************************************************/</span>
<a name="l00179"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ad0e8ef86f826e4d3ddbe317419e04e5c">00179</a>     <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#ad0e8ef86f826e4d3ddbe317419e04e5c" title="Widget name suffix for the vertical scrollbar component.">VertScrollbarNameSuffix</a>;   
<a name="l00180"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#aa9d7ea9eb092878a2878a09148f845ab">00180</a>     <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#aa9d7ea9eb092878a2878a09148f845ab" title="Widget name suffix for the horizontal scrollbar component.">HorzScrollbarNameSuffix</a>;   
<a name="l00181"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a56e33d3c83f7f3ae935bd27798756ee8">00181</a>     <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a56e33d3c83f7f3ae935bd27798756ee8" title="Widget name suffix for the list header component.">ListHeaderNameSuffix</a>;      
<a name="l00182"></a>00182 
<a name="l00183"></a>00183         <span class="comment">/*************************************************************************</span>
<a name="l00184"></a>00184 <span class="comment">                Enumerations</span>
<a name="l00185"></a>00185 <span class="comment">        *************************************************************************/</span>
<a name="l00190"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a0e07ae05c27bfca45f0e40d8b008b5e1">00190</a>         <span class="keyword">enum</span> <a class="code" href="classCEGUI_1_1MultiColumnList.html#a0e07ae05c27bfca45f0e40d8b008b5e1" title="Enumerated values for the selection modes possible with a Multi-column list.">SelectionMode</a>
<a name="l00191"></a>00191         {
<a name="l00192"></a>00192                 RowSingle,                                      <span class="comment">// Any single row may be selected.  All items in the row are selected.</span>
<a name="l00193"></a>00193                 RowMultiple,                            <span class="comment">// Multiple rows may be selected.  All items in the row are selected.</span>
<a name="l00194"></a>00194                 CellSingle,                                     <span class="comment">// Any single cell may be selected.</span>
<a name="l00195"></a>00195                 CellMultiple,                           <span class="comment">// Multiple cells bay be selected.</span>
<a name="l00196"></a>00196                 NominatedColumnSingle,          <span class="comment">// Any single item in a nominated column may be selected.</span>
<a name="l00197"></a>00197                 NominatedColumnMultiple,        <span class="comment">// Multiple items in a nominated column may be selected.</span>
<a name="l00198"></a>00198                 ColumnSingle,                           <span class="comment">// Any single column may be selected.  All items in the column are selected.</span>
<a name="l00199"></a>00199                 ColumnMultiple,                         <span class="comment">// Multiple columns may be selected.  All items in the column are selected.</span>
<a name="l00200"></a>00200                 NominatedRowSingle,                     <span class="comment">// Any single item in a nominated row may be selected.</span>
<a name="l00201"></a>00201                 NominatedRowMultiple            <span class="comment">// Multiple items in a nominated row may be selected.</span>
<a name="l00202"></a>00202         };
<a name="l00203"></a>00203 
<a name="l00204"></a>00204 
<a name="l00205"></a>00205         <span class="comment">/*************************************************************************</span>
<a name="l00206"></a>00206 <span class="comment">                Accessor Methods</span>
<a name="l00207"></a>00207 <span class="comment">        *************************************************************************/</span>
<a name="l00216"></a>00216         <span class="keywordtype">bool</span>    isUserSortControlEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00217"></a>00217 
<a name="l00218"></a>00218 
<a name="l00226"></a>00226         <span class="keywordtype">bool</span>    isUserColumnSizingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00227"></a>00227 
<a name="l00228"></a>00228 
<a name="l00236"></a>00236         <span class="keywordtype">bool</span>    isUserColumnDraggingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00237"></a>00237 
<a name="l00238"></a>00238 
<a name="l00246"></a>00246         uint    getColumnCount(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00247"></a>00247 
<a name="l00248"></a>00248 
<a name="l00256"></a>00256         uint    getRowCount(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00257"></a>00257 
<a name="l00258"></a>00258 
<a name="l00269"></a>00269         uint    getSortColumn(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00270"></a>00270 
<a name="l00271"></a>00271 
<a name="l00284"></a>00284         uint    getColumnWithID(uint col_id) <span class="keyword">const</span>;
<a name="l00285"></a>00285 
<a name="l00286"></a>00286 
<a name="l00299"></a>00299         uint    getColumnWithHeaderText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text) <span class="keyword">const</span>;
<a name="l00300"></a>00300 
<a name="l00301"></a>00301 
<a name="l00309"></a>00309         <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a> getTotalColumnHeadersWidth(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00310"></a>00310 
<a name="l00311"></a>00311 
<a name="l00324"></a>00324         <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a> getColumnHeaderWidth(uint col_idx) <span class="keyword">const</span>;
<a name="l00325"></a>00325 
<a name="l00326"></a>00326 
<a name="l00334"></a>00334         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a>        getSortDirection(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00335"></a>00335 
<a name="l00336"></a>00336 
<a name="l00349"></a>00349         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp;      getHeaderSegmentForColumn(uint col_idx) <span class="keyword">const</span>;
<a name="l00350"></a>00350 
<a name="l00351"></a>00351 
<a name="l00364"></a>00364         uint    getItemRowIndex(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item) <span class="keyword">const</span>;
<a name="l00365"></a>00365 
<a name="l00366"></a>00366 
<a name="l00379"></a>00379         uint    getItemColumnIndex(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item) <span class="keyword">const</span>;
<a name="l00380"></a>00380 
<a name="l00381"></a>00381 
<a name="l00394"></a>00394         <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>      getItemGridReference(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item) <span class="keyword">const</span>;
<a name="l00395"></a>00395 
<a name="l00396"></a>00396 
<a name="l00409"></a>00409         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    getItemAtGridReference(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; grid_ref) <span class="keyword">const</span>;
<a name="l00410"></a>00410 
<a name="l00411"></a>00411 
<a name="l00428"></a>00428         <span class="keywordtype">bool</span>    isListboxItemInColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, uint col_idx) <span class="keyword">const</span>;
<a name="l00429"></a>00429 
<a name="l00430"></a>00430 
<a name="l00447"></a>00447         <span class="keywordtype">bool</span>    isListboxItemInRow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, uint row_idx) <span class="keyword">const</span>;
<a name="l00448"></a>00448 
<a name="l00449"></a>00449 
<a name="l00461"></a>00461         <span class="keywordtype">bool</span>    isListboxItemInList(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item) <span class="keyword">const</span>;
<a name="l00462"></a>00462 
<a name="l00463"></a>00463 
<a name="l00482"></a>00482         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    findColumnItemWithText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint col_idx, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* start_item) <span class="keyword">const</span>;
<a name="l00483"></a>00483 
<a name="l00484"></a>00484 
<a name="l00503"></a>00503         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    findRowItemWithText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint row_idx, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* start_item) <span class="keyword">const</span>;
<a name="l00504"></a>00504 
<a name="l00505"></a>00505 
<a name="l00524"></a>00524         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    findListItemWithText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* start_item) <span class="keyword">const</span>;
<a name="l00525"></a>00525 
<a name="l00526"></a>00526 
<a name="l00537"></a>00537         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    getFirstSelectedItem(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00538"></a>00538 
<a name="l00539"></a>00539 
<a name="l00555"></a>00555         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    getNextSelected(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* start_item) <span class="keyword">const</span>;
<a name="l00556"></a>00556 
<a name="l00557"></a>00557 
<a name="l00565"></a>00565         uint    getSelectedCount(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00566"></a>00566 
<a name="l00567"></a>00567 
<a name="l00581"></a>00581         <span class="keywordtype">bool</span>    isItemSelected(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; grid_ref) <span class="keyword">const</span>;
<a name="l00582"></a>00582 
<a name="l00583"></a>00583 
<a name="l00595"></a>00595         uint    getNominatedSelectionColumnID(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00596"></a>00596 
<a name="l00597"></a>00597 
<a name="l00606"></a>00606         uint    getNominatedSelectionColumn(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00607"></a>00607 
<a name="l00608"></a>00608 
<a name="l00617"></a>00617         uint    getNominatedSelectionRow(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00618"></a>00618 
<a name="l00619"></a>00619 
<a name="l00627"></a>00627         <a class="code" href="classCEGUI_1_1MultiColumnList.html#a0e07ae05c27bfca45f0e40d8b008b5e1" title="Enumerated values for the selection modes possible with a Multi-column list.">MultiColumnList::SelectionMode</a>  getSelectionMode(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00628"></a>00628 
<a name="l00629"></a>00629 
<a name="l00638"></a>00638         <span class="keywordtype">bool</span>    isVertScrollbarAlwaysShown(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00639"></a>00639 
<a name="l00640"></a>00640 
<a name="l00649"></a>00649         <span class="keywordtype">bool</span>    isHorzScrollbarAlwaysShown(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00650"></a>00650 
<a name="l00651"></a>00651 
<a name="l00664"></a>00664         uint    getColumnID(uint col_idx) <span class="keyword">const</span>;
<a name="l00665"></a>00665 
<a name="l00666"></a>00666 
<a name="l00679"></a>00679         uint    getRowID(uint row_idx) <span class="keyword">const</span>;
<a name="l00680"></a>00680 
<a name="l00681"></a>00681 
<a name="l00694"></a>00694         uint    getRowWithID(uint row_id) <span class="keyword">const</span>;
<a name="l00695"></a>00695 
<a name="l00696"></a>00696 
<a name="l00706"></a>00706     <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a>    getListRenderArea(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00707"></a>00707 
<a name="l00708"></a>00708 
<a name="l00720"></a>00720     <a class="code" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a>* getVertScrollbar() <span class="keyword">const</span>;
<a name="l00721"></a>00721 
<a name="l00733"></a>00733     <a class="code" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a>* getHorzScrollbar() <span class="keyword">const</span>;
<a name="l00734"></a>00734 
<a name="l00746"></a>00746     <a class="code" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>* getListHeader() <span class="keyword">const</span>;
<a name="l00747"></a>00747 
<a name="l00752"></a>00752     <span class="keywordtype">float</span>   getTotalRowsHeight(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00753"></a>00753 
<a name="l00758"></a>00758     <span class="keywordtype">float</span>   getWidestColumnItemWidth(uint col_idx) <span class="keyword">const</span>;
<a name="l00759"></a>00759 
<a name="l00764"></a>00764     <span class="keywordtype">float</span>   getHighestRowItemHeight(uint row_idx) <span class="keyword">const</span>;
<a name="l00765"></a>00765 
<a name="l00766"></a>00766         <span class="comment">/*************************************************************************</span>
<a name="l00767"></a>00767 <span class="comment">                Manipulator Methods</span>
<a name="l00768"></a>00768 <span class="comment">        *************************************************************************/</span>
<a name="l00779"></a>00779         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    initialiseComponents(<span class="keywordtype">void</span>);
<a name="l00780"></a>00780 
<a name="l00781"></a>00781 
<a name="l00788"></a>00788         <span class="keywordtype">void</span>    resetList(<span class="keywordtype">void</span>);
<a name="l00789"></a>00789 
<a name="l00790"></a>00790 
<a name="l00807"></a>00807         <span class="keywordtype">void</span>    addColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint col_id, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width);
<a name="l00808"></a>00808 
<a name="l00809"></a>00809 
<a name="l00830"></a>00830         <span class="keywordtype">void</span>    insertColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint col_id, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width, uint position);
<a name="l00831"></a>00831 
<a name="l00832"></a>00832 
<a name="l00845"></a>00845         <span class="keywordtype">void</span>    removeColumn(uint col_idx);
<a name="l00846"></a>00846 
<a name="l00847"></a>00847 
<a name="l00860"></a>00860         <span class="keywordtype">void</span>    removeColumnWithID(uint col_id);
<a name="l00861"></a>00861 
<a name="l00862"></a>00862 
<a name="l00878"></a>00878         <span class="keywordtype">void</span>    moveColumn(uint col_idx, uint position);
<a name="l00879"></a>00879 
<a name="l00880"></a>00880 
<a name="l00896"></a>00896         <span class="keywordtype">void</span>    moveColumnWithID(uint col_id, uint position);
<a name="l00897"></a>00897 
<a name="l00898"></a>00898 
<a name="l00913"></a>00913         uint    addRow(uint row_id = 0);
<a name="l00914"></a>00914 
<a name="l00915"></a>00915 
<a name="l00938"></a>00938         uint    addRow(<a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, uint col_id, uint row_id = 0);
<a name="l00939"></a>00939 
<a name="l00940"></a>00940 
<a name="l00959"></a>00959         uint    insertRow(uint row_idx, uint row_id = 0);
<a name="l00960"></a>00960 
<a name="l00961"></a>00961 
<a name="l00988"></a>00988         uint    insertRow(<a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, uint col_id, uint row_idx, uint row_id = 0);
<a name="l00989"></a>00989 
<a name="l00990"></a>00990 
<a name="l01003"></a>01003         <span class="keywordtype">void</span>    removeRow(uint row_idx);
<a name="l01004"></a>01004 
<a name="l01005"></a>01005 
<a name="l01021"></a>01021         <span class="keywordtype">void</span>    setItem(<a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, <span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; position);
<a name="l01022"></a>01022 
<a name="l01023"></a>01023 
<a name="l01042"></a>01042         <span class="keywordtype">void</span>    setItem(<a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, uint col_id, uint row_idx);
<a name="l01043"></a>01043 
<a name="l01044"></a>01044 
<a name="l01057"></a>01057         <span class="keywordtype">void</span>    setSelectionMode(<a class="code" href="classCEGUI_1_1MultiColumnList.html#a0e07ae05c27bfca45f0e40d8b008b5e1" title="Enumerated values for the selection modes possible with a Multi-column list.">MultiColumnList::SelectionMode</a> sel_mode);
<a name="l01058"></a>01058 
<a name="l01059"></a>01059 
<a name="l01072"></a>01072         <span class="keywordtype">void</span>    setNominatedSelectionColumnID(uint col_id);
<a name="l01073"></a>01073 
<a name="l01074"></a>01074 
<a name="l01087"></a>01087         <span class="keywordtype">void</span>    setNominatedSelectionColumn(uint col_idx);
<a name="l01088"></a>01088 
<a name="l01089"></a>01089 
<a name="l01102"></a>01102         <span class="keywordtype">void</span>    setNominatedSelectionRow(uint row_idx);
<a name="l01103"></a>01103 
<a name="l01104"></a>01104 
<a name="l01115"></a>01115         <span class="keywordtype">void</span>    setSortDirection(<a class="code" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a> direction);
<a name="l01116"></a>01116 
<a name="l01117"></a>01117 
<a name="l01130"></a>01130         <span class="keywordtype">void</span>    setSortColumn(uint col_idx);
<a name="l01131"></a>01131 
<a name="l01132"></a>01132 
<a name="l01145"></a>01145         <span class="keywordtype">void</span>    setSortColumnByID(uint col_id);
<a name="l01146"></a>01146 
<a name="l01147"></a>01147 
<a name="l01159"></a>01159         <span class="keywordtype">void</span>    setShowVertScrollbar(<span class="keywordtype">bool</span> setting);
<a name="l01160"></a>01160 
<a name="l01161"></a>01161 
<a name="l01173"></a>01173         <span class="keywordtype">void</span>    setShowHorzScrollbar(<span class="keywordtype">bool</span> setting);
<a name="l01174"></a>01174 
<a name="l01175"></a>01175 
<a name="l01183"></a>01183         <span class="keywordtype">void</span>    clearAllSelections(<span class="keywordtype">void</span>);
<a name="l01184"></a>01184 
<a name="l01185"></a>01185 
<a name="l01206"></a>01206         <span class="keywordtype">void</span>    setItemSelectState(<a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* item, <span class="keywordtype">bool</span> state);
<a name="l01207"></a>01207 
<a name="l01208"></a>01208 
<a name="l01229"></a>01229         <span class="keywordtype">void</span>    setItemSelectState(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; grid_ref, <span class="keywordtype">bool</span> state);
<a name="l01230"></a>01230 
<a name="l01231"></a>01231 
<a name="l01240"></a>01240         <span class="keywordtype">void</span>    handleUpdatedItemData(<span class="keywordtype">void</span>);
<a name="l01241"></a>01241 
<a name="l01242"></a>01242 
<a name="l01258"></a>01258         <span class="keywordtype">void</span>    setColumnHeaderWidth(uint col_idx, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width);
<a name="l01259"></a>01259 
<a name="l01260"></a>01260 
<a name="l01272"></a>01272         <span class="keywordtype">void</span>    setUserSortControlEnabled(<span class="keywordtype">bool</span> setting);
<a name="l01273"></a>01273 
<a name="l01274"></a>01274 
<a name="l01286"></a>01286         <span class="keywordtype">void</span>    setUserColumnSizingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l01287"></a>01287 
<a name="l01288"></a>01288 
<a name="l01297"></a>01297         <span class="keywordtype">void</span>    setUserColumnDraggingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l01298"></a>01298 
<a name="l01299"></a>01299 
<a name="l01313"></a>01313         <span class="keywordtype">void</span>    autoSizeColumnHeader(uint col_idx);
<a name="l01314"></a>01314 
<a name="l01315"></a>01315 
<a name="l01331"></a>01331         <span class="keywordtype">void</span>    setRowID(uint row_idx, uint row_id);
<a name="l01332"></a>01332 
<a name="l01333"></a>01333 
<a name="l01334"></a>01334         <span class="comment">/*************************************************************************</span>
<a name="l01335"></a>01335 <span class="comment">                Construction and Destruction</span>
<a name="l01336"></a>01336 <span class="comment">        *************************************************************************/</span>
<a name="l01341"></a>01341         <a class="code" href="classCEGUI_1_1MultiColumnList.html" title="Base class for the multi column list widget.">MultiColumnList</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name);
<a name="l01342"></a>01342 
<a name="l01343"></a>01343 
<a name="l01348"></a>01348         <span class="keyword">virtual</span> ~<a class="code" href="classCEGUI_1_1MultiColumnList.html" title="Base class for the multi column list widget.">MultiColumnList</a>(<span class="keywordtype">void</span>);
<a name="l01349"></a>01349 
<a name="l01350"></a>01350 
<a name="l01351"></a>01351 <span class="keyword">protected</span>:
<a name="l01352"></a>01352         <span class="comment">/*************************************************************************</span>
<a name="l01353"></a>01353 <span class="comment">                Implementation Functions (abstract interface)</span>
<a name="l01354"></a>01354 <span class="comment">        *************************************************************************/</span>
<a name="l01364"></a>01364         <span class="comment">//virtual       Rect    getListRenderArea_impl(void) const              = 0;</span>
<a name="l01365"></a>01365 
<a name="l01366"></a>01366 
<a name="l01367"></a>01367         <span class="comment">/*************************************************************************</span>
<a name="l01368"></a>01368 <span class="comment">                Implementation Functions</span>
<a name="l01369"></a>01369 <span class="comment">        *************************************************************************/</span>
<a name="l01374"></a>01374         <span class="keywordtype">void</span>    configureScrollbars(<span class="keywordtype">void</span>);
<a name="l01375"></a>01375 
<a name="l01376"></a>01376 
<a name="l01381"></a>01381         <span class="keywordtype">bool</span>    selectRange(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; start, <span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a>&amp; end);
<a name="l01382"></a>01382 
<a name="l01383"></a>01383 
<a name="l01391"></a>01391         <span class="keywordtype">bool</span>    clearAllSelections_impl(<span class="keywordtype">void</span>);
<a name="l01392"></a>01392 
<a name="l01393"></a>01393 
<a name="l01402"></a>01402         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    getItemAtPoint(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Point</a>&amp; pt) <span class="keyword">const</span>;
<a name="l01403"></a>01403 
<a name="l01404"></a>01404 
<a name="l01411"></a>01411         <span class="keywordtype">bool</span>    setItemSelectState_impl(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MCLGridRef.html" title="Simple grid index structure.">MCLGridRef</a> grid_ref, <span class="keywordtype">bool</span> state);
<a name="l01412"></a>01412 
<a name="l01413"></a>01413 
<a name="l01418"></a>01418         <span class="keywordtype">void</span>    setSelectForItemsInRow(uint row_idx, <span class="keywordtype">bool</span> state);
<a name="l01419"></a>01419 
<a name="l01420"></a>01420 
<a name="l01425"></a>01425         <span class="keywordtype">void</span>    setSelectForItemsInColumn(uint col_idx, <span class="keywordtype">bool</span> state);
<a name="l01426"></a>01426 
<a name="l01427"></a>01427 
<a name="l01435"></a>01435         <span class="keywordtype">void</span>    moveColumn_impl(uint col_idx, uint position);
<a name="l01436"></a>01436 
<a name="l01437"></a>01437 
<a name="l01449"></a>01449         <span class="keywordtype">bool</span>    resetList_impl(<span class="keywordtype">void</span>);
<a name="l01450"></a>01450 
<a name="l01451"></a>01451 
<a name="l01462"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ab785c21528884e4bc7fc27eda373f9f2">01462</a>         <span class="keyword">virtual</span> <span class="keywordtype">bool</span>    testClassName_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; class_name)<span class="keyword"> const</span>
<a name="l01463"></a>01463 <span class="keyword">        </span>{
<a name="l01464"></a>01464                 <span class="keywordflow">if</span> (class_name==<span class="stringliteral">&quot;MultiColumnList&quot;</span>)      <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l01465"></a>01465                 <span class="keywordflow">return</span> <a class="code" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b" title="Return whether this window was inherited from the given class name at some point in the inheritance h...">Window::testClassName_impl</a>(class_name);
<a name="l01466"></a>01466         }
<a name="l01467"></a>01467 
<a name="l01468"></a>01468 
<a name="l01469"></a>01469     <span class="comment">// overrides function in base class.</span>
<a name="l01470"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a26c008854f12bab664c8b278e5a5ac57">01470</a>     <span class="keyword">virtual</span> <span class="keywordtype">bool</span> validateWindowRenderer(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name)<span class="keyword"> const</span>
<a name="l01471"></a>01471 <span class="keyword">    </span>{
<a name="l01472"></a>01472         <span class="keywordflow">return</span> (name == <span class="stringliteral">&quot;MultiColumnList&quot;</span>);
<a name="l01473"></a>01473     }
<a name="l01474"></a>01474 
<a name="l01475"></a>01475     <span class="comment">// overrides function in base class.</span>
<a name="l01476"></a>01476     <span class="keywordtype">int</span> writePropertiesXML(<a class="code" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document.">XMLSerializer</a>&amp; xml_stream) <span class="keyword">const</span>;
<a name="l01477"></a>01477 
<a name="l01482"></a>01482     <span class="keywordtype">void</span> resortList();
<a name="l01483"></a>01483 
<a name="l01484"></a>01484         <span class="comment">/*************************************************************************</span>
<a name="l01485"></a>01485 <span class="comment">                New event handlers for multi column list</span>
<a name="l01486"></a>01486 <span class="comment">        *************************************************************************/</span>
<a name="l01491"></a>01491         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSelectionModeChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01492"></a>01492 
<a name="l01493"></a>01493 
<a name="l01498"></a>01498         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onNominatedSelectColumnChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01499"></a>01499 
<a name="l01500"></a>01500 
<a name="l01505"></a>01505         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onNominatedSelectRowChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01506"></a>01506 
<a name="l01507"></a>01507 
<a name="l01512"></a>01512         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onVertScrollbarModeChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01513"></a>01513 
<a name="l01514"></a>01514 
<a name="l01519"></a>01519         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onHorzScrollbarModeChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01520"></a>01520 
<a name="l01521"></a>01521 
<a name="l01526"></a>01526         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSelectionChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01527"></a>01527 
<a name="l01528"></a>01528 
<a name="l01533"></a>01533         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onListContentsChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01534"></a>01534 
<a name="l01535"></a>01535 
<a name="l01540"></a>01540         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSortColumnChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01541"></a>01541 
<a name="l01542"></a>01542 
<a name="l01547"></a>01547         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSortDirectionChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01548"></a>01548 
<a name="l01549"></a>01549 
<a name="l01554"></a>01554         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onListColumnSized(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01555"></a>01555 
<a name="l01556"></a>01556 
<a name="l01561"></a>01561         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onListColumnMoved(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01562"></a>01562 
<a name="l01563"></a>01563 
<a name="l01564"></a>01564         <span class="comment">/*************************************************************************</span>
<a name="l01565"></a>01565 <span class="comment">                Overridden Event handlers</span>
<a name="l01566"></a>01566 <span class="comment">        *************************************************************************/</span>
<a name="l01567"></a>01567         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onFontChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01568"></a>01568         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSized(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l01569"></a>01569         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onMouseButtonDown(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>&amp; e);
<a name="l01570"></a>01570         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onMouseWheel(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>&amp; e);
<a name="l01571"></a>01571 
<a name="l01572"></a>01572 
<a name="l01573"></a>01573         <span class="comment">/*************************************************************************</span>
<a name="l01574"></a>01574 <span class="comment">                Handlers for subscribed events</span>
<a name="l01575"></a>01575 <span class="comment">        *************************************************************************/</span>
<a name="l01576"></a>01576         <span class="keywordtype">bool</span>    handleHeaderScroll(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01577"></a>01577         <span class="keywordtype">bool</span>    handleHeaderSegMove(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01578"></a>01578         <span class="keywordtype">bool</span>    handleColumnSizeChange(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01579"></a>01579         <span class="keywordtype">bool</span>    handleHorzScrollbar(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01580"></a>01580         <span class="keywordtype">bool</span>    handleVertScrollbar(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01581"></a>01581         <span class="keywordtype">bool</span>    handleSortColumnChange(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01582"></a>01582         <span class="keywordtype">bool</span>    handleSortDirectionChange(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01583"></a>01583         <span class="keywordtype">bool</span>    handleHeaderSegDblClick(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l01584"></a>01584 
<a name="l01590"></a><a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html">01590</a>         <span class="keyword">struct </span><a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows...">ListRow</a>
<a name="l01591"></a>01591         {
<a name="l01592"></a>01592                 <span class="keyword">typedef</span> std::vector&lt;ListboxItem*&gt;       RowItems;
<a name="l01593"></a>01593                 RowItems        d_items;
<a name="l01594"></a>01594                 uint            d_sortColumn;
<a name="l01595"></a>01595                 uint            d_rowID;
<a name="l01596"></a>01596 
<a name="l01597"></a>01597                 <span class="comment">// operators</span>
<a name="l01598"></a>01598                 <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>* <span class="keyword">const</span>&amp; operator[](uint idx)<span class="keyword"> const  </span>{<span class="keywordflow">return</span> d_items[idx];}
<a name="l01599"></a>01599                 <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*&amp;   operator[](uint idx) {<span class="keywordflow">return</span> d_items[idx];}
<a name="l01600"></a>01600                 <span class="keywordtype">bool</span>    <a class="code" href="namespaceCEGUI.html#a513ed569681f56027e750775ae78d7c0" title="Return true if String str1 is lexicographically less than String str2.">operator&lt;</a>(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows...">ListRow</a>&amp; rhs) <span class="keyword">const</span>;
<a name="l01601"></a>01601                 <span class="keywordtype">bool</span>    <a class="code" href="namespaceCEGUI.html#a28df333cb1d3a4839cf923f92001710e" title="Return true if String str1 is lexicographically greater than String str2.">operator&gt;</a>(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows...">ListRow</a>&amp; rhs) <span class="keyword">const</span>;
<a name="l01602"></a>01602         };
<a name="l01603"></a>01603 
<a name="l01604"></a>01604 
<a name="l01609"></a>01609         <span class="keyword">static</span> <span class="keywordtype">bool</span> pred_descend(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows...">ListRow</a>&amp; a, <span class="keyword">const</span> <a class="code" href="structCEGUI_1_1MultiColumnList_1_1ListRow.html" title="Struct used internally to represent a row in the list and also to ease sorting of the rows...">ListRow</a>&amp; b);
<a name="l01610"></a>01610 
<a name="l01611"></a>01611 
<a name="l01612"></a>01612         <span class="comment">/*************************************************************************</span>
<a name="l01613"></a>01613 <span class="comment">                Implementation Data</span>
<a name="l01614"></a>01614 <span class="comment">        *************************************************************************/</span>
<a name="l01615"></a>01615         <span class="comment">// scrollbar settings.</span>
<a name="l01616"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ac83d52ce80ee980fa0acfabeb5c11499">01616</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#ac83d52ce80ee980fa0acfabeb5c11499" title="true if vertical scrollbar should always be displayed">d_forceVertScroll</a>;              
<a name="l01617"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a020070316939efadcdb05380f747524b">01617</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a020070316939efadcdb05380f747524b" title="true if horizontal scrollbar should always be displayed">d_forceHorzScroll</a>;              
<a name="l01618"></a>01618 
<a name="l01619"></a>01619         <span class="comment">// selection abilities.</span>
<a name="l01620"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a3d0b02d2c00d71371aabe9d42bb79317">01620</a>         <a class="code" href="classCEGUI_1_1MultiColumnList.html#a0e07ae05c27bfca45f0e40d8b008b5e1" title="Enumerated values for the selection modes possible with a Multi-column list.">SelectionMode</a>   <a class="code" href="classCEGUI_1_1MultiColumnList.html#a3d0b02d2c00d71371aabe9d42bb79317" title="Holds selection mode (represented by settings below).">d_selectMode</a>;   
<a name="l01621"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a8120b19863794f5358584c3a3cc30931">01621</a>         uint    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a8120b19863794f5358584c3a3cc30931" title="Nominated column for single column selection.">d_nominatedSelectCol</a>;   
<a name="l01622"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#acac467c4b7beead0d4a3b7afcfaa0a99">01622</a>         uint    <a class="code" href="classCEGUI_1_1MultiColumnList.html#acac467c4b7beead0d4a3b7afcfaa0a99" title="Nominated row for single row selection.">d_nominatedSelectRow</a>;   
<a name="l01623"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a1e6dad79c092f82a5a43749394c6d429">01623</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a1e6dad79c092f82a5a43749394c6d429" title="Allow multiple selections.">d_multiSelect</a>;                  
<a name="l01624"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#aa8259c44c41810cac903f05f4d749a28">01624</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#aa8259c44c41810cac903f05f4d749a28" title="All items in a row are selected.">d_fullRowSelect</a>;                
<a name="l01625"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ae76be93b08002488152fb54f4cbab08a">01625</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#ae76be93b08002488152fb54f4cbab08a" title="All items in a column are selected.">d_fullColSelect</a>;                
<a name="l01626"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a855701974c36e7f04040c9b0001dd890">01626</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a855701974c36e7f04040c9b0001dd890" title="true if we use a nominated row to select.">d_useNominatedRow</a>;              
<a name="l01627"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a6a38d75d284b35d671181f7ca4d0c150">01627</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a6a38d75d284b35d671181f7ca4d0c150" title="true if we use a nominated col to select.">d_useNominatedCol</a>;              
<a name="l01628"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ae440a8bb4c20c067e9f17cca0703a553">01628</a>         <a class="code" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>*    <a class="code" href="classCEGUI_1_1MultiColumnList.html#ae440a8bb4c20c067e9f17cca0703a553" title="holds pointer to the last selected item (used in range selections)">d_lastSelected</a>; 
<a name="l01629"></a>01629 
<a name="l01630"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#a23131114835feb3f2e62a1a1d4fac217">01630</a>     uint    <a class="code" href="classCEGUI_1_1MultiColumnList.html#a23131114835feb3f2e62a1a1d4fac217" title="keeps track of the number of columns.">d_columnCount</a>;          
<a name="l01631"></a>01631 
<a name="l01632"></a>01632         <span class="comment">// storage of items in the list box.</span>
<a name="l01633"></a>01633         <span class="keyword">typedef</span> std::vector&lt;ListRow&gt;            ListItemGrid;
<a name="l01634"></a><a class="code" href="classCEGUI_1_1MultiColumnList.html#ab258f560b2994a5b35989fcbf2d2e486">01634</a>         ListItemGrid    <a class="code" href="classCEGUI_1_1MultiColumnList.html#ab258f560b2994a5b35989fcbf2d2e486" title="Holds the list box data.">d_grid</a>;                 
<a name="l01635"></a>01635 
<a name="l01636"></a>01636     <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1MultiColumnListWindowRenderer.html" title="Base class for the multi column list window renderer.">MultiColumnListWindowRenderer</a>;
<a name="l01637"></a>01637 
<a name="l01638"></a>01638 
<a name="l01639"></a>01639 <span class="keyword">private</span>:
<a name="l01640"></a>01640         <span class="comment">/*************************************************************************</span>
<a name="l01641"></a>01641 <span class="comment">                Static Properties for this class</span>
<a name="l01642"></a>01642 <span class="comment">        *************************************************************************/</span>
<a name="l01643"></a>01643         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsMovable.html" title="Property to access the setting for user moving of the column headers.">MultiColumnListProperties::ColumnsMovable</a>                                d_columnsMovableProperty;
<a name="l01644"></a>01644         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnsSizable.html" title="Property to access the setting for user sizing of the column headers.">MultiColumnListProperties::ColumnsSizable</a>                                d_columnsSizableProperty;
<a name="l01645"></a>01645         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceHorzScrollbar.html" title="Property to access the &#39;always show&#39; setting for the horizontal scroll bar of the list box...">MultiColumnListProperties::ForceHorzScrollbar</a>                    d_forceHorzScrollProperty;
<a name="l01646"></a>01646         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1ForceVertScrollbar.html" title="Property to access the &#39;always show&#39; setting for the vertical scroll bar of the list box...">MultiColumnListProperties::ForceVertScrollbar</a>                    d_forceVertScrollProperty;
<a name="l01647"></a>01647         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionColumnID.html" title="Property to access the nominated selection column (via ID).">MultiColumnListProperties::NominatedSelectionColumnID</a>    d_nominatedSelectColProperty;
<a name="l01648"></a>01648         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1NominatedSelectionRow.html" title="Property to access the nominated selection row.">MultiColumnListProperties::NominatedSelectionRow</a>                 d_nominatedSelectRowProperty;
<a name="l01649"></a>01649         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1SelectionMode.html" title="Property to access the selection mode setting of the list.">MultiColumnListProperties::SelectionMode</a>                                 d_selectModeProperty;
<a name="l01650"></a>01650         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1SortColumnID.html" title="Property to access the current sort column (via ID code).">MultiColumnListProperties::SortColumnID</a>                                  d_sortColumnIDProperty;
<a name="l01651"></a>01651         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the list.">MultiColumnListProperties::SortDirection</a>                                 d_sortDirectionProperty;
<a name="l01652"></a>01652         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1SortSettingEnabled.html" title="Property to access the setting for user modification of the sort column &amp; direction.">MultiColumnListProperties::SortSettingEnabled</a>                    d_sortSettingProperty;
<a name="l01653"></a>01653         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1ColumnHeader.html" title="Property to access a column.">MultiColumnListProperties::ColumnHeader</a>                                  d_columnHeaderProperty;
<a name="l01654"></a>01654         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1MultiColumnListProperties_1_1RowCount.html" title="Property to access the number of rows in the list (read-only)">MultiColumnListProperties::RowCount</a>                                              d_rowCountProperty;
<a name="l01655"></a>01655 
<a name="l01656"></a>01656 
<a name="l01657"></a>01657         <span class="comment">/*************************************************************************</span>
<a name="l01658"></a>01658 <span class="comment">                Private methods</span>
<a name="l01659"></a>01659 <span class="comment">        *************************************************************************/</span>
<a name="l01660"></a>01660         <span class="keywordtype">void</span>    addMultiColumnListProperties(<span class="keywordtype">void</span>);
<a name="l01661"></a>01661 };
<a name="l01662"></a>01662 
<a name="l01663"></a>01663 } <span class="comment">// End of  CEGUI namespace section</span>
<a name="l01664"></a>01664 
<a name="l01665"></a>01665 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l01666"></a>01666 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(pop)</span>
<a name="l01667"></a>01667 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l01668"></a>01668 <span class="preprocessor"></span>
<a name="l01669"></a>01669 <span class="preprocessor">#endif  // end of guard _CEGUIMultiColumnList_h_</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:39 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>