1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
|
<!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::Listbox 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_1Listbox.html">Listbox</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#pro-types">Protected Types</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="#friends">Friends</a> </div>
<div class="headertitle">
<div class="title">CEGUI::Listbox Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Listbox" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for standard <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> widget.
<a href="classCEGUI_1_1Listbox.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::Listbox:</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_1Listbox__inherit__graph.gif" border="0" usemap="#CEGUI_1_1Listbox_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1Listbox_inherit__map" id="CEGUI_1_1Listbox_inherit__map">
<area shape="rect" id="node5" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class..." alt="" coords="5,160,168,189"/><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="27,5,147,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::Listbox:</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_1Listbox__coll__graph.gif" border="0" usemap="#CEGUI_1_1Listbox_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Listbox_coll__map" id="CEGUI_1_1Listbox_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="93,81,213,111"/><area shape="rect" id="node5" href="classCEGUI_1_1ListboxProperties_1_1ForceHorzScrollbar.html" title="Property to access the 'always show' setting for the horizontal scroll bar of the list box..." alt="" coords="7,135,300,164"/><area shape="rect" id="node7" href="classCEGUI_1_1ListboxProperties_1_1ForceVertScrollbar.html" title="Property to access the 'always show' setting for the vertical scroll bar of the list box..." alt="" coords="8,188,299,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1Listbox-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ac27fb510288515009d43ec7cfb42bfcf">getItemCount</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return number of items attached to the list box. <a href="#ac27fb510288515009d43ec7cfb42bfcf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#afe5e12f55912979d9c563b6d1d5292ad">getSelectedCount</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the number of selected items in the list box. <a href="#afe5e12f55912979d9c563b6d1d5292ad"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a9622ad2ae98d3e58fac555d8fee17191">getFirstSelectedItem</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the first selected item. <a href="#a9622ad2ae98d3e58fac555d8fee17191"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a93ab5ca738ed2b94ac14e464a45a2e6a">getNextSelected</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *start_item) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the next selected item after item <em>start_item</em>. <a href="#a93ab5ca738ed2b94ac14e464a45a2e6a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a7ff0dfdb9797c09d2b3803d0976672f2">getListboxItemFromIndex</a> (size_t index) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the item at index position <em>index</em>. <a href="#a7ff0dfdb9797c09d2b3803d0976672f2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aaea9cf33ecf30eb1c3e2e8421748761e">getItemIndex</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the index of <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>item</em>. <a href="#aaea9cf33ecf30eb1c3e2e8421748761e"></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_1Listbox.html#ac482b699cf93aed09b7dd6fe130aabeb">isSortEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether list sorting is enabled <a href="#ac482b699cf93aed09b7dd6fe130aabeb"></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_1Listbox.html#a0bd0e1f4dbf1b445b9fb8d0290ef5b1e">isMultiselectEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether multi-select is enabled <a href="#a0bd0e1f4dbf1b445b9fb8d0290ef5b1e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a52601e01f9cfbc0d16a5bc6ebe895866"></a><!-- doxytag: member="CEGUI::Listbox::isItemTooltipsEnabled" ref="a52601e01f9cfbc0d16a5bc6ebe895866" args="(void) const " -->
bool </td><td class="memItemRight" valign="bottom"><b>isItemTooltipsEnabled</b> (void) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ad0dddf7866aaf0ff6862315702fb859d">isItemSelected</a> (size_t index) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether the string at index position <em>index</em> is selected <a href="#ad0dddf7866aaf0ff6862315702fb859d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a8e543ad0432bbdda06781d82a70ac0f3">findItemWithText</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &text, const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *start_item)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Search the list for an item with the specified text. <a href="#a8e543ad0432bbdda06781d82a70ac0f3"></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_1Listbox.html#aac747ba199d28ffe28ac4227b30c099e">isListboxItemInList</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the specified <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> is in the List. <a href="#aac747ba199d28ffe28ac4227b30c099e"></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_1Listbox.html#a3570630d416062b28be786825c06e981">isVertScrollbarAlwaysShown</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the vertical scroll bar is always shown. <a href="#a3570630d416062b28be786825c06e981"></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_1Listbox.html#afe2f4f39ffefe869f13c287c271b40bd">isHorzScrollbarAlwaysShown</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the horizontal scroll bar is always shown. <a href="#afe2f4f39ffefe869f13c287c271b40bd"></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_1Listbox.html#a31a4dc42adca5d28af5f463c3a6efdda">initialiseComponents</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise the <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> based object ready for use. <a href="#a31a4dc42adca5d28af5f463c3a6efdda"></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_1Listbox.html#a3f086468a0fe012ce5b2bba7b06bafa5">resetList</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Remove all items from the list. <a href="#a3f086468a0fe012ce5b2bba7b06bafa5"></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_1Listbox.html#a86b3e614b9e70bb0e89c368ddbd17316">addItem</a> (<a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Add the given <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to the list. <a href="#a86b3e614b9e70bb0e89c368ddbd17316"></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_1Listbox.html#a20611491f79faea7b40c72030e038d92">insertItem</a> (<a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item, const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *position)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Insert an item into the list box before a specified item already in the list. <a href="#a20611491f79faea7b40c72030e038d92"></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_1Listbox.html#a4bf421907b4219fc77a3139da0694c92">removeItem</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Removes the given item from the list box. If the item is has the auto delete state set, the item will be deleted. <a href="#a4bf421907b4219fc77a3139da0694c92"></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_1Listbox.html#a855f4d1bbe53cbab8ed95ab5b1312852">clearAllSelections</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clear the selected state for all items. <a href="#a855f4d1bbe53cbab8ed95ab5b1312852"></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_1Listbox.html#a84de1c2932171a099884d2e249d43bf2">setSortingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the list should be sorted. <a href="#a84de1c2932171a099884d2e249d43bf2"></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_1Listbox.html#aff52444a6878a69eb209cf6e9f80521b">setMultiselectEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the list should allow multiple selections or just a single selection. <a href="#aff52444a6878a69eb209cf6e9f80521b"></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_1Listbox.html#aa28e1d66f95d88abffaece0226b7b2d3">setShowVertScrollbar</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the vertical scroll bar should always be shown. <a href="#aa28e1d66f95d88abffaece0226b7b2d3"></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_1Listbox.html#a1aad9c0cf940542fea921ba25620aee2">setShowHorzScrollbar</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the horizontal scroll bar should always be shown. <a href="#a1aad9c0cf940542fea921ba25620aee2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acfef3ded566c19f989cebd338626d0ac"></a><!-- doxytag: member="CEGUI::Listbox::setItemTooltipsEnabled" ref="acfef3ded566c19f989cebd338626d0ac" args="(bool setting)" -->
void </td><td class="memItemRight" valign="bottom"><b>setItemTooltipsEnabled</b> (bool setting)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a21ebdb1cfb45f1c12d913ce0173bc058">setItemSelectState</a> (<a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item, bool state)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the select state of an attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>. <a href="#a21ebdb1cfb45f1c12d913ce0173bc058"></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_1Listbox.html#a895946c8082b13c05a286ded90208591">setItemSelectState</a> (size_t item_index, bool state)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the select state of an attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>. <a href="#a895946c8082b13c05a286ded90208591"></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_1Listbox.html#a8903860958694541f87997ce776d0eaa">handleUpdatedItemData</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Causes the list box to update it's internal state after changes have been made to one or more attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> objects. <a href="#a8903860958694541f87997ce776d0eaa"></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_1Listbox.html#a138911afbeead634f3f5d6b7d376c809">ensureItemIsVisible</a> (size_t item_index)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Ensure the item at the specified index is visible within the list box. <a href="#a138911afbeead634f3f5d6b7d376c809"></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_1Listbox.html#a63d408d2bcbefda06fbc8b6ebbd9dca7">ensureItemIsVisible</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *item)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Ensure the item at the specified index is visible within the list box. <a href="#a63d408d2bcbefda06fbc8b6ebbd9dca7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ab1b48abe760fd1bcf0269b79b2e99555">getListRenderArea</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing, in un-clipped pixels, the window relative area that is to be used for rendering list items. <a href="#ab1b48abe760fd1bcf0269b79b2e99555"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aa8bdb140ffab153cb3506756f7ca2707">getVertScrollbar</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the vertical scrollbar component widget for this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. <a href="#aa8bdb140ffab153cb3506756f7ca2707"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ad2dae35017cb934b938facf39ea56b41">getHorzScrollbar</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the horizontal scrollbar component widget for this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. <a href="#ad2dae35017cb934b938facf39ea56b41"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a452cdfd0790c65801165e0536437c76d"></a><!-- doxytag: member="CEGUI::Listbox::getTotalItemsHeight" ref="a452cdfd0790c65801165e0536437c76d" args="(void) const " -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a452cdfd0790c65801165e0536437c76d">getTotalItemsHeight</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the sum of all item heights. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a264076b821d3bc95fb0276a3a9d9a42a"></a><!-- doxytag: member="CEGUI::Listbox::getWidestItemWidth" ref="a264076b821d3bc95fb0276a3a9d9a42a" args="(void) const " -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a264076b821d3bc95fb0276a3a9d9a42a">getWidestItemWidth</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the width of the widest item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aa94cde3135645116f321d232f3919fb4">getItemAtPoint</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &pt) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> attached to this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> at the given screen pixel co-ordinate. <a href="#aa94cde3135645116f321d232f3919fb4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abf26f89bd4c11f7105fc3829792a5709"></a><!-- doxytag: member="CEGUI::Listbox::Listbox" ref="abf26f89bd4c11f7105fc3829792a5709" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#abf26f89bd4c11f7105fc3829792a5709">Listbox</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 <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a28788370a870e00dfd98ebd24d882317"></a><!-- doxytag: member="CEGUI::Listbox::~Listbox" ref="a28788370a870e00dfd98ebd24d882317" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a28788370a870e00dfd98ebd24d882317">~Listbox</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> 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="acc300c28ae8ce655c452afa4b09da0db"></a><!-- doxytag: member="CEGUI::Listbox::EventNamespace" ref="acc300c28ae8ce655c452afa4b09da0db" 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_1Listbox.html#acc300c28ae8ce655c452afa4b09da0db">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="a7f2becb073ff225fba6845f36eb7a5be"></a><!-- doxytag: member="CEGUI::Listbox::WidgetTypeName" ref="a7f2becb073ff225fba6845f36eb7a5be" 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_1Listbox.html#a7f2becb073ff225fba6845f36eb7a5be">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_1Listbox.html#a5637852660132d350794ff4b6732adab">EventListContentsChanged</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_1Listbox.html#afa8eb049e685967f9639ecd81c44bccb">EventSelectionChanged</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_1Listbox.html#af33bcee37ec79863bb3f818466bbcb33">EventSortModeChanged</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_1Listbox.html#aa5ca97065346dc98f56a35c0e390180a">EventMultiselectModeChanged</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_1Listbox.html#ab6439b5d836b09c44ff941a15ee188b9">EventVertScrollbarModeChanged</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_1Listbox.html#abc2bd4a37317867eb6c2509e2695d116">EventHorzScrollbarModeChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3ba9b33426cabc35f79cbcebbd835673"></a><!-- doxytag: member="CEGUI::Listbox::VertScrollbarNameSuffix" ref="a3ba9b33426cabc35f79cbcebbd835673" 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_1Listbox.html#a3ba9b33426cabc35f79cbcebbd835673">VertScrollbarNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the vertical scrollbar component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adb7ad46671788f16e61dc576f74755f6"></a><!-- doxytag: member="CEGUI::Listbox::HorzScrollbarNameSuffix" ref="adb7ad46671788f16e61dc576f74755f6" 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_1Listbox.html#adb7ad46671788f16e61dc576f74755f6">HorzScrollbarNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the horizontal scrollbar component. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-types"></a>
Protected Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3cbc4f47da1c7670d32dba75066ff6f8"></a><!-- doxytag: member="CEGUI::Listbox::LBItemList" ref="a3cbc4f47da1c7670d32dba75066ff6f8" args="" -->
typedef std::vector<br class="typebreak"/>
< <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * > </td><td class="memItemRight" valign="bottom"><b>LBItemList</b></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a7bf07d3fb3d377e9cfdf7abccb0a7639">configureScrollbars</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing, in un-clipped pixels, the window relative area that is to be used for rendering list items. <a href="#a7bf07d3fb3d377e9cfdf7abccb0a7639"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee569f4a1019442507c5b9c6f019087e"></a><!-- doxytag: member="CEGUI::Listbox::selectRange" ref="aee569f4a1019442507c5b9c6f019087e" args="(size_t start, size_t end)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aee569f4a1019442507c5b9c6f019087e">selectRange</a> (size_t start, size_t end)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">select all strings between positions <em>start</em> and <em>end</em>. (inclusive) including <em>end</em>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ac9f702445fa0e838a3b94d3e2c54a41d">clearAllSelections_impl</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clear the selected state for all items (implementation) <a href="#ac9f702445fa0e838a3b94d3e2c54a41d"></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_1Listbox.html#ab81a40b1c41433102b12de0600fc0567">resetList_impl</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Remove all items from the list. <a href="#ab81a40b1c41433102b12de0600fc0567"></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_1Listbox.html#a0038b304b9174e6f39aae7189707d40d">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="#a0038b304b9174e6f39aae7189707d40d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a769fa144cc16b9314f24d80345bb0ef7"></a><!-- doxytag: member="CEGUI::Listbox::handle_scrollChange" ref="a769fa144cc16b9314f24d80345bb0ef7" args="(const EventArgs &args)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a769fa144cc16b9314f24d80345bb0ef7">handle_scrollChange</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &args)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Internal handler that is triggered when the user interacts with the scrollbars. <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_1Listbox.html#aa7c00b73d01592fc01b8a7fca9df4c56">validateWindowRenderer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. <a href="#aa7c00b73d01592fc01b8a7fca9df4c56"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa7c0ead346cdc1ce7ed89d0979abd19b"></a><!-- doxytag: member="CEGUI::Listbox::resortList" ref="aa7c0ead346cdc1ce7ed89d0979abd19b" args="()" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aa7c0ead346cdc1ce7ed89d0979abd19b">resortList</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Causes the internal list to be (re)sorted. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6a0337ae71ad608d00e8c476b066c700"></a><!-- doxytag: member="CEGUI::Listbox::onListContentsChanged" ref="a6a0337ae71ad608d00e8c476b066c700" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a6a0337ae71ad608d00e8c476b066c700">onListContentsChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the list contents are changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afe05bd6d7b7bb68db3031253f46aa7b3"></a><!-- doxytag: member="CEGUI::Listbox::onSelectionChanged" ref="afe05bd6d7b7bb68db3031253f46aa7b3" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#afe05bd6d7b7bb68db3031253f46aa7b3">onSelectionChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the currently selected item or items changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aca69c5e34cd5b4110a1814740b442cea"></a><!-- doxytag: member="CEGUI::Listbox::onSortModeChanged" ref="aca69c5e34cd5b4110a1814740b442cea" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aca69c5e34cd5b4110a1814740b442cea">onSortModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the sort mode setting changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0b56f57a0b9846b214f0d40486d77713"></a><!-- doxytag: member="CEGUI::Listbox::onMultiselectModeChanged" ref="a0b56f57a0b9846b214f0d40486d77713" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a0b56f57a0b9846b214f0d40486d77713">onMultiselectModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the multi-select mode setting changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a809aa41cbbae894ac0c4f377cdb4ca5b"></a><!-- doxytag: member="CEGUI::Listbox::onVertScrollbarModeChanged" ref="a809aa41cbbae894ac0c4f377cdb4ca5b" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a809aa41cbbae894ac0c4f377cdb4ca5b">onVertScrollbarModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the forced display of the vertical scroll bar setting changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa5b44de06458b8438af9d10b5cc4a74e"></a><!-- doxytag: member="CEGUI::Listbox::onHorzScrollbarModeChanged" ref="aa5b44de06458b8438af9d10b5cc4a74e" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aa5b44de06458b8438af9d10b5cc4a74e">onHorzScrollbarModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called internally when the forced display of the horizontal scroll bar setting 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_1Listbox.html#ac96223dd6d25af0e3c8d8ff2745e3d13">onSized</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 window's size changes. <a href="#ac96223dd6d25af0e3c8d8ff2745e3d13"></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_1Listbox.html#a28a206ab1bd912843155dfedc8af6f8f">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="#a28a206ab1bd912843155dfedc8af6f8f"></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_1Listbox.html#ace000a7ac20ef6333e8d4d585ed4d04f">onMouseWheel</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 wheel (z-axis) position changes within this window's area. <a href="#ace000a7ac20ef6333e8d4d585ed4d04f"></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_1Listbox.html#af00477dcc392f47d45ec8559f5911e51">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="#af00477dcc392f47d45ec8559f5911e51"></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="ab1d30d4731096d131cb6de25e38df5b3"></a><!-- doxytag: member="CEGUI::Listbox::d_sorted" ref="ab1d30d4731096d131cb6de25e38df5b3" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ab1d30d4731096d131cb6de25e38df5b3">d_sorted</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if list is sorted <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab3944cda62effe3149df982067650613"></a><!-- doxytag: member="CEGUI::Listbox::d_multiselect" ref="ab3944cda62effe3149df982067650613" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#ab3944cda62effe3149df982067650613">d_multiselect</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if multi-select is enabled <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af09c1a4cbcc69ad8fa87da93509d3630"></a><!-- doxytag: member="CEGUI::Listbox::d_forceVertScroll" ref="af09c1a4cbcc69ad8fa87da93509d3630" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#af09c1a4cbcc69ad8fa87da93509d3630">d_forceVertScroll</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if vertical scrollbar should always be displayed <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aadb6b273b2f99d26d1639dded99ede1a"></a><!-- doxytag: member="CEGUI::Listbox::d_forceHorzScroll" ref="aadb6b273b2f99d26d1639dded99ede1a" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#aadb6b273b2f99d26d1639dded99ede1a">d_forceHorzScroll</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if horizontal scrollbar should always be displayed <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5f1a29ca109ffc4d72a38d74182fd087"></a><!-- doxytag: member="CEGUI::Listbox::d_itemTooltips" ref="a5f1a29ca109ffc4d72a38d74182fd087" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a5f1a29ca109ffc4d72a38d74182fd087">d_itemTooltips</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if each item should have an individual tooltip <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a32c2142ea7b23c22f765b0bd48569981"></a><!-- doxytag: member="CEGUI::Listbox::d_listItems" ref="a32c2142ea7b23c22f765b0bd48569981" args="" -->
LBItemList </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#a32c2142ea7b23c22f765b0bd48569981">d_listItems</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">list of items in the list box. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb45ab75c5f301f61d0d45128c2d6e98"></a><!-- doxytag: member="CEGUI::Listbox::d_lastSelected" ref="abb45ab75c5f301f61d0d45128c2d6e98" args="" -->
<a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Listbox.html#abb45ab75c5f301f61d0d45128c2d6e98">d_lastSelected</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">holds pointer to the last selected item (used in range selections) <br/></td></tr>
<tr><td colspan="2"><h2><a name="friends"></a>
Friends</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ace277e6463fea54a9347ecc366a5e43f"></a><!-- doxytag: member="CEGUI::Listbox::ListboxWindowRenderer" ref="ace277e6463fea54a9347ecc366a5e43f" args="" -->
class </td><td class="memItemRight" valign="bottom"><b>ListboxWindowRenderer</b></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for standard <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> widget. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a86b3e614b9e70bb0e89c368ddbd17316"></a><!-- doxytag: member="CEGUI::Listbox::addItem" ref="a86b3e614b9e70bb0e89c368ddbd17316" args="(ListboxItem *item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::addItem </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Add the given <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to the list. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to be added to the list. Note that it is the passed object that is added to the list, a copy is not made. If this parameter is NULL, nothing happens.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a855f4d1bbe53cbab8ed95ab5b1312852"></a><!-- doxytag: member="CEGUI::Listbox::clearAllSelections" ref="a855f4d1bbe53cbab8ed95ab5b1312852" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::clearAllSelections </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Clear the selected state for all items. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ac9f702445fa0e838a3b94d3e2c54a41d"></a><!-- doxytag: member="CEGUI::Listbox::clearAllSelections_impl" ref="ac9f702445fa0e838a3b94d3e2c54a41d" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::clearAllSelections_impl </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Clear the selected state for all items (implementation) </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if some selections were cleared, false nothing was changed. </dd></dl>
</div>
</div>
<a class="anchor" id="a7bf07d3fb3d377e9cfdf7abccb0a7639"></a><!-- doxytag: member="CEGUI::Listbox::configureScrollbars" ref="a7bf07d3fb3d377e9cfdf7abccb0a7639" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::configureScrollbars </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing, in un-clipped pixels, the window relative area that is to be used for rendering list items. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing the area of the <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> to be used for rendering list box items.</dd></dl>
<p>display required integrated scroll bars according to current state of the list box and update their values. </p>
</div>
</div>
<a class="anchor" id="a138911afbeead634f3f5d6b7d376c809"></a><!-- doxytag: member="CEGUI::Listbox::ensureItemIsVisible" ref="a138911afbeead634f3f5d6b7d376c809" args="(size_t item_index)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::ensureItemIsVisible </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>item_index</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Ensure the item at the specified index is visible within the list box. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item_index</td><td>Zero based index of the item to be made visible in the list box. If this value is out of range, the list is always scrolled to the bottom.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a63d408d2bcbefda06fbc8b6ebbd9dca7"></a><!-- doxytag: member="CEGUI::Listbox::ensureItemIsVisible" ref="a63d408d2bcbefda06fbc8b6ebbd9dca7" args="(const ListboxItem *item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::ensureItemIsVisible </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Ensure the item at the specified index is visible within the list box. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to be made visible in the list box.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>item</em> is not attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8e543ad0432bbdda06781d82a70ac0f3"></a><!-- doxytag: member="CEGUI::Listbox::findItemWithText" ref="a8e543ad0432bbdda06781d82a70ac0f3" args="(const String &text, const ListboxItem *start_item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a>* CEGUI::Listbox::findItemWithText </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>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>start_item</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Search the list for an item with the specified text. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">text</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the text to be searched for.</td></tr>
<tr><td class="paramname">start_item</td><td><a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> where the search is to begin, the search will not include <em>item</em>. If <em>item</em> is NULL, the search will begin from the first item in the list.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the first <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> in the list after <em>item</em> that has text matching <em>text</em>. If no item matches the criteria NULL is returned.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>item</em> is not attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9622ad2ae98d3e58fac555d8fee17191"></a><!-- doxytag: member="CEGUI::Listbox::getFirstSelectedItem" ref="a9622ad2ae98d3e58fac555d8fee17191" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a>* CEGUI::Listbox::getFirstSelectedItem </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 first selected item. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> based object that is the first selected item in the list. will return NULL if no item is selected. </dd></dl>
</div>
</div>
<a class="anchor" id="ad2dae35017cb934b938facf39ea56b41"></a><!-- doxytag: member="CEGUI::Listbox::getHorzScrollbar" ref="ad2dae35017cb934b938facf39ea56b41" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a>* CEGUI::Listbox::getHorzScrollbar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the horizontal scrollbar component widget for this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the horizontal <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa94cde3135645116f321d232f3919fb4"></a><!-- doxytag: member="CEGUI::Listbox::getItemAtPoint" ref="aa94cde3135645116f321d232f3919fb4" args="(const Point &pt) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a>* CEGUI::Listbox::getItemAtPoint </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>pt</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> attached to this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> at the given screen pixel co-ordinate. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> attached to this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> that is at screen position <em>pt</em>, or 0 if no <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> attached to this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> is at that position. </dd></dl>
</div>
</div>
<a class="anchor" id="ac27fb510288515009d43ec7cfb42bfcf"></a><!-- doxytag: member="CEGUI::Listbox::getItemCount" ref="ac27fb510288515009d43ec7cfb42bfcf" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Listbox::getItemCount </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 number of items attached to the list box. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>the number of items currently attached to this list box. </dd></dl>
</div>
</div>
<a class="anchor" id="aaea9cf33ecf30eb1c3e2e8421748761e"></a><!-- doxytag: member="CEGUI::Listbox::getItemIndex" ref="aaea9cf33ecf30eb1c3e2e8421748761e" args="(const ListboxItem *item) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Listbox::getItemIndex </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the index of <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>item</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Pointer to a <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> whos zero based index is to be returned.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Zero based index indicating the position of <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>item</em> in the list box.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>item</em> is not attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7ff0dfdb9797c09d2b3803d0976672f2"></a><!-- doxytag: member="CEGUI::Listbox::getListboxItemFromIndex" ref="a7ff0dfdb9797c09d2b3803d0976672f2" args="(size_t index) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a>* CEGUI::Listbox::getListboxItemFromIndex </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the item at index position <em>index</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>Zero based index of the item to be returned.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> at index position <em>index</em> in the list box.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>index</em> is out of range. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab1b48abe760fd1bcf0269b79b2e99555"></a><!-- doxytag: member="CEGUI::Listbox::getListRenderArea" ref="ab1b48abe760fd1bcf0269b79b2e99555" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> CEGUI::Listbox::getListRenderArea </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 a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing, in un-clipped pixels, the window relative area that is to be used for rendering list items. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing the area of the <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> to be used for rendering list box items. </dd></dl>
</div>
</div>
<a class="anchor" id="a93ab5ca738ed2b94ac14e464a45a2e6a"></a><!-- doxytag: member="CEGUI::Listbox::getNextSelected" ref="a93ab5ca738ed2b94ac14e464a45a2e6a" args="(const ListboxItem *start_item) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a>* CEGUI::Listbox::getNextSelected </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>start_item</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the next selected item after item <em>start_item</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">start_item</td><td>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> where the search for the next selected item is to begin. If this parameter is NULL, the search will begin with the first item in the list box.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> based object that is the next selected item in the list after the item specified by <em>start_item</em>. Will return NULL if no further items were selected.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>start_item</em> is not attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afe5e12f55912979d9c563b6d1d5292ad"></a><!-- doxytag: member="CEGUI::Listbox::getSelectedCount" ref="afe5e12f55912979d9c563b6d1d5292ad" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Listbox::getSelectedCount </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 the number of selected items in the list box. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Total number of attached items that are in the selected state. </dd></dl>
</div>
</div>
<a class="anchor" id="aa8bdb140ffab153cb3506756f7ca2707"></a><!-- doxytag: member="CEGUI::Listbox::getVertScrollbar" ref="aa8bdb140ffab153cb3506756f7ca2707" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a>* CEGUI::Listbox::getVertScrollbar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the vertical scrollbar component widget for this <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the vertical <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8903860958694541f87997ce776d0eaa"></a><!-- doxytag: member="CEGUI::Listbox::handleUpdatedItemData" ref="a8903860958694541f87997ce776d0eaa" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::handleUpdatedItemData </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Causes the list box to update it's internal state after changes have been made to one or more attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> objects. </p>
<p>Client code must call this whenever it has made any changes to <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> objects already attached to the list box. If you are just adding items, or removed items to update them prior to re-adding them, there is no need to call this method.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a31a4dc42adca5d28af5f463c3a6efdda"></a><!-- doxytag: member="CEGUI::Listbox::initialiseComponents" ref="a31a4dc42adca5d28af5f463c3a6efdda" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Listbox::initialiseComponents </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Initialise the <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> based object ready for use. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This must be called for every window created. Normally this is handled automatically by the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> for each <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> type.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84">CEGUI::Window</a>.</p>
<p>Reimplemented in <a class="el" href="classCEGUI_1_1ComboDropList.html#aeb064f89fda76d6178a22135f20d6b68">CEGUI::ComboDropList</a>.</p>
</div>
</div>
<a class="anchor" id="a20611491f79faea7b40c72030e038d92"></a><!-- doxytag: member="CEGUI::Listbox::insertItem" ref="a20611491f79faea7b40c72030e038d92" args="(ListboxItem *item, const ListboxItem *position)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::insertItem </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>position</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Insert an item into the list box before a specified item already in the list. </p>
<p>Note that if the list is sorted, the item may not end up in the requested position.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to be inserted. Note that it is the passed object that is added to the list, a copy is not made. If this parameter is NULL, nothing happens.</td></tr>
<tr><td class="paramname">position</td><td>Pointer to a <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> that <em>item</em> is to be inserted before. If this parameter is NULL, the item is inserted at the start of the list.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if no <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>position</em> is attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afe2f4f39ffefe869f13c287c271b40bd"></a><!-- doxytag: member="CEGUI::Listbox::isHorzScrollbarAlwaysShown" ref="afe2f4f39ffefe869f13c287c271b40bd" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isHorzScrollbarAlwaysShown </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 whether the horizontal scroll bar is always shown. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scroll bar will always be shown even if it is not required.</li>
<li>false if the scroll bar will only be shown when it is required. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="ad0dddf7866aaf0ff6862315702fb859d"></a><!-- doxytag: member="CEGUI::Listbox::isItemSelected" ref="ad0dddf7866aaf0ff6862315702fb859d" args="(size_t index) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isItemSelected </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return whether the string at index position <em>index</em> is selected </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">index</td><td>Zero based index of the item to be examined.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the item at <em>index</em> is selected, false if the item at <em>index</em> is not selected.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>index</em> is out of range. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aac747ba199d28ffe28ac4227b30c099e"></a><!-- doxytag: member="CEGUI::Listbox::isListboxItemInList" ref="aac747ba199d28ffe28ac4227b30c099e" args="(const ListboxItem *item) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isListboxItemInList </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the specified <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> is in the List. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>item</em> is in the list, false if <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> <em>item</em> is not in the list. </dd></dl>
</div>
</div>
<a class="anchor" id="a0bd0e1f4dbf1b445b9fb8d0290ef5b1e"></a><!-- doxytag: member="CEGUI::Listbox::isMultiselectEnabled" ref="a0bd0e1f4dbf1b445b9fb8d0290ef5b1e" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isMultiselectEnabled </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 multi-select is enabled </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if multi-select is enabled, false if multi-select is not enabled. </dd></dl>
</div>
</div>
<a class="anchor" id="ac482b699cf93aed09b7dd6fe130aabeb"></a><!-- doxytag: member="CEGUI::Listbox::isSortEnabled" ref="ac482b699cf93aed09b7dd6fe130aabeb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isSortEnabled </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 list sorting is enabled </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the list is sorted, false if the list is not sorted </dd></dl>
</div>
</div>
<a class="anchor" id="a3570630d416062b28be786825c06e981"></a><!-- doxytag: member="CEGUI::Listbox::isVertScrollbarAlwaysShown" ref="a3570630d416062b28be786825c06e981" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::isVertScrollbarAlwaysShown </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 whether the vertical scroll bar is always shown. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scroll bar will always be shown even if it is not required.</li>
<li>false if the scroll bar will only be shown when it is required. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a28a206ab1bd912843155dfedc8af6f8f"></a><!-- doxytag: member="CEGUI::Listbox::onMouseButtonDown" ref="a28a206ab1bd912843155dfedc8af6f8f" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Listbox::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>
<p>Reimplemented in <a class="el" href="classCEGUI_1_1ComboDropList.html#aaee9645fb1c2dae229a472ea49520f05">CEGUI::ComboDropList</a>.</p>
</div>
</div>
<a class="anchor" id="af00477dcc392f47d45ec8559f5911e51"></a><!-- doxytag: member="CEGUI::Listbox::onMouseMove" ref="af00477dcc392f47d45ec8559f5911e51" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Listbox::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>
<p>Reimplemented in <a class="el" href="classCEGUI_1_1ComboDropList.html#a2748e7191189ad868d12f34ff517fbdb">CEGUI::ComboDropList</a>.</p>
</div>
</div>
<a class="anchor" id="ace000a7ac20ef6333e8d4d585ed4d04f"></a><!-- doxytag: member="CEGUI::Listbox::onMouseWheel" ref="ace000a7ac20ef6333e8d4d585ed4d04f" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Listbox::onMouseWheel </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 wheel (z-axis) position changes 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#a56aa0b4041705f88b3191c2d5adac79b">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ac96223dd6d25af0e3c8d8ff2745e3d13"></a><!-- doxytag: member="CEGUI::Listbox::onSized" ref="ac96223dd6d25af0e3c8d8ff2745e3d13" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Listbox::onSized </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 the window's size changes. </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#ac43cc38973c4e547ca8e481700da8178">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a4bf421907b4219fc77a3139da0694c92"></a><!-- doxytag: member="CEGUI::Listbox::removeItem" ref="a4bf421907b4219fc77a3139da0694c92" args="(const ListboxItem *item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::removeItem </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Removes the given item from the list box. If the item is has the auto delete state set, the item will be deleted. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Pointer to the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> that is to be removed. If <em>item</em> is not attached to this list box then nothing 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="a3f086468a0fe012ce5b2bba7b06bafa5"></a><!-- doxytag: member="CEGUI::Listbox::resetList" ref="a3f086468a0fe012ce5b2bba7b06bafa5" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::resetList </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove all items from the list. </p>
<p>Note that this will cause 'AutoDelete' items to be deleted. </p>
</div>
</div>
<a class="anchor" id="ab81a40b1c41433102b12de0600fc0567"></a><!-- doxytag: member="CEGUI::Listbox::resetList_impl" ref="ab81a40b1c41433102b12de0600fc0567" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Listbox::resetList_impl </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Remove all items from the list. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Note that this will cause 'AutoDelete' items to be deleted.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the list contents were changed.</li>
<li>false if the list contents were not changed (list already empty). </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a895946c8082b13c05a286ded90208591"></a><!-- doxytag: member="CEGUI::Listbox::setItemSelectState" ref="a895946c8082b13c05a286ded90208591" args="(size_t item_index, bool state)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setItemSelectState </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>item_index</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>state</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the select state of an attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>. </p>
<p>This is the recommended way of selecting and deselecting items attached to a list box as it respects the multi-select mode setting. It is possible to modify the setting on ListboxItems directly, but that approach does not respect the settings of the list box.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item_index</td><td>The zero based index of the <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to be affected. This must be a valid index (0 <= index < <a class="el" href="classCEGUI_1_1Listbox.html#ac27fb510288515009d43ec7cfb42bfcf" title="Return number of items attached to the list box.">getItemCount()</a>)</td></tr>
<tr><td class="paramname">state</td><td>true to select the item, false to de-select the item.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>item_index</em> is out of range for the list box </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a21ebdb1cfb45f1c12d913ce0173bc058"></a><!-- doxytag: member="CEGUI::Listbox::setItemSelectState" ref="a21ebdb1cfb45f1c12d913ce0173bc058" args="(ListboxItem *item, bool state)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setItemSelectState </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> * </td>
<td class="paramname"><em>item</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>state</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the select state of an attached <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a>. </p>
<p>This is the recommended way of selecting and deselecting items attached to a list box as it respects the multi-select mode setting. It is possible to modify the setting on ListboxItems directly, but that approach does not respect the settings of the list box.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>The <a class="el" href="classCEGUI_1_1ListboxItem.html" title="Base class for list box items.">ListboxItem</a> to be affected. This item must be attached to the list box.</td></tr>
<tr><td class="paramname">state</td><td>true to select the item, false to de-select the item.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1InvalidRequestException.html" title="Exception class used when some impossible request was made of the system.">InvalidRequestException</a></td><td>thrown if <em>item</em> is not attached to this list box. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aff52444a6878a69eb209cf6e9f80521b"></a><!-- doxytag: member="CEGUI::Listbox::setMultiselectEnabled" ref="aff52444a6878a69eb209cf6e9f80521b" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setMultiselectEnabled </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 list should allow multiple selections or just a single selection. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the widget should allow multiple items to be selected, false if the widget should only allow a single selection.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a1aad9c0cf940542fea921ba25620aee2"></a><!-- doxytag: member="CEGUI::Listbox::setShowHorzScrollbar" ref="a1aad9c0cf940542fea921ba25620aee2" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setShowHorzScrollbar </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 horizontal scroll bar should always be shown. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the horizontal scroll bar should be shown even when it is not required. false if the horizontal scroll bar should only be shown when it is required.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="aa28e1d66f95d88abffaece0226b7b2d3"></a><!-- doxytag: member="CEGUI::Listbox::setShowVertScrollbar" ref="aa28e1d66f95d88abffaece0226b7b2d3" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setShowVertScrollbar </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 vertical scroll bar should always be shown. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the vertical scroll bar should be shown even when it is not required. false if the vertical scroll bar should only be shown when it is required.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a84de1c2932171a099884d2e249d43bf2"></a><!-- doxytag: member="CEGUI::Listbox::setSortingEnabled" ref="a84de1c2932171a099884d2e249d43bf2" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Listbox::setSortingEnabled </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 list should be sorted. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the list should be sorted, false if the list should not be sorted.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a0038b304b9174e6f39aae7189707d40d"></a><!-- doxytag: member="CEGUI::Listbox::testClassName_impl" ref="a0038b304b9174e6f39aae7189707d40d" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Listbox::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>Reimplemented in <a class="el" href="classCEGUI_1_1ComboDropList.html#a8d4176e66c3a1f87cf95c85c4d162b7d">CEGUI::ComboDropList</a>.</p>
<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>
<p>Referenced by <a class="el" href="classCEGUI_1_1ComboDropList.html#a8d4176e66c3a1f87cf95c85c4d162b7d">CEGUI::ComboDropList::testClassName_impl()</a>.</p>
</div>
</div>
<a class="anchor" id="aa7c00b73d01592fc01b8a7fca9df4c56"></a><!-- doxytag: member="CEGUI::Listbox::validateWindowRenderer" ref="aa7c00b73d01592fc01b8a7fca9df4c56" args="(const String &name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Listbox::validateWindowRenderer </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Returns true if the given <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> class name is valid for this window. False if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a27804e1e76bbbf4af45dfb23c24afa1a">CEGUI::Window</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="abc2bd4a37317867eb6c2509e2695d116"></a><!-- doxytag: member="CEGUI::Listbox::EventHorzScrollbarModeChanged" ref="abc2bd4a37317867eb6c2509e2695d116" 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_1Listbox.html#abc2bd4a37317867eb6c2509e2695d116">CEGUI::Listbox::EventHorzScrollbarModeChanged</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 mode setting that forces the display of the horizontal scroll bar for the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> whose horizontal scrollbar mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a5637852660132d350794ff4b6732adab"></a><!-- doxytag: member="CEGUI::Listbox::EventListContentsChanged" ref="a5637852660132d350794ff4b6732adab" 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_1Listbox.html#a5637852660132d350794ff4b6732adab">CEGUI::Listbox::EventListContentsChanged</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 contents of the list is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> whose content is changed. </p>
</div>
</div>
<a class="anchor" id="aa5ca97065346dc98f56a35c0e390180a"></a><!-- doxytag: member="CEGUI::Listbox::EventMultiselectModeChanged" ref="aa5ca97065346dc98f56a35c0e390180a" 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_1Listbox.html#aa5ca97065346dc98f56a35c0e390180a">CEGUI::Listbox::EventMultiselectModeChanged</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 multi-select mode setting changes for the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> whose multi-select mode has been changed. </p>
</div>
</div>
<a class="anchor" id="afa8eb049e685967f9639ecd81c44bccb"></a><!-- doxytag: member="CEGUI::Listbox::EventSelectionChanged" ref="afa8eb049e685967f9639ecd81c44bccb" 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_1Listbox.html#afa8eb049e685967f9639ecd81c44bccb">CEGUI::Listbox::EventSelectionChanged</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 there is a change to the currently selected item(s) within the list. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the Litbox that has had a change in the selected items. </p>
</div>
</div>
<a class="anchor" id="af33bcee37ec79863bb3f818466bbcb33"></a><!-- doxytag: member="CEGUI::Listbox::EventSortModeChanged" ref="af33bcee37ec79863bb3f818466bbcb33" 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_1Listbox.html#af33bcee37ec79863bb3f818466bbcb33">CEGUI::Listbox::EventSortModeChanged</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 mode setting changes for the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a>. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> whose sort mode has been changed. </p>
</div>
</div>
<a class="anchor" id="ab6439b5d836b09c44ff941a15ee188b9"></a><!-- doxytag: member="CEGUI::Listbox::EventVertScrollbarModeChanged" ref="ab6439b5d836b09c44ff941a15ee188b9" 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_1Listbox.html#ab6439b5d836b09c44ff941a15ee188b9">CEGUI::Listbox::EventVertScrollbarModeChanged</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 mode setting that forces the display of the vertical scroll bar for the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1Listbox.html" title="Base class for standard Listbox widget.">Listbox</a> whose vertical scrollbar mode has been changed. </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>
|