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

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

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

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Crazy Eddies GUI System&#160;<span id="projectnumber">0.7.6</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="files.html"><span>File&#160;List</span></a></li>
    </ul>
  </div>
<div class="header">
  <div class="headertitle">
<div class="title">CEGUIListHeader.h</div>  </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment">        filename:       CEGUIListHeader.h</span>
<a name="l00003"></a>00003 <span class="comment">        created:        13/4/2004</span>
<a name="l00004"></a>00004 <span class="comment">        author:         Paul D Turner</span>
<a name="l00005"></a>00005 <span class="comment">        </span>
<a name="l00006"></a>00006 <span class="comment">        purpose:        Interface to base class for ListHeader widget</span>
<a name="l00007"></a>00007 <span class="comment">*************************************************************************/</span>
<a name="l00008"></a>00008 <span class="comment">/***************************************************************************</span>
<a name="l00009"></a>00009 <span class="comment"> *   Copyright (C) 2004 - 2006 Paul D Turner &amp; The CEGUI Development Team</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> *   Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00012"></a>00012 <span class="comment"> *   a copy of this software and associated documentation files (the</span>
<a name="l00013"></a>00013 <span class="comment"> *   &quot;Software&quot;), to deal in the Software without restriction, including</span>
<a name="l00014"></a>00014 <span class="comment"> *   without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00015"></a>00015 <span class="comment"> *   distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00016"></a>00016 <span class="comment"> *   permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00017"></a>00017 <span class="comment"> *   the following conditions:</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> *   The above copyright notice and this permission notice shall be</span>
<a name="l00020"></a>00020 <span class="comment"> *   included in all copies or substantial portions of the Software.</span>
<a name="l00021"></a>00021 <span class="comment"> *</span>
<a name="l00022"></a>00022 <span class="comment"> *   THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00023"></a>00023 <span class="comment"> *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00024"></a>00024 <span class="comment"> *   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00025"></a>00025 <span class="comment"> *   IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00026"></a>00026 <span class="comment"> *   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00027"></a>00027 <span class="comment"> *   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00028"></a>00028 <span class="comment"> *   OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00029"></a>00029 <span class="comment"> ***************************************************************************/</span>
<a name="l00030"></a>00030 <span class="preprocessor">#ifndef _CEGUIListHeader_h_</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIListHeader_h_</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include &quot;../CEGUIBase.h&quot;</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include &quot;../CEGUIWindow.h&quot;</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include &quot;CEGUIListHeaderSegment.h&quot;</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include &quot;CEGUIListHeaderProperties.h&quot;</span>
<a name="l00037"></a>00037 
<a name="l00038"></a>00038 
<a name="l00039"></a>00039 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00040"></a>00040 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(push)</span>
<a name="l00041"></a>00041 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(disable : 4251)</span>
<a name="l00042"></a>00042 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00043"></a>00043 <span class="preprocessor"></span>
<a name="l00044"></a>00044 
<a name="l00045"></a>00045 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00046"></a>00046 <span class="keyword">namespace </span>CEGUI
<a name="l00047"></a>00047 {
<a name="l00052"></a><a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html">00052</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html" title="EventArgs class used for segment move (sequence changed) events.">HeaderSequenceEventArgs</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>
<a name="l00053"></a>00053 {
<a name="l00054"></a>00054 <span class="keyword">public</span>:
<a name="l00055"></a><a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html#ae9f795ac06226c736d2da683db9c2b25">00055</a>         <a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html" title="EventArgs class used for segment move (sequence changed) events.">HeaderSequenceEventArgs</a>(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* wnd, uint old_idx, uint new_idx) : <a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>(wnd), d_oldIdx(old_idx), d_newIdx(new_idx) {};
<a name="l00056"></a>00056 
<a name="l00057"></a>00057         uint d_oldIdx;          
<a name="l00058"></a><a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html#a1ea22abb3a641c2b6ff7b2f9b343a0e4">00058</a>         uint <a class="code" href="classCEGUI_1_1HeaderSequenceEventArgs.html#a1ea22abb3a641c2b6ff7b2f9b343a0e4" title="The new column index of the segment that has moved.">d_newIdx</a>;          
<a name="l00059"></a>00059 };
<a name="l00060"></a>00060 
<a name="l00065"></a><a class="code" href="classCEGUI_1_1ListHeaderWindowRenderer.html">00065</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1ListHeaderWindowRenderer.html" title="Base class for the multi column list header window renderer.">ListHeaderWindowRenderer</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a>
<a name="l00066"></a>00066 {
<a name="l00067"></a>00067 <span class="keyword">public</span>:
<a name="l00072"></a>00072     <a class="code" href="classCEGUI_1_1ListHeaderWindowRenderer.html" title="Base class for the multi column list header window renderer.">ListHeaderWindowRenderer</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name);
<a name="l00073"></a>00073 
<a name="l00085"></a>00085     <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>*  createNewSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name) <span class="keyword">const</span>  = 0;
<a name="l00086"></a>00086 
<a name="l00098"></a>00098     <span class="keyword">virtual</span> <span class="keywordtype">void</span>    destroyListSegment(<a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>* segment) <span class="keyword">const</span> = 0;
<a name="l00099"></a>00099 };
<a name="l00100"></a>00100 
<a name="l00101"></a>00101 
<a name="l00106"></a><a class="code" href="classCEGUI_1_1ListHeader.html">00106</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>
<a name="l00107"></a>00107 {
<a name="l00108"></a>00108 <span class="keyword">public</span>:
<a name="l00109"></a><a class="code" href="classCEGUI_1_1ListHeader.html#adb265ed891b6824dac3ddb26bb60d447">00109</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#adb265ed891b6824dac3ddb26bb60d447" title="Namespace for global events.">EventNamespace</a>;                             
<a name="l00110"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a09eb0c6c75b74d9bfa55125f03119bde">00110</a>     <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a09eb0c6c75b74d9bfa55125f03119bde" title="Window factory name.">WidgetTypeName</a>;             
<a name="l00111"></a>00111 
<a name="l00112"></a>00112 
<a name="l00113"></a>00113         <span class="comment">/*************************************************************************</span>
<a name="l00114"></a>00114 <span class="comment">                Constants</span>
<a name="l00115"></a>00115 <span class="comment">        *************************************************************************/</span>
<a name="l00116"></a>00116         <span class="comment">// Event names</span>
<a name="l00122"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a6b0fbedaad9fc6d06fe90dc062b9a40e">00122</a> <span class="comment"></span>        <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a6b0fbedaad9fc6d06fe90dc062b9a40e">EventSortColumnChanged</a>;
<a name="l00128"></a><a class="code" href="classCEGUI_1_1ListHeader.html#aef6b21b86499a030d564cbeb40dbe014">00128</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#aef6b21b86499a030d564cbeb40dbe014">EventSortDirectionChanged</a>;
<a name="l00133"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a4b83893f193cfc091bb3eff91915c805">00133</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a4b83893f193cfc091bb3eff91915c805">EventSegmentSized</a>;
<a name="l00138"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a211dbf4d66d03538b0eca8bdc3bcd55e">00138</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a211dbf4d66d03538b0eca8bdc3bcd55e">EventSegmentClicked</a>;
<a name="l00144"></a><a class="code" href="classCEGUI_1_1ListHeader.html#af0c77ae2f9342f8a0f07ed1f6d149f47">00144</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#af0c77ae2f9342f8a0f07ed1f6d149f47">EventSplitterDoubleClicked</a>;
<a name="l00152"></a><a class="code" href="classCEGUI_1_1ListHeader.html#ad143057c616aa07475dcfce2fe11c6d1">00152</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#ad143057c616aa07475dcfce2fe11c6d1">EventSegmentSequenceChanged</a>;
<a name="l00158"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a68b43246d13f985e1f16cf90ea7425f3">00158</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a68b43246d13f985e1f16cf90ea7425f3">EventSegmentAdded</a>;
<a name="l00164"></a><a class="code" href="classCEGUI_1_1ListHeader.html#ab449c38a5d22e8fcce78cb047421892f">00164</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#ab449c38a5d22e8fcce78cb047421892f">EventSegmentRemoved</a>;
<a name="l00171"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a3447c1e2bc3527e2bbc0e03fbde2c09d">00171</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a3447c1e2bc3527e2bbc0e03fbde2c09d">EventSortSettingChanged</a>;
<a name="l00178"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a13626ce6eb4cf635cd2826a6381a3873">00178</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a13626ce6eb4cf635cd2826a6381a3873">EventDragMoveSettingChanged</a>;
<a name="l00185"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a07cac0308bbdb3cc049acb795cadd1ff">00185</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#a07cac0308bbdb3cc049acb795cadd1ff">EventDragSizeSettingChanged</a>;
<a name="l00191"></a><a class="code" href="classCEGUI_1_1ListHeader.html#ad505e1d119a254ca42febaa348381b95">00191</a>         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1ListHeader.html#ad505e1d119a254ca42febaa348381b95">EventSegmentRenderOffsetChanged</a>;
<a name="l00192"></a>00192 
<a name="l00193"></a>00193         <span class="comment">// values</span>
<a name="l00194"></a><a class="code" href="classCEGUI_1_1ListHeader.html#abfc7a5dd142b07fa3b3c7bf2c2fe96bd">00194</a>         <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">float</span>      <a class="code" href="classCEGUI_1_1ListHeader.html#abfc7a5dd142b07fa3b3c7bf2c2fe96bd" title="Speed to scroll at when dragging outside header.">ScrollSpeed</a>;                            
<a name="l00195"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a6711fcb4d92996cd15e25ab250dcb278">00195</a>         <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">float</span>      <a class="code" href="classCEGUI_1_1ListHeader.html#a6711fcb4d92996cd15e25ab250dcb278" title="Miniumum width of a segment in pixels.">MinimumSegmentPixelWidth</a>;       
<a name="l00196"></a>00196 
<a name="l00197"></a>00197     <span class="comment">/*************************************************************************</span>
<a name="l00198"></a>00198 <span class="comment">        Child Widget name suffix constants</span>
<a name="l00199"></a>00199 <span class="comment">    *************************************************************************/</span>
<a name="l00200"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a063403340147c3bcd67a2f84e3f75795">00200</a>     <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span> SegmentNameSuffix[];          
<a name="l00201"></a>00201 
<a name="l00202"></a>00202 
<a name="l00203"></a>00203         <span class="comment">/*************************************************************************</span>
<a name="l00204"></a>00204 <span class="comment">                Accessor Methods</span>
<a name="l00205"></a>00205 <span class="comment">        *************************************************************************/</span>
<a name="l00213"></a>00213         uint    getColumnCount(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00214"></a>00214 
<a name="l00215"></a>00215         
<a name="l00228"></a>00228         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp;      getSegmentFromColumn(uint column) <span class="keyword">const</span>;
<a name="l00229"></a>00229 
<a name="l00230"></a>00230 
<a name="l00244"></a>00244         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp;      getSegmentFromID(uint <span class="keywordtype">id</span>) <span class="keyword">const</span>;
<a name="l00245"></a>00245 
<a name="l00246"></a>00246 
<a name="l00257"></a>00257         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp;      getSortSegment(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00258"></a>00258 
<a name="l00259"></a>00259 
<a name="l00272"></a>00272         uint    getColumnFromSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment) <span class="keyword">const</span>;
<a name="l00273"></a>00273 
<a name="l00274"></a>00274 
<a name="l00287"></a>00287         uint    getColumnFromID(uint <span class="keywordtype">id</span>) <span class="keyword">const</span>;
<a name="l00288"></a>00288 
<a name="l00289"></a>00289 
<a name="l00300"></a>00300         uint    getSortColumn(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00301"></a>00301 
<a name="l00302"></a>00302 
<a name="l00315"></a>00315         uint    getColumnWithText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text) <span class="keyword">const</span>;
<a name="l00316"></a>00316 
<a name="l00317"></a>00317 
<a name="l00330"></a>00330         <span class="keywordtype">float</span>   getPixelOffsetToSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment) <span class="keyword">const</span>;
<a name="l00331"></a>00331 
<a name="l00332"></a>00332 
<a name="l00346"></a>00346         <span class="keywordtype">float</span>   getPixelOffsetToColumn(uint column) <span class="keyword">const</span>;
<a name="l00347"></a>00347 
<a name="l00348"></a>00348 
<a name="l00356"></a>00356         <span class="keywordtype">float</span>   getTotalSegmentsPixelExtent(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00357"></a>00357 
<a name="l00358"></a>00358 
<a name="l00372"></a>00372         <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a> getColumnWidth(uint column) <span class="keyword">const</span>;
<a name="l00373"></a>00373 
<a name="l00374"></a>00374 
<a name="l00382"></a>00382         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a>        getSortDirection(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00383"></a>00383 
<a name="l00384"></a>00384 
<a name="l00393"></a>00393         <span class="keywordtype">bool</span>    isSortingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00394"></a>00394 
<a name="l00395"></a>00395 
<a name="l00403"></a>00403         <span class="keywordtype">bool</span>    isColumnSizingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00404"></a>00404 
<a name="l00405"></a>00405 
<a name="l00413"></a>00413         <span class="keywordtype">bool</span>    isColumnDraggingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00414"></a>00414 
<a name="l00415"></a>00415 
<a name="l00424"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a5b22687f4774e53939618202d266e025">00424</a>         <span class="keywordtype">float</span>   <a class="code" href="classCEGUI_1_1ListHeader.html#a5b22687f4774e53939618202d266e025" title="Return the current segment offset value. This value is used to implement scrolling of the header segm...">getSegmentOffset</a>(<span class="keywordtype">void</span>)<span class="keyword"> const    </span>{<span class="keywordflow">return</span> d_segmentOffset;}
<a name="l00425"></a>00425 
<a name="l00426"></a>00426 
<a name="l00427"></a>00427         <span class="comment">/*************************************************************************</span>
<a name="l00428"></a>00428 <span class="comment">                Manipulator Methods</span>
<a name="l00429"></a>00429 <span class="comment">        *************************************************************************/</span>
<a name="l00441"></a>00441         <span class="keywordtype">void</span>    setSortingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l00442"></a>00442 
<a name="l00443"></a>00443 
<a name="l00454"></a>00454         <span class="keywordtype">void</span>    setSortDirection(<a class="code" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a> direction);
<a name="l00455"></a>00455 
<a name="l00456"></a>00456 
<a name="l00469"></a>00469         <span class="keywordtype">void</span>    setSortSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment);
<a name="l00470"></a>00470 
<a name="l00471"></a>00471 
<a name="l00484"></a>00484         <span class="keywordtype">void</span>    setSortColumn(uint column);
<a name="l00485"></a>00485 
<a name="l00486"></a>00486 
<a name="l00499"></a>00499         <span class="keywordtype">void</span>    setSortColumnFromID(uint <span class="keywordtype">id</span>);
<a name="l00500"></a>00500 
<a name="l00501"></a>00501 
<a name="l00513"></a>00513         <span class="keywordtype">void</span>    setColumnSizingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l00514"></a>00514 
<a name="l00515"></a>00515 
<a name="l00527"></a>00527         <span class="keywordtype">void</span>    setColumnDraggingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l00528"></a>00528 
<a name="l00529"></a>00529 
<a name="l00546"></a>00546         <span class="keywordtype">void</span>    addColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint <span class="keywordtype">id</span>, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width);
<a name="l00547"></a>00547 
<a name="l00548"></a>00548 
<a name="l00569"></a>00569         <span class="keywordtype">void</span>    insertColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint <span class="keywordtype">id</span>, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width, uint position);
<a name="l00570"></a>00570 
<a name="l00571"></a>00571 
<a name="l00594"></a>00594         <span class="keywordtype">void</span>    insertColumn(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint <span class="keywordtype">id</span>, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; position);
<a name="l00595"></a>00595 
<a name="l00596"></a>00596 
<a name="l00609"></a>00609         <span class="keywordtype">void</span>    removeColumn(uint column);
<a name="l00610"></a>00610 
<a name="l00611"></a>00611 
<a name="l00624"></a>00624         <span class="keywordtype">void</span>    removeSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment);
<a name="l00625"></a>00625 
<a name="l00626"></a>00626 
<a name="l00643"></a>00643         <span class="keywordtype">void</span>    moveColumn(uint column, uint position);
<a name="l00644"></a>00644 
<a name="l00645"></a>00645 
<a name="l00664"></a>00664         <span class="keywordtype">void</span>    moveColumn(uint column, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; position);
<a name="l00665"></a>00665 
<a name="l00666"></a>00666 
<a name="l00683"></a>00683         <span class="keywordtype">void</span>    moveSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment, uint position);
<a name="l00684"></a>00684 
<a name="l00685"></a>00685 
<a name="l00703"></a>00703         <span class="keywordtype">void</span>    moveSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; segment, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>&amp; position);
<a name="l00704"></a>00704 
<a name="l00705"></a>00705 
<a name="l00718"></a>00718         <span class="keywordtype">void</span>    setSegmentOffset(<span class="keywordtype">float</span> offset);
<a name="l00719"></a>00719 
<a name="l00720"></a>00720 
<a name="l00737"></a>00737         <span class="keywordtype">void</span>    setColumnWidth(uint column, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width);
<a name="l00738"></a>00738 
<a name="l00739"></a>00739 
<a name="l00740"></a>00740         <span class="comment">/*************************************************************************</span>
<a name="l00741"></a>00741 <span class="comment">                Construction and Destruction</span>
<a name="l00742"></a>00742 <span class="comment">        *************************************************************************/</span>
<a name="l00747"></a>00747         <a class="code" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name);
<a name="l00748"></a>00748 
<a name="l00749"></a>00749 
<a name="l00754"></a>00754         <span class="keyword">virtual</span> ~<a class="code" href="classCEGUI_1_1ListHeader.html" title="Base class for the multi column list header widget.">ListHeader</a>(<span class="keywordtype">void</span>);
<a name="l00755"></a>00755 
<a name="l00756"></a>00756 
<a name="l00757"></a>00757 <span class="keyword">protected</span>:
<a name="l00758"></a>00758         <span class="comment">/*************************************************************************</span>
<a name="l00759"></a>00759 <span class="comment">                Abstract Implementation Methods</span>
<a name="l00760"></a>00760 <span class="comment">        *************************************************************************/</span>
<a name="l00772"></a>00772         <span class="comment">//virtual ListHeaderSegment*    createNewSegment_impl(const String&amp; name) const = 0;</span>
<a name="l00773"></a>00773 
<a name="l00774"></a>00774 
<a name="l00786"></a>00786         <span class="comment">//virtual void  destroyListSegment_impl(ListHeaderSegment* segment) const = 0;</span>
<a name="l00787"></a>00787 
<a name="l00788"></a>00788 
<a name="l00789"></a>00789         <span class="comment">/*************************************************************************</span>
<a name="l00790"></a>00790 <span class="comment">                Implementation Methods</span>
<a name="l00791"></a>00791 <span class="comment">        *************************************************************************/</span>
<a name="l00796"></a>00796         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>*      createInitialisedSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; text, uint <span class="keywordtype">id</span>, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative &#39;scale&#39; portion ...">UDim</a>&amp; width);
<a name="l00797"></a>00797 
<a name="l00798"></a>00798 
<a name="l00803"></a>00803         <span class="keywordtype">void</span>    layoutSegments(<span class="keywordtype">void</span>);
<a name="l00804"></a>00804 
<a name="l00805"></a>00805 
<a name="l00816"></a><a class="code" href="classCEGUI_1_1ListHeader.html#aa0bd64a4fb3d44a98d6acb87e7a30a9c">00816</a>         <span class="keyword">virtual</span> <span class="keywordtype">bool</span>    testClassName_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; class_name)<span class="keyword"> const</span>
<a name="l00817"></a>00817 <span class="keyword">        </span>{
<a name="l00818"></a>00818                 <span class="keywordflow">if</span> (class_name==<span class="stringliteral">&quot;ListHeader&quot;</span>)   <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00819"></a>00819                 <span class="keywordflow">return</span> <a class="code" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b" title="Return whether this window was inherited from the given class name at some point in the inheritance h...">Window::testClassName_impl</a>(class_name);
<a name="l00820"></a>00820         }
<a name="l00821"></a>00821 
<a name="l00822"></a>00822 
<a name="l00834"></a>00834     <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>*  createNewSegment(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name) <span class="keyword">const</span>;
<a name="l00835"></a>00835 
<a name="l00836"></a>00836 
<a name="l00848"></a>00848     <span class="keywordtype">void</span>    destroyListSegment(<a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>* segment) <span class="keyword">const</span>;
<a name="l00849"></a>00849 
<a name="l00850"></a>00850     <span class="comment">// validate window renderer</span>
<a name="l00851"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a86a0fb3d33331fde2669540de7e40b8c">00851</a>     <span class="keyword">virtual</span> <span class="keywordtype">bool</span> validateWindowRenderer(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>&amp; name)<span class="keyword"> const</span>
<a name="l00852"></a>00852 <span class="keyword">    </span>{
<a name="l00853"></a>00853         <span class="keywordflow">return</span> (name == <span class="stringliteral">&quot;ListHeader&quot;</span>);
<a name="l00854"></a>00854     }
<a name="l00855"></a>00855 
<a name="l00856"></a>00856         <span class="comment">/*************************************************************************</span>
<a name="l00857"></a>00857 <span class="comment">                New List header event handlers</span>
<a name="l00858"></a>00858 <span class="comment">        *************************************************************************/</span>
<a name="l00863"></a>00863         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSortColumnChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00864"></a>00864 
<a name="l00865"></a>00865 
<a name="l00870"></a>00870         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSortDirectionChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00871"></a>00871 
<a name="l00872"></a>00872 
<a name="l00877"></a>00877         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentSized(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00878"></a>00878 
<a name="l00879"></a>00879 
<a name="l00884"></a>00884         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentClicked(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00885"></a>00885 
<a name="l00886"></a>00886 
<a name="l00891"></a>00891         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSplitterDoubleClicked(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00892"></a>00892 
<a name="l00893"></a>00893 
<a name="l00898"></a>00898         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentSequenceChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00899"></a>00899 
<a name="l00900"></a>00900 
<a name="l00905"></a>00905         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentAdded(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00906"></a>00906 
<a name="l00907"></a>00907 
<a name="l00912"></a>00912         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentRemoved(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00913"></a>00913 
<a name="l00914"></a>00914 
<a name="l00919"></a>00919         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSortSettingChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00920"></a>00920 
<a name="l00921"></a>00921 
<a name="l00926"></a>00926         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onDragMoveSettingChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00927"></a>00927 
<a name="l00928"></a>00928 
<a name="l00933"></a>00933         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onDragSizeSettingChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00934"></a>00934 
<a name="l00935"></a>00935 
<a name="l00940"></a>00940         <span class="keyword">virtual</span> <span class="keywordtype">void</span>    onSegmentOffsetChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>&amp; e);
<a name="l00941"></a>00941 
<a name="l00942"></a>00942         <span class="comment">/*************************************************************************</span>
<a name="l00943"></a>00943 <span class="comment">                handlers for events we subscribe to from segments</span>
<a name="l00944"></a>00944 <span class="comment">        *************************************************************************/</span>
<a name="l00945"></a>00945         <span class="keywordtype">bool</span>    segmentSizedHandler(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l00946"></a>00946         <span class="keywordtype">bool</span>    segmentMovedHandler(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l00947"></a>00947         <span class="keywordtype">bool</span>    segmentClickedHandler(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l00948"></a>00948         <span class="keywordtype">bool</span>    segmentDoubleClickHandler(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l00949"></a>00949         <span class="keywordtype">bool</span>    segmentDragHandler(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1EventArgs.html" title="Base class used as the argument to all subscribers Event object.">EventArgs</a>&amp; e);
<a name="l00950"></a>00950 
<a name="l00951"></a>00951 
<a name="l00952"></a>00952         <span class="comment">/*************************************************************************</span>
<a name="l00953"></a>00953 <span class="comment">                Implementation Data</span>
<a name="l00954"></a>00954 <span class="comment">        *************************************************************************/</span>
<a name="l00955"></a>00955         <span class="keyword">typedef</span> std::vector&lt;ListHeaderSegment*&gt;         SegmentList;
<a name="l00956"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a13957f76c0cabb522bc9cb49b58bf4b5">00956</a>         SegmentList     <a class="code" href="classCEGUI_1_1ListHeader.html#a13957f76c0cabb522bc9cb49b58bf4b5" title="Attached segment windows in header order.">d_segments</a>;                     
<a name="l00957"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a83038e36d2b2d913146963896a97bf9c">00957</a>         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a>*      <a class="code" href="classCEGUI_1_1ListHeader.html#a83038e36d2b2d913146963896a97bf9c" title="Pointer to the segment that is currently set as the sork-key,.">d_sortSegment</a>;  
<a name="l00958"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a127f08da84dd84f35206bec0725809dd">00958</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1ListHeader.html#a127f08da84dd84f35206bec0725809dd" title="true if segments can be sized by the user.">d_sizingEnabled</a>;                
<a name="l00959"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a01864034a5f7e4f4828562335250cbcf">00959</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1ListHeader.html#a01864034a5f7e4f4828562335250cbcf" title="true if the sort criteria modifications by user are enabled (no sorting is actuall done)...">d_sortingEnabled</a>;               
<a name="l00960"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a7ef7e9fc56583fb084c2c7e38f809943">00960</a>         <span class="keywordtype">bool</span>    <a class="code" href="classCEGUI_1_1ListHeader.html#a7ef7e9fc56583fb084c2c7e38f809943" title="true if drag &amp; drop moving of columns / segments is enabled.">d_movingEnabled</a>;                
<a name="l00961"></a><a class="code" href="classCEGUI_1_1ListHeader.html#ad027a5dd5be41b84a9c1a9b0f4800e84">00961</a>         uint    <a class="code" href="classCEGUI_1_1ListHeader.html#ad027a5dd5be41b84a9c1a9b0f4800e84" title="field used to create unique names.">d_uniqueIDNumber</a>;               
<a name="l00962"></a><a class="code" href="classCEGUI_1_1ListHeader.html#ab1808944619bae43e80fa1893bbb5d1e">00962</a>         <span class="keywordtype">float</span>   <a class="code" href="classCEGUI_1_1ListHeader.html#ab1808944619bae43e80fa1893bbb5d1e" title="Base offset used to layout the segments (allows scrolling within the window area)">d_segmentOffset</a>;                
<a name="l00963"></a><a class="code" href="classCEGUI_1_1ListHeader.html#a840a2ca1e4caf6d349e4a65a3f90e6b1">00963</a>         <a class="code" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e" title="Enumeration of possible values for sorting direction used with ListHeaderSegment classes.">ListHeaderSegment::SortDirection</a>        <a class="code" href="classCEGUI_1_1ListHeader.html#a840a2ca1e4caf6d349e4a65a3f90e6b1" title="Brief copy of the current sort direction.">d_sortDir</a>;              
<a name="l00964"></a>00964 
<a name="l00965"></a>00965 
<a name="l00966"></a>00966 <span class="keyword">private</span>:
<a name="l00967"></a>00967         <span class="comment">/*************************************************************************</span>
<a name="l00968"></a>00968 <span class="comment">                Static Properties for this class</span>
<a name="l00969"></a>00969 <span class="comment">        *************************************************************************/</span>
<a name="l00970"></a>00970         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1ListHeaderProperties_1_1SortSettingEnabled.html" title="Property to access the setting for user modification of the sort column &amp; direction.">ListHeaderProperties::SortSettingEnabled</a>         d_sortSettingProperty;
<a name="l00971"></a>00971         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsSizable.html" title="Property to access the setting for user sizing of the column headers.">ListHeaderProperties::ColumnsSizable</a>                     d_sizableProperty;
<a name="l00972"></a>00972         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1ListHeaderProperties_1_1ColumnsMovable.html" title="Property to access the setting for user moving of the column headers.">ListHeaderProperties::ColumnsMovable</a>                     d_movableProperty;
<a name="l00973"></a>00973         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1ListHeaderProperties_1_1SortColumnID.html" title="Property to access the current sort column (via ID code).">ListHeaderProperties::SortColumnID</a>                       d_sortColumnIDProperty;
<a name="l00974"></a>00974         <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1ListHeaderProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the list header.">ListHeaderProperties::SortDirection</a>                      d_sortDirectionProperty;
<a name="l00975"></a>00975 
<a name="l00976"></a>00976 
<a name="l00977"></a>00977         <span class="comment">/*************************************************************************</span>
<a name="l00978"></a>00978 <span class="comment">                Private methods</span>
<a name="l00979"></a>00979 <span class="comment">        *************************************************************************/</span>
<a name="l00980"></a>00980         <span class="keywordtype">void</span>    addHeaderProperties(<span class="keywordtype">void</span>);
<a name="l00981"></a>00981 };
<a name="l00982"></a>00982 
<a name="l00983"></a>00983 
<a name="l00984"></a>00984 } <span class="comment">// End of  CEGUI namespace section</span>
<a name="l00985"></a>00985 
<a name="l00986"></a>00986 
<a name="l00987"></a>00987 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00988"></a>00988 <span class="preprocessor"></span><span class="preprocessor">#       pragma warning(pop)</span>
<a name="l00989"></a>00989 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00990"></a>00990 <span class="preprocessor"></span>
<a name="l00991"></a>00991 <span class="preprocessor">#endif  // end of guard _CEGUIListHeader_h_</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:39 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>