1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
|
<!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::TreeItem 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_1TreeItem.html">TreeItem</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> |
<a href="#pro-static-attribs">Static Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::TreeItem Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::TreeItem" -->
<p>Base class for tree items.
<a href="classCEGUI_1_1TreeItem.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png"/> Collaboration diagram for CEGUI::TreeItem:</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_1TreeItem__coll__graph.gif" border="0" usemap="#CEGUI_1_1TreeItem_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1TreeItem_coll__map" id="CEGUI_1_1TreeItem_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle." alt="" coords="5,5,107,35"/><area shape="rect" id="node4" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities." alt="" coords="131,5,293,35"/><area shape="rect" id="node6" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface." alt="" coords="317,5,416,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1TreeItem-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"><a class="anchor" id="af2bc0369ec0d67326009dfb3257ea9be"></a><!-- doxytag: member="CEGUI::TreeItem::LBItemList" ref="af2bc0369ec0d67326009dfb3257ea9be" args="" -->
typedef std::vector< <a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> * > </td><td class="memItemRight" valign="bottom"><b>LBItemList</b></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"><a class="anchor" id="ae9baf60a679f2766b22031c4e7bc7f80"></a><!-- doxytag: member="CEGUI::TreeItem::TreeItem" ref="ae9baf60a679f2766b22031c4e7bc7f80" args="(const String &text, uint item_id=0, void *item_data=0, bool disabled=false, bool auto_delete=true)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ae9baf60a679f2766b22031c4e7bc7f80">TreeItem</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &text, uint item_id=0, void *item_data=0, bool disabled=false, bool auto_delete=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">base class constructor <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a02a8e4f720f32f8b9324934b3a742d94"></a><!-- doxytag: member="CEGUI::TreeItem::~TreeItem" ref="a02a8e4f720f32f8b9324934b3a742d94" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a02a8e4f720f32f8b9324934b3a742d94">~TreeItem</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">base class destructor <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Font.html">Font</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a5eed6f5da389b726fec539932ad0daf4">getFont</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the font being used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. <a href="#a5eed6f5da389b726fec539932ad0daf4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#add70d79dc9f7a9ee05f6aa837d4b4ad8">getTextColours</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current colours used for text rendering. <a href="#add70d79dc9f7a9ee05f6aa837d4b4ad8"></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_1TreeItem.html#a1a91eab44e1d31b7f057c7fad6f62408">setFont</a> (<a class="el" href="classCEGUI_1_1Font.html">Font</a> *font)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the font to be used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. <a href="#a1a91eab44e1d31b7f057c7fad6f62408"></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_1TreeItem.html#ae182273930ba44922009021f3d3eeff1">setFont</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &font_name)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the font to be used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. <a href="#ae182273930ba44922009021f3d3eeff1"></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_1TreeItem.html#a28ce0a33cfb300fdabc6672cf4568a27">setTextColours</a> (const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &cols)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for text rendering. <a href="#a28ce0a33cfb300fdabc6672cf4568a27"></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_1TreeItem.html#a4c8c6b845d7fd36e8f35402cf7d1c30d">setTextColours</a> (<a class="el" href="classCEGUI_1_1colour.html">colour</a> top_left_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> top_right_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> bottom_left_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> bottom_right_colour)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for text rendering. <a href="#a4c8c6b845d7fd36e8f35402cf7d1c30d"></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_1TreeItem.html#ae8059ab8b66fe8f2a57de5aa9358d41a">setTextColours</a> (<a class="el" href="classCEGUI_1_1colour.html">colour</a> col)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for text rendering. <a href="#ae8059ab8b66fe8f2a57de5aa9358d41a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#afa8341b011c75662b6f741b28e089bbe">getText</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the text string set for this tree item. <a href="#afa8341b011c75662b6f741b28e089bbe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a94f97d832a596221b62dc558cd6f73d3"></a><!-- doxytag: member="CEGUI::TreeItem::getTextVisual" ref="a94f97d832a596221b62dc558cd6f73d3" args="() const " -->
const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a94f97d832a596221b62dc558cd6f73d3">getTextVisual</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return text string with <em>visual</em> ordering of glyphs. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ac81a539d9797a9b183ea3e518f079e07">getTooltipText</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the text string currently set to be used as the tooltip text for this item. <a href="#ac81a539d9797a9b183ea3e518f079e07"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#aa048cf828fcb008e8def2a141262b54b">getID</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current ID assigned to this tree item. <a href="#aa048cf828fcb008e8def2a141262b54b"></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_1TreeItem.html#ad459edde53f286cc784f6169e0562a25">getUserData</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the pointer to any client assigned user data attached to this tree item. <a href="#ad459edde53f286cc784f6169e0562a25"></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_1TreeItem.html#ae5d3392c296baa49b21d84b2fad77734">isSelected</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether this item is selected. <a href="#ae5d3392c296baa49b21d84b2fad77734"></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_1TreeItem.html#a8a6e34a39199b3db27a9c036434eb2d4">isDisabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether this item is disabled. <a href="#a8a6e34a39199b3db27a9c036434eb2d4"></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_1TreeItem.html#ab3afe0eaa3214815773dc391954bf31a">isAutoDeleted</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether this item will be automatically deleted when it is removed from the tree or when the the tree it is attached to is destroyed. <a href="#ab3afe0eaa3214815773dc391954bf31a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a2f2b22e94d1eb3de40666af0720c7e22">getOwnerWindow</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the owner window for this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. <a href="#a2f2b22e94d1eb3de40666af0720c7e22"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a016b1e5d2279b99f5219d6f355341acb">getSelectionColours</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current colours used for selection highlighting. <a href="#a016b1e5d2279b99f5219d6f355341acb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#acf03c4ce4b55e80208ce79f83d5aa169">getSelectionBrushImage</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current selection highlighting brush. <a href="#acf03c4ce4b55e80208ce79f83d5aa169"></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_1TreeItem.html#a4b0c347656b7dac22909bc2083a9518f">setText</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &text)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the text string for this tree item. <a href="#a4b0c347656b7dac22909bc2083a9518f"></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_1TreeItem.html#ab8bec2ecf8931b78add8def1670a2fdf">setTooltipText</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &text)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the tooltip text to be used for this item. <a href="#ab8bec2ecf8931b78add8def1670a2fdf"></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_1TreeItem.html#a6439139b5d94e13e44131e33936fe2c8">setID</a> (uint item_id)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the ID assigned to this tree item. <a href="#a6439139b5d94e13e44131e33936fe2c8"></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_1TreeItem.html#a6bce0abb9a17dc812823e0baef618931">setUserData</a> (void *item_data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the client assigned user data attached to this lis box item. <a href="#a6bce0abb9a17dc812823e0baef618931"></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_1TreeItem.html#a72c14776ec3a653149caf24af20f3126">setSelected</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the selected state for the item. <a href="#a72c14776ec3a653149caf24af20f3126"></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_1TreeItem.html#a7ebe101aceea8fd74ab2ad4d61e6c84e">setDisabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the disabled state for the item. <a href="#a7ebe101aceea8fd74ab2ad4d61e6c84e"></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_1TreeItem.html#a0238532f1fcdaced1bcdfb61fcba4e07">setAutoDeleted</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether this item will be automatically deleted when it is removed from the tree, or when the tree it is attached to is destroyed. <a href="#a0238532f1fcdaced1bcdfb61fcba4e07"></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_1TreeItem.html#af3d20f68bdfb2b61fa2c6ef44824ee1b">setOwnerWindow</a> (const <a class="el" href="classCEGUI_1_1Window.html">Window</a> *owner)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the owner window for this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. This is called by the tree widget when an item is added or inserted. <a href="#af3d20f68bdfb2b61fa2c6ef44824ee1b"></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_1TreeItem.html#ad36ea3c28c2cbc96dedabd22e514ec0c">setSelectionColours</a> (const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &cols)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for selection highlighting. <a href="#ad36ea3c28c2cbc96dedabd22e514ec0c"></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_1TreeItem.html#a3f5bfb43c5f9f45a9ed2702b161b298b">setSelectionColours</a> (<a class="el" href="classCEGUI_1_1colour.html">colour</a> top_left_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> top_right_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> bottom_left_colour, <a class="el" href="classCEGUI_1_1colour.html">colour</a> bottom_right_colour)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for selection highlighting. <a href="#a3f5bfb43c5f9f45a9ed2702b161b298b"></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_1TreeItem.html#acf61cf74b0a4720d8a5126967e338bca">setSelectionColours</a> (<a class="el" href="classCEGUI_1_1colour.html">colour</a> col)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the colours used for selection highlighting. <a href="#acf61cf74b0a4720d8a5126967e338bca"></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_1TreeItem.html#a96f07101dcfac2848ed90c6332393d33">setSelectionBrushImage</a> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> *image)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the selection highlighting brush image. <a href="#a96f07101dcfac2848ed90c6332393d33"></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_1TreeItem.html#ad0fc5851b2e537db337b9604ad10235e">setSelectionBrushImage</a> (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="mdescLeft"> </td><td class="mdescRight">Set the selection highlighting brush image. <a href="#ad0fc5851b2e537db337b9604ad10235e"></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_1TreeItem.html#a62faa51ab688ece0e30bde9e147430d4">setButtonLocation</a> (<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &buttonOffset)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Tell the treeItem where its button is located. Calculated and set in Tree.cpp. <a href="#a62faa51ab688ece0e30bde9e147430d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a890093d8925ea3878bc22a881fdd0d56"></a><!-- doxytag: member="CEGUI::TreeItem::getButtonLocation" ref="a890093d8925ea3878bc22a881fdd0d56" args="(void)" -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td><td class="memItemRight" valign="bottom"><b>getButtonLocation</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a84a244e17ab4faa3e32e17fc1a5505a0"></a><!-- doxytag: member="CEGUI::TreeItem::getIsOpen" ref="a84a244e17ab4faa3e32e17fc1a5505a0" args="(void)" -->
bool </td><td class="memItemRight" valign="bottom"><b>getIsOpen</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae502a4d3ea182fde98cd61ea5027f065"></a><!-- doxytag: member="CEGUI::TreeItem::toggleIsOpen" ref="ae502a4d3ea182fde98cd61ea5027f065" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><b>toggleIsOpen</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a99f96492ed32a799f63c070b18ce8bbd"></a><!-- doxytag: member="CEGUI::TreeItem::getTreeItemFromIndex" ref="a99f96492ed32a799f63c070b18ce8bbd" args="(size_t itemIndex)" -->
<a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> * </td><td class="memItemRight" valign="bottom"><b>getTreeItemFromIndex</b> (size_t itemIndex)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a422a19777c8275395636bad05b470da3"></a><!-- doxytag: member="CEGUI::TreeItem::getItemCount" ref="a422a19777c8275395636bad05b470da3" args="(void) const " -->
size_t </td><td class="memItemRight" valign="bottom"><b>getItemCount</b> (void) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a74838b741d8ab519ce6dec1e6afebbd6"></a><!-- doxytag: member="CEGUI::TreeItem::getItemList" ref="a74838b741d8ab519ce6dec1e6afebbd6" args="(void)" -->
LBItemList & </td><td class="memItemRight" valign="bottom"><b>getItemList</b> (void)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acdaa1f42abbf8626209618a92aef13e3"></a><!-- doxytag: member="CEGUI::TreeItem::addItem" ref="acdaa1f42abbf8626209618a92aef13e3" args="(TreeItem *item)" -->
void </td><td class="memItemRight" valign="bottom"><b>addItem</b> (<a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> *item)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae75dfac6526eeb424b403a15d86d301b"></a><!-- doxytag: member="CEGUI::TreeItem::removeItem" ref="ae75dfac6526eeb424b403a15d86d301b" args="(const TreeItem *item)" -->
void </td><td class="memItemRight" valign="bottom"><b>removeItem</b> (const <a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> *item)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4b7a738ce9979e159048a687c91a8f9f"></a><!-- doxytag: member="CEGUI::TreeItem::setIcon" ref="a4b7a738ce9979e159048a687c91a8f9f" args="(const Image &theIcon)" -->
void </td><td class="memItemRight" valign="bottom"><b>setIcon</b> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> &theIcon)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1Size.html">Size</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a5bc00f589f5caf281967e5eb7eeb0121">getPixelSize</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the rendered pixel size of this tree item. <a href="#a5bc00f589f5caf281967e5eb7eeb0121"></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_1TreeItem.html#a0df9547123d00ddca6e1b1d98c089c75">draw</a> (<a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> &buffer, const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &targetRect, float alpha, const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> *clipper) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Draw the tree item in its current state. <a href="#a0df9547123d00ddca6e1b1d98c089c75"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a221fc3b36ca36c848d82632c6ac2ae6e"></a><!-- doxytag: member="CEGUI::TreeItem::operator<" ref="a221fc3b36ca36c848d82632c6ac2ae6e" args="(const TreeItem &rhs) const " -->
virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a221fc3b36ca36c848d82632c6ac2ae6e">operator<</a> (const <a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> &rhs) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Less-than operator, compares item texts. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab56acb9150cb1d7277968de71be216fa"></a><!-- doxytag: member="CEGUI::TreeItem::operator>" ref="ab56acb9150cb1d7277968de71be216fa" args="(const TreeItem &rhs) const " -->
virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ab56acb9150cb1d7277968de71be216fa">operator></a> (const <a class="el" href="classCEGUI_1_1TreeItem.html">TreeItem</a> &rhs) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Greater-than operator, compares item texts. <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="af027fc22c19b849d68360377afee6c60"></a><!-- doxytag: member="CEGUI::TreeItem::DefaultTextColour" ref="af027fc22c19b849d68360377afee6c60" args="" -->
static const <a class="el" href="classCEGUI_1_1colour.html">colour</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#af027fc22c19b849d68360377afee6c60">DefaultTextColour</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default text colour. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa8d2bb1c5fdfba61520ae864cd6ecb05"></a><!-- doxytag: member="CEGUI::TreeItem::DefaultSelectionColour" ref="aa8d2bb1c5fdfba61520ae864cd6ecb05" args="" -->
static const <a class="el" href="classCEGUI_1_1colour.html">colour</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#aa8d2bb1c5fdfba61520ae864cd6ecb05">DefaultSelectionColour</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default selection brush colour. <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"><a class="anchor" id="a3673b8cb6b2fd90e3f7f22459be5d4bf"></a><!-- doxytag: member="CEGUI::TreeItem::getModulateAlphaColourRect" ref="a3673b8cb6b2fd90e3f7f22459be5d4bf" args="(const ColourRect &cols, float alpha) const " -->
<a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a3673b8cb6b2fd90e3f7f22459be5d4bf">getModulateAlphaColourRect</a> (const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> &cols, float alpha) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object describing the colours in <em>cols</em> after having their alpha component modulated by the value <em>alpha</em>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a59604513632ad0f6b21291f85dcb71f2"></a><!-- doxytag: member="CEGUI::TreeItem::calculateModulatedAlphaColour" ref="a59604513632ad0f6b21291f85dcb71f2" args="(colour col, float alpha) const " -->
<a class="el" href="classCEGUI_1_1colour.html">colour</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a59604513632ad0f6b21291f85dcb71f2">calculateModulatedAlphaColour</a> (<a class="el" href="classCEGUI_1_1colour.html">colour</a> col, float alpha) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a colour value describing the colour specified by <em>col</em> after having its alpha component modulated by the value <em>alpha</em>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb504651387a3d3572484385900246a8"></a><!-- doxytag: member="CEGUI::TreeItem::parseTextString" ref="abb504651387a3d3572484385900246a8" args="() const " -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#abb504651387a3d3572484385900246a8">parseTextString</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">parse the text visual string into a RenderString representation. <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="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a64a2be9d6178c0143e6b1bb7e8acd55a">d_textLogical</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Text for this tree item. If not rendered, still used for sorting. <a href="#a64a2be9d6178c0143e6b1bb7e8acd55a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a88366753c7ec57e86c56689c5a16dbce"></a><!-- doxytag: member="CEGUI::TreeItem::d_bidiVisualMapping" ref="a88366753c7ec57e86c56689c5a16dbce" args="" -->
<a class="el" href="classCEGUI_1_1BiDiVisualMapping.html">BiDiVisualMapping</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a88366753c7ec57e86c56689c5a16dbce">d_bidiVisualMapping</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">pointer to bidirection support object <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7b81dc4f5e8aaa2a0f85cdb72c974c1f"></a><!-- doxytag: member="CEGUI::TreeItem::d_bidiDataValid" ref="a7b81dc4f5e8aaa2a0f85cdb72c974c1f" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a7b81dc4f5e8aaa2a0f85cdb72c974c1f">d_bidiDataValid</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">whether bidi visual mapping has been updated since last text change. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab5a201d833b03f12c065ebe843dfa64c"></a><!-- doxytag: member="CEGUI::TreeItem::d_tooltipText" ref="ab5a201d833b03f12c065ebe843dfa64c" args="" -->
<a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ab5a201d833b03f12c065ebe843dfa64c">d_tooltipText</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Text for the individual tooltip of this item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a48f26f2821833edac7204e1f4aa8fa27"></a><!-- doxytag: member="CEGUI::TreeItem::d_itemID" ref="a48f26f2821833edac7204e1f4aa8fa27" args="" -->
uint </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a48f26f2821833edac7204e1f4aa8fa27">d_itemID</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">ID code assigned by client code. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a57f537e4a0e833588dd00f1a7d0e2ecc"></a><!-- doxytag: member="CEGUI::TreeItem::d_itemData" ref="a57f537e4a0e833588dd00f1a7d0e2ecc" args="" -->
void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a57f537e4a0e833588dd00f1a7d0e2ecc">d_itemData</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Pointer to some client code data. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac9bf82300ee91878540525091297cec1"></a><!-- doxytag: member="CEGUI::TreeItem::d_selected" ref="ac9bf82300ee91878540525091297cec1" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ac9bf82300ee91878540525091297cec1">d_selected</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if item is selected. false if item is not selected. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a06207b0eec65b44de85093fc423d7298"></a><!-- doxytag: member="CEGUI::TreeItem::d_disabled" ref="a06207b0eec65b44de85093fc423d7298" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a06207b0eec65b44de85093fc423d7298">d_disabled</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if item is disabled. false if item is not disabled. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aab33032842dab3dfabe6bfccbd0b4792"></a><!-- doxytag: member="CEGUI::TreeItem::d_autoDelete" ref="aab33032842dab3dfabe6bfccbd0b4792" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#aab33032842dab3dfabe6bfccbd0b4792">d_autoDelete</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if the system will destroy this item, false if client code will. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac7ff88562d3a7e6b9b393718a8208782"></a><!-- doxytag: member="CEGUI::TreeItem::d_buttonLocation" ref="ac7ff88562d3a7e6b9b393718a8208782" args="" -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ac7ff88562d3a7e6b9b393718a8208782">d_buttonLocation</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Location of the 'expand' button for the item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3852f21f65e5cc96aaa9fb3c86681b3d"></a><!-- doxytag: member="CEGUI::TreeItem::d_owner" ref="a3852f21f65e5cc96aaa9fb3c86681b3d" args="" -->
const <a class="el" href="classCEGUI_1_1Window.html">Window</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a3852f21f65e5cc96aaa9fb3c86681b3d">d_owner</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Pointer to the window that owns this item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4fcd12f2986ca7a1da75f3659f8c8fad"></a><!-- doxytag: member="CEGUI::TreeItem::d_selectCols" ref="a4fcd12f2986ca7a1da75f3659f8c8fad" args="" -->
<a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a4fcd12f2986ca7a1da75f3659f8c8fad">d_selectCols</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Colours used for selection highlighting. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4d649816c4be71de79059cbe9362b45d"></a><!-- doxytag: member="CEGUI::TreeItem::d_selectBrush" ref="a4d649816c4be71de79059cbe9362b45d" args="" -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a4d649816c4be71de79059cbe9362b45d">d_selectBrush</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> used for rendering selection. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0ffef7f5b1563a5c7b43858cfab318a0"></a><!-- doxytag: member="CEGUI::TreeItem::d_textCols" ref="a0ffef7f5b1563a5c7b43858cfab318a0" args="" -->
<a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a0ffef7f5b1563a5c7b43858cfab318a0">d_textCols</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Colours used for rendering the text. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a07729960e9dae162b161a1946bcbea12"></a><!-- doxytag: member="CEGUI::TreeItem::d_font" ref="a07729960e9dae162b161a1946bcbea12" args="" -->
<a class="el" href="classCEGUI_1_1Font.html">Font</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a07729960e9dae162b161a1946bcbea12">d_font</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a> used for rendering text. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac0eb9f3e8043df8d1eeda18e8a25e237"></a><!-- doxytag: member="CEGUI::TreeItem::d_iconImage" ref="ac0eb9f3e8043df8d1eeda18e8a25e237" args="" -->
<a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ac0eb9f3e8043df8d1eeda18e8a25e237">d_iconImage</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> for the icon to be displayed with this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad79de78574fdd1926c4ff2c0b38658bc"></a><!-- doxytag: member="CEGUI::TreeItem::d_listItems" ref="ad79de78574fdd1926c4ff2c0b38658bc" args="" -->
LBItemList </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ad79de78574fdd1926c4ff2c0b38658bc">d_listItems</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">list of items in this item's tree branch. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa6b74e6228f8b7b219b1c8a6c4274c89"></a><!-- doxytag: member="CEGUI::TreeItem::d_isOpen" ref="aa6b74e6228f8b7b219b1c8a6c4274c89" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#aa6b74e6228f8b7b219b1c8a6c4274c89">d_isOpen</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if the this item's tree branch is opened. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a09c8778fc8fc1ab7799cf9f0b891e6eb"></a><!-- doxytag: member="CEGUI::TreeItem::d_renderedString" ref="a09c8778fc8fc1ab7799cf9f0b891e6eb" args="" -->
<a class="el" href="classCEGUI_1_1RenderedString.html">RenderedString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a09c8778fc8fc1ab7799cf9f0b891e6eb">d_renderedString</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities.">RenderedString</a> drawn by this item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4c222b0ebaffb9efc52fa4a38f08e8e3"></a><!-- doxytag: member="CEGUI::TreeItem::d_renderedStringValid" ref="a4c222b0ebaffb9efc52fa4a38f08e8e3" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#a4c222b0ebaffb9efc52fa4a38f08e8e3">d_renderedStringValid</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">boolean used to track when item state changes (and needs re-parse) <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-static-attribs"></a>
Static Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab8009de650aa835df44415b4a846c20b"></a><!-- doxytag: member="CEGUI::TreeItem::d_stringParser" ref="ab8009de650aa835df44415b4a846c20b" args="" -->
static <a class="el" href="classCEGUI_1_1BasicRenderedStringParser.html">BasicRenderedStringParser</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1TreeItem.html#ab8009de650aa835df44415b4a846c20b">d_stringParser</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Parser used to produce a final <a class="el" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities.">RenderedString</a> from the standard <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for tree items. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000005">Deprecated:</a></b></dt><dd>The <a class="el" href="classCEGUI_1_1Tree.html" title="Base class for standard Tree widget.">CEGUI::Tree</a>, <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">CEGUI::TreeItem</a> and any other associated classes are deprecated and thier use should be minimised - preferably eliminated - where possible. It is extremely unfortunate that this widget was ever added to <a class="el" href="namespaceCEGUI.html" title="Main namespace for Crazy Eddie's GUI Library.">CEGUI</a> since its design and implementation are poor and do not meet established standards for the <a class="el" href="namespaceCEGUI.html" title="Main namespace for Crazy Eddie's GUI Library.">CEGUI</a> project. </dd></dl>
<dl class="user"><dt><b></b></dt><dd>While no alternative currently exists, a superior, replacement tree widget will be provided prior to the final removal of the current implementation. </dd></dl>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a0df9547123d00ddca6e1b1d98c089c75"></a><!-- doxytag: member="CEGUI::TreeItem::draw" ref="a0df9547123d00ddca6e1b1d98c089c75" args="(GeometryBuffer &buffer, const Rect &targetRect, float alpha, const Rect *clipper) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::TreeItem::draw </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> & </td>
<td class="paramname"><em>buffer</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td>
<td class="paramname"><em>targetRect</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">float </td>
<td class="paramname"><em>alpha</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> * </td>
<td class="paramname"><em>clipper</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Draw the tree item in its current state. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> object describing the upper-left corner of area that should be rendered in to for the draw operation.</td></tr>
<tr><td class="paramname">alpha</td><td>Alpha value to be used when rendering the item (between 0.0f and 1.0f).</td></tr>
<tr><td class="paramname">clipper</td><td><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing the clipping rectangle for the draw operation.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a5eed6f5da389b726fec539932ad0daf4"></a><!-- doxytag: member="CEGUI::TreeItem::getFont" ref="a5eed6f5da389b726fec539932ad0daf4" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Font.html">Font</a>* CEGUI::TreeItem::getFont </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the font being used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. </p>
<p>This method will try a number of places to find a font to be used. If no font can be found, NULL is returned.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a> to be used for rendering this item </dd></dl>
</div>
</div>
<a class="anchor" id="aa048cf828fcb008e8def2a141262b54b"></a><!-- doxytag: member="CEGUI::TreeItem::getID" ref="aa048cf828fcb008e8def2a141262b54b" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">uint CEGUI::TreeItem::getID </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 ID assigned to this tree item. </p>
<p>Note that the system does not make use of this value, client code can assign any meaning it wishes to the ID.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>ID code currently assigned to this tree item </dd></dl>
</div>
</div>
<a class="anchor" id="a2f2b22e94d1eb3de40666af0720c7e22"></a><!-- doxytag: member="CEGUI::TreeItem::getOwnerWindow" ref="a2f2b22e94d1eb3de40666af0720c7e22" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Window.html">Window</a>* CEGUI::TreeItem::getOwnerWindow </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get the owner window for this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. </p>
<p>The owner of a <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a> is typically set by the tree widget when an item is added or inserted.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Ponter to the window that is considered the owner of this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a5bc00f589f5caf281967e5eb7eeb0121"></a><!-- doxytag: member="CEGUI::TreeItem::getPixelSize" ref="a5bc00f589f5caf281967e5eb7eeb0121" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classCEGUI_1_1Size.html">Size</a> CEGUI::TreeItem::getPixelSize </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the rendered pixel size of this tree item. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a> object describing the size of the tree item in pixels. </dd></dl>
</div>
</div>
<a class="anchor" id="acf03c4ce4b55e80208ce79f83d5aa169"></a><!-- doxytag: member="CEGUI::TreeItem::getSelectionBrushImage" ref="acf03c4ce4b55e80208ce79f83d5aa169" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Image.html">Image</a>* CEGUI::TreeItem::getSelectionBrushImage </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 selection highlighting brush. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> object currently used for selection highlighting. </dd></dl>
</div>
</div>
<a class="anchor" id="a016b1e5d2279b99f5219d6f355341acb"></a><!-- doxytag: member="CEGUI::TreeItem::getSelectionColours" ref="a016b1e5d2279b99f5219d6f355341acb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> CEGUI::TreeItem::getSelectionColours </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 colours used for selection highlighting. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object describing the currently set colours. </dd></dl>
</div>
</div>
<a class="anchor" id="afa8341b011c75662b6f741b28e089bbe"></a><!-- doxytag: member="CEGUI::TreeItem::getText" ref="afa8341b011c75662b6f741b28e089bbe" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>& CEGUI::TreeItem::getText </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the text string set for this tree item. </p>
<p>Note that even if the item does not render text, the text string can still be useful, since it is used for sorting tree items.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the current text for the tree item. </dd></dl>
<p>Referenced by <a class="el" href="classCEGUI_1_1TreeItem.html#a221fc3b36ca36c848d82632c6ac2ae6e">operator<()</a>, and <a class="el" href="classCEGUI_1_1TreeItem.html#ab56acb9150cb1d7277968de71be216fa">operator>()</a>.</p>
</div>
</div>
<a class="anchor" id="add70d79dc9f7a9ee05f6aa837d4b4ad8"></a><!-- doxytag: member="CEGUI::TreeItem::getTextColours" ref="add70d79dc9f7a9ee05f6aa837d4b4ad8" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> CEGUI::TreeItem::getTextColours </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 colours used for text rendering. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object describing the currently set colours </dd></dl>
</div>
</div>
<a class="anchor" id="ac81a539d9797a9b183ea3e518f079e07"></a><!-- doxytag: member="CEGUI::TreeItem::getTooltipText" ref="ac81a539d9797a9b183ea3e518f079e07" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>& CEGUI::TreeItem::getTooltipText </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 text string currently set to be used as the tooltip text for this item. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the current tooltip text as sued by this item. </dd></dl>
</div>
</div>
<a class="anchor" id="ad459edde53f286cc784f6169e0562a25"></a><!-- doxytag: member="CEGUI::TreeItem::getUserData" ref="ad459edde53f286cc784f6169e0562a25" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void* CEGUI::TreeItem::getUserData </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 pointer to any client assigned user data attached to this tree item. </p>
<p>Note that the system does not make use of this data, client code can assign any meaning it wishes to the attached data.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the currently assigned user data. </dd></dl>
</div>
</div>
<a class="anchor" id="ab3afe0eaa3214815773dc391954bf31a"></a><!-- doxytag: member="CEGUI::TreeItem::isAutoDeleted" ref="ab3afe0eaa3214815773dc391954bf31a" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::TreeItem::isAutoDeleted </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 item will be automatically deleted when it is removed from the tree or when the the tree it is attached to is destroyed. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the item object will be deleted by the system when it is removed from the tree, or when the tree it is attached to is destroyed.</li>
</ul>
</dd></dl>
<ul>
<li>false if client code must destroy the item after it is removed from the tree. </li>
</ul>
</div>
</div>
<a class="anchor" id="a8a6e34a39199b3db27a9c036434eb2d4"></a><!-- doxytag: member="CEGUI::TreeItem::isDisabled" ref="a8a6e34a39199b3db27a9c036434eb2d4" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::TreeItem::isDisabled </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 item is disabled. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the item is disabled.</li>
<li>false if the item is enabled. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="ae5d3392c296baa49b21d84b2fad77734"></a><!-- doxytag: member="CEGUI::TreeItem::isSelected" ref="ae5d3392c296baa49b21d84b2fad77734" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::TreeItem::isSelected </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 item is selected. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the item is selected.</li>
<li>false if the item is not selected. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a0238532f1fcdaced1bcdfb61fcba4e07"></a><!-- doxytag: member="CEGUI::TreeItem::setAutoDeleted" ref="a0238532f1fcdaced1bcdfb61fcba4e07" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setAutoDeleted </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether this item will be automatically deleted when it is removed from the tree, or when the tree it is attached to is destroyed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the item object should be deleted by the system when the it is removed from the tree, or when the tree it is attached to is destroyed.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<ul>
<li>false if client code will destroy the item after it is removed from the tree.</li>
</ul>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a62faa51ab688ece0e30bde9e147430d4"></a><!-- doxytag: member="CEGUI::TreeItem::setButtonLocation" ref="a62faa51ab688ece0e30bde9e147430d4" args="(Rect &buttonOffset)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setButtonLocation </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td>
<td class="paramname"><em>buttonOffset</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Tell the treeItem where its button is located. Calculated and set in Tree.cpp. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">buttonOffset</td><td>Location of the button in screenspace. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7ebe101aceea8fd74ab2ad4d61e6c84e"></a><!-- doxytag: member="CEGUI::TreeItem::setDisabled" ref="a7ebe101aceea8fd74ab2ad4d61e6c84e" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setDisabled </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the disabled state for the item. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the item should be disabled.</li>
<li>false if the item should be enabled.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ae182273930ba44922009021f3d3eeff1"></a><!-- doxytag: member="CEGUI::TreeItem::setFont" ref="ae182273930ba44922009021f3d3eeff1" args="(const String &font_name)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setFont </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>font_name</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the font to be used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">font_name</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the name of the <a class="el" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a> to be used for rendering this item</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
</div>
</div>
<a class="anchor" id="a1a91eab44e1d31b7f057c7fad6f62408"></a><!-- doxytag: member="CEGUI::TreeItem::setFont" ref="a1a91eab44e1d31b7f057c7fad6f62408" args="(Font *font)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setFont </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1Font.html">Font</a> * </td>
<td class="paramname"><em>font</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the font to be used by this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">font</td><td><a class="el" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a> to be used for rendering this item</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
</div>
</div>
<a class="anchor" id="a6439139b5d94e13e44131e33936fe2c8"></a><!-- doxytag: member="CEGUI::TreeItem::setID" ref="a6439139b5d94e13e44131e33936fe2c8" args="(uint item_id)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setID </td>
<td>(</td>
<td class="paramtype">uint </td>
<td class="paramname"><em>item_id</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the ID assigned to this tree item. </p>
<p>Note that the system does not make use of this value, client code can assign any meaning it wishes to the ID.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item_id</td><td>ID code to be assigned to this tree item</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="af3d20f68bdfb2b61fa2c6ef44824ee1b"></a><!-- doxytag: member="CEGUI::TreeItem::setOwnerWindow" ref="af3d20f68bdfb2b61fa2c6ef44824ee1b" args="(const Window *owner)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setOwnerWindow </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Window.html">Window</a> * </td>
<td class="paramname"><em>owner</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the owner window for this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>. This is called by the tree widget when an item is added or inserted. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">owner</td><td>Ponter to the window that should be considered the owner of this <a class="el" href="classCEGUI_1_1TreeItem.html" title="Base class for tree items.">TreeItem</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
</div>
</div>
<a class="anchor" id="a72c14776ec3a653149caf24af20f3126"></a><!-- doxytag: member="CEGUI::TreeItem::setSelected" ref="a72c14776ec3a653149caf24af20f3126" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelected </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the selected state for the item. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the item is selected.</li>
<li>false if the item is not selected.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ad0fc5851b2e537db337b9604ad10235e"></a><!-- doxytag: member="CEGUI::TreeItem::setSelectionBrushImage" ref="ad0fc5851b2e537db337b9604ad10235e" args="(const String &imageset, const String &image)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelectionBrushImage </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>imageset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>image</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the selection highlighting brush image. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">imageset</td><td>Name of the imagest containing the image to be used.</td></tr>
<tr><td class="paramname">image</td><td>Name of the image to be used.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a96f07101dcfac2848ed90c6332393d33"></a><!-- doxytag: member="CEGUI::TreeItem::setSelectionBrushImage" ref="a96f07101dcfac2848ed90c6332393d33" args="(const Image *image)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelectionBrushImage </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td>
<td class="paramname"><em>image</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the selection highlighting brush image. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">image</td><td>Pointer to the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> object to be used for selection highlighting.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="acf61cf74b0a4720d8a5126967e338bca"></a><!-- doxytag: member="CEGUI::TreeItem::setSelectionColours" ref="acf61cf74b0a4720d8a5126967e338bca" args="(colour col)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelectionColours </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>col</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for selection highlighting. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">col</td><td>colour value to be used when rendering.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
<p>References <a class="el" href="classCEGUI_1_1TreeItem.html#acf61cf74b0a4720d8a5126967e338bca">setSelectionColours()</a>.</p>
<p>Referenced by <a class="el" href="classCEGUI_1_1TreeItem.html#acf61cf74b0a4720d8a5126967e338bca">setSelectionColours()</a>.</p>
</div>
</div>
<a class="anchor" id="ad36ea3c28c2cbc96dedabd22e514ec0c"></a><!-- doxytag: member="CEGUI::TreeItem::setSelectionColours" ref="ad36ea3c28c2cbc96dedabd22e514ec0c" args="(const ColourRect &cols)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelectionColours </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> & </td>
<td class="paramname"><em>cols</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for selection highlighting. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">cols</td><td><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object describing the colours to be used.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a3f5bfb43c5f9f45a9ed2702b161b298b"></a><!-- doxytag: member="CEGUI::TreeItem::setSelectionColours" ref="a3f5bfb43c5f9f45a9ed2702b161b298b" args="(colour top_left_colour, colour top_right_colour, colour bottom_left_colour, colour bottom_right_colour)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setSelectionColours </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>top_left_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>top_right_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>bottom_left_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>bottom_right_colour</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for selection highlighting. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">top_left_colour</td><td>Colour (as ARGB value) to be applied to the top-left corner of the selection area.</td></tr>
<tr><td class="paramname">top_right_colour</td><td>Colour (as ARGB value) to be applied to the top-right corner of the selection area.</td></tr>
<tr><td class="paramname">bottom_left_colour</td><td>Colour (as ARGB value) to be applied to the bottom-left corner of the selection area.</td></tr>
<tr><td class="paramname">bottom_right_colour</td><td>Colour (as ARGB value) to be applied to the bottom-right corner of the selection area.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a4b0c347656b7dac22909bc2083a9518f"></a><!-- doxytag: member="CEGUI::TreeItem::setText" ref="a4b0c347656b7dac22909bc2083a9518f" args="(const String &text)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setText </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>text</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the text string for this tree item. </p>
<p>Note that even if the item does not render text, the text string can still be useful, since it is used for sorting tree items.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the text to set for the tree item.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ae8059ab8b66fe8f2a57de5aa9358d41a"></a><!-- doxytag: member="CEGUI::TreeItem::setTextColours" ref="ae8059ab8b66fe8f2a57de5aa9358d41a" args="(colour col)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setTextColours </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>col</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for text rendering. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">col</td><td>colour value to be used when rendering.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
<p>References <a class="el" href="classCEGUI_1_1TreeItem.html#ae8059ab8b66fe8f2a57de5aa9358d41a">setTextColours()</a>.</p>
<p>Referenced by <a class="el" href="classCEGUI_1_1TreeItem.html#ae8059ab8b66fe8f2a57de5aa9358d41a">setTextColours()</a>.</p>
</div>
</div>
<a class="anchor" id="a28ce0a33cfb300fdabc6672cf4568a27"></a><!-- doxytag: member="CEGUI::TreeItem::setTextColours" ref="a28ce0a33cfb300fdabc6672cf4568a27" args="(const ColourRect &cols)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setTextColours </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ColourRect.html">ColourRect</a> & </td>
<td class="paramname"><em>cols</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for text rendering. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">cols</td><td><a class="el" href="classCEGUI_1_1ColourRect.html" title="Class that holds details of colours for the four corners of a rectangle.">ColourRect</a> object describing the colours to be used.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a4c8c6b845d7fd36e8f35402cf7d1c30d"></a><!-- doxytag: member="CEGUI::TreeItem::setTextColours" ref="a4c8c6b845d7fd36e8f35402cf7d1c30d" args="(colour top_left_colour, colour top_right_colour, colour bottom_left_colour, colour bottom_right_colour)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setTextColours </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>top_left_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>top_right_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>bottom_left_colour</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1colour.html">colour</a> </td>
<td class="paramname"><em>bottom_right_colour</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the colours used for text rendering. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">top_left_colour</td><td>Colour (as ARGB value) to be applied to the top-left corner of each text glyph rendered.</td></tr>
<tr><td class="paramname">top_right_colour</td><td>Colour (as ARGB value) to be applied to the top-right corner of each text glyph rendered.</td></tr>
<tr><td class="paramname">bottom_left_colour</td><td>Colour (as ARGB value) to be applied to the bottom-left corner of each text glyph rendered.</td></tr>
<tr><td class="paramname">bottom_right_colour</td><td>Colour (as ARGB value) to be applied to the bottom-right corner of each text glyph rendered.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ab8bec2ecf8931b78add8def1670a2fdf"></a><!-- doxytag: member="CEGUI::TreeItem::setTooltipText" ref="ab8bec2ecf8931b78add8def1670a2fdf" args="(const String &text)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setTooltipText </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>text</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the tooltip text to be used for this item. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding the text to be used in the tooltip displayed for this item.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a6bce0abb9a17dc812823e0baef618931"></a><!-- doxytag: member="CEGUI::TreeItem::setUserData" ref="a6bce0abb9a17dc812823e0baef618931" args="(void *item_data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::TreeItem::setUserData </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"><em>item_data</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the client assigned user data attached to this lis box item. </p>
<p>Note that the system does not make use of this data, client code can assign any meaning it wishes to the attached data.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item_data</td><td>Pointer to the user data to attach to this tree item.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a64a2be9d6178c0143e6b1bb7e8acd55a"></a><!-- doxytag: member="CEGUI::TreeItem::d_textLogical" ref="a64a2be9d6178c0143e6b1bb7e8acd55a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1TreeItem.html#a64a2be9d6178c0143e6b1bb7e8acd55a">CEGUI::TreeItem::d_textLogical</a><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Text for this tree item. If not rendered, still used for sorting. </p>
<p>text rendered by this component. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:42 for Crazy Eddies GUI System by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|