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 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
|
<!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"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>wxWidgets: wxMenu Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
<tbody>
<tr>
<td id="projectlogo">
<a href="http://www.wxwidgets.org/" target="_new">
<img alt="wxWidgets" src="logo.png"/>
</a>
</td>
<td style="padding-left: 0.5em; text-align: right;">
<span id="projectnumber">Version: 3.0.2</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
<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="modules.html"><span>Categories</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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classwx_menu-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">wxMenu Class Reference<div class="ingroups"><a class="el" href="group__group__class__menus.html">Menus</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <wx/menu.h></code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for wxMenu:</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="classwx_menu__inherit__graph.png" border="0" usemap="#wx_menu_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_menu_inherit__map" id="wx_menu_inherit__map">
<area shape="rect" id="node2" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system." alt="" coords="47,83,145,111"/><area shape="rect" id="node4" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="5,6,80,34"/><area shape="rect" id="node6" href="classwx_trackable.html" title="Add-on base class for a trackable object." alt="" coords="104,6,197,34"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes away (clicking elsewhere dismisses the menu). </p>
<p>Menus may be used to construct either menu bars or popup menus.</p>
<p>A menu item has an integer ID associated with it which can be used to identify the selection, or to change the menu item in some way. A menu item with a special identifier <em>wxID_SEPARATOR</em> is a separator item and doesn't have an associated command but just makes a separator line appear in the menu.</p>
<dl class="section note"><dt>Note</dt><dd>Please note that <em>wxID_ABOUT</em> and <em>wxID_EXIT</em> are predefined by wxWidgets and have a special meaning since entries using these IDs will be taken out of the normal menus under OS X and will be inserted into the system menu (following the appropriate OS X interface guideline).</dd></dl>
<p>Menu items may be either <em>normal</em> items, <em>check</em> items or <em>radio</em> items. Normal items don't have any special properties while the check items have a boolean flag associated to them and they show a checkmark in the menu when the flag is set. wxWidgets automatically toggles the flag value when the item is clicked and its value may be retrieved using either <a class="el" href="classwx_menu.html#a088f0097e2077518e60200f80232e291" title="Determines whether a menu item is checked.">wxMenu::IsChecked</a> method of <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> or <a class="el" href="classwx_menu_bar.html" title="A menu bar is a series of menus accessible from the top of a frame.">wxMenuBar</a> itself or by using wxEvent::IsChecked when you get the menu notification for the item in question.</p>
<p>The radio items are similar to the check items except that all the other items in the same radio group are unchecked when a radio item is checked. The radio group is formed by a contiguous range of radio items, i.e. it starts at the first item of this kind and ends with the first item of a different kind (or the end of the menu). Notice that because the radio groups are defined in terms of the item positions inserting or removing the items in the menu containing the radio items risks to not work correctly.</p>
<h1><a class="anchor" id="menu_allocation"></a>
Allocation strategy</h1>
<p>All menus must be created on the <b>heap</b> because all menus attached to a menubar or to another menu will be deleted by their parent when it is deleted. The only exception to this rule are the popup menus (i.e. menus used with <a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df" title="Pops up the given menu at the specified coordinates, relative to this window, and returns control whe...">wxWindow::PopupMenu()</a>) as wxWidgets does not destroy them to allow reusing the same menu more than once. But the exception applies only to the menus themselves and not to any submenus of popup menus which are still destroyed by wxWidgets as usual and so must be heap-allocated.</p>
<p>As the frame menubar is deleted by the frame itself, it means that normally all menus used are deleted automatically.</p>
<h1><a class="anchor" id="menu_eventhandling"></a>
Event handling</h1>
<p>If the menu is part of a menubar, then <a class="el" href="classwx_menu_bar.html" title="A menu bar is a series of menus accessible from the top of a frame.">wxMenuBar</a> event processing is used.</p>
<p>With a popup menu (see <a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df" title="Pops up the given menu at the specified coordinates, relative to this window, and returns control whe...">wxWindow::PopupMenu</a>), there is a variety of ways to handle a menu selection event (<code>wxEVT_MENU</code>):</p>
<ul>
<li>Provide <code>EVT_MENU</code> handlers in the window which pops up the menu, or in an ancestor of that window (the simplest method);</li>
<li>Derive a new class from <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> and define event table entries using the <code>EVT_MENU</code> macro;</li>
<li>Set a new event handler for <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a>, through <a class="el" href="classwx_evt_handler.html#a68e2ef2d2b7d68c4c9c18ca92933031b" title="Sets the pointer to the next handler.">wxEvtHandler::SetNextHandler</a>, specifying an object whose class has <code>EVT_MENU</code> entries;</li>
</ul>
<p>Note that instead of static <code>EVT_MENU</code> macros you can also use dynamic connection; see <a class="el" href="overview_events.html#overview_events_bind">Dynamic Event Handling</a>.</p>
<h2></h2>
<div><span class="lib">Library:</span>  <span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxcore">wxCore</a></span></div><div><span class="category">Category:</span>  <span class="category_text"><a class="el" href="group__group__class__menus.html">Menus</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu_bar.html" title="A menu bar is a series of menus accessible from the top of a frame.">wxMenuBar</a>, <a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df" title="Pops up the given menu at the specified coordinates, relative to this window, and returns control whe...">wxWindow::PopupMenu</a>, <a class="el" href="overview_events.html">Events and Event Handling</a>, <a class="el" href="classwx_file_history.html">wxFileHistory (most recently used files menu)</a> </dd></dl>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:af8b5588bdd1ef7c94ac542adf91915ed"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#af8b5588bdd1ef7c94ac542adf91915ed">wxMenu</a> ()</td></tr>
<tr class="memdesc:af8b5588bdd1ef7c94ac542adf91915ed"><td class="mdescLeft"> </td><td class="mdescRight">Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object. <a href="#af8b5588bdd1ef7c94ac542adf91915ed"></a><br/></td></tr>
<tr class="separator:af8b5588bdd1ef7c94ac542adf91915ed"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a462f0ad758ef3d32b8a6a2a1d9c5c43f"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a462f0ad758ef3d32b8a6a2a1d9c5c43f">wxMenu</a> (long style)</td></tr>
<tr class="memdesc:a462f0ad758ef3d32b8a6a2a1d9c5c43f"><td class="mdescLeft"> </td><td class="mdescRight">Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object. <a href="#a462f0ad758ef3d32b8a6a2a1d9c5c43f"></a><br/></td></tr>
<tr class="separator:a462f0ad758ef3d32b8a6a2a1d9c5c43f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a6afd553257ebd8040305f21ec6094e"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a9a6afd553257ebd8040305f21ec6094e">wxMenu</a> (const <a class="el" href="classwx_string.html">wxString</a> &title, long style=0)</td></tr>
<tr class="memdesc:a9a6afd553257ebd8040305f21ec6094e"><td class="mdescLeft"> </td><td class="mdescRight">Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object with a title. <a href="#a9a6afd553257ebd8040305f21ec6094e"></a><br/></td></tr>
<tr class="separator:a9a6afd553257ebd8040305f21ec6094e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae41b3780cb9e0966fbfb4d67438be78"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aae41b3780cb9e0966fbfb4d67438be78">~wxMenu</a> ()</td></tr>
<tr class="memdesc:aae41b3780cb9e0966fbfb4d67438be78"><td class="mdescLeft"> </td><td class="mdescRight">Destructor, destroying the menu. <a href="#aae41b3780cb9e0966fbfb4d67438be78"></a><br/></td></tr>
<tr class="separator:aae41b3780cb9e0966fbfb4d67438be78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab8b9fe9baabeb67cf3eaa70df072f7c9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9">Append</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>)</td></tr>
<tr class="memdesc:ab8b9fe9baabeb67cf3eaa70df072f7c9"><td class="mdescLeft"> </td><td class="mdescRight">Adds a menu item. <a href="#ab8b9fe9baabeb67cf3eaa70df072f7c9"></a><br/></td></tr>
<tr class="separator:ab8b9fe9baabeb67cf3eaa70df072f7c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8e321445e4f0449fc7e1e9db2d191c56"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a8e321445e4f0449fc7e1e9db2d191c56">Append</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item, <a class="el" href="classwx_menu.html">wxMenu</a> *subMenu, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a8e321445e4f0449fc7e1e9db2d191c56"><td class="mdescLeft"> </td><td class="mdescRight">Adds a submenu. <a href="#a8e321445e4f0449fc7e1e9db2d191c56"></a><br/></td></tr>
<tr class="separator:a8e321445e4f0449fc7e1e9db2d191c56"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72f5110d10ac1b3253e651cc9baa02da"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a72f5110d10ac1b3253e651cc9baa02da">Append</a> (<a class="el" href="classwx_menu_item.html">wxMenuItem</a> *menuItem)</td></tr>
<tr class="memdesc:a72f5110d10ac1b3253e651cc9baa02da"><td class="mdescLeft"> </td><td class="mdescRight">Adds a menu item object. <a href="#a72f5110d10ac1b3253e651cc9baa02da"></a><br/></td></tr>
<tr class="separator:a72f5110d10ac1b3253e651cc9baa02da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e2986e5c03907990504337493221baf"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf">AppendCheckItem</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &help=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a0e2986e5c03907990504337493221baf"><td class="mdescLeft"> </td><td class="mdescRight">Adds a checkable item to the end of the menu. <a href="#a0e2986e5c03907990504337493221baf"></a><br/></td></tr>
<tr class="separator:a0e2986e5c03907990504337493221baf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3ec8da997f0969d6df4f2394af6a9580"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580">AppendRadioItem</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &help=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a3ec8da997f0969d6df4f2394af6a9580"><td class="mdescLeft"> </td><td class="mdescRight">Adds a radio item to the end of the menu. <a href="#a3ec8da997f0969d6df4f2394af6a9580"></a><br/></td></tr>
<tr class="separator:a3ec8da997f0969d6df4f2394af6a9580"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac4027fc18854f535171ea32f416fc667"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667">AppendSeparator</a> ()</td></tr>
<tr class="memdesc:ac4027fc18854f535171ea32f416fc667"><td class="mdescLeft"> </td><td class="mdescRight">Adds a separator to the end of the menu. <a href="#ac4027fc18854f535171ea32f416fc667"></a><br/></td></tr>
<tr class="separator:ac4027fc18854f535171ea32f416fc667"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e5821042919502670e8fdab77a5f7a8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8">AppendSubMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *submenu, const <a class="el" href="classwx_string.html">wxString</a> &text, const <a class="el" href="classwx_string.html">wxString</a> &help=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a6e5821042919502670e8fdab77a5f7a8"><td class="mdescLeft"> </td><td class="mdescRight">Adds the given <em>submenu</em> to this menu. <a href="#a6e5821042919502670e8fdab77a5f7a8"></a><br/></td></tr>
<tr class="separator:a6e5821042919502670e8fdab77a5f7a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3728d2f96ee825b042e0b6d0e08d21d3"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a3728d2f96ee825b042e0b6d0e08d21d3">Break</a> ()</td></tr>
<tr class="memdesc:a3728d2f96ee825b042e0b6d0e08d21d3"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a break in a menu, causing the next appended item to appear in a new column. <a href="#a3728d2f96ee825b042e0b6d0e08d21d3"></a><br/></td></tr>
<tr class="separator:a3728d2f96ee825b042e0b6d0e08d21d3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a5a76d1ee332a40919941870529b49f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a3a5a76d1ee332a40919941870529b49f">Check</a> (int id, bool check)</td></tr>
<tr class="memdesc:a3a5a76d1ee332a40919941870529b49f"><td class="mdescLeft"> </td><td class="mdescRight">Checks or unchecks the menu item. <a href="#a3a5a76d1ee332a40919941870529b49f"></a><br/></td></tr>
<tr class="separator:a3a5a76d1ee332a40919941870529b49f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0478a386aa0f55b568686fc8837d00e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ad0478a386aa0f55b568686fc8837d00e">Delete</a> (int id)</td></tr>
<tr class="memdesc:ad0478a386aa0f55b568686fc8837d00e"><td class="mdescLeft"> </td><td class="mdescRight">Deletes the menu item from the menu. <a href="#ad0478a386aa0f55b568686fc8837d00e"></a><br/></td></tr>
<tr class="separator:ad0478a386aa0f55b568686fc8837d00e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8d88695161c09b8a43d2b1cf98defd85"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a8d88695161c09b8a43d2b1cf98defd85">Delete</a> (<a class="el" href="classwx_menu_item.html">wxMenuItem</a> *item)</td></tr>
<tr class="memdesc:a8d88695161c09b8a43d2b1cf98defd85"><td class="mdescLeft"> </td><td class="mdescRight">Deletes the menu item from the menu. <a href="#a8d88695161c09b8a43d2b1cf98defd85"></a><br/></td></tr>
<tr class="separator:a8d88695161c09b8a43d2b1cf98defd85"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab30d479e9c8651d64b7c8fc30701aa8d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ab30d479e9c8651d64b7c8fc30701aa8d">Destroy</a> (int id)</td></tr>
<tr class="memdesc:ab30d479e9c8651d64b7c8fc30701aa8d"><td class="mdescLeft"> </td><td class="mdescRight">Deletes the menu item from the menu. <a href="#ab30d479e9c8651d64b7c8fc30701aa8d"></a><br/></td></tr>
<tr class="separator:ab30d479e9c8651d64b7c8fc30701aa8d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72bf5c0fa9af6227245930a06afdc19b"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a72bf5c0fa9af6227245930a06afdc19b">Destroy</a> (<a class="el" href="classwx_menu_item.html">wxMenuItem</a> *item)</td></tr>
<tr class="memdesc:a72bf5c0fa9af6227245930a06afdc19b"><td class="mdescLeft"> </td><td class="mdescRight">Deletes the menu item from the menu. <a href="#a72bf5c0fa9af6227245930a06afdc19b"></a><br/></td></tr>
<tr class="separator:a72bf5c0fa9af6227245930a06afdc19b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2a468532c454371d556d61efca7c002"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae2a468532c454371d556d61efca7c002">Enable</a> (int id, bool enable)</td></tr>
<tr class="memdesc:ae2a468532c454371d556d61efca7c002"><td class="mdescLeft"> </td><td class="mdescRight">Enables or disables (greys out) a menu item. <a href="#ae2a468532c454371d556d61efca7c002"></a><br/></td></tr>
<tr class="separator:ae2a468532c454371d556d61efca7c002"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b881350060c42800192cf21cbf5a306"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a6b881350060c42800192cf21cbf5a306">FindChildItem</a> (int id, size_t *pos=NULL) const </td></tr>
<tr class="memdesc:a6b881350060c42800192cf21cbf5a306"><td class="mdescLeft"> </td><td class="mdescRight">Finds the menu item object associated with the given menu item identifier and, optionally, the position of the item in the menu. <a href="#a6b881350060c42800192cf21cbf5a306"></a><br/></td></tr>
<tr class="separator:a6b881350060c42800192cf21cbf5a306"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99e2de0d3f273049de7413f09f289311"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311">FindItem</a> (const <a class="el" href="classwx_string.html">wxString</a> &itemString) const </td></tr>
<tr class="memdesc:a99e2de0d3f273049de7413f09f289311"><td class="mdescLeft"> </td><td class="mdescRight">Finds the menu id for a menu item string. <a href="#a99e2de0d3f273049de7413f09f289311"></a><br/></td></tr>
<tr class="separator:a99e2de0d3f273049de7413f09f289311"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8844fd2df14981d8699792c3a405806"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae8844fd2df14981d8699792c3a405806">FindItem</a> (int id, <a class="el" href="classwx_menu.html">wxMenu</a> **menu=NULL) const </td></tr>
<tr class="memdesc:ae8844fd2df14981d8699792c3a405806"><td class="mdescLeft"> </td><td class="mdescRight">Finds the menu item object associated with the given menu item identifier and, optionally, the (sub)menu it belongs to. <a href="#ae8844fd2df14981d8699792c3a405806"></a><br/></td></tr>
<tr class="separator:ae8844fd2df14981d8699792c3a405806"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9f61cb5c2b0340ddefb2951aeb5220d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aa9f61cb5c2b0340ddefb2951aeb5220d">FindItemByPosition</a> (size_t position) const </td></tr>
<tr class="memdesc:aa9f61cb5c2b0340ddefb2951aeb5220d"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> given a position in the menu. <a href="#aa9f61cb5c2b0340ddefb2951aeb5220d"></a><br/></td></tr>
<tr class="separator:aa9f61cb5c2b0340ddefb2951aeb5220d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a45ae0ae8a1ceed683cbdb0e311989316"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a45ae0ae8a1ceed683cbdb0e311989316">GetHelpString</a> (int id) const </td></tr>
<tr class="memdesc:a45ae0ae8a1ceed683cbdb0e311989316"><td class="mdescLeft"> </td><td class="mdescRight">Returns the help string associated with a menu item. <a href="#a45ae0ae8a1ceed683cbdb0e311989316"></a><br/></td></tr>
<tr class="separator:a45ae0ae8a1ceed683cbdb0e311989316"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae912f9dec96a0bd585fe562938447d7d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae912f9dec96a0bd585fe562938447d7d">GetLabel</a> (int id) const </td></tr>
<tr class="memdesc:ae912f9dec96a0bd585fe562938447d7d"><td class="mdescLeft"> </td><td class="mdescRight">Returns a menu item label. <a href="#ae912f9dec96a0bd585fe562938447d7d"></a><br/></td></tr>
<tr class="separator:ae912f9dec96a0bd585fe562938447d7d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e7e80816f09526dc2e0a5982b597fb5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a4e7e80816f09526dc2e0a5982b597fb5">GetLabelText</a> (int id) const </td></tr>
<tr class="memdesc:a4e7e80816f09526dc2e0a5982b597fb5"><td class="mdescLeft"> </td><td class="mdescRight">Returns a menu item label, without any of the original mnemonics and accelerators. <a href="#a4e7e80816f09526dc2e0a5982b597fb5"></a><br/></td></tr>
<tr class="separator:a4e7e80816f09526dc2e0a5982b597fb5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8679baecdcb22c6a38fd1ed9f4e8b00a"><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a8679baecdcb22c6a38fd1ed9f4e8b00a">GetMenuItemCount</a> () const </td></tr>
<tr class="memdesc:a8679baecdcb22c6a38fd1ed9f4e8b00a"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of items in the menu. <a href="#a8679baecdcb22c6a38fd1ed9f4e8b00a"></a><br/></td></tr>
<tr class="separator:a8679baecdcb22c6a38fd1ed9f4e8b00a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4350ea455980ea08d4d3104f69ef4bcb"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_string.html">wxString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a4350ea455980ea08d4d3104f69ef4bcb">GetTitle</a> () const </td></tr>
<tr class="memdesc:a4350ea455980ea08d4d3104f69ef4bcb"><td class="mdescLeft"> </td><td class="mdescRight">Returns the title of the menu. <a href="#a4350ea455980ea08d4d3104f69ef4bcb"></a><br/></td></tr>
<tr class="separator:a4350ea455980ea08d4d3104f69ef4bcb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec84d928bf461c59739e0e4fc7a27bbe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe">Insert</a> (size_t pos, <a class="el" href="classwx_menu_item.html">wxMenuItem</a> *menuItem)</td></tr>
<tr class="memdesc:aec84d928bf461c59739e0e4fc7a27bbe"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>item</em> before the position <em>pos</em>. <a href="#aec84d928bf461c59739e0e4fc7a27bbe"></a><br/></td></tr>
<tr class="separator:aec84d928bf461c59739e0e4fc7a27bbe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8dc1329976f47eeb01449854de0fa64"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae8dc1329976f47eeb01449854de0fa64">Insert</a> (size_t pos, int id, const <a class="el" href="classwx_string.html">wxString</a> &item=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>)</td></tr>
<tr class="memdesc:ae8dc1329976f47eeb01449854de0fa64"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>item</em> before the position <em>pos</em>. <a href="#ae8dc1329976f47eeb01449854de0fa64"></a><br/></td></tr>
<tr class="separator:ae8dc1329976f47eeb01449854de0fa64"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2209e386b86509773e29bd879a59274"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#af2209e386b86509773e29bd879a59274">Insert</a> (size_t pos, int id, const <a class="el" href="classwx_string.html">wxString</a> &text, <a class="el" href="classwx_menu.html">wxMenu</a> *submenu, const <a class="el" href="classwx_string.html">wxString</a> &help=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:af2209e386b86509773e29bd879a59274"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>submenu</em> before the position <em>pos</em>. <a href="#af2209e386b86509773e29bd879a59274"></a><br/></td></tr>
<tr class="separator:af2209e386b86509773e29bd879a59274"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f1f3c5b9c349381cf89169c74251461"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a0f1f3c5b9c349381cf89169c74251461">InsertCheckItem</a> (size_t pos, int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a0f1f3c5b9c349381cf89169c74251461"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a checkable item at the given position. <a href="#a0f1f3c5b9c349381cf89169c74251461"></a><br/></td></tr>
<tr class="separator:a0f1f3c5b9c349381cf89169c74251461"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1016a10b8df49297cf4ccc970d5106aa"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a1016a10b8df49297cf4ccc970d5106aa">InsertRadioItem</a> (size_t pos, int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a1016a10b8df49297cf4ccc970d5106aa"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a radio item at the given position. <a href="#a1016a10b8df49297cf4ccc970d5106aa"></a><br/></td></tr>
<tr class="separator:a1016a10b8df49297cf4ccc970d5106aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77b3060d593f1f971edb5a321c5bd9bf"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a77b3060d593f1f971edb5a321c5bd9bf">InsertSeparator</a> (size_t pos)</td></tr>
<tr class="memdesc:a77b3060d593f1f971edb5a321c5bd9bf"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a separator at the given position. <a href="#a77b3060d593f1f971edb5a321c5bd9bf"></a><br/></td></tr>
<tr class="separator:a77b3060d593f1f971edb5a321c5bd9bf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a088f0097e2077518e60200f80232e291"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a088f0097e2077518e60200f80232e291">IsChecked</a> (int id) const </td></tr>
<tr class="memdesc:a088f0097e2077518e60200f80232e291"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether a menu item is checked. <a href="#a088f0097e2077518e60200f80232e291"></a><br/></td></tr>
<tr class="separator:a088f0097e2077518e60200f80232e291"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a89a50690ce163d6190c7f5612e4150"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a1a89a50690ce163d6190c7f5612e4150">IsEnabled</a> (int id) const </td></tr>
<tr class="memdesc:a1a89a50690ce163d6190c7f5612e4150"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether a menu item is enabled. <a href="#a1a89a50690ce163d6190c7f5612e4150"></a><br/></td></tr>
<tr class="separator:a1a89a50690ce163d6190c7f5612e4150"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a90dcfb20e389dc012bdf16c6ffefcfc9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9">Prepend</a> (<a class="el" href="classwx_menu_item.html">wxMenuItem</a> *item)</td></tr>
<tr class="memdesc:a90dcfb20e389dc012bdf16c6ffefcfc9"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>item</em> at position 0, i.e. before all the other existing items. <a href="#a90dcfb20e389dc012bdf16c6ffefcfc9"></a><br/></td></tr>
<tr class="separator:a90dcfb20e389dc012bdf16c6ffefcfc9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae471a4163a4e7728b9606401fb83ca30"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae471a4163a4e7728b9606401fb83ca30">Prepend</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>)</td></tr>
<tr class="memdesc:ae471a4163a4e7728b9606401fb83ca30"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>item</em> at position 0, i.e. before all the other existing items. <a href="#ae471a4163a4e7728b9606401fb83ca30"></a><br/></td></tr>
<tr class="separator:ae471a4163a4e7728b9606401fb83ca30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61eef50fa2312eaf24ad5c6fbc2b3bf2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a61eef50fa2312eaf24ad5c6fbc2b3bf2">Prepend</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &text, <a class="el" href="classwx_menu.html">wxMenu</a> *submenu, const <a class="el" href="classwx_string.html">wxString</a> &help=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a61eef50fa2312eaf24ad5c6fbc2b3bf2"><td class="mdescLeft"> </td><td class="mdescRight">Inserts the given <em>submenu</em> at position 0. <a href="#a61eef50fa2312eaf24ad5c6fbc2b3bf2"></a><br/></td></tr>
<tr class="separator:a61eef50fa2312eaf24ad5c6fbc2b3bf2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78e1f3d62ab06ceab597a9ce9417aaad"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a78e1f3d62ab06ceab597a9ce9417aaad">PrependCheckItem</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a78e1f3d62ab06ceab597a9ce9417aaad"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a checkable item at position 0. <a href="#a78e1f3d62ab06ceab597a9ce9417aaad"></a><br/></td></tr>
<tr class="separator:a78e1f3d62ab06ceab597a9ce9417aaad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9ded06125e436b72cb7feb1e09e3ebd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ad9ded06125e436b72cb7feb1e09e3ebd">PrependRadioItem</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &item, const <a class="el" href="classwx_string.html">wxString</a> &helpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:ad9ded06125e436b72cb7feb1e09e3ebd"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a radio item at position 0. <a href="#ad9ded06125e436b72cb7feb1e09e3ebd"></a><br/></td></tr>
<tr class="separator:ad9ded06125e436b72cb7feb1e09e3ebd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39fda27c82a2b27c11cfbc947c3aa822"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a39fda27c82a2b27c11cfbc947c3aa822">PrependSeparator</a> ()</td></tr>
<tr class="memdesc:a39fda27c82a2b27c11cfbc947c3aa822"><td class="mdescLeft"> </td><td class="mdescRight">Inserts a separator at position 0. <a href="#a39fda27c82a2b27c11cfbc947c3aa822"></a><br/></td></tr>
<tr class="separator:a39fda27c82a2b27c11cfbc947c3aa822"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ff3ffdbc67efce1f8d1752a5b86f6f1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1">Remove</a> (int id)</td></tr>
<tr class="memdesc:a6ff3ffdbc67efce1f8d1752a5b86f6f1"><td class="mdescLeft"> </td><td class="mdescRight">Removes the menu item from the menu but doesn't delete the associated C++ object. <a href="#a6ff3ffdbc67efce1f8d1752a5b86f6f1"></a><br/></td></tr>
<tr class="separator:a6ff3ffdbc67efce1f8d1752a5b86f6f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a322767cb3c67a51354b5410c4ab61823"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a322767cb3c67a51354b5410c4ab61823">Remove</a> (<a class="el" href="classwx_menu_item.html">wxMenuItem</a> *item)</td></tr>
<tr class="memdesc:a322767cb3c67a51354b5410c4ab61823"><td class="mdescLeft"> </td><td class="mdescRight">Removes the menu item from the menu but doesn't delete the associated C++ object. <a href="#a322767cb3c67a51354b5410c4ab61823"></a><br/></td></tr>
<tr class="separator:a322767cb3c67a51354b5410c4ab61823"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afaad5f31ec3abcf830ecdf2532c6e98b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#afaad5f31ec3abcf830ecdf2532c6e98b">SetHelpString</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &helpString)</td></tr>
<tr class="memdesc:afaad5f31ec3abcf830ecdf2532c6e98b"><td class="mdescLeft"> </td><td class="mdescRight">Sets an item's help string. <a href="#afaad5f31ec3abcf830ecdf2532c6e98b"></a><br/></td></tr>
<tr class="separator:afaad5f31ec3abcf830ecdf2532c6e98b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec7c82f4c6fa18187c25b3797590a9d2"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2">SetLabel</a> (int id, const <a class="el" href="classwx_string.html">wxString</a> &label)</td></tr>
<tr class="memdesc:aec7c82f4c6fa18187c25b3797590a9d2"><td class="mdescLeft"> </td><td class="mdescRight">Sets the label of a menu item. <a href="#aec7c82f4c6fa18187c25b3797590a9d2"></a><br/></td></tr>
<tr class="separator:aec7c82f4c6fa18187c25b3797590a9d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa8b3117231c244d4952a641fb3e9a272"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aa8b3117231c244d4952a641fb3e9a272">SetTitle</a> (const <a class="el" href="classwx_string.html">wxString</a> &title)</td></tr>
<tr class="memdesc:aa8b3117231c244d4952a641fb3e9a272"><td class="mdescLeft"> </td><td class="mdescRight">Sets the title of the menu. <a href="#aa8b3117231c244d4952a641fb3e9a272"></a><br/></td></tr>
<tr class="separator:aa8b3117231c244d4952a641fb3e9a272"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aedd1c1536176ffec144f7e8bea85bd89"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aedd1c1536176ffec144f7e8bea85bd89">UpdateUI</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *source=NULL)</td></tr>
<tr class="memdesc:aedd1c1536176ffec144f7e8bea85bd89"><td class="mdescLeft"> </td><td class="mdescRight">Sends events to <em>source</em> (or owning window if <span class="literal">NULL</span>) to update the menu UI. <a href="#aedd1c1536176ffec144f7e8bea85bd89"></a><br/></td></tr>
<tr class="separator:aedd1c1536176ffec144f7e8bea85bd89"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1c459fa87f5c52afc7b5d717e846cce4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a1c459fa87f5c52afc7b5d717e846cce4">SetInvokingWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="separator:a1c459fa87f5c52afc7b5d717e846cce4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8def14f7694a66397a79c62307502dfd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a8def14f7694a66397a79c62307502dfd">GetInvokingWindow</a> () const </td></tr>
<tr class="separator:a8def14f7694a66397a79c62307502dfd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae69e4bd42e9e806a269143f10845d2d4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ae69e4bd42e9e806a269143f10845d2d4">GetWindow</a> () const </td></tr>
<tr class="separator:ae69e4bd42e9e806a269143f10845d2d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac45bbbfb4955c62a9af1982aed661856"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#ac45bbbfb4955c62a9af1982aed661856">GetStyle</a> () const </td></tr>
<tr class="separator:ac45bbbfb4955c62a9af1982aed661856"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7873255a269c036348d6af33629d118b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a7873255a269c036348d6af33629d118b">SetParent</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *parent)</td></tr>
<tr class="separator:a7873255a269c036348d6af33629d118b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abfba34a537e6a69ee6531e333dfbeacb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu.html">wxMenu</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#abfba34a537e6a69ee6531e333dfbeacb">GetParent</a> () const </td></tr>
<tr class="separator:abfba34a537e6a69ee6531e333dfbeacb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15faea06e13e6751f561d4edd6b1052e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a15faea06e13e6751f561d4edd6b1052e">Attach</a> (<a class="el" href="classwx_menu_bar.html">wxMenuBar</a> *menubar)</td></tr>
<tr class="separator:a15faea06e13e6751f561d4edd6b1052e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a19a7de8fd10b2cd24c6387b02762fecd"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a19a7de8fd10b2cd24c6387b02762fecd">Detach</a> ()</td></tr>
<tr class="separator:a19a7de8fd10b2cd24c6387b02762fecd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61bfe5dbf23efd8d98af0cd5101b9359"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#a61bfe5dbf23efd8d98af0cd5101b9359">IsAttached</a> () const </td></tr>
<tr class="separator:a61bfe5dbf23efd8d98af0cd5101b9359"><td class="memSeparator" colspan="2"> </td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr class="memitem:abe0e1a4395a253e6fe45c821d7a2cf2b"><td class="memItemLeft" align="right" valign="top">wxMenuItemList & </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#abe0e1a4395a253e6fe45c821d7a2cf2b">GetMenuItems</a> ()</td></tr>
<tr class="memdesc:abe0e1a4395a253e6fe45c821d7a2cf2b"><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of items in the menu. <a href="#abe0e1a4395a253e6fe45c821d7a2cf2b"></a><br/></td></tr>
<tr class="separator:abe0e1a4395a253e6fe45c821d7a2cf2b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff5d3dc4b171e18bbe2747bbf383f924"><td class="memItemLeft" align="right" valign="top">const wxMenuItemList & </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_menu.html#aff5d3dc4b171e18bbe2747bbf383f924">GetMenuItems</a> () const </td></tr>
<tr class="memdesc:aff5d3dc4b171e18bbe2747bbf383f924"><td class="mdescLeft"> </td><td class="mdescRight">Returns the list of items in the menu. <a href="#aff5d3dc4b171e18bbe2747bbf383f924"></a><br/></td></tr>
<tr class="separator:aff5d3dc4b171e18bbe2747bbf383f924"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_evt_handler"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_evt_handler')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a></td></tr>
<tr class="memitem:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3f0166c4154227d05575b01eb2c8d4be">wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#a3f0166c4154227d05575b01eb2c8d4be"></a><br/></td></tr>
<tr class="separator:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a372d2239d91521eddc8fd2715fcab584">~wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a372d2239d91521eddc8fd2715fcab584"></a><br/></td></tr>
<tr class="separator:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acffd03bf407a856166ea71ef0318b59a inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a">QueueEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> *event)</td></tr>
<tr class="memdesc:acffd03bf407a856166ea71ef0318b59a inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Queue event for a later processing. <a href="#acffd03bf407a856166ea71ef0318b59a"></a><br/></td></tr>
<tr class="separator:acffd03bf407a856166ea71ef0318b59a inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0737c6d2cbcd5ded4b1ecdd53ed0def3 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3">AddPendingEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:a0737c6d2cbcd5ded4b1ecdd53ed0def3 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Post an event to be processed later. <a href="#a0737c6d2cbcd5ded4b1ecdd53ed0def3"></a><br/></td></tr>
<tr class="separator:a0737c6d2cbcd5ded4b1ecdd53ed0def3 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename T , typename T1 , ... > </td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a63c7351618fd77330d80a250b3719519">CallAfter</a> (void(T::*method)(T1,...), T1 x1,...)</td></tr>
<tr class="memdesc:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Asynchronously call the given method. <a href="#a63c7351618fd77330d80a250b3719519"></a><br/></td></tr>
<tr class="separator:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename T > </td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a910416e4d0b1f38cec02213b8a0c6a12">CallAfter</a> (const T &functor)</td></tr>
<tr class="memdesc:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Asynchronously call the given functor. <a href="#a910416e4d0b1f38cec02213b8a0c6a12"></a><br/></td></tr>
<tr class="separator:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a65968dd27f3aac7718f2dd6b2ddd5a08 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08">ProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:a65968dd27f3aac7718f2dd6b2ddd5a08 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Processes an event, searching event tables and calling zero or more suitable event handler function(s). <a href="#a65968dd27f3aac7718f2dd6b2ddd5a08"></a><br/></td></tr>
<tr class="separator:a65968dd27f3aac7718f2dd6b2ddd5a08 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ac0f5d2cb29a04c1f7f82eb6b351f79fb">ProcessEventLocally</a> (<a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Try to process the event in this handler and all those chained to it. <a href="#ac0f5d2cb29a04c1f7f82eb6b351f79fb"></a><br/></td></tr>
<tr class="separator:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a8205cb1a5a00d8b550b3ead22266b16b">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Processes an event by calling <a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08" title="Processes an event, searching event tables and calling zero or more suitable event handler function(s...">ProcessEvent()</a> and handles any exceptions that occur in the process. <a href="#a8205cb1a5a00d8b550b3ead22266b16b"></a><br/></td></tr>
<tr class="separator:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6f643dbdcf8e914ae1c8b70dd305e6f2">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Processes the pending events previously queued using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>; you must call this function only if you are sure there are pending events for this handler, otherwise a <code>wxCHECK</code> will fail. <a href="#a6f643dbdcf8e914ae1c8b70dd305e6f2"></a><br/></td></tr>
<tr class="separator:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6e7f9cf4ebd0623c1d94979855d096f8">DeletePendingEvents</a> ()</td></tr>
<tr class="memdesc:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Deletes all events queued on this event handler using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>. <a href="#a6e7f9cf4ebd0623c1d94979855d096f8"></a><br/></td></tr>
<tr class="separator:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3c07426130d2868a5ae7fa918a251f49">SearchEventTable</a> (wxEventTable &table, <a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Searches the event table, executing an event handler function if an appropriate one is found. <a href="#a3c07426130d2868a5ae7fa918a251f49"></a><br/></td></tr>
<tr class="separator:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943">Connect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Connects the given function dynamically with the event handler, id and event type. <a href="#a78719e8b82c9f9c6e4056b3449df1943"></a><br/></td></tr>
<tr class="separator:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a1e8b5fc4c7e7f6d32d40bc00d4108ba4">Connect</a> (int id, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info. <a href="#a1e8b5fc4c7e7f6d32d40bc00d4108ba4"></a><br/></td></tr>
<tr class="separator:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa290d9b67348e74c1da8497955a4e35c">Connect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info. <a href="#aa290d9b67348e74c1da8497955a4e35c"></a><br/></td></tr>
<tr class="separator:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc">Disconnect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Disconnects the given function dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed. <a href="#a13061cf0ed01ac10a804ac057ef4bdbc"></a><br/></td></tr>
<tr class="separator:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2f171e19444b9c4034c5e11f24fa9c91">Disconnect</a> (int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType=<a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a>, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info. <a href="#a2f171e19444b9c4034c5e11f24fa9c91"></a><br/></td></tr>
<tr class="separator:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a16a6f823853e4b74b43dd9a2cf3abee6">Disconnect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info. <a href="#a16a6f823853e4b74b43dd9a2cf3abee6"></a><br/></td></tr>
<tr class="separator:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename EventTag , typename Functor > </td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62">Bind</a> (const EventTag &eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Binds the given function, functor or method dynamically with the event. <a href="#a0f30c8fa5583b4a5f661897d63de3b62"></a><br/></td></tr>
<tr class="separator:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename EventTag , typename Class , typename EventArg , typename EventHandler > </td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a03cc68ca201fb79c7e837919025be71a">Bind</a> (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62" title="Binds the given function, functor or method dynamically with the event.">Bind<>(const EventTag&, Functor, int, int, wxObject*)</a> overload for more info. <a href="#a03cc68ca201fb79c7e837919025be71a"></a><br/></td></tr>
<tr class="separator:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename EventTag , typename Functor > </td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da">Unbind</a> (const EventTag &eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Unbinds the given function, functor or method dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed. <a href="#a2b7df8272075a96daea78cdd799c00da"></a><br/></td></tr>
<tr class="separator:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template<typename EventTag , typename Class , typename EventArg , typename EventHandler > </td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa49f9c4ad4462456b4fe4bd1ab53533d">Unbind</a> (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da" title="Unbinds the given function, functor or method dynamically from the event handler, using the specified...">Unbind<>(const EventTag&, Functor, int, int, wxObject*)</a> overload for more info. <a href="#aa49f9c4ad4462456b4fe4bd1ab53533d"></a><br/></td></tr>
<tr class="separator:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ad6e543115a9405962152630138645588">GetClientData</a> () const </td></tr>
<tr class="memdesc:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns user-supplied client data. <a href="#ad6e543115a9405962152630138645588"></a><br/></td></tr>
<tr class="separator:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_client_data.html">wxClientData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b3949eaba1f25cb48618163a7c0583b">GetClientObject</a> () const </td></tr>
<tr class="memdesc:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns a pointer to the user-supplied client data object. <a href="#a2b3949eaba1f25cb48618163a7c0583b"></a><br/></td></tr>
<tr class="separator:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a82c74f2cebfa02cb3c1563d459c872bf">SetClientData</a> (void *data)</td></tr>
<tr class="memdesc:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Sets user-supplied client data. <a href="#a82c74f2cebfa02cb3c1563d459c872bf"></a><br/></td></tr>
<tr class="separator:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#af1e33a06087b8b2ddc43c7d15a91b326">SetClientObject</a> (<a class="el" href="classwx_client_data.html">wxClientData</a> *data)</td></tr>
<tr class="memdesc:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Set the client data object. <a href="#af1e33a06087b8b2ddc43c7d15a91b326"></a><br/></td></tr>
<tr class="separator:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a533e62afcb125abf1fcc8bb53fbc2e81">GetEvtHandlerEnabled</a> () const </td></tr>
<tr class="memdesc:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event handler is enabled, <span class="literal">false</span> otherwise. <a href="#a533e62afcb125abf1fcc8bb53fbc2e81"></a><br/></td></tr>
<tr class="separator:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a4b2f853f5c7a64432ae72f9b606698f9">GetNextHandler</a> () const </td></tr>
<tr class="memdesc:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns the pointer to the next handler in the chain. <a href="#a4b2f853f5c7a64432ae72f9b606698f9"></a><br/></td></tr>
<tr class="separator:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aad1ba7fa9ccbf12ee2d80f5f12350adb">GetPreviousHandler</a> () const </td></tr>
<tr class="memdesc:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns the pointer to the previous handler in the chain. <a href="#aad1ba7fa9ccbf12ee2d80f5f12350adb"></a><br/></td></tr>
<tr class="separator:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a7388ae19c8657e5656471b658c320036">SetEvtHandlerEnabled</a> (bool enabled)</td></tr>
<tr class="memdesc:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Enables or disables the event handler. <a href="#a7388ae19c8657e5656471b658c320036"></a><br/></td></tr>
<tr class="separator:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68e2ef2d2b7d68c4c9c18ca92933031b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a68e2ef2d2b7d68c4c9c18ca92933031b">SetNextHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:a68e2ef2d2b7d68c4c9c18ca92933031b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Sets the pointer to the next handler. <a href="#a68e2ef2d2b7d68c4c9c18ca92933031b"></a><br/></td></tr>
<tr class="separator:a68e2ef2d2b7d68c4c9c18ca92933031b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff0d1836464be82e2ad723ad3a58eccc inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aff0d1836464be82e2ad723ad3a58eccc">SetPreviousHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:aff0d1836464be82e2ad723ad3a58eccc inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Sets the pointer to the previous handler. <a href="#aff0d1836464be82e2ad723ad3a58eccc"></a><br/></td></tr>
<tr class="separator:aff0d1836464be82e2ad723ad3a58eccc inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a22e5db2ec1d19c8252c056fd116975d7">Unlink</a> ()</td></tr>
<tr class="memdesc:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Unlinks this event handler from the chain it's part of (if any); then links the "previous" event handler to the "next" one (so that the chain won't be interrupted). <a href="#a22e5db2ec1d19c8252c056fd116975d7"></a><br/></td></tr>
<tr class="separator:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a360fdeefcf53b62fb49fb828406bb8a6">IsUnlinked</a> () const </td></tr>
<tr class="memdesc:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the next and the previous handler pointers of this event handler instance are <span class="literal">NULL</span>. <a href="#a360fdeefcf53b62fb49fb828406bb8a6"></a><br/></td></tr>
<tr class="separator:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#acaa378363a28af421ab56ad7b46eadf0">wxObject</a> ()</td></tr>
<tr class="memdesc:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Default ctor; initializes to <span class="literal">NULL</span> the internal reference data. <a href="#acaa378363a28af421ab56ad7b46eadf0"></a><br/></td></tr>
<tr class="separator:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a4721b4dc9b7aff0f30904ba2ea3954cf">wxObject</a> (const <a class="el" href="classwx_object.html">wxObject</a> &other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Copy ctor. <a href="#a4721b4dc9b7aff0f30904ba2ea3954cf"></a><br/></td></tr>
<tr class="separator:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2a51aa8bfbab47ca2f051bcf84b3f35b">~wxObject</a> ()</td></tr>
<tr class="memdesc:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a2a51aa8bfbab47ca2f051bcf84b3f35b"></a><br/></td></tr>
<tr class="separator:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_class_info.html">wxClassInfo</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#ab3a0c6f723cbaddb47be4e8dd98cc8e2">GetClassInfo</a> () const </td></tr>
<tr class="memdesc:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This virtual function is redefined for every class that requires run-time type information, when using the <a class="el" href="group__group__funcmacro__rtti.html#ga20465fc7e022e29a5dacfad46e152e75" title="Used inside a class declaration to declare that the class should be made known to the class hierarchy...">wxDECLARE_CLASS</a> macro (or similar). <a href="#ab3a0c6f723cbaddb47be4e8dd98cc8e2"></a><br/></td></tr>
<tr class="separator:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#aabdb4fc957226544a8408167844e4f42">GetRefData</a> () const </td></tr>
<tr class="memdesc:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer, i.e. the data referenced by this object. <a href="#aabdb4fc957226544a8408167844e4f42"></a><br/></td></tr>
<tr class="separator:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af40d580385cf4f8112fae7713404b01e">IsKindOf</a> (const <a class="el" href="classwx_class_info.html">wxClassInfo</a> *info) const </td></tr>
<tr class="memdesc:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether this class is a subclass of (or the same class as) the given class. <a href="#af40d580385cf4f8112fae7713404b01e"></a><br/></td></tr>
<tr class="separator:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a80a1a3fda7b14396a9ddd3d7a46a88bd">IsSameAs</a> (const <a class="el" href="classwx_object.html">wxObject</a> &obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if this object has the same data pointer as <em>obj</em>. <a href="#a80a1a3fda7b14396a9ddd3d7a46a88bd"></a><br/></td></tr>
<tr class="separator:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2f6f1aa51fe9fc2b1415ca4211a90e9e">Ref</a> (const <a class="el" href="classwx_object.html">wxObject</a> &clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Makes this object refer to the data in <em>clone</em>. <a href="#a2f6f1aa51fe9fc2b1415ca4211a90e9e"></a><br/></td></tr>
<tr class="separator:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#afab780710f2adc1bb33310e27590140b">SetRefData</a> (<a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data)</td></tr>
<tr class="memdesc:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer. <a href="#afab780710f2adc1bb33310e27590140b"></a><br/></td></tr>
<tr class="separator:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af51efc6b1ae632fc7f0cd7ebbce9fa36">UnRef</a> ()</td></tr>
<tr class="memdesc:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Decrements the reference count in the associated data, and if it is zero, deletes the data. <a href="#af51efc6b1ae632fc7f0cd7ebbce9fa36"></a><br/></td></tr>
<tr class="separator:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a74b40e42d19a4b9e9bec0b57d62a5725">UnShare</a> ()</td></tr>
<tr class="memdesc:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object's data is not shared with any other object.">AllocExclusive()</a> but this method is public. <a href="#a74b40e42d19a4b9e9bec0b57d62a5725"></a><br/></td></tr>
<tr class="separator:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a07b8f34f5afc5743195c5fed052f55d3">operator delete</a> (void *buf)</td></tr>
<tr class="memdesc:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>delete</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a07b8f34f5afc5743195c5fed052f55d3"></a><br/></td></tr>
<tr class="separator:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a96fa423a1dbc212c8227a5d83825971f">operator new</a> (size_t size, const <a class="el" href="classwx_string.html">wxString</a> &filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>new</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a96fa423a1dbc212c8227a5d83825971f"></a><br/></td></tr>
<tr class="separator:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classwx_evt_handler"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_evt_handler')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a></td></tr>
<tr class="memitem:a7dc3c701781f4044372049de5004137e inherit pub_static_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a7dc3c701781f4044372049de5004137e">AddFilter</a> (<a class="el" href="classwx_event_filter.html">wxEventFilter</a> *filter)</td></tr>
<tr class="memdesc:a7dc3c701781f4044372049de5004137e inherit pub_static_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Add an event filter whose FilterEvent() method will be called for each and every event processed by wxWidgets. <a href="#a7dc3c701781f4044372049de5004137e"></a><br/></td></tr>
<tr class="separator:a7dc3c701781f4044372049de5004137e inherit pub_static_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67a57b759c447b121bf70a7c9804c8f2 inherit pub_static_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a67a57b759c447b121bf70a7c9804c8f2">RemoveFilter</a> (<a class="el" href="classwx_event_filter.html">wxEventFilter</a> *filter)</td></tr>
<tr class="memdesc:a67a57b759c447b121bf70a7c9804c8f2 inherit pub_static_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Remove a filter previously installed with <a class="el" href="classwx_evt_handler.html#a7dc3c701781f4044372049de5004137e" title="Add an event filter whose FilterEvent() method will be called for each and every event processed by w...">AddFilter()</a>. <a href="#a67a57b759c447b121bf70a7c9804c8f2"></a><br/></td></tr>
<tr class="separator:a67a57b759c447b121bf70a7c9804c8f2 inherit pub_static_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classwx_evt_handler"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_evt_handler')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a></td></tr>
<tr class="memitem:ad4b0eac704dd005ac6a88fdb1e673c13 inherit pro_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ad4b0eac704dd005ac6a88fdb1e673c13">TryBefore</a> (<a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:ad4b0eac704dd005ac6a88fdb1e673c13 inherit pro_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Method called by <a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08" title="Processes an event, searching event tables and calling zero or more suitable event handler function(s...">ProcessEvent()</a> before examining this object event tables. <a href="#ad4b0eac704dd005ac6a88fdb1e673c13"></a><br/></td></tr>
<tr class="separator:ad4b0eac704dd005ac6a88fdb1e673c13 inherit pro_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e25fece1cb6cbc11fd1d41ec140319c inherit pro_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a5e25fece1cb6cbc11fd1d41ec140319c">TryAfter</a> (<a class="el" href="classwx_event.html">wxEvent</a> &event)</td></tr>
<tr class="memdesc:a5e25fece1cb6cbc11fd1d41ec140319c inherit pro_methods_classwx_evt_handler"><td class="mdescLeft"> </td><td class="mdescRight">Method called by <a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08" title="Processes an event, searching event tables and calling zero or more suitable event handler function(s...">ProcessEvent()</a> as last resort. <a href="#a5e25fece1cb6cbc11fd1d41ec140319c"></a><br/></td></tr>
<tr class="separator:a5e25fece1cb6cbc11fd1d41ec140319c inherit pro_methods_classwx_evt_handler"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classwx_object')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8">m_refData</a></td></tr>
<tr class="memdesc:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Pointer to an object which is the object's reference-counted data. <a href="#a9e31954530a0abd54982effc443ed2b8"></a><br/></td></tr>
<tr class="separator:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="af8b5588bdd1ef7c94ac542adf91915ed"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxMenu::wxMenu </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object. </p>
</div>
</div>
<a class="anchor" id="a462f0ad758ef3d32b8a6a2a1d9c5c43f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxMenu::wxMenu </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>style</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">style</td><td>If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a9a6afd553257ebd8040305f21ec6094e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxMenu::wxMenu </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>title</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long </td>
<td class="paramname"><em>style</em> = <code>0</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructs a <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object with a title. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>Title at the top of the menu (not always supported). </td></tr>
<tr><td class="paramname">style</td><td>If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK only). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aae41b3780cb9e0966fbfb4d67438be78"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual wxMenu::~wxMenu </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Destructor, destroying the menu. </p>
<dl class="section note"><dt>Note</dt><dd>Under Motif, a popup menu must have a valid parent (the window it was last popped up on) when being destroyed. Therefore, make sure you delete or re-use the popup menu <em>before</em> destroying the parent window. Re-use in this context means popping up the menu on a different window from last time, which causes an implicit destruction and recreation of internal data structures. </dd></dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="ab8b9fe9baabeb67cf3eaa70df072f7c9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Append </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>item</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> </td>
<td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a menu item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu command identifier. </td></tr>
<tr><td class="paramname">item</td><td>The string to appear on the menu item. See <a class="el" href="classwx_menu_item.html#a8b0517fb35e3eada66b51568aa87f261" title="Sets the label associated with the menu item.">wxMenuItem::SetItemLabel()</a> for more details. </td></tr>
<tr><td class="paramname">helpString</td><td>An optional help string associated with the item. By default, the handler for the <code>wxEVT_MENU_HIGHLIGHT</code> event displays this string in the status line. </td></tr>
<tr><td class="paramname">kind</td><td>May be <code>wxITEM_SEPARATOR</code>, <code>wxITEM_NORMAL</code>, <code>wxITEM_CHECK</code> or <code>wxITEM_RADIO</code>.</td></tr>
</table>
</dd>
</dl>
<p>Example: </p>
<div class="fragment"><div class="line">m_pFileMenu->Append(ID_NEW_FILE, <span class="stringliteral">"&New file\tCTRL+N"</span>, <span class="stringliteral">"Creates a new XYZ document"</span>);</div>
</div><!-- fragment --><p> or even better for stock menu items (see <a class="el" href="classwx_menu_item.html#a6e9b0e1b786fa84250a42c88d84aed2b" title="Constructs a wxMenuItem object.">wxMenuItem::wxMenuItem</a>): </p>
<div class="fragment"><div class="line">m_pFileMenu->Append(<a class="code" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba00208fb870c6129805d5e4662f387631">wxID_NEW</a>, <span class="stringliteral">""</span>, <span class="stringliteral">"Creates a new XYZ document"</span>);</div>
</div><!-- fragment --><dl class="section remark"><dt>Remarks</dt><dd>This command can be used after the menu has been shown, as well as on initial creation of a menu or menubar.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667" title="Adds a separator to the end of the menu.">AppendSeparator()</a>, <a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf" title="Adds a checkable item to the end of the menu.">AppendCheckItem()</a>, <a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580" title="Adds a radio item to the end of the menu.">AppendRadioItem()</a>, <a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2" title="Sets the label of a menu item.">SetLabel()</a>, <a class="el" href="classwx_menu.html#a45ae0ae8a1ceed683cbdb0e311989316" title="Returns the help string associated with a menu item.">GetHelpString()</a>, <a class="el" href="classwx_menu.html#afaad5f31ec3abcf830ecdf2532c6e98b" title="Sets an item's help string.">SetHelpString()</a>, <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a8e321445e4f0449fc7e1e9db2d191c56"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Append </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>item</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> * </td>
<td class="paramname"><em>subMenu</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a submenu. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000036">Deprecated:</a></b></dt><dd>This function is deprecated, use <a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a> instead.</dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu command identifier. </td></tr>
<tr><td class="paramname">item</td><td>The string to appear on the menu item. </td></tr>
<tr><td class="paramname">subMenu</td><td>Pull-right submenu. </td></tr>
<tr><td class="paramname">helpString</td><td>An optional help string associated with the item. By default, the handler for the <code>wxEVT_MENU_HIGHLIGHT</code> event displays this string in the status line.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667" title="Adds a separator to the end of the menu.">AppendSeparator()</a>, <a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf" title="Adds a checkable item to the end of the menu.">AppendCheckItem()</a>, <a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580" title="Adds a radio item to the end of the menu.">AppendRadioItem()</a>, <a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2" title="Sets the label of a menu item.">SetLabel()</a>, <a class="el" href="classwx_menu.html#a45ae0ae8a1ceed683cbdb0e311989316" title="Returns the help string associated with a menu item.">GetHelpString()</a>, <a class="el" href="classwx_menu.html#afaad5f31ec3abcf830ecdf2532c6e98b" title="Sets an item's help string.">SetHelpString()</a>, <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a72f5110d10ac1b3253e651cc9baa02da"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Append </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>menuItem</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a menu item object. </p>
<p>This is the most generic variant of <a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a> method because it may be used for both items (including separators) and submenus and because you can also specify various extra properties of a menu item this way, such as bitmaps and fonts.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">menuItem</td><td>A menuitem object. It will be owned by the <a class="el" href="classwx_menu.html" title="A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes awa...">wxMenu</a> object after this function is called, so do not delete it yourself.</td></tr>
</table>
</dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>See the remarks for the other <a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a> overloads.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667" title="Adds a separator to the end of the menu.">AppendSeparator()</a>, <a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf" title="Adds a checkable item to the end of the menu.">AppendCheckItem()</a>, <a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580" title="Adds a radio item to the end of the menu.">AppendRadioItem()</a>, <a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2" title="Sets the label of a menu item.">SetLabel()</a>, <a class="el" href="classwx_menu.html#a45ae0ae8a1ceed683cbdb0e311989316" title="Returns the help string associated with a menu item.">GetHelpString()</a>, <a class="el" href="classwx_menu.html#afaad5f31ec3abcf830ecdf2532c6e98b" title="Sets an item's help string.">SetHelpString()</a>, <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a0e2986e5c03907990504337493221baf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::AppendCheckItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>help</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a checkable item to the end of the menu. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#a0f1f3c5b9c349381cf89169c74251461" title="Inserts a checkable item at the given position.">InsertCheckItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a3ec8da997f0969d6df4f2394af6a9580"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::AppendRadioItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>help</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a radio item to the end of the menu. </p>
<p>All consequent radio items form a group and when an item in the group is checked, all the others are automatically unchecked.</p>
<dl class="section note"><dt>Note</dt><dd>Radio items are not supported under wxMotif.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#a1016a10b8df49297cf4ccc970d5106aa" title="Inserts a radio item at the given position.">InsertRadioItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac4027fc18854f535171ea32f416fc667"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::AppendSeparator </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds a separator to the end of the menu. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#a77b3060d593f1f971edb5a321c5bd9bf" title="Inserts a separator at the given position.">InsertSeparator()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6e5821042919502670e8fdab77a5f7a8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::AppendSubMenu </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> * </td>
<td class="paramname"><em>submenu</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>help</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds the given <em>submenu</em> to this menu. </p>
<p><em>text</em> is the text shown in the menu for it and <em>help</em> is the help string shown in the status bar when the submenu item is selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a15faea06e13e6751f561d4edd6b1052e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxMenu::Attach </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_bar.html">wxMenuBar</a> * </td>
<td class="paramname"><em>menubar</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a3728d2f96ee825b042e0b6d0e08d21d3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxMenu::Break </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a break in a menu, causing the next appended item to appear in a new column. </p>
</div>
</div>
<a class="anchor" id="a3a5a76d1ee332a40919941870529b49f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::Check </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>check</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Checks or unchecks the menu item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier. </td></tr>
<tr><td class="paramname">check</td><td>If <span class="literal">true</span>, the item will be checked, otherwise it will be unchecked.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a088f0097e2077518e60200f80232e291" title="Determines whether a menu item is checked.">IsChecked()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ad0478a386aa0f55b568686fc8837d00e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::Delete </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Deletes the menu item from the menu. </p>
<p>If the item is a submenu, it will <b>not</b> be deleted. Use <a class="el" href="classwx_menu.html#ab30d479e9c8651d64b7c8fc30701aa8d" title="Deletes the menu item from the menu.">Destroy()</a> if you want to delete a submenu.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>Id of the menu item to be deleted.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311" title="Finds the menu id for a menu item string.">FindItem()</a>, <a class="el" href="classwx_menu.html#ab30d479e9c8651d64b7c8fc30701aa8d" title="Deletes the menu item from the menu.">Destroy()</a>, <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a8d88695161c09b8a43d2b1cf98defd85"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::Delete </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Deletes the menu item from the menu. </p>
<p>If the item is a submenu, it will <b>not</b> be deleted. Use <a class="el" href="classwx_menu.html#ab30d479e9c8651d64b7c8fc30701aa8d" title="Deletes the menu item from the menu.">Destroy()</a> if you want to delete a submenu.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Menu item to be deleted.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311" title="Finds the menu id for a menu item string.">FindItem()</a>, <a class="el" href="classwx_menu.html#ab30d479e9c8651d64b7c8fc30701aa8d" title="Deletes the menu item from the menu.">Destroy()</a>, <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ab30d479e9c8651d64b7c8fc30701aa8d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::Destroy </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Deletes the menu item from the menu. </p>
<p>If the item is a submenu, it will be deleted. Use <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> if you want to keep the submenu (for example, to reuse it later).</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>Id of the menu item to be deleted.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311" title="Finds the menu id for a menu item string.">FindItem()</a>, <a class="el" href="classwx_menu.html#ad0478a386aa0f55b568686fc8837d00e" title="Deletes the menu item from the menu.">Delete()</a>, <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a72bf5c0fa9af6227245930a06afdc19b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::Destroy </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Deletes the menu item from the menu. </p>
<p>If the item is a submenu, it will be deleted. Use <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> if you want to keep the submenu (for example, to reuse it later).</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>Menu item to be deleted.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311" title="Finds the menu id for a menu item string.">FindItem()</a>, <a class="el" href="classwx_menu.html#ad0478a386aa0f55b568686fc8837d00e" title="Deletes the menu item from the menu.">Delete()</a>, <a class="el" href="classwx_menu.html#a6ff3ffdbc67efce1f8d1752a5b86f6f1" title="Removes the menu item from the menu but doesn't delete the associated C++ object.">Remove()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a19a7de8fd10b2cd24c6387b02762fecd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxMenu::Detach </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ae2a468532c454371d556d61efca7c002"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::Enable </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>enable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Enables or disables (greys out) a menu item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier. </td></tr>
<tr><td class="paramname">enable</td><td><span class="literal">true</span> to enable the menu item, <span class="literal">false</span> to disable it.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a1a89a50690ce163d6190c7f5612e4150" title="Determines whether a menu item is enabled.">IsEnabled()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6b881350060c42800192cf21cbf5a306"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::FindChildItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">size_t * </td>
<td class="paramname"><em>pos</em> = <code>NULL</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Finds the menu item object associated with the given menu item identifier and, optionally, the position of the item in the menu. </p>
<p>Unlike <a class="el" href="classwx_menu.html#a99e2de0d3f273049de7413f09f289311" title="Finds the menu id for a menu item string.">FindItem()</a>, this function doesn't recurse but only looks at the direct children of this menu.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The identifier of the menu item to find. </td></tr>
<tr><td class="paramname">pos</td><td>If the pointer is not <span class="literal">NULL</span>, it is filled with the item's position if it was found or <code></code>(size_t)wxNOT_FOUND otherwise. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Menu item object or <span class="literal">NULL</span> if not found. </dd></dl>
</div>
</div>
<a class="anchor" id="a99e2de0d3f273049de7413f09f289311"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual int wxMenu::FindItem </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>itemString</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Finds the menu id for a menu item string. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">itemString</td><td>Menu item string to find.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Menu item identifier, or wxNOT_FOUND if none is found.</dd></dl>
<dl class="section remark"><dt>Remarks</dt><dd>Any special menu codes are stripped out of source and target strings before matching. </dd></dl>
</div>
</div>
<a class="anchor" id="ae8844fd2df14981d8699792c3a405806"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::FindItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> ** </td>
<td class="paramname"><em>menu</em> = <code>NULL</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Finds the menu item object associated with the given menu item identifier and, optionally, the (sub)menu it belongs to. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>Menu item identifier. </td></tr>
<tr><td class="paramname">menu</td><td>If the pointer is not <span class="literal">NULL</span>, it will be filled with the item's parent menu (if the item was found)</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Menu item object or NULL if none is found. </dd></dl>
</div>
</div>
<a class="anchor" id="aa9f61cb5c2b0340ddefb2951aeb5220d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::FindItemByPosition </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>position</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> given a position in the menu. </p>
</div>
</div>
<a class="anchor" id="a45ae0ae8a1ceed683cbdb0e311989316"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classwx_string.html">wxString</a> wxMenu::GetHelpString </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the help string associated with a menu item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The help string, or the empty string if there is no help string or the item was not found.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#afaad5f31ec3abcf830ecdf2532c6e98b" title="Sets an item's help string.">SetHelpString()</a>, <a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a8def14f7694a66397a79c62307502dfd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxMenu::GetInvokingWindow </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ae912f9dec96a0bd585fe562938447d7d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxMenu::GetLabel </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a menu item label. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The item label, or the empty string if the item was not found.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a4e7e80816f09526dc2e0a5982b597fb5" title="Returns a menu item label, without any of the original mnemonics and accelerators.">GetLabelText()</a>, <a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2" title="Sets the label of a menu item.">SetLabel()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a4e7e80816f09526dc2e0a5982b597fb5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxMenu::GetLabelText </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a menu item label, without any of the original mnemonics and accelerators. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The item label, or the empty string if the item was not found.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ae912f9dec96a0bd585fe562938447d7d" title="Returns a menu item label.">GetLabel()</a>, <a class="el" href="classwx_menu.html#aec7c82f4c6fa18187c25b3797590a9d2" title="Sets the label of a menu item.">SetLabel()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a8679baecdcb22c6a38fd1ed9f4e8b00a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t wxMenu::GetMenuItemCount </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of items in the menu. </p>
</div>
</div>
<a class="anchor" id="abe0e1a4395a253e6fe45c821d7a2cf2b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxMenuItemList& wxMenu::GetMenuItems </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the list of items in the menu. </p>
<p>wxMenuItemList is a pseudo-template list class containing <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> pointers, see wxList. </p>
</div>
</div>
<a class="anchor" id="aff5d3dc4b171e18bbe2747bbf383f924"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const wxMenuItemList& wxMenu::GetMenuItems </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the list of items in the menu. </p>
<p>wxMenuItemList is a pseudo-template list class containing <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a> pointers, see wxList. </p>
</div>
</div>
<a class="anchor" id="abfba34a537e6a69ee6531e333dfbeacb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu.html">wxMenu</a>* wxMenu::GetParent </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ac45bbbfb4955c62a9af1982aed661856"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long wxMenu::GetStyle </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a4350ea455980ea08d4d3104f69ef4bcb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classwx_string.html">wxString</a>& wxMenu::GetTitle </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the title of the menu. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#aa8b3117231c244d4952a641fb3e9a272" title="Sets the title of the menu.">SetTitle()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae69e4bd42e9e806a269143f10845d2d4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxMenu::GetWindow </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aec84d928bf461c59739e0e4fc7a27bbe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Insert </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>menuItem</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>item</em> before the position <em>pos</em>. </p>
<p>Inserting the item at position <a class="el" href="classwx_menu.html#a8679baecdcb22c6a38fd1ed9f4e8b00a" title="Returns the number of items in the menu.">GetMenuItemCount()</a> is the same as appending it.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae8dc1329976f47eeb01449854de0fa64"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Insert </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>item</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> </td>
<td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>item</em> before the position <em>pos</em>. </p>
<p>Inserting the item at position <a class="el" href="classwx_menu.html#a8679baecdcb22c6a38fd1ed9f4e8b00a" title="Returns the number of items in the menu.">GetMenuItemCount()</a> is the same as appending it.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="af2209e386b86509773e29bd879a59274"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Insert </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>text</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> * </td>
<td class="paramname"><em>submenu</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>help</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>submenu</em> before the position <em>pos</em>. </p>
<p><em>text</em> is the text shown in the menu for it and <em>help</em> is the help string shown in the status bar when the submenu item is selected.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a>, <a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a0f1f3c5b9c349381cf89169c74251461"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::InsertCheckItem </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a checkable item at the given position. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf" title="Adds a checkable item to the end of the menu.">AppendCheckItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a1016a10b8df49297cf4ccc970d5106aa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::InsertRadioItem </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a radio item at the given position. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580" title="Adds a radio item to the end of the menu.">AppendRadioItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a77b3060d593f1f971edb5a321c5bd9bf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::InsertSeparator </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>pos</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a separator at the given position. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a>, <a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667" title="Adds a separator to the end of the menu.">AppendSeparator()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a61bfe5dbf23efd8d98af0cd5101b9359"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::IsAttached </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a088f0097e2077518e60200f80232e291"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::IsChecked </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Determines whether a menu item is checked. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the menu item is checked, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a3a5a76d1ee332a40919941870529b49f" title="Checks or unchecks the menu item.">Check()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a1a89a50690ce163d6190c7f5612e4150"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMenu::IsEnabled </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Determines whether a menu item is enabled. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the menu item is enabled, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ae2a468532c454371d556d61efca7c002" title="Enables or disables (greys out) a menu item.">Enable()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a90dcfb20e389dc012bdf16c6ffefcfc9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Prepend </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>item</em> at position 0, i.e. before all the other existing items. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ae471a4163a4e7728b9606401fb83ca30"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Prepend </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>item</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> </td>
<td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>item</em> at position 0, i.e. before all the other existing items. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a61eef50fa2312eaf24ad5c6fbc2b3bf2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Prepend </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>text</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> * </td>
<td class="paramname"><em>submenu</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>help</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts the given <em>submenu</em> at position 0. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a6e5821042919502670e8fdab77a5f7a8" title="Adds the given submenu to this menu.">AppendSubMenu()</a>, <a class="el" href="classwx_menu.html#aec84d928bf461c59739e0e4fc7a27bbe" title="Inserts the given item before the position pos.">Insert()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a78e1f3d62ab06ceab597a9ce9417aaad"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::PrependCheckItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a checkable item at position 0. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a>, <a class="el" href="classwx_menu.html#a0e2986e5c03907990504337493221baf" title="Adds a checkable item to the end of the menu.">AppendCheckItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ad9ded06125e436b72cb7feb1e09e3ebd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::PrependRadioItem </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a radio item at position 0. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a>, <a class="el" href="classwx_menu.html#a3ec8da997f0969d6df4f2394af6a9580" title="Adds a radio item to the end of the menu.">AppendRadioItem()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a39fda27c82a2b27c11cfbc947c3aa822"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::PrependSeparator </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Inserts a separator at position 0. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a90dcfb20e389dc012bdf16c6ffefcfc9" title="Inserts the given item at position 0, i.e. before all the other existing items.">Prepend()</a>, <a class="el" href="classwx_menu.html#ac4027fc18854f535171ea32f416fc667" title="Adds a separator to the end of the menu.">AppendSeparator()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a6ff3ffdbc67efce1f8d1752a5b86f6f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Remove </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Removes the menu item from the menu but doesn't delete the associated C++ object. </p>
<p>This allows you to reuse the same item later by adding it back to the menu (especially useful with submenus).</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The identifier of the menu item to remove.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the item which was detached from the menu. </dd></dl>
</div>
</div>
<a class="anchor" id="a322767cb3c67a51354b5410c4ab61823"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_menu_item.html">wxMenuItem</a>* wxMenu::Remove </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu_item.html">wxMenuItem</a> * </td>
<td class="paramname"><em>item</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Removes the menu item from the menu but doesn't delete the associated C++ object. </p>
<p>This allows you to reuse the same item later by adding it back to the menu (especially useful with submenus).</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">item</td><td>The menu item to remove.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the item which was detached from the menu. </dd></dl>
</div>
</div>
<a class="anchor" id="afaad5f31ec3abcf830ecdf2532c6e98b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxMenu::SetHelpString </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>helpString</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets an item's help string. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier. </td></tr>
<tr><td class="paramname">helpString</td><td>The help string to set.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a45ae0ae8a1ceed683cbdb0e311989316" title="Returns the help string associated with a menu item.">GetHelpString()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a1c459fa87f5c52afc7b5d717e846cce4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::SetInvokingWindow </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> * </td>
<td class="paramname"><em>win</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aec7c82f4c6fa18187c25b3797590a9d2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::SetLabel </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>label</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the label of a menu item. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">id</td><td>The menu item identifier. </td></tr>
<tr><td class="paramname">label</td><td>The menu item label to set.</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#ab8b9fe9baabeb67cf3eaa70df072f7c9" title="Adds a menu item.">Append()</a>, <a class="el" href="classwx_menu.html#ae912f9dec96a0bd585fe562938447d7d" title="Returns a menu item label.">GetLabel()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a7873255a269c036348d6af33629d118b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::SetParent </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_menu.html">wxMenu</a> * </td>
<td class="paramname"><em>parent</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa8b3117231c244d4952a641fb3e9a272"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxMenu::SetTitle </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>title</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the title of the menu. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">title</td><td>The title to set.</td></tr>
</table>
</dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>Notice that you can only call this method directly for the popup menus, to change the title of a menu that is part of a menu bar you need to use <a class="el" href="classwx_menu_bar.html#ab21c09c911ec182f1b4fe566350b2437" title="Sets the label of a top-level menu.">wxMenuBar::SetLabelTop()</a>.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_menu.html#a4350ea455980ea08d4d3104f69ef4bcb" title="Returns the title of the menu.">GetTitle()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aedd1c1536176ffec144f7e8bea85bd89"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxMenu::UpdateUI </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> * </td>
<td class="paramname"><em>source</em> = <code>NULL</code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sends events to <em>source</em> (or owning window if <span class="literal">NULL</span>) to update the menu UI. </p>
<p>This is called just before the menu is popped up with <a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df" title="Pops up the given menu at the specified coordinates, relative to this window, and returns control whe...">wxWindow::PopupMenu</a>, but the application may call it at other times if required. </p>
</div>
</div>
</div><!-- contents -->
<address class="footer">
<small>
Generated on Thu Nov 27 2014 13:46:51 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>
|