File: classCEGUI_1_1ListHeader.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 (1768 lines) | stat: -rw-r--r-- 132,830 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
<!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::ListHeader 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_1ListHeader.html">ListHeader</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="#pro-types">Protected Types</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-attribs">Protected Attributes</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::ListHeader Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::ListHeader" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for the multi column list header widget.  
 <a href="classCEGUI_1_1ListHeader.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::ListHeader:</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_1ListHeader__inherit__graph.gif" border="0" usemap="#CEGUI_1_1ListHeader_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1ListHeader_inherit__map" id="CEGUI_1_1ListHeader_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="16,83,136,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="5,5,147,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::ListHeader:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1ListHeader__coll__graph.gif" border="0" usemap="#CEGUI_1_1ListHeader_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1ListHeader_coll__map" id="CEGUI_1_1ListHeader_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="97,81,217,111"/><area shape="rect" id="node5" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html" title="Property to access the setting for user moving of the column headers." alt="" coords="5,135,309,164"/><area shape="rect" id="node7" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html" title="Property to access the current sort column (via ID code)." alt="" coords="15,188,300,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1ListHeader-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">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a728112f1b1b0861ea1831e410b26d223">getColumnCount</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the number of columns or segments attached to the header.  <a href="#a728112f1b1b0861ea1831e410b26d223"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a44e2223914ec11208acf95f509237e02">getSegmentFromColumn</a> (uint column) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object for the specified column.  <a href="#a44e2223914ec11208acf95f509237e02"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a986b5de3aa0de66299cca76d40c89cf8">getSegmentFromID</a> (uint id) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object with the specified ID.  <a href="#a986b5de3aa0de66299cca76d40c89cf8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a73cf88783c8df2c1708e949bfd3e0e31">getSortSegment</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that is marked as being the 'sort key' segment. There must be at least one segment to successfully call this method.  <a href="#a73cf88783c8df2c1708e949bfd3e0e31"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a23d6631ece6268c46a980877744a73bb">getColumnFromSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the zero based column index of the specified segment.  <a href="#a23d6631ece6268c46a980877744a73bb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a65adf5bd7d678d0e0f1266f93d18a977">getColumnFromID</a> (uint id) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the zero based column index of the segment with the specified ID.  <a href="#a65adf5bd7d678d0e0f1266f93d18a977"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a62d23d0ce1b4df5838ca306b43f16600">getSortColumn</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the zero based index of the current sort column. There must be at least one segment/column to successfully call this method.  <a href="#a62d23d0ce1b4df5838ca306b43f16600"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ab411bb4506dcb7226e3be4aeacc8288e">getColumnWithText</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;text) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the zero based column index of the segment with the specified text.  <a href="#ab411bb4506dcb7226e3be4aeacc8288e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a54c6a2d9bbdf08fce74d82d769c5421a">getPixelOffsetToSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the pixel offset to the given <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>.  <a href="#a54c6a2d9bbdf08fce74d82d769c5421a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a3ac4ac4f8350d5ebd86e821abbd9f588">getPixelOffsetToColumn</a> (uint column) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the pixel offset to the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> at the given zero based column index.  <a href="#a3ac4ac4f8350d5ebd86e821abbd9f588"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a240ed83868afce40fa2f4934ecb3c6e7">getTotalSegmentsPixelExtent</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the total pixel width of all attached segments.  <a href="#a240ed83868afce40fa2f4934ecb3c6e7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1UDim.html">UDim</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ace2a29d3b46992a301b183a60c0d48e9">getColumnWidth</a> (uint column) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the width of the specified column.  <a href="#ace2a29d3b46992a301b183a60c0d48e9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">ListHeaderSegment::SortDirection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a7a0bc282434cdfde7a2305fa7080ac14">getSortDirection</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the currently set sort direction.  <a href="#a7a0bc282434cdfde7a2305fa7080ac14"></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_1ListHeader.html#a50d98d9216581e2215f820b68aff5cab">isSortingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether user manipulation of the sort column &amp; direction are enabled.  <a href="#a50d98d9216581e2215f820b68aff5cab"></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_1ListHeader.html#a3d7843d7f069d3addf4cf196af2e8aa9">isColumnSizingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether the user may size column segments.  <a href="#a3d7843d7f069d3addf4cf196af2e8aa9"></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_1ListHeader.html#afc070f7e732ca2d8e9c3a5e08a53ad33">isColumnDraggingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether the user may modify the order of the segments.  <a href="#afc070f7e732ca2d8e9c3a5e08a53ad33"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a5b22687f4774e53939618202d266e025">getSegmentOffset</a> (void) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current segment offset value. This value is used to implement scrolling of the header segments within the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> area.  <a href="#a5b22687f4774e53939618202d266e025"></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_1ListHeader.html#a991cd8053715b04f77fb0af233f94760">setSortingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set whether user manipulation of the sort column and direction is enabled.  <a href="#a991cd8053715b04f77fb0af233f94760"></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_1ListHeader.html#a6c139ef00324986ef7e59fd1d72e9f1c">setSortDirection</a> (<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">ListHeaderSegment::SortDirection</a> direction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the current sort direction.  <a href="#a6c139ef00324986ef7e59fd1d72e9f1c"></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_1ListHeader.html#ad8394cd6f689c9932d3d92c70db0feb3">setSortSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the column segment to be used as the sort column.  <a href="#ad8394cd6f689c9932d3d92c70db0feb3"></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_1ListHeader.html#a520d4886a5d9a0181c32812830fa2995">setSortColumn</a> (uint column)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the column to be used as the sort column.  <a href="#a520d4886a5d9a0181c32812830fa2995"></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_1ListHeader.html#aecdb879dfd24c0a7eda75c4286f3daf4">setSortColumnFromID</a> (uint id)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the column to to be used for sorting via its ID code.  <a href="#aecdb879dfd24c0a7eda75c4286f3daf4"></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_1ListHeader.html#aa67c1df212f64e33adfa075540762680">setColumnSizingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set whether columns may be sized by the user.  <a href="#aa67c1df212f64e33adfa075540762680"></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_1ListHeader.html#a205ac5c67ee705046434e82ca5f436f8">setColumnDraggingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set whether columns may be reordered by the user via drag and drop.  <a href="#a205ac5c67ee705046434e82ca5f436f8"></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_1ListHeader.html#a9aa4949313f7c0cfdc6fef394b4237e6">addColumn</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;text, uint id, const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;width)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a new column segment to the end of the header.  <a href="#a9aa4949313f7c0cfdc6fef394b4237e6"></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_1ListHeader.html#ac60d08dedbc9d9cb63bcb16c59c26f5e">insertColumn</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;text, uint id, const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;width, uint position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Insert a new column segment at the specified position.  <a href="#ac60d08dedbc9d9cb63bcb16c59c26f5e"></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_1ListHeader.html#ae499cb25a1d6ab4b6b3814af6afb5bbf">insertColumn</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;text, uint id, const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;width, const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Insert a new column segment at the specified position.  <a href="#ae499cb25a1d6ab4b6b3814af6afb5bbf"></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_1ListHeader.html#a101d9ad320c5c49e0fc542b4921b96a9">removeColumn</a> (uint column)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a column segment from the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>.  <a href="#a101d9ad320c5c49e0fc542b4921b96a9"></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_1ListHeader.html#a4a69e7d61619480898b139b6d66820bc">removeSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the specified segment from the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>.  <a href="#a4a69e7d61619480898b139b6d66820bc"></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_1ListHeader.html#a00cd6f52c825b8b7a45874790c06a228">moveColumn</a> (uint column, uint position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves a column segment into a new position.  <a href="#a00cd6f52c825b8b7a45874790c06a228"></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_1ListHeader.html#a090d15e888666253ab74f39afd41fb74">moveColumn</a> (uint column, const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Move a column segment to a new position.  <a href="#a090d15e888666253ab74f39afd41fb74"></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_1ListHeader.html#a15dd7370f10e8431361989601757f3a4">moveSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment, uint position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves a segment into a new position.  <a href="#a15dd7370f10e8431361989601757f3a4"></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_1ListHeader.html#a9371b6b76163d109bfd7da15b3136b64">moveSegment</a> (const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;segment, const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Move a segment to a new position.  <a href="#a9371b6b76163d109bfd7da15b3136b64"></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_1ListHeader.html#a01f4a86f5d1a0994ea369d76b9500e79">setSegmentOffset</a> (float offset)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the current base segment offset. (This implements scrolling of the header segments within the header area).  <a href="#a01f4a86f5d1a0994ea369d76b9500e79"></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_1ListHeader.html#a225b14b17fcdd18e44a9f657e26050d4">setColumnWidth</a> (uint column, const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;width)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the width of the specified column.  <a href="#a225b14b17fcdd18e44a9f657e26050d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f2a7339aed5d269ae60913fbeebf95d"></a><!-- doxytag: member="CEGUI::ListHeader::ListHeader" ref="a1f2a7339aed5d269ae60913fbeebf95d" args="(const String &amp;type, const String &amp;name)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a1f2a7339aed5d269ae60913fbeebf95d">ListHeader</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;type, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor for the list header base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5d94a3e111cb1e3e5ce24cbbd51b9b13"></a><!-- doxytag: member="CEGUI::ListHeader::~ListHeader" ref="a5d94a3e111cb1e3e5ce24cbbd51b9b13" args="(void)" -->
virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a5d94a3e111cb1e3e5ce24cbbd51b9b13">~ListHeader</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor for the list header base class. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adb265ed891b6824dac3ddb26bb60d447"></a><!-- doxytag: member="CEGUI::ListHeader::EventNamespace" ref="adb265ed891b6824dac3ddb26bb60d447" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#adb265ed891b6824dac3ddb26bb60d447">EventNamespace</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a09eb0c6c75b74d9bfa55125f03119bde"></a><!-- doxytag: member="CEGUI::ListHeader::WidgetTypeName" ref="a09eb0c6c75b74d9bfa55125f03119bde" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a09eb0c6c75b74d9bfa55125f03119bde">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> factory name. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a6b0fbedaad9fc6d06fe90dc062b9a40e">EventSortColumnChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#aef6b21b86499a030d564cbeb40dbe014">EventSortDirectionChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a4b83893f193cfc091bb3eff91915c805">EventSegmentSized</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a211dbf4d66d03538b0eca8bdc3bcd55e">EventSegmentClicked</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#af0c77ae2f9342f8a0f07ed1f6d149f47">EventSplitterDoubleClicked</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ad143057c616aa07475dcfce2fe11c6d1">EventSegmentSequenceChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a68b43246d13f985e1f16cf90ea7425f3">EventSegmentAdded</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ab449c38a5d22e8fcce78cb047421892f">EventSegmentRemoved</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a3447c1e2bc3527e2bbc0e03fbde2c09d">EventSortSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a13626ce6eb4cf635cd2826a6381a3873">EventDragMoveSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a07cac0308bbdb3cc049acb795cadd1ff">EventDragSizeSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ad505e1d119a254ca42febaa348381b95">EventSegmentRenderOffsetChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abfc7a5dd142b07fa3b3c7bf2c2fe96bd"></a><!-- doxytag: member="CEGUI::ListHeader::ScrollSpeed" ref="abfc7a5dd142b07fa3b3c7bf2c2fe96bd" args="" -->
static const float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#abfc7a5dd142b07fa3b3c7bf2c2fe96bd">ScrollSpeed</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Speed to scroll at when dragging outside header. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6711fcb4d92996cd15e25ab250dcb278"></a><!-- doxytag: member="CEGUI::ListHeader::MinimumSegmentPixelWidth" ref="a6711fcb4d92996cd15e25ab250dcb278" args="" -->
static const float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a6711fcb4d92996cd15e25ab250dcb278">MinimumSegmentPixelWidth</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Miniumum width of a segment in pixels. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a063403340147c3bcd67a2f84e3f75795"></a><!-- doxytag: member="CEGUI::ListHeader::SegmentNameSuffix" ref="a063403340147c3bcd67a2f84e3f75795" args="[]" -->
static const char&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a063403340147c3bcd67a2f84e3f75795">SegmentNameSuffix</a> []</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Widget name suffix for header segments. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-types"></a>
Protected Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a47e0c85d95cf69276ee3b49440d8b5c7"></a><!-- doxytag: member="CEGUI::ListHeader::SegmentList" ref="a47e0c85d95cf69276ee3b49440d8b5c7" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>SegmentList</b></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"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ab22df5a373f93e8241b70ab6f48fca35">createInitialisedSegment</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;text, uint id, const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;width)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create and return a pointer to a new <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object.  <a href="#ab22df5a373f93e8241b70ab6f48fca35"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3897bd2aa81ce1cee478490634ba5344"></a><!-- doxytag: member="CEGUI::ListHeader::layoutSegments" ref="a3897bd2aa81ce1cee478490634ba5344" args="(void)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a3897bd2aa81ce1cee478490634ba5344">layoutSegments</a> (void)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Layout the attached segments. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#aa0bd64a4fb3d44a98d6acb87e7a30a9c">testClassName_impl</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;class_name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether this window was inherited from the given class name at some point in the inheritance hierarchy.  <a href="#aa0bd64a4fb3d44a98d6acb87e7a30a9c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a37614ab86c66bc827646eb3c398815c2">createNewSegment</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create and return a pointer to a new <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object.  <a href="#a37614ab86c66bc827646eb3c398815c2"></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_1ListHeader.html#a184ae920b81fc3f57a32e2aba4d48e56">destroyListSegment</a> (<a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> *segment) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Cleanup and destroy the given <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that was created via the createNewSegment method.  <a href="#a184ae920b81fc3f57a32e2aba4d48e56"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a86a0fb3d33331fde2669540de7e40b8c">validateWindowRenderer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;name) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window.  <a href="#a86a0fb3d33331fde2669540de7e40b8c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a13db0f7e36a939b706af85c55d0a806c"></a><!-- doxytag: member="CEGUI::ListHeader::onSortColumnChanged" ref="a13db0f7e36a939b706af85c55d0a806c" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a13db0f7e36a939b706af85c55d0a806c">onSortColumnChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the sort column is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a82c63eae4639034808924d308348ff11"></a><!-- doxytag: member="CEGUI::ListHeader::onSortDirectionChanged" ref="a82c63eae4639034808924d308348ff11" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a82c63eae4639034808924d308348ff11">onSortDirectionChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the sort direction is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aaa46b60b18abd01b83f4867a2d7096cd"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentSized" ref="aaa46b60b18abd01b83f4867a2d7096cd" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#aaa46b60b18abd01b83f4867a2d7096cd">onSegmentSized</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when a segment is sized by the user. e.window points to the segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae2ef8b6e3a7a8a4e1317b5f9c22c07f6"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentClicked" ref="ae2ef8b6e3a7a8a4e1317b5f9c22c07f6" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ae2ef8b6e3a7a8a4e1317b5f9c22c07f6">onSegmentClicked</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when a segment is clicked by the user. e.window points to the segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7d902ae38bc4916e4949bef443c57995"></a><!-- doxytag: member="CEGUI::ListHeader::onSplitterDoubleClicked" ref="a7d902ae38bc4916e4949bef443c57995" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a7d902ae38bc4916e4949bef443c57995">onSplitterDoubleClicked</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when a segment splitter / sizer is double-clicked. e.window points to the segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4aa2bcde2a634a527e6b42f1e8cea5fd"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentSequenceChanged" ref="a4aa2bcde2a634a527e6b42f1e8cea5fd" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a4aa2bcde2a634a527e6b42f1e8cea5fd">onSegmentSequenceChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the segment / column order changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9806997e09c16f9b3fe6cbff2c2efbb2"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentAdded" ref="a9806997e09c16f9b3fe6cbff2c2efbb2" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a9806997e09c16f9b3fe6cbff2c2efbb2">onSegmentAdded</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when a new segment is added to the header. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af52f009345b846ada391929c40927ccd"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentRemoved" ref="af52f009345b846ada391929c40927ccd" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#af52f009345b846ada391929c40927ccd">onSegmentRemoved</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when a segment is removed from the header. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac53330007bf13a0f1e72aa188b0afb5e"></a><!-- doxytag: member="CEGUI::ListHeader::onSortSettingChanged" ref="ac53330007bf13a0f1e72aa188b0afb5e" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ac53330007bf13a0f1e72aa188b0afb5e">onSortSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called then setting that controls the users ability to modify the search column &amp; direction changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4089c177eca356a407aad3c4f255ba45"></a><!-- doxytag: member="CEGUI::ListHeader::onDragMoveSettingChanged" ref="a4089c177eca356a407aad3c4f255ba45" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a4089c177eca356a407aad3c4f255ba45">onDragMoveSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the setting that controls the users ability to drag and drop segments changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad87246c0537201aab6bdee066c4df79b"></a><!-- doxytag: member="CEGUI::ListHeader::onDragSizeSettingChanged" ref="ad87246c0537201aab6bdee066c4df79b" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ad87246c0537201aab6bdee066c4df79b">onDragSizeSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the setting that controls the users ability to size segments changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab3296d04767f6e5d1595ab371f725454"></a><!-- doxytag: member="CEGUI::ListHeader::onSegmentOffsetChanged" ref="ab3296d04767f6e5d1595ab371f725454" args="(WindowEventArgs &amp;e)" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ab3296d04767f6e5d1595ab371f725454">onSegmentOffsetChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &amp;e)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Handler called when the base rendering offset for the segments (scroll position) changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a475fc6423db5736db72e084994ffa94d"></a><!-- doxytag: member="CEGUI::ListHeader::segmentSizedHandler" ref="a475fc6423db5736db72e084994ffa94d" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>segmentSizedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a67ecb6c13b684f021dfe09dc1b7fdc6c"></a><!-- doxytag: member="CEGUI::ListHeader::segmentMovedHandler" ref="a67ecb6c13b684f021dfe09dc1b7fdc6c" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>segmentMovedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a33c5580d6d992990a5d7fed6ded33488"></a><!-- doxytag: member="CEGUI::ListHeader::segmentClickedHandler" ref="a33c5580d6d992990a5d7fed6ded33488" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>segmentClickedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5d0b8f24cccfd707fd0974c8b668b419"></a><!-- doxytag: member="CEGUI::ListHeader::segmentDoubleClickHandler" ref="a5d0b8f24cccfd707fd0974c8b668b419" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>segmentDoubleClickHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1635163f57fbaf5c7ed17d21db9ca97f"></a><!-- doxytag: member="CEGUI::ListHeader::segmentDragHandler" ref="a1635163f57fbaf5c7ed17d21db9ca97f" args="(const EventArgs &amp;e)" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><b>segmentDragHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &amp;e)</td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a13957f76c0cabb522bc9cb49b58bf4b5"></a><!-- doxytag: member="CEGUI::ListHeader::d_segments" ref="a13957f76c0cabb522bc9cb49b58bf4b5" args="" -->
SegmentList&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a13957f76c0cabb522bc9cb49b58bf4b5">d_segments</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Attached segment windows in header order. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a83038e36d2b2d913146963896a97bf9c"></a><!-- doxytag: member="CEGUI::ListHeader::d_sortSegment" ref="a83038e36d2b2d913146963896a97bf9c" args="" -->
<a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a83038e36d2b2d913146963896a97bf9c">d_sortSegment</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Pointer to the segment that is currently set as the sork-key,. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a127f08da84dd84f35206bec0725809dd"></a><!-- doxytag: member="CEGUI::ListHeader::d_sizingEnabled" ref="a127f08da84dd84f35206bec0725809dd" args="" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a127f08da84dd84f35206bec0725809dd">d_sizingEnabled</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">true if segments can be sized by the user. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a01864034a5f7e4f4828562335250cbcf"></a><!-- doxytag: member="CEGUI::ListHeader::d_sortingEnabled" ref="a01864034a5f7e4f4828562335250cbcf" args="" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a01864034a5f7e4f4828562335250cbcf">d_sortingEnabled</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">true if the sort criteria modifications by user are enabled (no sorting is actuall done) <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7ef7e9fc56583fb084c2c7e38f809943"></a><!-- doxytag: member="CEGUI::ListHeader::d_movingEnabled" ref="a7ef7e9fc56583fb084c2c7e38f809943" args="" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a7ef7e9fc56583fb084c2c7e38f809943">d_movingEnabled</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">true if drag &amp; drop moving of columns / segments is enabled. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad027a5dd5be41b84a9c1a9b0f4800e84"></a><!-- doxytag: member="CEGUI::ListHeader::d_uniqueIDNumber" ref="ad027a5dd5be41b84a9c1a9b0f4800e84" args="" -->
uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ad027a5dd5be41b84a9c1a9b0f4800e84">d_uniqueIDNumber</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">field used to create unique names. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab1808944619bae43e80fa1893bbb5d1e"></a><!-- doxytag: member="CEGUI::ListHeader::d_segmentOffset" ref="ab1808944619bae43e80fa1893bbb5d1e" args="" -->
float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#ab1808944619bae43e80fa1893bbb5d1e">d_segmentOffset</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Base offset used to layout the segments (allows scrolling within the window area) <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a840a2ca1e4caf6d349e4a65a3f90e6b1"></a><!-- doxytag: member="CEGUI::ListHeader::d_sortDir" ref="a840a2ca1e4caf6d349e4a65a3f90e6b1" args="" -->
<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">ListHeaderSegment::SortDirection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeader.html#a840a2ca1e4caf6d349e4a65a3f90e6b1">d_sortDir</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Brief copy of the current sort direction. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for the multi column list header widget. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a9aa4949313f7c0cfdc6fef394b4237e6"></a><!-- doxytag: member="CEGUI::ListHeader::addColumn" ref="a9aa4949313f7c0cfdc6fef394b4237e6" args="(const String &amp;text, uint id, const UDim &amp;width)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::addColumn </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;&#160;</td>
          <td class="paramname"><em>width</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Add a new column segment to the end of the header. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the initial text for the new segment</td></tr>
    <tr><td class="paramname">id</td><td>Client specified ID code to be assigned to the new segment.</td></tr>
    <tr><td class="paramname">width</td><td><a class="el" 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> describing the initial width of the new segment.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ab22df5a373f93e8241b70ab6f48fca35"></a><!-- doxytag: member="CEGUI::ListHeader::createInitialisedSegment" ref="ab22df5a373f93e8241b70ab6f48fca35" args="(const String &amp;text, uint id, const UDim &amp;width)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a>* CEGUI::ListHeader::createInitialisedSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;&#160;</td>
          <td class="paramname"><em>width</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create and return a pointer to a new <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the name that should be given to the new <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>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to an <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object of whatever type is appropriate for this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>.</dd></dl>
<p>Cleanup and destroy the given <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that was created via the createNewSegment method.</p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td>Pointer to a <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object to be destroyed.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<p>Create initialise and return a <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object, with all events subscribed and ready to use. </p>

</div>
</div>
<a class="anchor" id="a37614ab86c66bc827646eb3c398815c2"></a><!-- doxytag: member="CEGUI::ListHeader::createNewSegment" ref="a37614ab86c66bc827646eb3c398815c2" args="(const String &amp;name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a>* CEGUI::ListHeader::createNewSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create and return a pointer to a new <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the name that should be given to the new <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>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to an <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object of whatever type is appropriate for this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a184ae920b81fc3f57a32e2aba4d48e56"></a><!-- doxytag: member="CEGUI::ListHeader::destroyListSegment" ref="a184ae920b81fc3f57a32e2aba4d48e56" args="(ListHeaderSegment *segment) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::destroyListSegment </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> *&#160;</td>
          <td class="paramname"><em>segment</em></td><td>)</td>
          <td> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Cleanup and destroy the given <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that was created via the createNewSegment method. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td>Pointer to a <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> based object to be destroyed.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Return the number of columns or segments attached to the header. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>uint value equal to the number of columns / segments currently in the header. </dd></dl>

</div>
</div>
<a class="anchor" id="a65adf5bd7d678d0e0f1266f93d18a977"></a><!-- doxytag: member="CEGUI::ListHeader::getColumnFromID" ref="a65adf5bd7d678d0e0f1266f93d18a977" args="(uint id) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">uint CEGUI::ListHeader::getColumnFromID </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the zero based column index of the segment with the specified ID. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>ID code of the segment whos column index is to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Zero based column index of the first <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> whos ID matches <em>id</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no attached segment has the requested ID. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a23d6631ece6268c46a980877744a73bb"></a><!-- doxytag: member="CEGUI::ListHeader::getColumnFromSegment" ref="a23d6631ece6268c46a980877744a73bb" args="(const ListHeaderSegment &amp;segment) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">uint CEGUI::ListHeader::getColumnFromSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the zero based column index of the specified segment. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> whos zero based index is to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Zero based column index of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> <em>segment</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>segment</em> is not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ace2a29d3b46992a301b183a60c0d48e9"></a><!-- doxytag: member="CEGUI::ListHeader::getColumnWidth" ref="ace2a29d3b46992a301b183a60c0d48e9" args="(uint column) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1UDim.html">UDim</a> CEGUI::ListHeader::getColumnWidth </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the width of the specified column. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index of the segment whose width is to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" 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> describing the width of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> at the zero based column index specified by <em>column</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Return the zero based column index of the segment with the specified text. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the text to be searched for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Zero based column index of the segment with the specified text.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no attached segments have the requested text. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3ac4ac4f8350d5ebd86e821abbd9f588"></a><!-- doxytag: member="CEGUI::ListHeader::getPixelOffsetToColumn" ref="a3ac4ac4f8350d5ebd86e821abbd9f588" args="(uint column) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::ListHeader::getPixelOffsetToColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the pixel offset to the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> at the given zero based column index. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> whos pixel offset it to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of pixels up-to the begining of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> located at zero based column index <em>column</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a54c6a2d9bbdf08fce74d82d769c5421a"></a><!-- doxytag: member="CEGUI::ListHeader::getPixelOffsetToSegment" ref="a54c6a2d9bbdf08fce74d82d769c5421a" args="(const ListHeaderSegment &amp;segment) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::ListHeader::getPixelOffsetToSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the pixel offset to the given <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object that the offset to is to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of pixels up-to the begining of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> described by <em>segment</em>.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>segment</em> is not attached to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a44e2223914ec11208acf95f509237e02"></a><!-- doxytag: member="CEGUI::ListHeader::getSegmentFromColumn" ref="a44e2223914ec11208acf95f509237e02" args="(uint column) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a>&amp; CEGUI::ListHeader::getSegmentFromColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object for the specified column. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>zero based column index of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object at the requested index.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if column is out of range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a986b5de3aa0de66299cca76d40c89cf8"></a><!-- doxytag: member="CEGUI::ListHeader::getSegmentFromID" ref="a986b5de3aa0de66299cca76d40c89cf8" args="(uint id) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a>&amp; CEGUI::ListHeader::getSegmentFromID </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object with the specified ID. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>id code of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> to be returned.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object with the ID <em>id</em>. If more than one segment has the same ID, only the first one will ever be returned.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no segment with the requested ID is attached. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5b22687f4774e53939618202d266e025"></a><!-- doxytag: member="CEGUI::ListHeader::getSegmentOffset" ref="a5b22687f4774e53939618202d266e025" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">float CEGUI::ListHeader::getSegmentOffset </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current segment offset value. This value is used to implement scrolling of the header segments within the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> area. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the current segment offset value in whatever metrics system is active for the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </dd></dl>

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

<p>Return the zero based index of the current sort column. There must be at least one segment/column to successfully call this method. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Zero based column index that is the current sort column.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if there are no segments / columns in this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7a0bc282434cdfde7a2305fa7080ac14"></a><!-- doxytag: member="CEGUI::ListHeader::getSortDirection" ref="a7a0bc282434cdfde7a2305fa7080ac14" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">ListHeaderSegment::SortDirection</a> CEGUI::ListHeader::getSortDirection </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the currently set sort direction. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>One of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a> enumerated values specifying the current sort direction. </dd></dl>

</div>
</div>
<a class="anchor" id="a73cf88783c8df2c1708e949bfd3e0e31"></a><!-- doxytag: member="CEGUI::ListHeader::getSortSegment" ref="a73cf88783c8df2c1708e949bfd3e0e31" args="(void) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a>&amp; CEGUI::ListHeader::getSortSegment </td>
          <td>(</td>
          <td class="paramtype">void&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that is marked as being the 'sort key' segment. There must be at least one segment to successfully call this method. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object which is the sort-key segment.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no segments are attached to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Return the total pixel width of all attached segments. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Sum of the pixel widths of all attached <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> objects. </dd></dl>

</div>
</div>
<a class="anchor" id="ac60d08dedbc9d9cb63bcb16c59c26f5e"></a><!-- doxytag: member="CEGUI::ListHeader::insertColumn" ref="ac60d08dedbc9d9cb63bcb16c59c26f5e" args="(const String &amp;text, uint id, const UDim &amp;width, uint position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::insertColumn </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;&#160;</td>
          <td class="paramname"><em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Insert a new column segment at the specified position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the initial text for the new segment</td></tr>
    <tr><td class="paramname">id</td><td>Client specified ID code to be assigned to the new segment.</td></tr>
    <tr><td class="paramname">width</td><td><a class="el" 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> describing the initial width of the new segment.</td></tr>
    <tr><td class="paramname">position</td><td>Zero based column index indicating the desired position for the new column. If this is greater than the current number of columns, the new segment is added to the end if the header.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="ae499cb25a1d6ab4b6b3814af6afb5bbf"></a><!-- doxytag: member="CEGUI::ListHeader::insertColumn" ref="ae499cb25a1d6ab4b6b3814af6afb5bbf" args="(const String &amp;text, uint id, const UDim &amp;width, const ListHeaderSegment &amp;position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::insertColumn </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;&#160;</td>
          <td class="paramname"><em>width</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Insert a new column segment at the specified position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the initial text for the new segment</td></tr>
    <tr><td class="paramname">id</td><td>Client specified ID code to be assigned to the new segment.</td></tr>
    <tr><td class="paramname">width</td><td><a class="el" 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> describing the initial width of the new segment.</td></tr>
    <tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object indicating the insert position for the new segment. The new segment will be inserted before the segment indicated by <em>position</em>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> <em>position</em> is not attached to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Return whether the user may modify the order of the segments. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the user may interactively modify the order of the column segments, false if they may not. </dd></dl>

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

<p>Return whether the user may size column segments. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the user may interactively modify the width of column segments, false if they may not. </dd></dl>

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

<p>Return whether user manipulation of the sort column &amp; direction are enabled. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the user may interactively modify the sort column and direction. false if the user may not modify the sort column and direction (these can still be set programmatically). </dd></dl>

</div>
</div>
<a class="anchor" id="a00cd6f52c825b8b7a45874790c06a228"></a><!-- doxytag: member="CEGUI::ListHeader::moveColumn" ref="a00cd6f52c825b8b7a45874790c06a228" args="(uint column, uint position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::moveColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Moves a column segment into a new position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index indicating the column segment to be moved.</td></tr>
    <tr><td class="paramname">position</td><td>Zero based column index indicating the new position for the segment. If this is greater than the current number of segments, the segment is moved to the end of the header.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range for this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a090d15e888666253ab74f39afd41fb74"></a><!-- doxytag: member="CEGUI::ListHeader::moveColumn" ref="a090d15e888666253ab74f39afd41fb74" args="(uint column, const ListHeaderSegment &amp;position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::moveColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Move a column segment to a new position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index indicating the column segment to be moved.</td></tr>
    <tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object indicating the new position for the segment. The segment at <em>column</em> will be moved behind segment <em>position</em> (that is, segment <em>column</em> will appear to the right of segment <em>position</em>).</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range for this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>, or if <em>position</em> is not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a15dd7370f10e8431361989601757f3a4"></a><!-- doxytag: member="CEGUI::ListHeader::moveSegment" ref="a15dd7370f10e8431361989601757f3a4" args="(const ListHeaderSegment &amp;segment, uint position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::moveSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Moves a segment into a new position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object that is to be moved.</td></tr>
    <tr><td class="paramname">position</td><td>Zero based column index indicating the new position for the segment. If this is greater than the current number of segments, the segment is moved to the end of the header.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>segment</em> is not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9371b6b76163d109bfd7da15b3136b64"></a><!-- doxytag: member="CEGUI::ListHeader::moveSegment" ref="a9371b6b76163d109bfd7da15b3136b64" args="(const ListHeaderSegment &amp;segment, const ListHeaderSegment &amp;position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::moveSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>position</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Move a segment to a new position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object that is to be moved.</td></tr>
    <tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object indicating the new position for the segment. The segment <em>segment</em> will be moved behind segment <em>position</em> (that is, segment <em>segment</em> will appear to the right of segment <em>position</em>).</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if either <em>segment</em> or <em>position</em> are not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a101d9ad320c5c49e0fc542b4921b96a9"></a><!-- doxytag: member="CEGUI::ListHeader::removeColumn" ref="a101d9ad320c5c49e0fc542b4921b96a9" args="(uint column)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::removeColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Removes a column segment from the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index indicating the segment to be removed.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4a69e7d61619480898b139b6d66820bc"></a><!-- doxytag: member="CEGUI::ListHeader::removeSegment" ref="a4a69e7d61619480898b139b6d66820bc" args="(const ListHeaderSegment &amp;segment)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::removeSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Remove the specified segment from the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object that is to be removed from the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>segment</em> is not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Set whether columns may be reordered by the user via drag and drop. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">setting</td><td><ul>
<li>true to indicate the user may change the order of the column segments via drag and drop.</li>
<li>false to indicate the user may not change the column segment order.</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="aa67c1df212f64e33adfa075540762680"></a><!-- doxytag: member="CEGUI::ListHeader::setColumnSizingEnabled" ref="aa67c1df212f64e33adfa075540762680" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setColumnSizingEnabled </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>setting</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set whether columns may be sized by the user. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">setting</td><td><ul>
<li>true to indicate that the user may interactively size segments.</li>
<li>false to indicate that the user may not interactively size segments.</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="a225b14b17fcdd18e44a9f657e26050d4"></a><!-- doxytag: member="CEGUI::ListHeader::setColumnWidth" ref="a225b14b17fcdd18e44a9f657e26050d4" args="(uint column, const UDim &amp;width)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setColumnWidth </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1UDim.html">UDim</a> &amp;&#160;</td>
          <td class="paramname"><em>width</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the width of the specified column. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index of the segment whose width is to be set.</td></tr>
    <tr><td class="paramname">width</td><td><a class="el" 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> value specifying the new width to set for the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> at the zero based column index specified by <em>column</em>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a01f4a86f5d1a0994ea369d76b9500e79"></a><!-- doxytag: member="CEGUI::ListHeader::setSegmentOffset" ref="a01f4a86f5d1a0994ea369d76b9500e79" args="(float offset)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setSegmentOffset </td>
          <td>(</td>
          <td class="paramtype">float&#160;</td>
          <td class="paramname"><em>offset</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the current base segment offset. (This implements scrolling of the header segments within the header area). </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">offset</td><td>New base offset for the first segment. The segments will of offset to the left by the amount specified. <em>offset</em> should be specified using the active metrics system for the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

</div>
</div>
<a class="anchor" id="a520d4886a5d9a0181c32812830fa2995"></a><!-- doxytag: member="CEGUI::ListHeader::setSortColumn" ref="a520d4886a5d9a0181c32812830fa2995" args="(uint column)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setSortColumn </td>
          <td>(</td>
          <td class="paramtype">uint&#160;</td>
          <td class="paramname"><em>column</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the column to be used as the sort column. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">column</td><td>Zero based column index indicating the column to be sorted.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>column</em> is out of range for this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Set the column to to be used for sorting via its ID code. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>ID code of the column segment that is to be used as the sort column.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no segment with ID <em>id</em> is attached to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6c139ef00324986ef7e59fd1d72e9f1c"></a><!-- doxytag: member="CEGUI::ListHeader::setSortDirection" ref="a6c139ef00324986ef7e59fd1d72e9f1c" args="(ListHeaderSegment::SortDirection direction)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setSortDirection </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">ListHeaderSegment::SortDirection</a>&#160;</td>
          <td class="paramname"><em>direction</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the current sort direction. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">direction</td><td>One of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a> enumerated values indicating the sort direction to be used.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>

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

<p>Set whether user manipulation of the sort column and direction is enabled. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">setting</td><td><ul>
<li>true to allow interactive user manipulation of the sort column and direction.</li>
<li>false to disallow interactive user manipulation of the sort column and direction.</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="ad8394cd6f689c9932d3d92c70db0feb3"></a><!-- doxytag: member="CEGUI::ListHeader::setSortSegment" ref="ad8394cd6f689c9932d3d92c70db0feb3" args="(const ListHeaderSegment &amp;segment)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::ListHeader::setSortSegment </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1ListHeaderSegment.html">ListHeaderSegment</a> &amp;&#160;</td>
          <td class="paramname"><em>segment</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the column segment to be used as the sort column. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">segment</td><td><a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> object indicating the column to be sorted.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>segment</em> is not attached to this <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa0bd64a4fb3d44a98d6acb87e7a30a9c"></a><!-- doxytag: member="CEGUI::ListHeader::testClassName_impl" ref="aa0bd64a4fb3d44a98d6acb87e7a30a9c" args="(const String &amp;class_name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool CEGUI::ListHeader::testClassName_impl </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>class_name</em></td><td>)</td>
          <td> const<code> [inline, protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>

<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>

</div>
</div>
<a class="anchor" id="a86a0fb3d33331fde2669540de7e40b8c"></a><!-- doxytag: member="CEGUI::ListHeader::validateWindowRenderer" ref="a86a0fb3d33331fde2669540de7e40b8c" args="(const String &amp;name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool CEGUI::ListHeader::validateWindowRenderer </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em></td><td>)</td>
          <td> const<code> [inline, protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Returns true if the given <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> class name is valid for this window. False if not. </dd></dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a27804e1e76bbbf4af45dfb23c24afa1a">CEGUI::Window</a>.</p>

</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a13626ce6eb4cf635cd2826a6381a3873"></a><!-- doxytag: member="CEGUI::ListHeader::EventDragMoveSettingChanged" ref="a13626ce6eb4cf635cd2826a6381a3873" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a13626ce6eb4cf635cd2826a6381a3873">CEGUI::ListHeader::EventDragMoveSettingChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when setting that controls user drag &amp; drop of segments is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose drag &amp; drop enabled setting has changed. </p>

</div>
</div>
<a class="anchor" id="a07cac0308bbdb3cc049acb795cadd1ff"></a><!-- doxytag: member="CEGUI::ListHeader::EventDragSizeSettingChanged" ref="a07cac0308bbdb3cc049acb795cadd1ff" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a07cac0308bbdb3cc049acb795cadd1ff">CEGUI::ListHeader::EventDragSizeSettingChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when setting that controls user sizing of segments is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose user sizing setting has changed. </p>

</div>
</div>
<a class="anchor" id="a68b43246d13f985e1f16cf90ea7425f3"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentAdded" ref="a68b43246d13f985e1f16cf90ea7425f3" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a68b43246d13f985e1f16cf90ea7425f3">CEGUI::ListHeader::EventSegmentAdded</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when a segment is added to the header. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> that has had a new segment added. </p>

</div>
</div>
<a class="anchor" id="a211dbf4d66d03538b0eca8bdc3bcd55e"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentClicked" ref="a211dbf4d66d03538b0eca8bdc3bcd55e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a211dbf4d66d03538b0eca8bdc3bcd55e">CEGUI::ListHeader::EventSegmentClicked</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when a segment of the header is clicked by the user. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that was clicked. </p>

</div>
</div>
<a class="anchor" id="ab449c38a5d22e8fcce78cb047421892f"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentRemoved" ref="ab449c38a5d22e8fcce78cb047421892f" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#ab449c38a5d22e8fcce78cb047421892f">CEGUI::ListHeader::EventSegmentRemoved</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when a segment is removed from the header. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> that has had a segment removed. </p>

</div>
</div>
<a class="anchor" id="ad505e1d119a254ca42febaa348381b95"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentRenderOffsetChanged" ref="ad505e1d119a254ca42febaa348381b95" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#ad505e1d119a254ca42febaa348381b95">CEGUI::ListHeader::EventSegmentRenderOffsetChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the rendering offset for the segments changes. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose segment rendering offset has changed. </p>

</div>
</div>
<a class="anchor" id="ad143057c616aa07475dcfce2fe11c6d1"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentSequenceChanged" ref="ad143057c616aa07475dcfce2fe11c6d1" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#ad143057c616aa07475dcfce2fe11c6d1">CEGUI::ListHeader::EventSegmentSequenceChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the order of the segments in the header has changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1HeaderSequenceEventArgs.html" title="EventArgs class used for segment move (sequence changed) events.">HeaderSequenceEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose segments have changed sequence, <a class="el" href="classCEGUI_1_1HeaderSequenceEventArgs.html#ae9f795ac06226c736d2da683db9c2b25" title="The original column index of the segment that has moved.">HeaderSequenceEventArgs::d_oldIdx</a> is the original index of the segment that has moved, and <a class="el" href="classCEGUI_1_1HeaderSequenceEventArgs.html#a1ea22abb3a641c2b6ff7b2f9b343a0e4" title="The new column index of the segment that has moved.">HeaderSequenceEventArgs::d_newIdx</a> is the new index of the segment that has moved. </p>

</div>
</div>
<a class="anchor" id="a4b83893f193cfc091bb3eff91915c805"></a><!-- doxytag: member="CEGUI::ListHeader::EventSegmentSized" ref="a4b83893f193cfc091bb3eff91915c805" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a4b83893f193cfc091bb3eff91915c805">CEGUI::ListHeader::EventSegmentSized</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when a segment of the header is sized by the user. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> that has been sized. </p>

</div>
</div>
<a class="anchor" id="a6b0fbedaad9fc6d06fe90dc062b9a40e"></a><!-- doxytag: member="CEGUI::ListHeader::EventSortColumnChanged" ref="a6b0fbedaad9fc6d06fe90dc062b9a40e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a6b0fbedaad9fc6d06fe90dc062b9a40e">CEGUI::ListHeader::EventSortColumnChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the current sort column of the header is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose sort column has been changed. </p>

</div>
</div>
<a class="anchor" id="aef6b21b86499a030d564cbeb40dbe014"></a><!-- doxytag: member="CEGUI::ListHeader::EventSortDirectionChanged" ref="aef6b21b86499a030d564cbeb40dbe014" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#aef6b21b86499a030d564cbeb40dbe014">CEGUI::ListHeader::EventSortDirectionChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when the sort direction of the header is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose sort direction had been changed. </p>

</div>
</div>
<a class="anchor" id="a3447c1e2bc3527e2bbc0e03fbde2c09d"></a><!-- doxytag: member="CEGUI::ListHeader::EventSortSettingChanged" ref="a3447c1e2bc3527e2bbc0e03fbde2c09d" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#a3447c1e2bc3527e2bbc0e03fbde2c09d">CEGUI::ListHeader::EventSortSettingChanged</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when setting that controls user modification to sort configuration is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> whose user sort control setting has been changed. </p>

</div>
</div>
<a class="anchor" id="af0c77ae2f9342f8a0f07ed1f6d149f47"></a><!-- doxytag: member="CEGUI::ListHeader::EventSplitterDoubleClicked" ref="af0c77ae2f9342f8a0f07ed1f6d149f47" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ListHeader.html#af0c77ae2f9342f8a0f07ed1f6d149f47">CEGUI::ListHeader::EventSplitterDoubleClicked</a><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an &#39;event&#39; which can be subscribed to by interested parties.">Event</a> fired when a segment splitter of the header is double-clicked. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> whose splitter area was double-clicked. </p>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>