1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
|
<!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::Combobox 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_1Combobox.html">Combobox</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-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::Combobox Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Combobox" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for the <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> widget.
<a href="classCEGUI_1_1Combobox.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::Combobox:</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_1Combobox__inherit__graph.gif" border="0" usemap="#CEGUI_1_1Combobox_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1Combobox_inherit__map" id="CEGUI_1_1Combobox_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="16,83,136,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="5,5,147,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::Combobox:</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_1Combobox__coll__graph.gif" border="0" usemap="#CEGUI_1_1Combobox_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Combobox_coll__map" id="CEGUI_1_1Combobox_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="105,81,225,111"/><area shape="rect" id="node5" href="classCEGUI_1_1ComboboxProperties_1_1EditSelectionLength.html" title="Property to access the current selection length." alt="" coords="7,135,324,164"/><area shape="rect" id="node7" href="classCEGUI_1_1ComboboxProperties_1_1ForceHorzScrollbar.html" title="Property to access the 'always show' setting for the horizontal scroll bar of the list box..." alt="" coords="8,188,323,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1Combobox-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">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a1100e6ef4c46c82f66ad0a4c671d0f85">isHit</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &position, const bool allow_disabled=false) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">check if the given pixel position would hit this window. <a href="#a1100e6ef4c46c82f66ad0a4c671d0f85"></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_1Combobox.html#a3c17c4b5cf094b9e872496ddbe6f35e8">getSingleClickEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">returns the mode of operation for the combo box. <a href="#a3c17c4b5cf094b9e872496ddbe6f35e8"></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_1Combobox.html#ac2d8cfee714798d2038d7ec96b4497fb">isDropDownListVisible</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">returns true if the drop down list is visible. <a href="#ac2d8cfee714798d2038d7ec96b4497fb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Editbox.html">Editbox</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#aca09192df5a50a842cec0b4f5ebd01f0">getEditbox</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. <a href="#aca09192df5a50a842cec0b4f5ebd01f0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#afc9ec76221dfa4210cbde0e807d714a1">getPushButton</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. <a href="#afc9ec76221dfa4210cbde0e807d714a1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ComboDropList.html">ComboDropList</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a61ce1aff59cd4d7fb490f746b19f409c">getDropList</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class...">ComboDropList</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. <a href="#a61ce1aff59cd4d7fb490f746b19f409c"></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_1Combobox.html#aec51287637e4b78d6175cdf3d5f6bd21">hasInputFocus</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> has input focus. <a href="#aec51287637e4b78d6175cdf3d5f6bd21"></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_1Combobox.html#afa56ea6a1ec223bc9d2287bdef724c30">isReadOnly</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read-only. <a href="#afa56ea6a1ec223bc9d2287bdef724c30"></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_1Combobox.html#ac5d7706ff29e44620bf4fdca11e036a2">isTextValid</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> text is valid given the currently set validation string. <a href="#ac5d7706ff29e44620bf4fdca11e036a2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a4d72ad3fc714a2cc839cbac9316778ed">getValidationString</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the currently set validation string <a href="#a4d72ad3fc714a2cc839cbac9316778ed"></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_1Combobox.html#a2896cc565a0ee87cc6069b991e7d2151">getCaratIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current position of the carat. <a href="#a2896cc565a0ee87cc6069b991e7d2151"></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_1Combobox.html#a1ace4876542cd33e1807e3a5602ec9f2">getSelectionStartIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current selection start point. <a href="#a1ace4876542cd33e1807e3a5602ec9f2"></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_1Combobox.html#a496350c871486024afb75efd4cfdc49d">getSelectionEndIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current selection end point. <a href="#a496350c871486024afb75efd4cfdc49d"></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_1Combobox.html#a788d4c94c03c544603f7353a29c4ddd9">getSelectionLength</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the length of the current selection (in code points / characters). <a href="#a788d4c94c03c544603f7353a29c4ddd9"></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_1Combobox.html#a1a2d88cee6f0ae1210b25d63e9524d33">getMaxTextLength</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the maximum text length set for this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <a href="#a1a2d88cee6f0ae1210b25d63e9524d33"></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_1Combobox.html#a8569912af3ffc0cc5ba4b7affc2d4055">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="#a8569912af3ffc0cc5ba4b7affc2d4055"></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_1Combobox.html#ab2c0270e3daab01f503f20a2309ccd29">getSelectedItem</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the currently selected item. <a href="#ab2c0270e3daab01f503f20a2309ccd29"></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_1Combobox.html#aab3852c46af7ed90702f6d7da33c16d3">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="#aab3852c46af7ed90702f6d7da33c16d3"></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_1Combobox.html#a10eb2859aa6ebf2f0d3603ab1be915bb">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="#a10eb2859aa6ebf2f0d3603ab1be915bb"></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_1Combobox.html#a5e91a8c7e54ef3ecc3fe289930258db9">isSortEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return whether list sorting is enabled <a href="#a5e91a8c7e54ef3ecc3fe289930258db9"></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_1Combobox.html#afa21cd8a30189c508b6a5a3f4bc949c6">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="#afa21cd8a30189c508b6a5a3f4bc949c6"></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_1Combobox.html#a80682670a224f4d627c1e7164b5d48ff">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="#a80682670a224f4d627c1e7164b5d48ff"></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_1Combobox.html#a59b486892db52d97c7dc35589fe30623">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="#a59b486892db52d97c7dc35589fe30623"></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_1Combobox.html#a14fbae197a6ade44f924fbf7c41a6835">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="#a14fbae197a6ade44f924fbf7c41a6835"></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_1Combobox.html#afdb27fcfb056f0be4e87b4b4e048b3e7">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="#afdb27fcfb056f0be4e87b4b4e048b3e7"></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_1Combobox.html#ac0c296a57b79f2b72c64a69743388197">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="#ac0c296a57b79f2b72c64a69743388197"></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_1Combobox.html#a4b53abcdc739308def2c553b61b47339">showDropList</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Show the drop-down list. <a href="#a4b53abcdc739308def2c553b61b47339"></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_1Combobox.html#a5993f43cf9d2a0f9ea7363cb12daa6d6">hideDropList</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Hide the drop-down list. <a href="#a5993f43cf9d2a0f9ea7363cb12daa6d6"></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_1Combobox.html#afad8071d72edec77e4638e5134a00734">setSingleClickEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the mode of operation for the combo box. <a href="#afad8071d72edec77e4638e5134a00734"></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_1Combobox.html#a511baf772bbec1c8e86e8ef6cd2634b5">setReadOnly</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Specify whether the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read-only. <a href="#a511baf772bbec1c8e86e8ef6cd2634b5"></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_1Combobox.html#a3b63d7604d52860b6fe206531690e113">setValidationString</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &validation_string)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the text validation string. <a href="#a3b63d7604d52860b6fe206531690e113"></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_1Combobox.html#a5ea050e4686b2a88f4d4c922b9293fd1">setCaratIndex</a> (size_t carat_pos)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current position of the carat. <a href="#a5ea050e4686b2a88f4d4c922b9293fd1"></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_1Combobox.html#afe39ed018ed9be0cac8d22e2ffef3b92">setSelection</a> (size_t start_pos, size_t end_pos)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Define the current selection for the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <a href="#afe39ed018ed9be0cac8d22e2ffef3b92"></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_1Combobox.html#af4eec54a32ae3ea7fce35351611614a0">setMaxTextLength</a> (size_t max_len)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the maximum text length for this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <a href="#af4eec54a32ae3ea7fce35351611614a0"></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_1Combobox.html#a323184b12d862309d74d2831b1406205">activateEditbox</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Activate the edit box component of the <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. <a href="#a323184b12d862309d74d2831b1406205"></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_1Combobox.html#a480cec372d5bcb7277a4906dfcf0facc">resetList</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Remove all items from the list. <a href="#a480cec372d5bcb7277a4906dfcf0facc"></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_1Combobox.html#a32c5abc1689ab2ad53752384602d9149">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="#a32c5abc1689ab2ad53752384602d9149"></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_1Combobox.html#a43b567472c79e1c7b155c3ef37c7f377">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 after a specified item already in the list. <a href="#a43b567472c79e1c7b155c3ef37c7f377"></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_1Combobox.html#a5aa4cf4f129d2f39ef077bf5ba1cfbb0">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. <a href="#a5aa4cf4f129d2f39ef077bf5ba1cfbb0"></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_1Combobox.html#af7ce52b969630083c070ff827b7683ca">clearAllSelections</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clear the selected state for all items. <a href="#af7ce52b969630083c070ff827b7683ca"></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_1Combobox.html#a7e4e9e3c3e32f79f05b0363831d6f30c">setSortingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the list should be sorted. <a href="#a7e4e9e3c3e32f79f05b0363831d6f30c"></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_1Combobox.html#a9008b0d3543e33b06dea01596aa4f68d">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="#a9008b0d3543e33b06dea01596aa4f68d"></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_1Combobox.html#a8dd82eee7df6f371bf45c5114a1382b0">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="#a8dd82eee7df6f371bf45c5114a1382b0"></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_1Combobox.html#a9cdc4ac06caa1201089b536112ddec59">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="#a9cdc4ac06caa1201089b536112ddec59"></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_1Combobox.html#af5b8c1ece0aa58a17db33162a476e52a">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="#af5b8c1ece0aa58a17db33162a476e52a"></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_1Combobox.html#a0556aa31c871dbc1f015e6c5afd6e392">handleUpdatedListItemData</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="#a0556aa31c871dbc1f015e6c5afd6e392"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a49371b2f1a7ff903a1be0994cb6a33d6"></a><!-- doxytag: member="CEGUI::Combobox::Combobox" ref="a49371b2f1a7ff903a1be0994cb6a33d6" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a49371b2f1a7ff903a1be0994cb6a33d6">Combobox</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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3e529c72fd245f5b109bcab10e7c69ca"></a><!-- doxytag: member="CEGUI::Combobox::~Combobox" ref="a3e529c72fd245f5b109bcab10e7c69ca" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a3e529c72fd245f5b109bcab10e7c69ca">~Combobox</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</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="a1fb465d4a32168e817ebf4bfb27ab1c2"></a><!-- doxytag: member="CEGUI::Combobox::EventNamespace" ref="a1fb465d4a32168e817ebf4bfb27ab1c2" 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_1Combobox.html#a1fb465d4a32168e817ebf4bfb27ab1c2">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="af6208df5573d15ca7d5af2c8aa5e39a9"></a><!-- doxytag: member="CEGUI::Combobox::WidgetTypeName" ref="af6208df5573d15ca7d5af2c8aa5e39a9" 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_1Combobox.html#af6208df5573d15ca7d5af2c8aa5e39a9">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_1Combobox.html#a351161b113fc678a4232c9747a8a587a">EventReadOnlyModeChanged</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_1Combobox.html#a0d959b71161d03fb6cb26589dba2a8b8">EventValidationStringChanged</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_1Combobox.html#a9209836dd4fb63fcfa86bc5c64dc078e">EventMaximumTextLengthChanged</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_1Combobox.html#af72387565ce9f6276cbbcf8d962106b3">EventTextInvalidated</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_1Combobox.html#a99280795f934747602c27a6eb445cdee">EventInvalidEntryAttempted</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_1Combobox.html#a10a7a7484dfe6dab758697676d7197a1">EventCaratMoved</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_1Combobox.html#aae338a9ae421d375b6fd97ad026a745c">EventTextSelectionChanged</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_1Combobox.html#a5e4dd3cfbb3afeedf3b05ce7487621de">EventEditboxFull</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_1Combobox.html#a99e7d242390f1af6a12d7aad7e8e7f0e">EventTextAccepted</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_1Combobox.html#ace951e54543d1627d475ebd91902eb79">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_1Combobox.html#a61cedef15a8ee63d967f1311b6518e0e">EventListSelectionChanged</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_1Combobox.html#a87379601847e0700cce3b263bb279402">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_1Combobox.html#a78e86683234b64a87298a92bf4b3aa9f">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_1Combobox.html#aec6701461f65a41f378e2627c1f06afb">EventHorzScrollbarModeChanged</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_1Combobox.html#a96912c1b157a41b66c9818c7a36e2828">EventDropListDisplayed</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_1Combobox.html#ad7c7dd6cbbbdcacfd09604a765ff6513">EventDropListRemoved</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_1Combobox.html#a6eecf5fa8aa1227f28695b3b7304ce58">EventListSelectionAccepted</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a960b969c4a8d1df2629bdfeac7b7d16e"></a><!-- doxytag: member="CEGUI::Combobox::EditboxNameSuffix" ref="a960b969c4a8d1df2629bdfeac7b7d16e" 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_1Combobox.html#a960b969c4a8d1df2629bdfeac7b7d16e">EditboxNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the editbox component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeeff0a334410cc54dbade762c39df333"></a><!-- doxytag: member="CEGUI::Combobox::DropListNameSuffix" ref="aeeff0a334410cc54dbade762c39df333" 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_1Combobox.html#aeeff0a334410cc54dbade762c39df333">DropListNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the drop list component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac8014c233d31f21f41ec1ab207d892f4"></a><!-- doxytag: member="CEGUI::Combobox::ButtonNameSuffix" ref="ac8014c233d31f21f41ec1ab207d892f4" 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_1Combobox.html#ac8014c233d31f21f41ec1ab207d892f4">ButtonNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the button component. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a91b22143d1ba4b9f142779f36b5dad01"></a><!-- doxytag: member="CEGUI::Combobox::button_PressHandler" ref="a91b22143d1ba4b9f142779f36b5dad01" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a91b22143d1ba4b9f142779f36b5dad01">button_PressHandler</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler function for button clicks. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab6ff18b7bb68e88b283b5536c54f39e9"></a><!-- doxytag: member="CEGUI::Combobox::droplist_SelectionAcceptedHandler" ref="ab6ff18b7bb68e88b283b5536c54f39e9" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#ab6ff18b7bb68e88b283b5536c54f39e9">droplist_SelectionAcceptedHandler</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler for selections made in the drop-list. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a65139877ca0ba5b97d8b0d1f2f5ac375"></a><!-- doxytag: member="CEGUI::Combobox::droplist_HiddenHandler" ref="a65139877ca0ba5b97d8b0d1f2f5ac375" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a65139877ca0ba5b97d8b0d1f2f5ac375">droplist_HiddenHandler</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler for when drop-list hides itself. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2a31f08eb3c5b06f7655e2a5a52bf700"></a><!-- doxytag: member="CEGUI::Combobox::editbox_MouseDownHandler" ref="a2a31f08eb3c5b06f7655e2a5a52bf700" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a2a31f08eb3c5b06f7655e2a5a52bf700">editbox_MouseDownHandler</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Mouse button down handler attached to edit box. <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_1Combobox.html#a0b27a7354d5c2463af4f2cacae88ac66">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="#a0b27a7354d5c2463af4f2cacae88ac66"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8a83a3951af60ed1cab3726947e6aba2"></a><!-- doxytag: member="CEGUI::Combobox::itemSelectChangeTextUpdate" ref="a8a83a3951af60ed1cab3726947e6aba2" args="(const ListboxItem *const item, bool new_state, bool old_state)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a8a83a3951af60ed1cab3726947e6aba2">itemSelectChangeTextUpdate</a> (const <a class="el" href="classCEGUI_1_1ListboxItem.html">ListboxItem</a> *const item, bool new_state, bool old_state)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Update the <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> text to reflect programmatically made changes to selected list item. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8bc769e5a1e9f187db0244c0ad599d6d"></a><!-- doxytag: member="CEGUI::Combobox::editbox_ReadOnlyChangedHandler" ref="a8bc769e5a1e9f187db0244c0ad599d6d" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_ReadOnlyChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a16bc587770af8a1dddb640241f87f921"></a><!-- doxytag: member="CEGUI::Combobox::editbox_ValidationStringChangedHandler" ref="a16bc587770af8a1dddb640241f87f921" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_ValidationStringChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad8cab8a922591ff65ea239634af0aa1b"></a><!-- doxytag: member="CEGUI::Combobox::editbox_MaximumTextLengthChangedHandler" ref="ad8cab8a922591ff65ea239634af0aa1b" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_MaximumTextLengthChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a26ab4ca813add00d2b9713445f89d1b6"></a><!-- doxytag: member="CEGUI::Combobox::editbox_TextInvalidatedEventHandler" ref="a26ab4ca813add00d2b9713445f89d1b6" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_TextInvalidatedEventHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aab831232b3ad0b0484bcea6d28f208ea"></a><!-- doxytag: member="CEGUI::Combobox::editbox_InvalidEntryAttemptedHandler" ref="aab831232b3ad0b0484bcea6d28f208ea" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_InvalidEntryAttemptedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a617d0806e731836f837c551a7183fc39"></a><!-- doxytag: member="CEGUI::Combobox::editbox_CaratMovedHandler" ref="a617d0806e731836f837c551a7183fc39" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_CaratMovedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8ef6c55d857945b72bc372b32bbe0427"></a><!-- doxytag: member="CEGUI::Combobox::editbox_TextSelectionChangedHandler" ref="a8ef6c55d857945b72bc372b32bbe0427" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_TextSelectionChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a06f0ea50ce5f69939bb4039037444559"></a><!-- doxytag: member="CEGUI::Combobox::editbox_EditboxFullEventHandler" ref="a06f0ea50ce5f69939bb4039037444559" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_EditboxFullEventHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a54c8c7b9dfaf2278af5d76ff02a8d900"></a><!-- doxytag: member="CEGUI::Combobox::editbox_TextAcceptedEventHandler" ref="a54c8c7b9dfaf2278af5d76ff02a8d900" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_TextAcceptedEventHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7c7191aa36a7f8c788dee18724a327e1"></a><!-- doxytag: member="CEGUI::Combobox::editbox_TextChangedEventHandler" ref="a7c7191aa36a7f8c788dee18724a327e1" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>editbox_TextChangedEventHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a490ff19e4c35e6b2530e5114688cd917"></a><!-- doxytag: member="CEGUI::Combobox::listbox_ListContentsChangedHandler" ref="a490ff19e4c35e6b2530e5114688cd917" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>listbox_ListContentsChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad5ae5c5be6d21637bcb04eff9b7e1aec"></a><!-- doxytag: member="CEGUI::Combobox::listbox_ListSelectionChangedHandler" ref="ad5ae5c5be6d21637bcb04eff9b7e1aec" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>listbox_ListSelectionChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a74a4394acfa1a98e62965b77de08c370"></a><!-- doxytag: member="CEGUI::Combobox::listbox_SortModeChangedHandler" ref="a74a4394acfa1a98e62965b77de08c370" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>listbox_SortModeChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6762bc710c1f0e2b3955973d045d87f1"></a><!-- doxytag: member="CEGUI::Combobox::listbox_VertScrollModeChangedHandler" ref="a6762bc710c1f0e2b3955973d045d87f1" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>listbox_VertScrollModeChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a960c17571d7f45776761b1c9e1c53d3e"></a><!-- doxytag: member="CEGUI::Combobox::listbox_HorzScrollModeChangedHandler" ref="a960c17571d7f45776761b1c9e1c53d3e" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><b>listbox_HorzScrollModeChangedHandler</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a577ca74bfe4c5bd18bea4974943e9dfa"></a><!-- doxytag: member="CEGUI::Combobox::onReadOnlyChanged" ref="a577ca74bfe4c5bd18bea4974943e9dfa" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a577ca74bfe4c5bd18bea4974943e9dfa">onReadOnlyChanged</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 read only state of the Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> has been changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a87ee8c10edf38da4dd885450d2b0f56a"></a><!-- doxytag: member="CEGUI::Combobox::onValidationStringChanged" ref="a87ee8c10edf38da4dd885450d2b0f56a" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a87ee8c10edf38da4dd885450d2b0f56a">onValidationStringChanged</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 Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> validation string has been changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac57a1d183accab9a4aba4943bc7a5ae6"></a><!-- doxytag: member="CEGUI::Combobox::onMaximumTextLengthChanged" ref="ac57a1d183accab9a4aba4943bc7a5ae6" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#ac57a1d183accab9a4aba4943bc7a5ae6">onMaximumTextLengthChanged</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 Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> maximum text length is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2a16049f02e7fcd8b1210930dc06a59e"></a><!-- doxytag: member="CEGUI::Combobox::onTextInvalidatedEvent" ref="a2a16049f02e7fcd8b1210930dc06a59e" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a2a16049f02e7fcd8b1210930dc06a59e">onTextInvalidatedEvent</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 Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> text has been invalidated. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a47b42197a51bd557af8fc276c2c8c576"></a><!-- doxytag: member="CEGUI::Combobox::onInvalidEntryAttempted" ref="a47b42197a51bd557af8fc276c2c8c576" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a47b42197a51bd557af8fc276c2c8c576">onInvalidEntryAttempted</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 an invalid entry was attempted in the Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab43042b62e42b1bb169d55482f72a803"></a><!-- doxytag: member="CEGUI::Combobox::onCaratMoved" ref="ab43042b62e42b1bb169d55482f72a803" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#ab43042b62e42b1bb169d55482f72a803">onCaratMoved</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 carat in the Comboxbox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> moves. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae9beb93dd757d3bafbb5c666a007d3a4"></a><!-- doxytag: member="CEGUI::Combobox::onTextSelectionChanged" ref="ae9beb93dd757d3bafbb5c666a007d3a4" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#ae9beb93dd757d3bafbb5c666a007d3a4">onTextSelectionChanged</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 selection within the Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a02c2c649b4b023173858d5cfbc6fc5d1"></a><!-- doxytag: member="CEGUI::Combobox::onEditboxFullEvent" ref="a02c2c649b4b023173858d5cfbc6fc5d1" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a02c2c649b4b023173858d5cfbc6fc5d1">onEditboxFullEvent</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 maximum length is reached for text in the Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeffb74e4ff290f2864db58a3fef3d036"></a><!-- doxytag: member="CEGUI::Combobox::onTextAcceptedEvent" ref="aeffb74e4ff290f2864db58a3fef3d036" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#aeffb74e4ff290f2864db58a3fef3d036">onTextAcceptedEvent</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 text in the Combobox's <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is accepted (by various means). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5722179de48302265fad2eea042821e3"></a><!-- doxytag: member="CEGUI::Combobox::onListContentsChanged" ref="a5722179de48302265fad2eea042821e3" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a5722179de48302265fad2eea042821e3">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 Combobox's Drop-down list contents are changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a571a6906dca30b31c205264a4ce703c1"></a><!-- doxytag: member="CEGUI::Combobox::onListSelectionChanged" ref="a571a6906dca30b31c205264a4ce703c1" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a571a6906dca30b31c205264a4ce703c1">onListSelectionChanged</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 selection within the Combobox's drop-down list changes (this is not the 'final' accepted selection, just the currently highlighted item). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0295aaa0ae650301b1d889f317b1f276"></a><!-- doxytag: member="CEGUI::Combobox::onSortModeChanged" ref="a0295aaa0ae650301b1d889f317b1f276" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a0295aaa0ae650301b1d889f317b1f276">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 fired internally when the sort mode for the Combobox's drop-down list is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adf458d4b941877124201c7c44dc73de7"></a><!-- doxytag: member="CEGUI::Combobox::onVertScrollbarModeChanged" ref="adf458d4b941877124201c7c44dc73de7" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#adf458d4b941877124201c7c44dc73de7">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 'force' setting for the vertical scrollbar within the Combobox's drop-down list is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4f64a0980b9ddcee60842eb2720f1f1b"></a><!-- doxytag: member="CEGUI::Combobox::onHorzScrollbarModeChanged" ref="a4f64a0980b9ddcee60842eb2720f1f1b" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a4f64a0980b9ddcee60842eb2720f1f1b">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 'force' setting for the horizontal scrollbar within the Combobox's drop-down list is changed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9107c44b76f1cd010f1ba3038fa8f9b0"></a><!-- doxytag: member="CEGUI::Combobox::onDropListDisplayed" ref="a9107c44b76f1cd010f1ba3038fa8f9b0" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a9107c44b76f1cd010f1ba3038fa8f9b0">onDropListDisplayed</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 Combobox's drop-down list has been displayed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6f31fb561afe2938a5975803a5e3e4f9"></a><!-- doxytag: member="CEGUI::Combobox::onDroplistRemoved" ref="a6f31fb561afe2938a5975803a5e3e4f9" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#a6f31fb561afe2938a5975803a5e3e4f9">onDroplistRemoved</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 Combobox's drop-down list has been hidden. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa5e166e9a17342bf72f9f7c1197a17b5"></a><!-- doxytag: member="CEGUI::Combobox::onListSelectionAccepted" ref="aa5e166e9a17342bf72f9f7c1197a17b5" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#aa5e166e9a17342bf72f9f7c1197a17b5">onListSelectionAccepted</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 user has confirmed a selection within the Combobox's drop-down list. <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_1Combobox.html#ab6081c97789ebf8da7a69146935f2708">onFontChanged</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 font is changed. <a href="#ab6081c97789ebf8da7a69146935f2708"></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_1Combobox.html#a8882d95ca5e4be574182ec6ae65c796c">onTextChanged</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 text is changed. <a href="#a8882d95ca5e4be574182ec6ae65c796c"></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_1Combobox.html#a90aff984df52346ac636d4bb5eea14e8">onActivated</a> (<a class="el" href="classCEGUI_1_1ActivationEventArgs.html">ActivationEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when this window has become the active window. <a href="#a90aff984df52346ac636d4bb5eea14e8"></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="af7608ab14727b9e2b6b5fbe540e25fc4"></a><!-- doxytag: member="CEGUI::Combobox::d_singleClickOperation" ref="af7608ab14727b9e2b6b5fbe540e25fc4" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Combobox.html#af7608ab14727b9e2b6b5fbe540e25fc4">d_singleClickOperation</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if user can show and select from list in a single click. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for the <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> widget. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a323184b12d862309d74d2831b1406205"></a><!-- doxytag: member="CEGUI::Combobox::activateEditbox" ref="a323184b12d862309d74d2831b1406205" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::activateEditbox </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Activate the edit box component of the <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a32c5abc1689ab2ad53752384602d9149"></a><!-- doxytag: member="CEGUI::Combobox::addItem" ref="a32c5abc1689ab2ad53752384602d9149" args="(ListboxItem *item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="af7ce52b969630083c070ff827b7683ca"></a><!-- doxytag: member="CEGUI::Combobox::clearAllSelections" ref="af7ce52b969630083c070ff827b7683ca" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="a80682670a224f4d627c1e7164b5d48ff"></a><!-- doxytag: member="CEGUI::Combobox::findItemWithText" ref="a80682670a224f4d627c1e7164b5d48ff" 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::Combobox::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="a2896cc565a0ee87cc6069b991e7d2151"></a><!-- doxytag: member="CEGUI::Combobox::getCaratIndex" ref="a2896cc565a0ee87cc6069b991e7d2151" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getCaratIndex </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 current position of the carat. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the insert carat relative to the start of the text. </dd></dl>
</div>
</div>
<a class="anchor" id="a61ce1aff59cd4d7fb490f746b19f409c"></a><!-- doxytag: member="CEGUI::Combobox::getDropList" ref="a61ce1aff59cd4d7fb490f746b19f409c" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ComboDropList.html">ComboDropList</a>* CEGUI::Combobox::getDropList </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class...">ComboDropList</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to an <a class="el" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class...">ComboDropList</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 <a class="el" href="classCEGUI_1_1ComboDropList.html" title="Base class for the combo box drop down list. This is a specialisation of the Listbox class...">ComboDropList</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aca09192df5a50a842cec0b4f5ebd01f0"></a><!-- doxytag: member="CEGUI::Combobox::getEditbox" ref="aca09192df5a50a842cec0b4f5ebd01f0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Editbox.html">Editbox</a>* CEGUI::Combobox::getEditbox </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to an <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</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 <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a8569912af3ffc0cc5ba4b7affc2d4055"></a><!-- doxytag: member="CEGUI::Combobox::getItemCount" ref="a8569912af3ffc0cc5ba4b7affc2d4055" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getItemCount </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 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="a10eb2859aa6ebf2f0d3603ab1be915bb"></a><!-- doxytag: member="CEGUI::Combobox::getItemIndex" ref="a10eb2859aa6ebf2f0d3603ab1be915bb" args="(const ListboxItem *item) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::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="aab3852c46af7ed90702f6d7da33c16d3"></a><!-- doxytag: member="CEGUI::Combobox::getListboxItemFromIndex" ref="aab3852c46af7ed90702f6d7da33c16d3" 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::Combobox::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="a1a2d88cee6f0ae1210b25d63e9524d33"></a><!-- doxytag: member="CEGUI::Combobox::getMaxTextLength" ref="a1a2d88cee6f0ae1210b25d63e9524d33" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getMaxTextLength </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 maximum text length set for this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The maximum number of code points (characters) that can be entered into this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>Depending on the validation string set, the actual length of text that can be entered may be less than the value returned here (it will never be more). </dd></dl>
</div>
</div>
<a class="anchor" id="afc9ec76221dfa4210cbde0e807d714a1"></a><!-- doxytag: member="CEGUI::Combobox::getPushButton" ref="afc9ec76221dfa4210cbde0e807d714a1" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1PushButton.html">PushButton</a>* CEGUI::Combobox::getPushButton </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component widget for this <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</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 <a class="el" href="classCEGUI_1_1PushButton.html" title="Base class to provide logic for push button type widgets.">PushButton</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ab2c0270e3daab01f503f20a2309ccd29"></a><!-- doxytag: member="CEGUI::Combobox::getSelectedItem" ref="ab2c0270e3daab01f503f20a2309ccd29" 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::Combobox::getSelectedItem </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 currently 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 selected item in the list. will return NULL if no item is selected. </dd></dl>
</div>
</div>
<a class="anchor" id="a496350c871486024afb75efd4cfdc49d"></a><!-- doxytag: member="CEGUI::Combobox::getSelectionEndIndex" ref="a496350c871486024afb75efd4cfdc49d" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getSelectionEndIndex </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 current selection end point. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the selection end point relative to the start of the text. If no selection is defined this function returns the position of the carat. </dd></dl>
</div>
</div>
<a class="anchor" id="a788d4c94c03c544603f7353a29c4ddd9"></a><!-- doxytag: member="CEGUI::Combobox::getSelectionLength" ref="a788d4c94c03c544603f7353a29c4ddd9" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getSelectionLength </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 length of the current selection (in code points / characters). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Number of code points (or characters) contained within the currently defined selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a1ace4876542cd33e1807e3a5602ec9f2"></a><!-- doxytag: member="CEGUI::Combobox::getSelectionStartIndex" ref="a1ace4876542cd33e1807e3a5602ec9f2" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::Combobox::getSelectionStartIndex </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 current selection start point. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the selection start point relative to the start of the text. If no selection is defined this function returns the position of the carat. </dd></dl>
</div>
</div>
<a class="anchor" id="a3c17c4b5cf094b9e872496ddbe6f35e8"></a><!-- doxytag: member="CEGUI::Combobox::getSingleClickEnabled" ref="a3c17c4b5cf094b9e872496ddbe6f35e8" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::getSingleClickEnabled </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>returns the mode of operation for the combo box. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the user can show the list and select an item with a single mouse click.</li>
<li>false if the user must click to show the list and then click again to select an item. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a4d72ad3fc714a2cc839cbac9316778ed"></a><!-- doxytag: member="CEGUI::Combobox::getValidationString" ref="a4d72ad3fc714a2cc839cbac9316778ed" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>& CEGUI::Combobox::getValidationString </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 currently set validation string </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed validation. If the text does not match with the regex then the text fails validation.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the current validation regex data </dd></dl>
</div>
</div>
<a class="anchor" id="a0556aa31c871dbc1f015e6c5afd6e392"></a><!-- doxytag: member="CEGUI::Combobox::handleUpdatedListItemData" ref="a0556aa31c871dbc1f015e6c5afd6e392" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::handleUpdatedListItemData </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="aec51287637e4b78d6175cdf3d5f6bd21"></a><!-- doxytag: member="CEGUI::Combobox::hasInputFocus" ref="aec51287637e4b78d6175cdf3d5f6bd21" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::hasInputFocus </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 true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> has input focus. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> has keyboard input focus, false if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> does not have keyboard input focus. </dd></dl>
</div>
</div>
<a class="anchor" id="a5993f43cf9d2a0f9ea7363cb12daa6d6"></a><!-- doxytag: member="CEGUI::Combobox::hideDropList" ref="a5993f43cf9d2a0f9ea7363cb12daa6d6" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::hideDropList </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Hide the drop-down list. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ac0c296a57b79f2b72c64a69743388197"></a><!-- doxytag: member="CEGUI::Combobox::initialiseComponents" ref="ac0c296a57b79f2b72c64a69743388197" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Combobox::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>
</div>
</div>
<a class="anchor" id="a43b567472c79e1c7b155c3ef37c7f377"></a><!-- doxytag: member="CEGUI::Combobox::insertItem" ref="a43b567472c79e1c7b155c3ef37c7f377" args="(ListboxItem *item, const ListboxItem *position)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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 after 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 after. 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>
</div>
</div>
<a class="anchor" id="ac2d8cfee714798d2038d7ec96b4497fb"></a><!-- doxytag: member="CEGUI::Combobox::isDropDownListVisible" ref="ac2d8cfee714798d2038d7ec96b4497fb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::isDropDownListVisible </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>returns true if the drop down list is visible. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the drop down list is visible, false otherwise. </dd></dl>
</div>
</div>
<a class="anchor" id="a1100e6ef4c46c82f66ad0a4c671d0f85"></a><!-- doxytag: member="CEGUI::Combobox::isHit" ref="a1100e6ef4c46c82f66ad0a4c671d0f85" args="(const Vector2 &position, const bool allow_disabled=false) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::isHit </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> & </td>
<td class="paramname"><em>position</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"><em>allow_disabled</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>check if the given pixel position would hit this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> object describing the position to check. The position describes a pixel offset from the top-left corner of the display.</td></tr>
<tr><td class="paramname">allow_disabled</td><td><ul>
<li>true specifies that the window may be 'hit' if it is disabled.</li>
<li>false specifies that the window may only be hit if it is enabled.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if <em>position</em> hits this <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>.</li>
<li>false if <em>position</em> does not hit this window. </li>
</ul>
</dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a0aa869aa8c3063281a66f364779c0333">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="afdb27fcfb056f0be4e87b4b4e048b3e7"></a><!-- doxytag: member="CEGUI::Combobox::isHorzScrollbarAlwaysShown" ref="afdb27fcfb056f0be4e87b4b4e048b3e7" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::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="afa21cd8a30189c508b6a5a3f4bc949c6"></a><!-- doxytag: member="CEGUI::Combobox::isItemSelected" ref="afa21cd8a30189c508b6a5a3f4bc949c6" args="(size_t index) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::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="a59b486892db52d97c7dc35589fe30623"></a><!-- doxytag: member="CEGUI::Combobox::isListboxItemInList" ref="a59b486892db52d97c7dc35589fe30623" args="(const ListboxItem *item) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::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="afa56ea6a1ec223bc9d2287bdef724c30"></a><!-- doxytag: member="CEGUI::Combobox::isReadOnly" ref="afa56ea6a1ec223bc9d2287bdef724c30" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::isReadOnly </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 true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read-only. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read only and can't be edited by the user, false if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is not read only and may be edited by the user. </dd></dl>
</div>
</div>
<a class="anchor" id="a5e91a8c7e54ef3ecc3fe289930258db9"></a><!-- doxytag: member="CEGUI::Combobox::isSortEnabled" ref="a5e91a8c7e54ef3ecc3fe289930258db9" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::isSortEnabled </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 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="ac5d7706ff29e44620bf4fdca11e036a2"></a><!-- doxytag: member="CEGUI::Combobox::isTextValid" ref="ac5d7706ff29e44620bf4fdca11e036a2" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::isTextValid </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 true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> text is valid given the currently set validation string. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>It is possible to programmatically set 'invalid' text for the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> by calling setText. This has certain implications since if invalid text is set, whatever the user types into the box will be rejected when the input is validated.</dd>
<dd>
Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed validation. If the text does not match with the regex then the text fails validation.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if the current <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> text passes validation, false if the text does not pass validation. </dd></dl>
</div>
</div>
<a class="anchor" id="a14fbae197a6ade44f924fbf7c41a6835"></a><!-- doxytag: member="CEGUI::Combobox::isVertScrollbarAlwaysShown" ref="a14fbae197a6ade44f924fbf7c41a6835" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Combobox::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="a90aff984df52346ac636d4bb5eea14e8"></a><!-- doxytag: member="CEGUI::Combobox::onActivated" ref="a90aff984df52346ac636d4bb5eea14e8" args="(ActivationEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Combobox::onActivated </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1ActivationEventArgs.html">ActivationEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when this window has become the active window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events.">ActivationEventArgs</a> class whose 'otherWindow' field is set to the window that previously was active, or NULL for none. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a26b98b08ce24fc7eea106d87d32c608e">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ab6081c97789ebf8da7a69146935f2708"></a><!-- doxytag: member="CEGUI::Combobox::onFontChanged" ref="ab6081c97789ebf8da7a69146935f2708" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Combobox::onFontChanged </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 font is changed. </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#a840ce2a9e31ebba8a27c94a089a0d7b8">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a8882d95ca5e4be574182ec6ae65c796c"></a><!-- doxytag: member="CEGUI::Combobox::onTextChanged" ref="a8882d95ca5e4be574182ec6ae65c796c" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Combobox::onTextChanged </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 text is changed. </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#a0733e77b1194b53838ed868c4cb7187c">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a5aa4cf4f129d2f39ef077bf5ba1cfbb0"></a><!-- doxytag: member="CEGUI::Combobox::removeItem" ref="a5aa4cf4f129d2f39ef077bf5ba1cfbb0" args="(const ListboxItem *item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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. </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="a480cec372d5bcb7277a4906dfcf0facc"></a><!-- doxytag: member="CEGUI::Combobox::resetList" ref="a480cec372d5bcb7277a4906dfcf0facc" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="a5ea050e4686b2a88f4d4c922b9293fd1"></a><!-- doxytag: member="CEGUI::Combobox::setCaratIndex" ref="a5ea050e4686b2a88f4d4c922b9293fd1" args="(size_t carat_pos)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setCaratIndex </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>carat_pos</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current position of the carat. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">carat_pos</td><td>New index for the insert carat relative to the start of the text. If the value specified is greater than the number of characters in the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>, the carat is positioned at the end of the text.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a9cdc4ac06caa1201089b536112ddec59"></a><!-- doxytag: member="CEGUI::Combobox::setItemSelectState" ref="a9cdc4ac06caa1201089b536112ddec59" args="(ListboxItem *item, bool state)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="af5b8c1ece0aa58a17db33162a476e52a"></a><!-- doxytag: member="CEGUI::Combobox::setItemSelectState" ref="af5b8c1ece0aa58a17db33162a476e52a" args="(size_t item_index, bool state)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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_1Combobox.html#a8569912af3ffc0cc5ba4b7affc2d4055" 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="af4eec54a32ae3ea7fce35351611614a0"></a><!-- doxytag: member="CEGUI::Combobox::setMaxTextLength" ref="af4eec54a32ae3ea7fce35351611614a0" args="(size_t max_len)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setMaxTextLength </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>max_len</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the maximum text length for this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">max_len</td><td>The maximum number of code points (characters) that can be entered into this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>Depending on the validation string set, the actual length of text that can be entered may be less than the value set here (it will never be more).</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a511baf772bbec1c8e86e8ef6cd2634b5"></a><!-- doxytag: member="CEGUI::Combobox::setReadOnly" ref="a511baf772bbec1c8e86e8ef6cd2634b5" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setReadOnly </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>Specify whether the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read-only. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td>true if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is read only and can't be edited by the user, false if the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a> is not read only and may be edited by the user.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="afe39ed018ed9be0cac8d22e2ffef3b92"></a><!-- doxytag: member="CEGUI::Combobox::setSelection" ref="afe39ed018ed9be0cac8d22e2ffef3b92" args="(size_t start_pos, size_t end_pos)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setSelection </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>start_pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>end_pos</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Define the current selection for the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">start_pos</td><td>Index of the starting point for the selection. If this value is greater than the number of characters in the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>, the selection start will be set to the end of the text.</td></tr>
<tr><td class="paramname">end_pos</td><td>Index of the ending point for the selection. If this value is greater than the number of characters in the <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>, the selection start will be set to the end of the text.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a8dd82eee7df6f371bf45c5114a1382b0"></a><!-- doxytag: member="CEGUI::Combobox::setShowHorzScrollbar" ref="a8dd82eee7df6f371bf45c5114a1382b0" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="a9008b0d3543e33b06dea01596aa4f68d"></a><!-- doxytag: member="CEGUI::Combobox::setShowVertScrollbar" ref="a9008b0d3543e33b06dea01596aa4f68d" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="afad8071d72edec77e4638e5134a00734"></a><!-- doxytag: member="CEGUI::Combobox::setSingleClickEnabled" ref="afad8071d72edec77e4638e5134a00734" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setSingleClickEnabled </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 the mode of operation for the combo box. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the user should be able to show the list and select an item with a single mouse click.</li>
<li>false if the user must click to show the list and then click again to select an item.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a7e4e9e3c3e32f79f05b0363831d6f30c"></a><!-- doxytag: member="CEGUI::Combobox::setSortingEnabled" ref="a7e4e9e3c3e32f79f05b0363831d6f30c" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::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="a3b63d7604d52860b6fe206531690e113"></a><!-- doxytag: member="CEGUI::Combobox::setValidationString" ref="a3b63d7604d52860b6fe206531690e113" args="(const String &validation_string)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::setValidationString </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>validation_string</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the text validation string. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Validation is performed by means of a regular expression. If the text matches the regex, the text is said to have passed validation. If the text does not match with the regex then the text fails validation.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">validation_string</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object containing the validation regex data to be used.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a4b53abcdc739308def2c553b61b47339"></a><!-- doxytag: member="CEGUI::Combobox::showDropList" ref="a4b53abcdc739308def2c553b61b47339" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Combobox::showDropList </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Show the drop-down list. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
</div>
</div>
<a class="anchor" id="a0b27a7354d5c2463af4f2cacae88ac66"></a><!-- doxytag: member="CEGUI::Combobox::testClassName_impl" ref="a0b27a7354d5c2463af4f2cacae88ac66" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Combobox::testClassName_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>class_name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>
<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a10a7a7484dfe6dab758697676d7197a1"></a><!-- doxytag: member="CEGUI::Combobox::EventCaratMoved" ref="a10a7a7484dfe6dab758697676d7197a1" 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_1Combobox.html#a10a7a7484dfe6dab758697676d7197a1">CEGUI::Combobox::EventCaratMoved</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 edit box text insertion position 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose caret position has been changed. </p>
</div>
</div>
<a class="anchor" id="a96912c1b157a41b66c9818c7a36e2828"></a><!-- doxytag: member="CEGUI::Combobox::EventDropListDisplayed" ref="a96912c1b157a41b66c9818c7a36e2828" 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_1Combobox.html#a96912c1b157a41b66c9818c7a36e2828">CEGUI::Combobox::EventDropListDisplayed</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 drop-down list is displayed 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose drop down list has been displayed. </p>
</div>
</div>
<a class="anchor" id="ad7c7dd6cbbbdcacfd09604a765ff6513"></a><!-- doxytag: member="CEGUI::Combobox::EventDropListRemoved" ref="ad7c7dd6cbbbdcacfd09604a765ff6513" 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_1Combobox.html#ad7c7dd6cbbbdcacfd09604a765ff6513">CEGUI::Combobox::EventDropListRemoved</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 drop-down list is removed / hidden. 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose drop down list has been hidden. </p>
</div>
</div>
<a class="anchor" id="a5e4dd3cfbb3afeedf3b05ce7487621de"></a><!-- doxytag: member="CEGUI::Combobox::EventEditboxFull" ref="a5e4dd3cfbb3afeedf3b05ce7487621de" 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_1Combobox.html#a5e4dd3cfbb3afeedf3b05ce7487621de">CEGUI::Combobox::EventEditboxFull</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 number of characters in the edit box has reached the currently set maximum. 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose edit box has become full. </p>
</div>
</div>
<a class="anchor" id="aec6701461f65a41f378e2627c1f06afb"></a><!-- doxytag: member="CEGUI::Combobox::EventHorzScrollbarModeChanged" ref="aec6701461f65a41f378e2627c1f06afb" 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_1Combobox.html#aec6701461f65a41f378e2627c1f06afb">CEGUI::Combobox::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 horizontal scroll bar 'force' setting for 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose horizontal scroll bar setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a99280795f934747602c27a6eb445cdee"></a><!-- doxytag: member="CEGUI::Combobox::EventInvalidEntryAttempted" ref="a99280795f934747602c27a6eb445cdee" 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_1Combobox.html#a99280795f934747602c27a6eb445cdee">CEGUI::Combobox::EventInvalidEntryAttempted</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the user attempts to modify the edit box text in a way that would make it invalid. 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> in which the user's input would have invalidated the text. </p>
</div>
</div>
<a class="anchor" id="ace951e54543d1627d475ebd91902eb79"></a><!-- doxytag: member="CEGUI::Combobox::EventListContentsChanged" ref="ace951e54543d1627d475ebd91902eb79" 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_1Combobox.html#ace951e54543d1627d475ebd91902eb79">CEGUI::Combobox::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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose list content has changed. </p>
</div>
</div>
<a class="anchor" id="a6eecf5fa8aa1227f28695b3b7304ce58"></a><!-- doxytag: member="CEGUI::Combobox::EventListSelectionAccepted" ref="a6eecf5fa8aa1227f28695b3b7304ce58" 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_1Combobox.html#a6eecf5fa8aa1227f28695b3b7304ce58">CEGUI::Combobox::EventListSelectionAccepted</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the user accepts a selection from the drop-down 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 <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> in which the user has confirmed a selection from the drop down list. </p>
</div>
</div>
<a class="anchor" id="a61cedef15a8ee63d967f1311b6518e0e"></a><!-- doxytag: member="CEGUI::Combobox::EventListSelectionChanged" ref="a61cedef15a8ee63d967f1311b6518e0e" 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_1Combobox.html#a61cedef15a8ee63d967f1311b6518e0e">CEGUI::Combobox::EventListSelectionChanged</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 in 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 <a class="el" href="classCEGUI_1_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose currently selected list item has changed. </p>
</div>
</div>
<a class="anchor" id="a9209836dd4fb63fcfa86bc5c64dc078e"></a><!-- doxytag: member="CEGUI::Combobox::EventMaximumTextLengthChanged" ref="a9209836dd4fb63fcfa86bc5c64dc078e" 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_1Combobox.html#a9209836dd4fb63fcfa86bc5c64dc078e">CEGUI::Combobox::EventMaximumTextLengthChanged</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 maximum string length 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose maximum edit box string length has been changed. </p>
</div>
</div>
<a class="anchor" id="a351161b113fc678a4232c9747a8a587a"></a><!-- doxytag: member="CEGUI::Combobox::EventReadOnlyModeChanged" ref="a351161b113fc678a4232c9747a8a587a" 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_1Combobox.html#a351161b113fc678a4232c9747a8a587a">CEGUI::Combobox::EventReadOnlyModeChanged</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 read-only mode for the edit box 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose read only mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a87379601847e0700cce3b263bb279402"></a><!-- doxytag: member="CEGUI::Combobox::EventSortModeChanged" ref="a87379601847e0700cce3b263bb279402" 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_1Combobox.html#a87379601847e0700cce3b263bb279402">CEGUI::Combobox::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 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose list sorting mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a99e7d242390f1af6a12d7aad7e8e7f0e"></a><!-- doxytag: member="CEGUI::Combobox::EventTextAccepted" ref="a99e7d242390f1af6a12d7aad7e8e7f0e" 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_1Combobox.html#a99e7d242390f1af6a12d7aad7e8e7f0e">CEGUI::Combobox::EventTextAccepted</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the user accepts the current edit box text by pressing Return, Enter, or Tab. 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose edit box text has been accepted / confirmed by the user. </p>
</div>
</div>
<a class="anchor" id="af72387565ce9f6276cbbcf8d962106b3"></a><!-- doxytag: member="CEGUI::Combobox::EventTextInvalidated" ref="af72387565ce9f6276cbbcf8d962106b3" 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_1Combobox.html#af72387565ce9f6276cbbcf8d962106b3">CEGUI::Combobox::EventTextInvalidated</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 an operation has made the current edit box text invalid as regards to the current validation string. 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose edit box text has become invalid. </p>
</div>
</div>
<a class="anchor" id="aae338a9ae421d375b6fd97ad026a745c"></a><!-- doxytag: member="CEGUI::Combobox::EventTextSelectionChanged" ref="aae338a9ae421d375b6fd97ad026a745c" 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_1Combobox.html#aae338a9ae421d375b6fd97ad026a745c">CEGUI::Combobox::EventTextSelectionChanged</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 current edit box text selection 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose edit box text selection has been changed. </p>
</div>
</div>
<a class="anchor" id="a0d959b71161d03fb6cb26589dba2a8b8"></a><!-- doxytag: member="CEGUI::Combobox::EventValidationStringChanged" ref="a0d959b71161d03fb6cb26589dba2a8b8" 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_1Combobox.html#a0d959b71161d03fb6cb26589dba2a8b8">CEGUI::Combobox::EventValidationStringChanged</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 edix box validation string 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose validation string was changed. </p>
</div>
</div>
<a class="anchor" id="a78e86683234b64a87298a92bf4b3aa9f"></a><!-- doxytag: member="CEGUI::Combobox::EventVertScrollbarModeChanged" ref="a78e86683234b64a87298a92bf4b3aa9f" 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_1Combobox.html#a78e86683234b64a87298a92bf4b3aa9f">CEGUI::Combobox::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 vertical scroll bar 'force' setting for 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_1Combobox.html" title="Base class for the Combobox widget.">Combobox</a> whose vertical scroll bar setting is 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>
|