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
|
<!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::ListHeaderSegment 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 <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 Page</span></a></li>
<li><a href="pages.html"><span>Related 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 List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class 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_1ListHeaderSegment.html">ListHeaderSegment</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::ListHeaderSegment Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::ListHeaderSegment" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for list header segment window.
<a href="classCEGUI_1_1ListHeaderSegment.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::ListHeaderSegment:</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_1ListHeaderSegment__inherit__graph.gif" border="0" usemap="#CEGUI_1_1ListHeaderSegment_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1ListHeaderSegment_inherit__map" id="CEGUI_1_1ListHeaderSegment_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="39,83,159,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="28,5,169,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::ListHeaderSegment:</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_1ListHeaderSegment__coll__graph.gif" border="0" usemap="#CEGUI_1_1ListHeaderSegment_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1ListHeaderSegment_coll__map" id="CEGUI_1_1ListHeaderSegment_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="111,81,231,111"/><area shape="rect" id="node5" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1Clickable.html" title="Property to access the click-able setting of the header segment." alt="" coords="16,135,325,164"/><area shape="rect" id="node7" href="classCEGUI_1_1ListHeaderSegmentProperties_1_1SortDirection.html" title="Property to access the sort direction setting of the header segment." alt="" coords="5,188,336,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1ListHeaderSegment-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">SortDirection</a> { <a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4ea2dc4253be9c1ca3990d9729f506c17f7">None</a>,
<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4ea319c97abad402c4c3864d329fdf003cb">Ascending</a>,
<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4ea6fffc6deb1b929d5cf66cc50fcb79592">Descending</a>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Enumeration of possible values for sorting direction used with <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> classes. <a href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a8c18fcf0c4085cc1c9200deec94d1e1b">isSizingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether this segment can be sized. <a href="#a8c18fcf0c4085cc1c9200deec94d1e1b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">SortDirection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a1314f98efe61b3ea3dc622d3c28f519d">getSortDirection</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current sort direction set for this segment. <a href="#a1314f98efe61b3ea3dc622d3c28f519d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5ee7e1ab44cbea6da25d50ae118f4d37">isDragMovingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether drag moving is enabled for this segment. <a href="#a5ee7e1ab44cbea6da25d50ae118f4d37"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a1ffb9efdf4e99e3d83396b81fc1aff48">getDragMoveOffset</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current drag move position offset (in pixels relative to the top-left corner of the segment). <a href="#a1ffb9efdf4e99e3d83396b81fc1aff48"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#afe013295ef78bd32b784912cd15cf4eb">isClickable</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the segment is clickable. <a href="#afe013295ef78bd32b784912cd15cf4eb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5f73e9ec10af4b6968dab94ab824d755"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isSegmentHovering" ref="a5f73e9ec10af4b6968dab94ab824d755" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5f73e9ec10af4b6968dab94ab824d755">isSegmentHovering</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the segment is currently in its hovering state. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2690214ea8b744dcc154706d9a58cbd4"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isSegmentPushed" ref="a2690214ea8b744dcc154706d9a58cbd4" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a2690214ea8b744dcc154706d9a58cbd4">isSegmentPushed</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the segment is currently in its pushed state. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae3d4ccce9b22d86c100a665893f4f83f"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isSplitterHovering" ref="ae3d4ccce9b22d86c100a665893f4f83f" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ae3d4ccce9b22d86c100a665893f4f83f">isSplitterHovering</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the splitter is currently in its hovering state. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a36e053cafd3c6c1f41b35610b45b9a94"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isBeingDragMoved" ref="a36e053cafd3c6c1f41b35610b45b9a94" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a36e053cafd3c6c1f41b35610b45b9a94">isBeingDragMoved</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the segment is currently being drag-moved. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9787cb9d72ac832202ec4210d2428547"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isBeingDragSized" ref="a9787cb9d72ac832202ec4210d2428547" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9787cb9d72ac832202ec4210d2428547">isBeingDragSized</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the segment is currently being drag-moved. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a40e5588f66f9c4be2a06f8cbc4abd3cb"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::getSizingCursorImage" ref="a40e5588f66f9c4be2a06f8cbc4abd3cb" args="() const " -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><b>getSizingCursorImage</b> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c4636e662dd62760f2136ce6abdc249"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::getMovingCursorImage" ref="a5c4636e662dd62760f2136ce6abdc249" args="() const " -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><b>getMovingCursorImage</b> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9ef964560b74970d51f9b55826348003">setSizingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether this segment can be sized. <a href="#a9ef964560b74970d51f9b55826348003"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5fd44c8ba69c90c63fefabe44c8cc470">setSortDirection</a> (<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">SortDirection</a> sort_dir)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current sort direction set for this segment. <a href="#a5fd44c8ba69c90c63fefabe44c8cc470"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#afdbf4d92e5137399cd47dca772ba3f3d">setDragMovingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether drag moving is allowed for this segment. <a href="#afdbf4d92e5137399cd47dca772ba3f3d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a8994351d6682ff46aaae2b3a2e54463b">setClickable</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the segment is clickable. <a href="#a8994351d6682ff46aaae2b3a2e54463b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa50277175a9b8b1dd7c28ee1e41d0d02"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setSizingCursorImage" ref="aa50277175a9b8b1dd7c28ee1e41d0d02" args="(const Image *image)" -->
void </td><td class="memItemRight" valign="bottom"><b>setSizingCursorImage</b> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> *image)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abc31e2f2630220dbc9beb5ab00c7c13f"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setSizingCursorImage" ref="abc31e2f2630220dbc9beb5ab00c7c13f" args="(const String &imageset, const String &image)" -->
void </td><td class="memItemRight" valign="bottom"><b>setSizingCursorImage</b> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &imageset, const <a class="el" href="classCEGUI_1_1String.html">String</a> &image)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a944b108a2f6b5eeaedeeb64946664251"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setMovingCursorImage" ref="a944b108a2f6b5eeaedeeb64946664251" args="(const Image *image)" -->
void </td><td class="memItemRight" valign="bottom"><b>setMovingCursorImage</b> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> *image)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9cf264e4e57afee9c5037396426c43b4"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setMovingCursorImage" ref="a9cf264e4e57afee9c5037396426c43b4" args="(const String &imageset, const String &image)" -->
void </td><td class="memItemRight" valign="bottom"><b>setMovingCursorImage</b> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &imageset, const <a class="el" href="classCEGUI_1_1String.html">String</a> &image)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a490ec3193e17918fa9b74bfc313980af"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::ListHeaderSegment" ref="a490ec3193e17918fa9b74bfc313980af" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a490ec3193e17918fa9b74bfc313980af">ListHeaderSegment</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &type, const <a class="el" href="classCEGUI_1_1String.html">String</a> &name)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructor for list header segment base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a37dcb027a061529addbb7e66cad7ff25"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::~ListHeaderSegment" ref="a37dcb027a061529addbb7e66cad7ff25" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a37dcb027a061529addbb7e66cad7ff25">~ListHeaderSegment</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for list header segment 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="afa5ccc039da440ac3564ca7a32a01e79"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventNamespace" ref="afa5ccc039da440ac3564ca7a32a01e79" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#afa5ccc039da440ac3564ca7a32a01e79">EventNamespace</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a35e47f03d7c1ee0b8f5941cb382de658"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::WidgetTypeName" ref="a35e47f03d7c1ee0b8f5941cb382de658" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a35e47f03d7c1ee0b8f5941cb382de658">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft"> </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> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9ea1eb908cdf72d3d6c889ea8a334a09">EventSegmentClicked</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ac3e0d65228a7059ac748aae375e66573">EventSplitterDoubleClicked</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a66b3854681ef162be46a63f488b9e726">EventSizingSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a13d8d00ff05e8ac854767106a8efcc3c">EventSortDirectionChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#af13a27781312bcddacc549cf8e97dfbc">EventMovableSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a7f3eab3b218d49837e02517dfd179445">EventSegmentDragStart</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a600e271142f65cd56dae751295a857d2">EventSegmentDragStop</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ae1a1038b74f3159b3884d2c313f22bb4">EventSegmentDragPositionChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5baf0112c1aba79a85d519f708c063c7">EventSegmentSized</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a069eb10449b8c3fdc3abaa9c67ae9e0c">EventClickableSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2816caf7c9a7350d2d6bd31dfe0c2f5a"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::DefaultSizingArea" ref="a2816caf7c9a7350d2d6bd31dfe0c2f5a" args="" -->
static const float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a2816caf7c9a7350d2d6bd31dfe0c2f5a">DefaultSizingArea</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default size of the sizing area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10c7756771e652ed03b7459de223fda5"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::SegmentMoveThreshold" ref="a10c7756771e652ed03b7459de223fda5" args="" -->
static const float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a10c7756771e652ed03b7459de223fda5">SegmentMoveThreshold</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Amount the mouse must be dragged before drag-moving is initiated. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a942c3257cab206ddd3effa805d76ebcc">doDragSizing</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &local_mouse)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Update state for drag sizing. <a href="#a942c3257cab206ddd3effa805d76ebcc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a3565136d06edd09c1dc3f438d9b39041">doDragMoving</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &local_mouse)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Update state for drag moving. <a href="#a3565136d06edd09c1dc3f438d9b39041"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab820b50314e9efd62c129f022cb148a8"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::initDragMoving" ref="ab820b50314e9efd62c129f022cb148a8" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ab820b50314e9efd62c129f022cb148a8">initDragMoving</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise the required states to put the widget into drag-moving mode. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2ebb4e96d0978931dcc2a9dc53404cfe"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::initSizingHoverState" ref="a2ebb4e96d0978931dcc2a9dc53404cfe" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a2ebb4e96d0978931dcc2a9dc53404cfe">initSizingHoverState</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise the required states when we are hovering over the sizing area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a69dd3fba6425345c375c14b2f990c2ef"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::initSegmentHoverState" ref="a69dd3fba6425345c375c14b2f990c2ef" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a69dd3fba6425345c375c14b2f990c2ef">initSegmentHoverState</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise the required states when we are hovering over the main segment area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a491a31a4345b2281f9edca1d61b80a09">isDragMoveThresholdExceeded</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &local_mouse)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the required minimum movement threshold before initiating drag-moving has been exceeded. <a href="#a491a31a4345b2281f9edca1d61b80a09"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aaf0ce085a2f8642c50704c5abd8492d3">testClassName_impl</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &class_name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. <a href="#aaf0ce085a2f8642c50704c5abd8492d3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8bfa6f0a5af6a90a47e92a064f6b7ab3"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSegmentClicked" ref="a8bfa6f0a5af6a90a47e92a064f6b7ab3" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a8bfa6f0a5af6a90a47e92a064f6b7ab3">onSegmentClicked</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when segment is clicked. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad518d4d40d138ad942801e5b71274771"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSplitterDoubleClicked" ref="ad518d4d40d138ad942801e5b71274771" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ad518d4d40d138ad942801e5b71274771">onSplitterDoubleClicked</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the sizer/splitter is double-clicked. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8f373efb9a8222abc5a6abd2ed854f36"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSizingSettingChanged" ref="a8f373efb9a8222abc5a6abd2ed854f36" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a8f373efb9a8222abc5a6abd2ed854f36">onSizingSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when sizing setting changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa85a6c6d2b326fc0656e6497013d6d40"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSortDirectionChanged" ref="aa85a6c6d2b326fc0656e6497013d6d40" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aa85a6c6d2b326fc0656e6497013d6d40">onSortDirectionChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the sort direction value changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af56a2de727f9a59a147193eeee0df10c"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMovableSettingChanged" ref="af56a2de727f9a59a147193eeee0df10c" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#af56a2de727f9a59a147193eeee0df10c">onMovableSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the drag-movable setting is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9e951713e6bdd52e7ea7332122e3b655"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSegmentDragStart" ref="a9e951713e6bdd52e7ea7332122e3b655" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9e951713e6bdd52e7ea7332122e3b655">onSegmentDragStart</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the user starts dragging the segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6683bc6c0ed6d0789a8fcba2fabd4364"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSegmentDragStop" ref="a6683bc6c0ed6d0789a8fcba2fabd4364" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a6683bc6c0ed6d0789a8fcba2fabd4364">onSegmentDragStop</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the user stops dragging the segment (releases mouse button) <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1b3d25130fecf1b1f594a502d3d16791"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSegmentDragPositionChanged" ref="a1b3d25130fecf1b1f594a502d3d16791" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a1b3d25130fecf1b1f594a502d3d16791">onSegmentDragPositionChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the drag position changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae4754aac0bc13c2908b7f9c03240fa92"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onSegmentSized" ref="ae4754aac0bc13c2908b7f9c03240fa92" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ae4754aac0bc13c2908b7f9c03240fa92">onSegmentSized</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the segment is sized. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9dad0b7e2fd14c0b892a492dc0ca85b1"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onClickableSettingChanged" ref="a9dad0b7e2fd14c0b892a492dc0ca85b1" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9dad0b7e2fd14c0b892a492dc0ca85b1">onClickableSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the clickable setting for the segment changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ae750bb9a764ecfda2a8ec823ae2cc2cf">onMouseMove</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the mouse cursor has been moved within this window's area. <a href="#ae750bb9a764ecfda2a8ec823ae2cc2cf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aebeef6407fd64652bd9292ae1355a734">onMouseButtonDown</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a mouse button has been depressed within this window's area. <a href="#aebeef6407fd64652bd9292ae1355a734"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a19232e228f8204a39e99d290812499ea">onMouseButtonUp</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a mouse button has been released within this window's area. <a href="#a19232e228f8204a39e99d290812499ea"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a9550e7f64d42687e1d905cfb4cb89344">onMouseDoubleClicked</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a mouse button has been double-clicked within this window's area. <a href="#a9550e7f64d42687e1d905cfb4cb89344"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5648df8fce2a563662e8b5103373a7a1">onMouseLeaves</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the mouse cursor is no longer over this window's surface area. This will be called when the mouse is not over a part of this Window's actual surface - even though technically the mouse is still within the Window's area, for example if the mouse moves over a child window. <a href="#a5648df8fce2a563662e8b5103373a7a1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#acd023c92a7e83eeda87127b8ec6cb071">onCaptureLost</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when this window loses capture of mouse inputs. <a href="#acd023c92a7e83eeda87127b8ec6cb071"></a><br/></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="a5bd4fd0e97743f2a3b92f08ad2762153"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_sizingMouseCursor" ref="a5bd4fd0e97743f2a3b92f08ad2762153" args="" -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a5bd4fd0e97743f2a3b92f08ad2762153">d_sizingMouseCursor</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to use for mouse when sizing (typically set by derived class). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6e7cca9b30c9b6998ed2002226b7ef5e"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_movingMouseCursor" ref="a6e7cca9b30c9b6998ed2002226b7ef5e" args="" -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a6e7cca9b30c9b6998ed2002226b7ef5e">d_movingMouseCursor</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to use for mouse when moving (typically set by derived class). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4d1e3b7743ca19493a894a0f843fd03b"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_splitterSize" ref="a4d1e3b7743ca19493a894a0f843fd03b" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a4d1e3b7743ca19493a894a0f843fd03b">d_splitterSize</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">pixel width of the sizing area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a81a3643e56217ee3b793293e20b9a1cb"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_splitterHover" ref="a81a3643e56217ee3b793293e20b9a1cb" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a81a3643e56217ee3b793293e20b9a1cb">d_splitterHover</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">True if the mouse is over the splitter. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3438b224c56dc2dbb107489e7c823aa0"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_dragSizing" ref="a3438b224c56dc2dbb107489e7c823aa0" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a3438b224c56dc2dbb107489e7c823aa0">d_dragSizing</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when we are being sized. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a12ff0f0451d4743b996d2343142773d2"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_dragPoint" ref="a12ff0f0451d4743b996d2343142773d2" args="" -->
<a class="el" href="classCEGUI_1_1Vector2.html">Point</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a12ff0f0451d4743b996d2343142773d2">d_dragPoint</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">point we are being dragged at when sizing or moving. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adddfd00862733d6183ab69ac6f521c46"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_sortDir" ref="adddfd00862733d6183ab69ac6f521c46" args="" -->
<a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">SortDirection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#adddfd00862733d6183ab69ac6f521c46">d_sortDir</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Direction for sorting (used for deciding what icon to display). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a052a913a163f2bbeaf33f7bf94b2cebb"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_segmentHover" ref="a052a913a163f2bbeaf33f7bf94b2cebb" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a052a913a163f2bbeaf33f7bf94b2cebb">d_segmentHover</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when the mouse is within the segment area (and not in sizing area). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3a7e1196f0691f0645996e5d2f2942ba"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_segmentPushed" ref="a3a7e1196f0691f0645996e5d2f2942ba" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a3a7e1196f0691f0645996e5d2f2942ba">d_segmentPushed</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when the left mouse button has been pressed within the confines of the segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab35f422d38fe2d11f5906d862364ac19"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_sizingEnabled" ref="ab35f422d38fe2d11f5906d862364ac19" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#ab35f422d38fe2d11f5906d862364ac19">d_sizingEnabled</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when sizing is enabled for this segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6a4fd6ea29bb69b0e13418afad74985c"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_movingEnabled" ref="a6a4fd6ea29bb69b0e13418afad74985c" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a6a4fd6ea29bb69b0e13418afad74985c">d_movingEnabled</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">True when drag-moving is enabled for this segment;. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aff643b36eebd97b7ab8779551c025531"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_dragMoving" ref="aff643b36eebd97b7ab8779551c025531" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aff643b36eebd97b7ab8779551c025531">d_dragMoving</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when segment is being drag moved. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a117473ce7e35639635e9762985076702"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_dragPosition" ref="a117473ce7e35639635e9762985076702" args="" -->
<a class="el" href="classCEGUI_1_1Vector2.html">Point</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a117473ce7e35639635e9762985076702">d_dragPosition</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">position of dragged segment. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a92a6769766253180f8ff16105dbc9c91"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::d_allowClicks" ref="a92a6769766253180f8ff16105dbc9c91" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#a92a6769766253180f8ff16105dbc9c91">d_allowClicks</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if the segment can be clicked. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for list header segment window. </p>
</div><hr/><h2>Member Enumeration Documentation</h2>
<a class="anchor" id="aad6c30ff33c01dfca72a8566c24c7b4e"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::SortDirection" ref="aad6c30ff33c01dfca72a8566c24c7b4e" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">CEGUI::ListHeaderSegment::SortDirection</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Enumeration of possible values for sorting direction used with <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> classes. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="aad6c30ff33c01dfca72a8566c24c7b4ea2dc4253be9c1ca3990d9729f506c17f7"></a><!-- doxytag: member="None" ref="aad6c30ff33c01dfca72a8566c24c7b4ea2dc4253be9c1ca3990d9729f506c17f7" args="" -->None</em> </td><td>
<p>Items under this segment should not be sorted. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="aad6c30ff33c01dfca72a8566c24c7b4ea319c97abad402c4c3864d329fdf003cb"></a><!-- doxytag: member="Ascending" ref="aad6c30ff33c01dfca72a8566c24c7b4ea319c97abad402c4c3864d329fdf003cb" args="" -->Ascending</em> </td><td>
<p>Items under this segment should be sorted in ascending order. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="aad6c30ff33c01dfca72a8566c24c7b4ea6fffc6deb1b929d5cf66cc50fcb79592"></a><!-- doxytag: member="Descending" ref="aad6c30ff33c01dfca72a8566c24c7b4ea6fffc6deb1b929d5cf66cc50fcb79592" args="" -->Descending</em> </td><td>
<p>Items under this segment should be sorted in descending order. </p>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a3565136d06edd09c1dc3f438d9b39041"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::doDragMoving" ref="a3565136d06edd09c1dc3f438d9b39041" args="(const Point &local_mouse)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::doDragMoving </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>local_mouse</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Update state for drag moving. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">local_mouse</td><td>Mouse position as a pixel offset from the top-left corner of this window.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a942c3257cab206ddd3effa805d76ebcc"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::doDragSizing" ref="a942c3257cab206ddd3effa805d76ebcc" args="(const Point &local_mouse)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::doDragSizing </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>local_mouse</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Update state for drag sizing. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">local_mouse</td><td>Mouse position as a pixel offset from the top-left corner of this window.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a1ffb9efdf4e99e3d83396b81fc1aff48"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::getDragMoveOffset" ref="a1ffb9efdf4e99e3d83396b81fc1aff48" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a>& CEGUI::ListHeaderSegment::getDragMoveOffset </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current drag move position offset (in pixels relative to the top-left corner of the segment). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Point object describing the drag move offset position. </dd></dl>
</div>
</div>
<a class="anchor" id="a1314f98efe61b3ea3dc622d3c28f519d"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::getSortDirection" ref="a1314f98efe61b3ea3dc622d3c28f519d" 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">SortDirection</a> CEGUI::ListHeaderSegment::getSortDirection </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current sort direction set for this segment. </p>
<p>Note that this has no impact on the way the segment functions (aside from the possibility of varied rendering). This is intended as a 'helper setting' to classes that make use of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> objects.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>One of the SortDirection enumerated values indicating the current sort direction set for this segment. </dd></dl>
</div>
</div>
<a class="anchor" id="afe013295ef78bd32b784912cd15cf4eb"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isClickable" ref="afe013295ef78bd32b784912cd15cf4eb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ListHeaderSegment::isClickable </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the segment is clickable. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the segment can be clicked, false of the segment can not be clicked (so no highlighting or events will happen). </dd></dl>
</div>
</div>
<a class="anchor" id="a491a31a4345b2281f9edca1d61b80a09"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isDragMoveThresholdExceeded" ref="a491a31a4345b2281f9edca1d61b80a09" args="(const Point &local_mouse)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ListHeaderSegment::isDragMoveThresholdExceeded </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>local_mouse</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the required minimum movement threshold before initiating drag-moving has been exceeded. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">local_mouse</td><td>Mouse position as a pixel offset from the top-left corner of this window.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the threshold has been exceeded and drag-moving should be initiated, or false if the threshold has not been exceeded. </dd></dl>
</div>
</div>
<a class="anchor" id="a5ee7e1ab44cbea6da25d50ae118f4d37"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isDragMovingEnabled" ref="a5ee7e1ab44cbea6da25d50ae118f4d37" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ListHeaderSegment::isDragMovingEnabled </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether drag moving is enabled for this segment. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the segment can be drag moved, false if the segment can not be drag moved. </dd></dl>
</div>
</div>
<a class="anchor" id="a8c18fcf0c4085cc1c9200deec94d1e1b"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::isSizingEnabled" ref="a8c18fcf0c4085cc1c9200deec94d1e1b" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ListHeaderSegment::isSizingEnabled </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this segment can be sized. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the segment can be horizontally sized, false if the segment can not be horizontally sized. </dd></dl>
</div>
</div>
<a class="anchor" id="acd023c92a7e83eeda87127b8ec6cb071"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onCaptureLost" ref="acd023c92a7e83eeda87127b8ec6cb071" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onCaptureLost </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when this window loses capture of mouse inputs. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><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> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a14d613fe66ba50dacb9ee9490b64d26e">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="aebeef6407fd64652bd9292ae1355a734"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMouseButtonDown" ref="aebeef6407fd64652bd9292ae1355a734" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onMouseButtonDown </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a mouse button has been depressed within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#abb30780cd259d8328df6ff0809f8ce4a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a19232e228f8204a39e99d290812499ea"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMouseButtonUp" ref="a19232e228f8204a39e99d290812499ea" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onMouseButtonUp </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a mouse button has been released within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#ac03b4971d121ff91d6fc771386029792">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a9550e7f64d42687e1d905cfb4cb89344"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMouseDoubleClicked" ref="a9550e7f64d42687e1d905cfb4cb89344" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onMouseDoubleClicked </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a mouse button has been double-clicked within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a7e80ca1e972a2f07f630f805ce391d9a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a5648df8fce2a563662e8b5103373a7a1"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMouseLeaves" ref="a5648df8fce2a563662e8b5103373a7a1" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onMouseLeaves </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the mouse cursor is no longer over this window's surface area. This will be called when the mouse is not over a part of this Window's actual surface - even though technically the mouse is still within the Window's area, for example if the mouse moves over a child window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid.</td></tr>
</table>
</dd>
</dl>
<dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="classCEGUI_1_1Window.html#a90bc97e235cf006d0c3c1974c4d6f419" title="Handler called when the mouse cursor has left this window's area.">Window::onMouseLeavesArea</a> </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a284d0c96a5d4a77e352602380481123a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ae750bb9a764ecfda2a8ec823ae2cc2cf"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::onMouseMove" ref="ae750bb9a764ecfda2a8ec823ae2cc2cf" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ListHeaderSegment::onMouseMove </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the mouse cursor has been moved within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a6ed7a299dff48cf855256983b86c971d">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a8994351d6682ff46aaae2b3a2e54463b"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setClickable" ref="a8994351d6682ff46aaae2b3a2e54463b" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::setClickable </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the segment is clickable. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the segment may be clicked, false of the segment may not be clicked (so no highlighting or events will happen).</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="afdbf4d92e5137399cd47dca772ba3f3d"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setDragMovingEnabled" ref="afdbf4d92e5137399cd47dca772ba3f3d" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::setDragMovingEnabled </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether drag moving is allowed for this segment. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the segment may be drag moved, false if the segment may not be drag moved.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a9ef964560b74970d51f9b55826348003"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setSizingEnabled" ref="a9ef964560b74970d51f9b55826348003" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::setSizingEnabled </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether this segment can be sized. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the segment may be horizontally sized, false if the segment may not be horizontally sized.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a5fd44c8ba69c90c63fefabe44c8cc470"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::setSortDirection" ref="a5fd44c8ba69c90c63fefabe44c8cc470" args="(SortDirection sort_dir)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ListHeaderSegment::setSortDirection </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1ListHeaderSegment.html#aad6c30ff33c01dfca72a8566c24c7b4e">SortDirection</a> </td>
<td class="paramname"><em>sort_dir</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current sort direction set for this segment. </p>
<p>Note that this has no impact on the way the segment functions (aside from the possibility of varied rendering). This is intended as a 'helper setting' to classes that make use of the <a class="el" href="classCEGUI_1_1ListHeaderSegment.html" title="Base class for list header segment window.">ListHeaderSegment</a> objects.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">sort_dir</td><td>One of the SortDirection enumerated values indicating the current sort direction set for this segment.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
</div>
</div>
<a class="anchor" id="aaf0ce085a2f8642c50704c5abd8492d3"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::testClassName_impl" ref="aaf0ce085a2f8642c50704c5abd8492d3" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::ListHeaderSegment::testClassName_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </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>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a069eb10449b8c3fdc3abaa9c67ae9e0c"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventClickableSettingChanged" ref="a069eb10449b8c3fdc3abaa9c67ae9e0c" 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_1ListHeaderSegment.html#a069eb10449b8c3fdc3abaa9c67ae9e0c">CEGUI::ListHeaderSegment::EventClickableSettingChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the clickable setting for the segment is changed. Hanlders 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 setting that controls whether the segment is clickable has been changed. </p>
</div>
</div>
<a class="anchor" id="af13a27781312bcddacc549cf8e97dfbc"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventMovableSettingChanged" ref="af13a27781312bcddacc549cf8e97dfbc" 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_1ListHeaderSegment.html#af13a27781312bcddacc549cf8e97dfbc">CEGUI::ListHeaderSegment::EventMovableSettingChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the user drag-movable setting is changed. Hanlders 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 user drag-movable setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a9ea1eb908cdf72d3d6c889ea8a334a09"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSegmentClicked" ref="a9ea1eb908cdf72d3d6c889ea8a334a09" 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_1ListHeaderSegment.html#a9ea1eb908cdf72d3d6c889ea8a334a09">CEGUI::ListHeaderSegment::EventSegmentClicked</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the segment is clicked. Hanlders 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="ae1a1038b74f3159b3884d2c313f22bb4"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSegmentDragPositionChanged" ref="ae1a1038b74f3159b3884d2c313f22bb4" 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_1ListHeaderSegment.html#ae1a1038b74f3159b3884d2c313f22bb4">CEGUI::ListHeaderSegment::EventSegmentDragPositionChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the segment drag position has changed. Hanlders 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 position has changed due to being dragged. </p>
</div>
</div>
<a class="anchor" id="a7f3eab3b218d49837e02517dfd179445"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSegmentDragStart" ref="a7f3eab3b218d49837e02517dfd179445" 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_1ListHeaderSegment.html#a7f3eab3b218d49837e02517dfd179445">CEGUI::ListHeaderSegment::EventSegmentDragStart</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the segment has started to be dragged. Hanlders 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 started to be dragged. </p>
</div>
</div>
<a class="anchor" id="a600e271142f65cd56dae751295a857d2"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSegmentDragStop" ref="a600e271142f65cd56dae751295a857d2" 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_1ListHeaderSegment.html#a600e271142f65cd56dae751295a857d2">CEGUI::ListHeaderSegment::EventSegmentDragStop</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when segment dragging has stopped (via mouse release). Hanlders 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 is no longer being dragged. </p>
</div>
</div>
<a class="anchor" id="a5baf0112c1aba79a85d519f708c063c7"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSegmentSized" ref="a5baf0112c1aba79a85d519f708c063c7" 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_1ListHeaderSegment.html#a5baf0112c1aba79a85d519f708c063c7">CEGUI::ListHeaderSegment::EventSegmentSized</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the segment is sized by the user. Hanlders 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 resized by the user dragging. </p>
</div>
</div>
<a class="anchor" id="a66b3854681ef162be46a63f488b9e726"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSizingSettingChanged" ref="a66b3854681ef162be46a63f488b9e726" 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_1ListHeaderSegment.html#a66b3854681ef162be46a63f488b9e726">CEGUI::ListHeaderSegment::EventSizingSettingChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the user drag-sizable setting is changed. Hanlders 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 user sizable setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a13d8d00ff05e8ac854767106a8efcc3c"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSortDirectionChanged" ref="a13d8d00ff05e8ac854767106a8efcc3c" 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_1ListHeaderSegment.html#a13d8d00ff05e8ac854767106a8efcc3c">CEGUI::ListHeaderSegment::EventSortDirectionChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the sort direction value is changed. Hanlders 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 sort direction has been changed. </p>
</div>
</div>
<a class="anchor" id="ac3e0d65228a7059ac748aae375e66573"></a><!-- doxytag: member="CEGUI::ListHeaderSegment::EventSplitterDoubleClicked" ref="ac3e0d65228a7059ac748aae375e66573" 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_1ListHeaderSegment.html#ac3e0d65228a7059ac748aae375e66573">CEGUI::ListHeaderSegment::EventSplitterDoubleClicked</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the sizer/splitter is double-clicked. Hanlders 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 sizer / 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 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|