File: classwx_tool_bar.html

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (3367 lines) | stat: -rw-r--r-- 441,786 bytes parent folder | download | duplicates (2)
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
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
<!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: wxToolBar 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&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;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&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="classwx_tool_bar-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxToolBar Class Reference<div class="ingroups"><a class="el" href="group__group__class__miscwnd.html">Miscellaneous Windows</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/toolbar.h&gt;</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 wxToolBar:</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_tool_bar__inherit__graph.png" border="0" usemap="#wx_tool_bar_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_tool_bar_inherit__map" id="wx_tool_bar_inherit__map">
<area shape="rect" id="node2" href="classwx_control.html" title="This is the base class for a control or &quot;widget&quot;." alt="" coords="57,238,135,266"/><area shape="rect" id="node4" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen." alt="" coords="55,161,137,189"/><area shape="rect" id="node6" 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="node8" 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="node10" href="classwx_trackable.html" title="Add&#45;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 toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a <a class="el" href="classwx_frame.html" title="A frame is a window whose size and position can (usually) be changed by the user.">wxFrame</a>. </p>
<p>You may create a toolbar that is managed by a frame calling <a class="el" href="classwx_frame.html#a17b7fb1c9859d5612a45a79f55cb3d27" title="Creates a toolbar at the top or left of the frame.">wxFrame::CreateToolBar()</a>. Under Pocket PC, you should always use this function for creating the toolbar to be managed by the frame, so that wxWidgets can use a combined menubar and toolbar. Where you manage your own toolbars, create <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> as usual.</p>
<p>There are several different types of tools you can add to a toolbar. These types are controlled by the <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d" title="Item kinds for use with wxMenu, wxMenuItem, and wxToolBar.">wxItemKind</a> enumeration.</p>
<p>Note that many methods in <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> such as <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">wxToolBar::AddTool</a> return a <code>wxToolBarToolBase*</code> object. This should be regarded as an opaque handle representing the newly added toolbar item, providing access to its id and position within the toolbar. Changes to the item's state should be made through calls to <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> methods, for example <a class="el" href="classwx_tool_bar.html#ad6b3481a2a6d71cad7b0923adf15c9d0" title="Enables or disables the tool.">wxToolBar::EnableTool</a>. Calls to <code><a class="el" href="classwx_tool_bar_tool_base.html" title="A toolbar tool represents one item on the toolbar.">wxToolBarToolBase</a></code> methods (undocumented by purpose) will not change the visible state of the item within the tool bar.</p>
<p><b>wxMSW note</b>: Note that under wxMSW toolbar paints tools to reflect system-wide colours. If you use more than 16 colours in your tool bitmaps, you may wish to suppress this behaviour, otherwise system colours in your bitmaps will inadvertently be mapped to system colours. To do this, set the msw.remap system option before creating the toolbar: </p>
<div class="fragment"><div class="line"><a class="code" href="classwx_system_options.html#aa04043bfa0ffee30aaf09f2e436f6208" title="Sets an option.">wxSystemOptions::SetOption</a>(<span class="stringliteral">&quot;msw.remap&quot;</span>, 0);</div>
</div><!-- fragment --><p> If you wish to use 32-bit images (which include an alpha channel for transparency) use: </p>
<div class="fragment"><div class="line"><a class="code" href="classwx_system_options.html#aa04043bfa0ffee30aaf09f2e436f6208" title="Sets an option.">wxSystemOptions::SetOption</a>(<span class="stringliteral">&quot;msw.remap&quot;</span>, 2);</div>
</div><!-- fragment --><p> Then colour remapping is switched off, and a transparent background used. But only use this option under Windows XP with true colour: </p>
<div class="fragment"><div class="line"><span class="keywordflow">if</span> (<a class="code" href="interface_2wx_2app_8h.html#a01fd2cb0a8fbaade87800e71a50e855d" title="The global pointer to the singleton wxApp object.">wxTheApp</a>-&gt;GetComCtl32Version() &gt;= 600 &amp;&amp; <a class="code" href="group__group__funcmacro__gdi.html#gaa144903f36a28751aa9b80b3b5f804ba" title="Returns the depth of the display (a value of 1 denotes a monochrome display).">::wxDisplayDepth</a>() &gt;= 32)</div>
</div><!-- fragment --><h2>Styles</h2>
<p>This class supports the following styles:</p>
<div> </div><ul>
<li><span class="style">wxTB_FLAT</span>:<div class="styleDesc"> Gives the toolbar a flat look (Windows and GTK only). </div></li>
<li><span class="style">wxTB_DOCKABLE</span>:<div class="styleDesc"> Makes the toolbar floatable and dockable (GTK only). </div></li>
<li><span class="style">wxTB_HORIZONTAL</span>:<div class="styleDesc"> Specifies horizontal layout (default). </div></li>
<li><span class="style">wxTB_VERTICAL</span>:<div class="styleDesc"> Specifies vertical layout. </div></li>
<li><span class="style">wxTB_TEXT</span>:<div class="styleDesc"> Shows the text in the toolbar buttons; by default only icons are shown. </div></li>
<li><span class="style">wxTB_NOICONS</span>:<div class="styleDesc"> Specifies no icons in the toolbar buttons; by default they are shown. </div></li>
<li><span class="style">wxTB_NODIVIDER</span>:<div class="styleDesc"> Specifies no divider (border) above the toolbar (Windows only) </div></li>
<li><span class="style">wxTB_NOALIGN</span>:<div class="styleDesc"> Specifies no alignment with the parent window (Windows only, not very useful). </div></li>
<li><span class="style">wxTB_HORZ_LAYOUT</span>:<div class="styleDesc"> Shows the text and the icons alongside, not vertically stacked (Windows and GTK 2 only). This style must be used with <code>wxTB_TEXT</code>. </div></li>
<li><span class="style">wxTB_HORZ_TEXT</span>:<div class="styleDesc"> Combination of <code>wxTB_HORZ_LAYOUT</code> and <code>wxTB_TEXT</code>. </div></li>
<li><span class="style">wxTB_NO_TOOLTIPS</span>:<div class="styleDesc"> Don't show the short help tooltips for the tools when the mouse hovers over them. </div></li>
<li><span class="style">wxTB_BOTTOM</span>:<div class="styleDesc"> Align the toolbar at the bottom of parent window. </div></li>
<li><span class="style">wxTB_RIGHT</span>:<div class="styleDesc"> Align the toolbar at the right side of parent window. </div></li>
<li><span class="style">wxTB_DEFAULT_STYLE</span>:<div class="styleDesc"> Combination of <code>wxTB_HORIZONTAL</code> and <code>wxTB_FLAT</code>. This style is new since wxWidgets 2.9.5. </div></li>
</ul>
<p>See also <a class="el" href="overview_windowstyles.html">Window Styles</a>. Note that the wxMSW native toolbar ignores <code>wxTB_NOICONS</code> style. Also, toggling the <code>wxTB_TEXT</code> works only if the style was initially on.</p>
<h2>Events emitted by this class</h2>
<p>The following event handler macros redirect the events to member function handlers '<b>func</b>' with prototypes like: </p>
<div class="eventHandler"><span>void&#160;handlerFuncName(<a class="el" href="classwx_command_event.html" title="This event class contains information about command events, which originate from a variety of simple ...">wxCommandEvent</a>&amp;&#160;event)</span></div><p>Event macros for events emitted by this class:</p>
<div> </div><ul>
<li><span class="event">EVT_TOOL(id,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL</code> event (a synonym for <code>wxEVT_MENU</code>). Pass the id of the tool. </div></li>
<li><span class="event">EVT_MENU(id,  func)</span>:<div class="eventDesc"> The same as EVT_TOOL(). </div></li>
<li><span class="event">EVT_TOOL_RANGE(id1,  id2,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL</code> event for a range of identifiers. Pass the ids of the tools. </div></li>
<li><span class="event">EVT_MENU_RANGE(id1,  id2,  func)</span>:<div class="eventDesc"> The same as EVT_TOOL_RANGE(). </div></li>
<li><span class="event">EVT_TOOL_RCLICKED(id,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL_RCLICKED</code> event. Pass the id of the tool. (Not available on wxOSX.) </div></li>
<li><span class="event">EVT_TOOL_RCLICKED_RANGE(id1,  id2,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL_RCLICKED</code> event for a range of ids. Pass the ids of the tools. (Not available on wxOSX.) </div></li>
<li><span class="event">EVT_TOOL_ENTER(id,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL_ENTER</code> event. Pass the id of the toolbar itself. The value of <a class="el" href="classwx_command_event.html#a3e16380f20769b1ed4053c69fe614b13" title="Returns item index for a listbox or choice selection event (not valid for a deselection).">wxCommandEvent::GetSelection()</a> is the tool id, or -1 if the mouse cursor has moved off a tool. (Not available on wxOSX.) </div></li>
<li><span class="event">EVT_TOOL_DROPDOWN(id,  func)</span>:<div class="eventDesc"> Process a <code>wxEVT_TOOL_DROPDOWN</code> event. If unhandled, displays the default dropdown menu set using <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">wxToolBar::SetDropdownMenu()</a>. </div></li>
</ul>
<p>The toolbar class emits menu commands in the same way that a frame menubar does, so you can use one EVT_MENU() macro for both a menu item and a toolbar button. The event handler functions take a <a class="el" href="classwx_command_event.html" title="This event class contains information about command events, which originate from a variety of simple ...">wxCommandEvent</a> argument. For most event macros, the identifier of the tool is passed, but for EVT_TOOL_ENTER() the toolbar window identifier is passed and the tool identifier is retrieved from the <a class="el" href="classwx_command_event.html" title="This event class contains information about command events, which originate from a variety of simple ...">wxCommandEvent</a>. This is because the identifier may be <code>wxID_ANY</code> when the mouse moves off a tool, and <code>wxID_ANY</code> is not allowed as an identifier in the event system.</p>
<h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxcore">wxCore</a></span></div><div><span class="category">Category:</span>&#160;&#160;<span class="category_text"><a class="el" href="group__group__class__miscwnd.html">Miscellaneous Windows</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="overview_toolbar.html">Toolbar Overview</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:a1d03fd30dfb9c0af2e65164008eca1a3"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a1d03fd30dfb9c0af2e65164008eca1a3">wxToolBar</a> ()</td></tr>
<tr class="memdesc:a1d03fd30dfb9c0af2e65164008eca1a3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a1d03fd30dfb9c0af2e65164008eca1a3"></a><br/></td></tr>
<tr class="separator:a1d03fd30dfb9c0af2e65164008eca1a3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1c5d3a2853b41a2ef728dad18c321e1f"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a1c5d3a2853b41a2ef728dad18c321e1f">wxToolBar</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=<a class="el" href="interface_2wx_2toolbar_8h.html#ae8a3b6a5d0d3244ed73924ab2421a0d0a9a03bef2c82a31f2981860e7e283ad74">wxTB_HORIZONTAL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxToolBarNameStr)</td></tr>
<tr class="memdesc:a1c5d3a2853b41a2ef728dad18c321e1f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a toolbar.  <a href="#a1c5d3a2853b41a2ef728dad18c321e1f"></a><br/></td></tr>
<tr class="separator:a1c5d3a2853b41a2ef728dad18c321e1f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a612596bf858e2b2298e842d4c7cad7c1"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a612596bf858e2b2298e842d4c7cad7c1">~wxToolBar</a> ()</td></tr>
<tr class="memdesc:a612596bf858e2b2298e842d4c7cad7c1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Toolbar destructor.  <a href="#a612596bf858e2b2298e842d4c7cad7c1"></a><br/></td></tr>
<tr class="separator:a612596bf858e2b2298e842d4c7cad7c1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e650357ee8872a7443b3c4276d5cbd4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a2e650357ee8872a7443b3c4276d5cbd4">AddCheckTool</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap1, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpDisabled=<a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;longHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_object.html">wxObject</a> *clientData=NULL)</td></tr>
<tr class="memdesc:a2e650357ee8872a7443b3c4276d5cbd4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a new check (or toggle) tool to the toolbar.  <a href="#a2e650357ee8872a7443b3c4276d5cbd4"></a><br/></td></tr>
<tr class="separator:a2e650357ee8872a7443b3c4276d5cbd4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec263a8e47372eb78e91b8db8797731d"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#aec263a8e47372eb78e91b8db8797731d">AddControl</a> (<a class="el" href="classwx_control.html">wxControl</a> *control, const <a class="el" href="classwx_string.html">wxString</a> &amp;label=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:aec263a8e47372eb78e91b8db8797731d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds any control to the toolbar, typically e.g. a <a class="el" href="classwx_combo_box.html" title="A combobox is like a combination of an edit control and a listbox.">wxComboBox</a>.  <a href="#aec263a8e47372eb78e91b8db8797731d"></a><br/></td></tr>
<tr class="separator:aec263a8e47372eb78e91b8db8797731d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd8741bd04f531ccfa840e6c0ccc4c65"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#abd8741bd04f531ccfa840e6c0ccc4c65">AddRadioTool</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap1, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpDisabled=<a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;longHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_object.html">wxObject</a> *clientData=NULL)</td></tr>
<tr class="memdesc:abd8741bd04f531ccfa840e6c0ccc4c65"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a new radio tool to the toolbar.  <a href="#abd8741bd04f531ccfa840e6c0ccc4c65"></a><br/></td></tr>
<tr class="separator:abd8741bd04f531ccfa840e6c0ccc4c65"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acff16fd0b48ae42e9d73597fe66a8cca"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca">AddSeparator</a> ()</td></tr>
<tr class="memdesc:acff16fd0b48ae42e9d73597fe66a8cca"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a separator for spacing groups of tools.  <a href="#acff16fd0b48ae42e9d73597fe66a8cca"></a><br/></td></tr>
<tr class="separator:acff16fd0b48ae42e9d73597fe66a8cca"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb30df5ae52f2fabc974d0dd1376f5cd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#adb30df5ae52f2fabc974d0dd1376f5cd">AddStretchableSpace</a> ()</td></tr>
<tr class="memdesc:adb30df5ae52f2fabc974d0dd1376f5cd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a stretchable space to the toolbar.  <a href="#adb30df5ae52f2fabc974d0dd1376f5cd"></a><br/></td></tr>
<tr class="separator:adb30df5ae52f2fabc974d0dd1376f5cd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad431696ec829540e2f9889588f6589a5"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ad431696ec829540e2f9889588f6589a5">ClearTools</a> ()</td></tr>
<tr class="memdesc:ad431696ec829540e2f9889588f6589a5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes all the tools in the toolbar.  <a href="#ad431696ec829540e2f9889588f6589a5"></a><br/></td></tr>
<tr class="separator:ad431696ec829540e2f9889588f6589a5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea3c91f9b3d7505e4b511f678883c73d"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d">DeleteTool</a> (int toolId)</td></tr>
<tr class="memdesc:aea3c91f9b3d7505e4b511f678883c73d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the specified tool from the toolbar and deletes it.  <a href="#aea3c91f9b3d7505e4b511f678883c73d"></a><br/></td></tr>
<tr class="separator:aea3c91f9b3d7505e4b511f678883c73d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a441f430c309c1fa8e43803fe09c2fa25"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a441f430c309c1fa8e43803fe09c2fa25">DeleteToolByPos</a> (size_t pos)</td></tr>
<tr class="memdesc:a441f430c309c1fa8e43803fe09c2fa25"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function behaves like <a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a> but it deletes the tool at the specified position and not the one with the given id.  <a href="#a441f430c309c1fa8e43803fe09c2fa25"></a><br/></td></tr>
<tr class="separator:a441f430c309c1fa8e43803fe09c2fa25"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6b3481a2a6d71cad7b0923adf15c9d0"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ad6b3481a2a6d71cad7b0923adf15c9d0">EnableTool</a> (int toolId, bool enable)</td></tr>
<tr class="memdesc:ad6b3481a2a6d71cad7b0923adf15c9d0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables the tool.  <a href="#ad6b3481a2a6d71cad7b0923adf15c9d0"></a><br/></td></tr>
<tr class="separator:ad6b3481a2a6d71cad7b0923adf15c9d0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1157728ed141356867ade93418dd87c1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a1157728ed141356867ade93418dd87c1">FindById</a> (int id) const </td></tr>
<tr class="memdesc:a1157728ed141356867ade93418dd87c1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the tool identified by <em>id</em> or <span class="literal">NULL</span> if no corresponding tool is found.  <a href="#a1157728ed141356867ade93418dd87c1"></a><br/></td></tr>
<tr class="separator:a1157728ed141356867ade93418dd87c1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a21e7604b705b699fcf1fe5eecb9976e0"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_control.html">wxControl</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a21e7604b705b699fcf1fe5eecb9976e0">FindControl</a> (int id)</td></tr>
<tr class="memdesc:a21e7604b705b699fcf1fe5eecb9976e0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the control identified by <em>id</em> or <span class="literal">NULL</span> if no corresponding control is found.  <a href="#a21e7604b705b699fcf1fe5eecb9976e0"></a><br/></td></tr>
<tr class="separator:a21e7604b705b699fcf1fe5eecb9976e0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4968860591b08c4e00a9d20e3bb73af"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ae4968860591b08c4e00a9d20e3bb73af">FindToolForPosition</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y) const </td></tr>
<tr class="memdesc:ae4968860591b08c4e00a9d20e3bb73af"><td class="mdescLeft">&#160;</td><td class="mdescRight">Finds a tool for the given mouse position.  <a href="#ae4968860591b08c4e00a9d20e3bb73af"></a><br/></td></tr>
<tr class="separator:ae4968860591b08c4e00a9d20e3bb73af"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69a14d0bc57db1cc8da86c48a7f6610a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a69a14d0bc57db1cc8da86c48a7f6610a">GetMargins</a> () const </td></tr>
<tr class="memdesc:a69a14d0bc57db1cc8da86c48a7f6610a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the left/right and top/bottom margins, which are also used for inter-toolspacing.  <a href="#a69a14d0bc57db1cc8da86c48a7f6610a"></a><br/></td></tr>
<tr class="separator:a69a14d0bc57db1cc8da86c48a7f6610a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a17fb94f787394647021e7f4327ea0c04"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a17fb94f787394647021e7f4327ea0c04">GetToolBitmapSize</a> () const </td></tr>
<tr class="memdesc:a17fb94f787394647021e7f4327ea0c04"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of bitmap that the toolbar expects to have.  <a href="#a17fb94f787394647021e7f4327ea0c04"></a><br/></td></tr>
<tr class="separator:a17fb94f787394647021e7f4327ea0c04"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a40b1f6f6dc8483d721997afd4fcf05"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a2a40b1f6f6dc8483d721997afd4fcf05">GetToolByPos</a> (int pos) const </td></tr>
<tr class="memdesc:a2a40b1f6f6dc8483d721997afd4fcf05"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the tool at ordinal position <em>pos</em>.  <a href="#a2a40b1f6f6dc8483d721997afd4fcf05"></a><br/></td></tr>
<tr class="separator:a2a40b1f6f6dc8483d721997afd4fcf05"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a962ad5609303d6ed5151e396be47b501"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_object.html">wxObject</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a962ad5609303d6ed5151e396be47b501">GetToolClientData</a> (int toolId) const </td></tr>
<tr class="memdesc:a962ad5609303d6ed5151e396be47b501"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get any client data associated with the tool.  <a href="#a962ad5609303d6ed5151e396be47b501"></a><br/></td></tr>
<tr class="separator:a962ad5609303d6ed5151e396be47b501"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e00931bc47567febe8c693b4ca4245d"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a5e00931bc47567febe8c693b4ca4245d">GetToolEnabled</a> (int toolId) const </td></tr>
<tr class="memdesc:a5e00931bc47567febe8c693b4ca4245d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called to determine whether a tool is enabled (responds to user input).  <a href="#a5e00931bc47567febe8c693b4ca4245d"></a><br/></td></tr>
<tr class="separator:a5e00931bc47567febe8c693b4ca4245d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a708978cb19385f9ee3a6f688b8be47df"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a708978cb19385f9ee3a6f688b8be47df">GetToolLongHelp</a> (int toolId) const </td></tr>
<tr class="memdesc:a708978cb19385f9ee3a6f688b8be47df"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the long help for the given tool.  <a href="#a708978cb19385f9ee3a6f688b8be47df"></a><br/></td></tr>
<tr class="separator:a708978cb19385f9ee3a6f688b8be47df"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9020f56133c3b793068618c1e8a798fc"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a9020f56133c3b793068618c1e8a798fc">GetToolPacking</a> () const </td></tr>
<tr class="memdesc:a9020f56133c3b793068618c1e8a798fc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the value used for packing tools.  <a href="#a9020f56133c3b793068618c1e8a798fc"></a><br/></td></tr>
<tr class="separator:a9020f56133c3b793068618c1e8a798fc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50b893fd3fe02d123cf1f54f74f7e23f"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a50b893fd3fe02d123cf1f54f74f7e23f">GetToolPos</a> (int toolId) const </td></tr>
<tr class="memdesc:a50b893fd3fe02d123cf1f54f74f7e23f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the tool position in the toolbar, or <code>wxNOT_FOUND</code> if the tool is not found.  <a href="#a50b893fd3fe02d123cf1f54f74f7e23f"></a><br/></td></tr>
<tr class="separator:a50b893fd3fe02d123cf1f54f74f7e23f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa275ee6955ea92ed633b3c952e620829"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#aa275ee6955ea92ed633b3c952e620829">GetToolSeparation</a> () const </td></tr>
<tr class="memdesc:aa275ee6955ea92ed633b3c952e620829"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the default separator size.  <a href="#aa275ee6955ea92ed633b3c952e620829"></a><br/></td></tr>
<tr class="separator:aa275ee6955ea92ed633b3c952e620829"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ae92fba03e57f40c626f41217cc2fb1"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a8ae92fba03e57f40c626f41217cc2fb1">GetToolShortHelp</a> (int toolId) const </td></tr>
<tr class="memdesc:a8ae92fba03e57f40c626f41217cc2fb1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the short help for the given tool.  <a href="#a8ae92fba03e57f40c626f41217cc2fb1"></a><br/></td></tr>
<tr class="separator:a8ae92fba03e57f40c626f41217cc2fb1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef3f23ccc5faee6fc9de7233ac959612"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#aef3f23ccc5faee6fc9de7233ac959612">GetToolSize</a> () const </td></tr>
<tr class="memdesc:aef3f23ccc5faee6fc9de7233ac959612"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D effects.  <a href="#aef3f23ccc5faee6fc9de7233ac959612"></a><br/></td></tr>
<tr class="separator:aef3f23ccc5faee6fc9de7233ac959612"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab33c570054526074d0ad6a74868bb7ee"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ab33c570054526074d0ad6a74868bb7ee">GetToolState</a> (int toolId) const </td></tr>
<tr class="memdesc:ab33c570054526074d0ad6a74868bb7ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the on/off state of a toggle tool.  <a href="#ab33c570054526074d0ad6a74868bb7ee"></a><br/></td></tr>
<tr class="separator:ab33c570054526074d0ad6a74868bb7ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4296cfe7a856e20f3da5805d2c21e91c"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a4296cfe7a856e20f3da5805d2c21e91c">GetToolsCount</a> () const </td></tr>
<tr class="memdesc:a4296cfe7a856e20f3da5805d2c21e91c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of tools in the toolbar.  <a href="#a4296cfe7a856e20f3da5805d2c21e91c"></a><br/></td></tr>
<tr class="separator:a4296cfe7a856e20f3da5805d2c21e91c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a479503a1e3be0f387fd2da9365fc8eb4"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a479503a1e3be0f387fd2da9365fc8eb4">InsertControl</a> (size_t pos, <a class="el" href="classwx_control.html">wxControl</a> *control, const <a class="el" href="classwx_string.html">wxString</a> &amp;label=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a479503a1e3be0f387fd2da9365fc8eb4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts the control into the toolbar at the given position.  <a href="#a479503a1e3be0f387fd2da9365fc8eb4"></a><br/></td></tr>
<tr class="separator:a479503a1e3be0f387fd2da9365fc8eb4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a57e48a59e3baa218dd294be4357cde7c"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a57e48a59e3baa218dd294be4357cde7c">InsertSeparator</a> (size_t pos)</td></tr>
<tr class="memdesc:a57e48a59e3baa218dd294be4357cde7c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts the separator into the toolbar at the given position.  <a href="#a57e48a59e3baa218dd294be4357cde7c"></a><br/></td></tr>
<tr class="separator:a57e48a59e3baa218dd294be4357cde7c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1c54313589268d8cd8ff692da4294af"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ae1c54313589268d8cd8ff692da4294af">InsertStretchableSpace</a> (size_t pos)</td></tr>
<tr class="memdesc:ae1c54313589268d8cd8ff692da4294af"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts a stretchable space at the given position.  <a href="#ae1c54313589268d8cd8ff692da4294af"></a><br/></td></tr>
<tr class="separator:ae1c54313589268d8cd8ff692da4294af"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab25e206f57a873d909cf5c45d2f91971"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ab25e206f57a873d909cf5c45d2f91971">OnLeftClick</a> (int toolId, bool toggleDown)</td></tr>
<tr class="memdesc:ab25e206f57a873d909cf5c45d2f91971"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the user clicks on a tool with the left mouse button.  <a href="#ab25e206f57a873d909cf5c45d2f91971"></a><br/></td></tr>
<tr class="separator:ab25e206f57a873d909cf5c45d2f91971"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a11fb9b5c65661ea63d28198ce156cf4d"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a11fb9b5c65661ea63d28198ce156cf4d">OnMouseEnter</a> (int toolId)</td></tr>
<tr class="memdesc:a11fb9b5c65661ea63d28198ce156cf4d"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is called when the mouse cursor moves into a tool or out of the toolbar.  <a href="#a11fb9b5c65661ea63d28198ce156cf4d"></a><br/></td></tr>
<tr class="separator:a11fb9b5c65661ea63d28198ce156cf4d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:add255ea52fdf9d5bfde64a22bf94dab6"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#add255ea52fdf9d5bfde64a22bf94dab6">OnRightClick</a> (int toolId, long x, long y)</td></tr>
<tr class="separator:add255ea52fdf9d5bfde64a22bf94dab6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb31ce337a2d3c1e30e8e3748905ecbf"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf">Realize</a> ()</td></tr>
<tr class="memdesc:abb31ce337a2d3c1e30e8e3748905ecbf"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function should be called after you have added tools.  <a href="#abb31ce337a2d3c1e30e8e3748905ecbf"></a><br/></td></tr>
<tr class="separator:abb31ce337a2d3c1e30e8e3748905ecbf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50f65799ae6294ee4ba08a1c75120089"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a50f65799ae6294ee4ba08a1c75120089">RemoveTool</a> (int id)</td></tr>
<tr class="memdesc:a50f65799ae6294ee4ba08a1c75120089"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the given tool from the toolbar but doesn't delete it.  <a href="#a50f65799ae6294ee4ba08a1c75120089"></a><br/></td></tr>
<tr class="separator:a50f65799ae6294ee4ba08a1c75120089"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab360aaa5af1d07783071351cbe5c836b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#ab360aaa5af1d07783071351cbe5c836b">SetBitmapResource</a> (int resourceId)</td></tr>
<tr class="memdesc:ab360aaa5af1d07783071351cbe5c836b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the bitmap resource identifier for specifying tool bitmaps as indices into a custom bitmap.  <a href="#ab360aaa5af1d07783071351cbe5c836b"></a><br/></td></tr>
<tr class="separator:ab360aaa5af1d07783071351cbe5c836b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77e36541602e9c0f7daa4e9bf8b6e33e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e">SetDropdownMenu</a> (int id, <a class="el" href="classwx_menu.html">wxMenu</a> *menu)</td></tr>
<tr class="memdesc:a77e36541602e9c0f7daa4e9bf8b6e33e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the dropdown menu for the tool given by its <em>id</em>.  <a href="#a77e36541602e9c0f7daa4e9bf8b6e33e"></a><br/></td></tr>
<tr class="separator:a77e36541602e9c0f7daa4e9bf8b6e33e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a57398893cb553fad90ffa7cd18cb1882"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a57398893cb553fad90ffa7cd18cb1882">SetToolBitmapSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a57398893cb553fad90ffa7cd18cb1882"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the default size of each tool bitmap.  <a href="#a57398893cb553fad90ffa7cd18cb1882"></a><br/></td></tr>
<tr class="separator:a57398893cb553fad90ffa7cd18cb1882"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e3c80eeecb4723c9d4f090caab5151f"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a4e3c80eeecb4723c9d4f090caab5151f">SetToolClientData</a> (int id, <a class="el" href="classwx_object.html">wxObject</a> *clientData)</td></tr>
<tr class="memdesc:a4e3c80eeecb4723c9d4f090caab5151f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the client data associated with the tool.  <a href="#a4e3c80eeecb4723c9d4f090caab5151f"></a><br/></td></tr>
<tr class="separator:a4e3c80eeecb4723c9d4f090caab5151f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a051db073ec1aff7bb69cb58baa1a9ba9"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a051db073ec1aff7bb69cb58baa1a9ba9">SetToolDisabledBitmap</a> (int id, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap)</td></tr>
<tr class="memdesc:a051db073ec1aff7bb69cb58baa1a9ba9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the bitmap to be used by the tool with the given ID when the tool is in a disabled state.  <a href="#a051db073ec1aff7bb69cb58baa1a9ba9"></a><br/></td></tr>
<tr class="separator:a051db073ec1aff7bb69cb58baa1a9ba9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abaf8db63f2bc75e0de67280b7e83711d"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#abaf8db63f2bc75e0de67280b7e83711d">SetToolLongHelp</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;helpString)</td></tr>
<tr class="memdesc:abaf8db63f2bc75e0de67280b7e83711d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the long help for the given tool.  <a href="#abaf8db63f2bc75e0de67280b7e83711d"></a><br/></td></tr>
<tr class="separator:abaf8db63f2bc75e0de67280b7e83711d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a46b05975759ab8dc745908210ce17fcc"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a46b05975759ab8dc745908210ce17fcc">SetToolNormalBitmap</a> (int id, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap)</td></tr>
<tr class="memdesc:a46b05975759ab8dc745908210ce17fcc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the bitmap to be used by the tool with the given ID.  <a href="#a46b05975759ab8dc745908210ce17fcc"></a><br/></td></tr>
<tr class="separator:a46b05975759ab8dc745908210ce17fcc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a26ddfe7e52a93fbc4c169159863c629c"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a26ddfe7e52a93fbc4c169159863c629c">SetToolPacking</a> (int packing)</td></tr>
<tr class="memdesc:a26ddfe7e52a93fbc4c169159863c629c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the value used for spacing tools.  <a href="#a26ddfe7e52a93fbc4c169159863c629c"></a><br/></td></tr>
<tr class="separator:a26ddfe7e52a93fbc4c169159863c629c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a163c9bfdd0f9f30707688bf498ab788c"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a163c9bfdd0f9f30707688bf498ab788c">SetToolSeparation</a> (int separation)</td></tr>
<tr class="memdesc:a163c9bfdd0f9f30707688bf498ab788c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the default separator size.  <a href="#a163c9bfdd0f9f30707688bf498ab788c"></a><br/></td></tr>
<tr class="separator:a163c9bfdd0f9f30707688bf498ab788c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a28ad34823b70faeae9a64c6152b8fcd1"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a28ad34823b70faeae9a64c6152b8fcd1">SetToolShortHelp</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;helpString)</td></tr>
<tr class="memdesc:a28ad34823b70faeae9a64c6152b8fcd1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the short help for the given tool.  <a href="#a28ad34823b70faeae9a64c6152b8fcd1"></a><br/></td></tr>
<tr class="separator:a28ad34823b70faeae9a64c6152b8fcd1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a7a9fb115b35f267d4b10a293667542"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a9a7a9fb115b35f267d4b10a293667542">ToggleTool</a> (int toolId, bool toggle)</td></tr>
<tr class="memdesc:a9a7a9fb115b35f267d4b10a293667542"><td class="mdescLeft">&#160;</td><td class="mdescRight">Toggles a tool on or off.  <a href="#a9a7a9fb115b35f267d4b10a293667542"></a><br/></td></tr>
<tr class="separator:a9a7a9fb115b35f267d4b10a293667542"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b4f0cacaff5e06c4894294c88b0b4f0"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a1b4f0cacaff5e06c4894294c88b0b4f0">CreateTool</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpNormal, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpDisabled=<a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a>, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>, <a class="el" href="classwx_object.html">wxObject</a> *clientData=NULL, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;longHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a1b4f0cacaff5e06c4894294c88b0b4f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Factory function to create a new toolbar tool.  <a href="#a1b4f0cacaff5e06c4894294c88b0b4f0"></a><br/></td></tr>
<tr class="separator:a1b4f0cacaff5e06c4894294c88b0b4f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ad5be5698778b5d215dcabf8b907701"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a2ad5be5698778b5d215dcabf8b907701">CreateTool</a> (<a class="el" href="classwx_control.html">wxControl</a> *control, const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:a2ad5be5698778b5d215dcabf8b907701"><td class="mdescLeft">&#160;</td><td class="mdescRight">Factory function to create a new control toolbar tool.  <a href="#a2ad5be5698778b5d215dcabf8b907701"></a><br/></td></tr>
<tr class="separator:a2ad5be5698778b5d215dcabf8b907701"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr class="memitem:acd25fec352f66fb174f7f81a7d834b21"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21">AddTool</a> (<a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *tool)</td></tr>
<tr class="memdesc:acd25fec352f66fb174f7f81a7d834b21"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a tool to the toolbar.  <a href="#acd25fec352f66fb174f7f81a7d834b21"></a><br/></td></tr>
<tr class="separator:acd25fec352f66fb174f7f81a7d834b21"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adee3758ad1dfdb1b7921648729d1bf39"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#adee3758ad1dfdb1b7921648729d1bf39">AddTool</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelp=<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:adee3758ad1dfdb1b7921648729d1bf39"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a tool to the toolbar.  <a href="#adee3758ad1dfdb1b7921648729d1bf39"></a><br/></td></tr>
<tr class="separator:adee3758ad1dfdb1b7921648729d1bf39"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a487ba33ad14dd9fe6cb8c29a71d31d4f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a487ba33ad14dd9fe6cb8c29a71d31d4f">AddTool</a> (int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpDisabled, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;longHelpString=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_object.html">wxObject</a> *clientData=NULL)</td></tr>
<tr class="memdesc:a487ba33ad14dd9fe6cb8c29a71d31d4f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a tool to the toolbar.  <a href="#a487ba33ad14dd9fe6cb8c29a71d31d4f"></a><br/></td></tr>
<tr class="separator:a487ba33ad14dd9fe6cb8c29a71d31d4f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr class="memitem:a584c791a0108fd848c9cd1e997316ad3"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3">InsertTool</a> (size_t pos, int toolId, const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bitmap, const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpDisabled=<a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a>, <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a> kind=<a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;shortHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;longHelp=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_object.html">wxObject</a> *clientData=NULL)</td></tr>
<tr class="memdesc:a584c791a0108fd848c9cd1e997316ad3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts the tool with the specified attributes into the toolbar at the given position.  <a href="#a584c791a0108fd848c9cd1e997316ad3"></a><br/></td></tr>
<tr class="separator:a584c791a0108fd848c9cd1e997316ad3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95ac49d3dd205b02425ca6da0686d612"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a95ac49d3dd205b02425ca6da0686d612">InsertTool</a> (size_t pos, <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *tool)</td></tr>
<tr class="memdesc:a95ac49d3dd205b02425ca6da0686d612"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts the tool with the specified attributes into the toolbar at the given position.  <a href="#a95ac49d3dd205b02425ca6da0686d612"></a><br/></td></tr>
<tr class="separator:a95ac49d3dd205b02425ca6da0686d612"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr class="memitem:af35993e6b491f619b810fbcf084f44e3"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#af35993e6b491f619b810fbcf084f44e3">SetMargins</a> (int x, int y)</td></tr>
<tr class="memdesc:af35993e6b491f619b810fbcf084f44e3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the values to be used as margins for the toolbar.  <a href="#af35993e6b491f619b810fbcf084f44e3"></a><br/></td></tr>
<tr class="separator:af35993e6b491f619b810fbcf084f44e3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f793b01108f804ab076d05420b420da"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_tool_bar.html#a7f793b01108f804ab076d05420b420da">SetMargins</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a7f793b01108f804ab076d05420b420da"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the margins for the toolbar.  <a href="#a7f793b01108f804ab076d05420b420da"></a><br/></td></tr>
<tr class="separator:a7f793b01108f804ab076d05420b420da"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_control"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_control')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_control.html">wxControl</a></td></tr>
<tr class="memitem:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#adb8f3edf807efa9159de826bf92d6a44">wxControl</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator=<a class="el" href="validate_8h.html#af1e90d8aa1824fd2ce4024ef7e40703c">wxDefaultValidator</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxControlNameStr)</td></tr>
<tr class="memdesc:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a control.  <a href="#adb8f3edf807efa9159de826bf92d6a44"></a><br/></td></tr>
<tr class="separator:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a08428de2ba5cc988a86fe17071d49522">wxControl</a> ()</td></tr>
<tr class="memdesc:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor to allow 2-phase creation.  <a href="#a08428de2ba5cc988a86fe17071d49522"></a><br/></td></tr>
<tr class="separator:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe23789c94c86907463a0e8434be822a inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#abe23789c94c86907463a0e8434be822a">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator=<a class="el" href="validate_8h.html#af1e90d8aa1824fd2ce4024ef7e40703c">wxDefaultValidator</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxControlNameStr)</td></tr>
<tr class="separator:abe23789c94c86907463a0e8434be822a inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a8cd7ac81debaf506d6d146528c3d9a82">Command</a> (<a class="el" href="classwx_command_event.html">wxCommandEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Simulates the effect of the user issuing a command to the item.  <a href="#a8cd7ac81debaf506d6d146528c3d9a82"></a><br/></td></tr>
<tr class="separator:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a0c15321992cfb77595db57cd4e4aec37">GetLabel</a> () const </td></tr>
<tr class="memdesc:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the control's label, as it was passed to <a class="el" href="classwx_control.html#a2c2ae20554e7db5e765f163022ce09c0" title="Sets the control&#39;s label.">SetLabel()</a>.  <a href="#a0c15321992cfb77595db57cd4e4aec37"></a><br/></td></tr>
<tr class="separator:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ad95895ecdd123dff35866db1d2430a76">GetLabelText</a> () const </td></tr>
<tr class="memdesc:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the control's label without mnemonics.  <a href="#ad95895ecdd123dff35866db1d2430a76"></a><br/></td></tr>
<tr class="separator:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a7f163dbbfa581a52192a94506784efc9">GetSizeFromTextSize</a> (int xlen, int ylen=-1) const </td></tr>
<tr class="memdesc:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determine the size needed by the control to leave the given area for its text.  <a href="#a7f163dbbfa581a52192a94506784efc9"></a><br/></td></tr>
<tr class="separator:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ad4490fe34a7f7b1f763a1de61c439681">GetSizeFromTextSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;tsize) const </td></tr>
<tr class="memdesc:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ad4490fe34a7f7b1f763a1de61c439681"></a><br/></td></tr>
<tr class="separator:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a2c2ae20554e7db5e765f163022ce09c0">SetLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the control's label.  <a href="#a2c2ae20554e7db5e765f163022ce09c0"></a><br/></td></tr>
<tr class="separator:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ae092899c3fe658831a9c796755a65eb7">SetLabelText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;text)</td></tr>
<tr class="memdesc:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the control's label to exactly the given string.  <a href="#ae092899c3fe658831a9c796755a65eb7"></a><br/></td></tr>
<tr class="separator:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#afeb308dc3b54d8d735b33cb250395503">SetLabelMarkup</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;markup)</td></tr>
<tr class="memdesc:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the controls label to a string using markup.  <a href="#afeb308dc3b54d8d735b33cb250395503"></a><br/></td></tr>
<tr class="separator:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_window"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a695200a4915b934926dcf32afa44544c">wxWindow</a> ()</td></tr>
<tr class="memdesc:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a695200a4915b934926dcf32afa44544c"></a><br/></td></tr>
<tr class="separator:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7799009b10d1765d1bbb6db4994f922e">wxWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="memdesc:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a window, which can be a child of a frame, dialog or any other non-control window.  <a href="#a7799009b10d1765d1bbb6db4994f922e"></a><br/></td></tr>
<tr class="separator:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0c2a46181a89c349327f0b276f5ef8d7">~wxWindow</a> ()</td></tr>
<tr class="memdesc:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a0c2a46181a89c349327f0b276f5ef8d7"></a><br/></td></tr>
<tr class="separator:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95b7ca8faa033f5ab35458887c07bf38 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a95b7ca8faa033f5ab35458887c07bf38">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="separator:a95b7ca8faa033f5ab35458887c07bf38 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3afbd49b1ea2f8275e3600dcac102923">AcceptsFocus</a> () const </td></tr>
<tr class="memdesc:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method may be overridden in the derived classes to return <span class="literal">false</span> to indicate that this control doesn't accept input at all (i.e. behaves like e.g. <a class="el" href="classwx_static_text.html" title="A static text control displays one or more lines of read-only text.">wxStaticText</a>) and so doesn't need focus.  <a href="#a3afbd49b1ea2f8275e3600dcac102923"></a><br/></td></tr>
<tr class="separator:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2370bdd3ab08e7ef3c7555c6aa8301b8">AcceptsFocusFromKeyboard</a> () const </td></tr>
<tr class="memdesc:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method may be overridden in the derived classes to return <span class="literal">false</span> to indicate that while this control can, in principle, have focus if the user clicks it with the mouse, it shouldn't be included in the TAB traversal chain when using the keyboard.  <a href="#a2370bdd3ab08e7ef3c7555c6aa8301b8"></a><br/></td></tr>
<tr class="separator:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac7ed96693517630f4d2e99265b76d1a9">AcceptsFocusRecursively</a> () const </td></tr>
<tr class="memdesc:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Overridden to indicate whether this window or one of its children accepts focus.  <a href="#ac7ed96693517630f4d2e99265b76d1a9"></a><br/></td></tr>
<tr class="separator:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1415b1354d5670237090de09da28b662">IsFocusable</a> () const </td></tr>
<tr class="memdesc:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window itself have focus?  <a href="#a1415b1354d5670237090de09da28b662"></a><br/></td></tr>
<tr class="separator:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acd7f1a89fac1fda0ed49f7140d38d1b1">CanAcceptFocus</a> () const </td></tr>
<tr class="memdesc:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window have focus right now?  <a href="#acd7f1a89fac1fda0ed49f7140d38d1b1"></a><br/></td></tr>
<tr class="separator:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a855b39d837f0ae6d13d0e30d0c9682">CanAcceptFocusFromKeyboard</a> () const </td></tr>
<tr class="memdesc:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window be assigned focus from keyboard right now?  <a href="#a6a855b39d837f0ae6d13d0e30d0c9682"></a><br/></td></tr>
<tr class="separator:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4e0abff99d64d2a595ee0ab4b415bbd6">HasFocus</a> () const </td></tr>
<tr class="memdesc:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window (or in case of composite controls, its main child window) has focus.  <a href="#a4e0abff99d64d2a595ee0ab4b415bbd6"></a><br/></td></tr>
<tr class="separator:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2b8b2e99231a0ec1a05f5066f1b7f3d8">SetCanFocus</a> (bool canFocus)</td></tr>
<tr class="memdesc:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is only implemented by ports which have support for native TAB traversal (such as GTK+ 2.0).  <a href="#a2b8b2e99231a0ec1a05f5066f1b7f3d8"></a><br/></td></tr>
<tr class="separator:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a697f9f8d3ff389790f1c74b59bcb1d75">SetFocus</a> ()</td></tr>
<tr class="memdesc:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This sets the window to receive keyboard input.  <a href="#a697f9f8d3ff389790f1c74b59bcb1d75"></a><br/></td></tr>
<tr class="separator:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6fa03f82d7917dff482754d0d2e2b1c8">SetFocusFromKbd</a> ()</td></tr>
<tr class="memdesc:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is called by wxWidgets keyboard navigation code when the user gives the focus to this window from keyboard (e.g.  <a href="#a6fa03f82d7917dff482754d0d2e2b1c8"></a><br/></td></tr>
<tr class="separator:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abf60159278059a5bb397eb8647227bb3">AddChild</a> (<a class="el" href="classwx_window.html">wxWindow</a> *child)</td></tr>
<tr class="memdesc:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child window.  <a href="#abf60159278059a5bb397eb8647227bb3"></a><br/></td></tr>
<tr class="separator:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aff47b32c8d42d515ea0bb6a6c2fea917">DestroyChildren</a> ()</td></tr>
<tr class="memdesc:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys all children of a window.  <a href="#aff47b32c8d42d515ea0bb6a6c2fea917"></a><br/></td></tr>
<tr class="separator:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3468ef382c612b5f8e91c7c18d00a69f">FindWindow</a> (long id) const </td></tr>
<tr class="memdesc:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a child of this window, by <em>id</em>.  <a href="#a3468ef382c612b5f8e91c7c18d00a69f"></a><br/></td></tr>
<tr class="separator:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab2dad735acc2121b964ee1d51836cffa">FindWindow</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name) const </td></tr>
<tr class="memdesc:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a child of this window, by name.  <a href="#ab2dad735acc2121b964ee1d51836cffa"></a><br/></td></tr>
<tr class="separator:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">wxWindowList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad500085ad0511879b5e018706c91a494">GetChildren</a> ()</td></tr>
<tr class="memdesc:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a reference to the list of the window's children.  <a href="#ad500085ad0511879b5e018706c91a494"></a><br/></td></tr>
<tr class="separator:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const wxWindowList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a666cfe7cc8eda6fcecfd39c67c50f609">GetChildren</a> () const </td></tr>
<tr class="memdesc:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a666cfe7cc8eda6fcecfd39c67c50f609"></a><br/></td></tr>
<tr class="separator:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acee332ed4368d26e8bc3db5767c1240a">RemoveChild</a> (<a class="el" href="classwx_window.html">wxWindow</a> *child)</td></tr>
<tr class="memdesc:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a child window.  <a href="#acee332ed4368d26e8bc3db5767c1240a"></a><br/></td></tr>
<tr class="separator:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a55d3155d2d3139a84e8fb19a8900aa76">GetGrandParent</a> () const </td></tr>
<tr class="memdesc:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the grandparent of a window, or <span class="literal">NULL</span> if there isn't one.  <a href="#a55d3155d2d3139a84e8fb19a8900aa76"></a><br/></td></tr>
<tr class="separator:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a41608736affe2ff115d80d8f69dc832e">GetNextSibling</a> () const </td></tr>
<tr class="memdesc:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the next window after this one among the parent's children or <span class="literal">NULL</span> if this window is the last child.  <a href="#a41608736affe2ff115d80d8f69dc832e"></a><br/></td></tr>
<tr class="separator:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a63871f881941b99b4b94328d1c4cd163">GetParent</a> () const </td></tr>
<tr class="memdesc:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the parent of the window, or <span class="literal">NULL</span> if there is no parent.  <a href="#a63871f881941b99b4b94328d1c4cd163"></a><br/></td></tr>
<tr class="separator:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa4cb912eb28be31279fa1b95747c6d02">GetPrevSibling</a> () const </td></tr>
<tr class="memdesc:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the previous window before this one among the parent's children or <code></code> <span class="literal">NULL</span> if this window is the first child.  <a href="#aa4cb912eb28be31279fa1b95747c6d02"></a><br/></td></tr>
<tr class="separator:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a469f0881da248d37691440c9d4cc7200">IsDescendant</a> (wxWindowBase *win) const </td></tr>
<tr class="memdesc:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Check if the specified window is a descendant of this one.  <a href="#a469f0881da248d37691440c9d4cc7200"></a><br/></td></tr>
<tr class="separator:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7977b749284e65aecfed2ce146799cb9">Reparent</a> (<a class="el" href="classwx_window.html">wxWindow</a> *newParent)</td></tr>
<tr class="memdesc:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reparents the window, i.e. the window will be removed from its current parent window (e.g.  <a href="#a7977b749284e65aecfed2ce146799cb9"></a><br/></td></tr>
<tr class="separator:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aae29552806a328c6a55ef8f07647f5ba">AlwaysShowScrollbars</a> (bool hflag=true, bool vflag=true)</td></tr>
<tr class="memdesc:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Call this function to force one or both scrollbars to be always shown, even if the window is big enough to show its entire contents without scrolling.  <a href="#aae29552806a328c6a55ef8f07647f5ba"></a><br/></td></tr>
<tr class="separator:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3e23d10c17943fd873d0acb472db0caa">GetScrollPos</a> (int orientation) const </td></tr>
<tr class="memdesc:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar position.  <a href="#a3e23d10c17943fd873d0acb472db0caa"></a><br/></td></tr>
<tr class="separator:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a067d2a38efbf2f535f717f1027003281">GetScrollRange</a> (int orientation) const </td></tr>
<tr class="memdesc:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar range.  <a href="#a067d2a38efbf2f535f717f1027003281"></a><br/></td></tr>
<tr class="separator:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a10d24c60525a1c612cd775fc44dd1953">GetScrollThumb</a> (int orientation) const </td></tr>
<tr class="memdesc:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar thumb size.  <a href="#a10d24c60525a1c612cd775fc44dd1953"></a><br/></td></tr>
<tr class="separator:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a179f9a770f8c835f279923d2cbe5d766">CanScroll</a> (int orient) const </td></tr>
<tr class="memdesc:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window can have a scroll bar in this orientation.  <a href="#a179f9a770f8c835f279923d2cbe5d766"></a><br/></td></tr>
<tr class="separator:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a950847ecf2d488d83c14a74a3906f668">HasScrollbar</a> (int orient) const </td></tr>
<tr class="memdesc:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window currently has a scroll bar for this orientation.  <a href="#a950847ecf2d488d83c14a74a3906f668"></a><br/></td></tr>
<tr class="separator:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aeeef7eaf8c8f1ec1a54e7a68d63923d0">IsScrollbarAlwaysShown</a> (int orient) const </td></tr>
<tr class="memdesc:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether a scrollbar is always shown.  <a href="#aeeef7eaf8c8f1ec1a54e7a68d63923d0"></a><br/></td></tr>
<tr class="separator:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64">ScrollLines</a> (int lines)</td></tr>
<tr class="memdesc:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scrolls the window by the given number of lines down (if <em>lines</em> is positive) or up.  <a href="#aa5c5b683bd11a0d9771bd2fcdf643c64"></a><br/></td></tr>
<tr class="separator:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d">ScrollPages</a> (int pages)</td></tr>
<tr class="memdesc:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scrolls the window by the given number of pages down (if <em>pages</em> is positive) or up.  <a href="#adc0ed5e1c4925223cb901ced14b8343d"></a><br/></td></tr>
<tr class="separator:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab7be4956ff22da37fff2b8aaa581045c">ScrollWindow</a> (int dx, int dy, const <a class="el" href="classwx_rect.html">wxRect</a> *rect=NULL)</td></tr>
<tr class="memdesc:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Physically scrolls the pixels in the window and move child windows accordingly.  <a href="#ab7be4956ff22da37fff2b8aaa581045c"></a><br/></td></tr>
<tr class="separator:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afc0816a174ceee6d36d1995c6824a273">LineUp</a> ()</td></tr>
<tr class="memdesc:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64" title="Scrolls the window by the given number of lines down (if lines is positive) or up.">ScrollLines</a> (-1).  <a href="#afc0816a174ceee6d36d1995c6824a273"></a><br/></td></tr>
<tr class="separator:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ade808784f0e64d9985e2f279b5ca8c02">LineDown</a> ()</td></tr>
<tr class="memdesc:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64" title="Scrolls the window by the given number of lines down (if lines is positive) or up.">ScrollLines</a> (1).  <a href="#ade808784f0e64d9985e2f279b5ca8c02"></a><br/></td></tr>
<tr class="separator:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa7c2bbc480d8863d9f139c01d7abc1b1">PageUp</a> ()</td></tr>
<tr class="memdesc:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d" title="Scrolls the window by the given number of pages down (if pages is positive) or up.">ScrollPages</a> (-1).  <a href="#aa7c2bbc480d8863d9f139c01d7abc1b1"></a><br/></td></tr>
<tr class="separator:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a61e78cb48ece3e9e989e37b475ac1e35">PageDown</a> ()</td></tr>
<tr class="memdesc:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d" title="Scrolls the window by the given number of pages down (if pages is positive) or up.">ScrollPages</a> (1).  <a href="#a61e78cb48ece3e9e989e37b475ac1e35"></a><br/></td></tr>
<tr class="separator:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afbf4dc9064cf70cfe6884554b97a27bf">SetScrollPos</a> (int orientation, int pos, bool refresh=true)</td></tr>
<tr class="memdesc:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the position of one of the built-in scrollbars.  <a href="#afbf4dc9064cf70cfe6884554b97a27bf"></a><br/></td></tr>
<tr class="separator:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa842d59529f873683e55cd8392ec46e9">SetScrollbar</a> (int orientation, int position, int thumbSize, int range, bool refresh=true)</td></tr>
<tr class="memdesc:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the scrollbar properties of a built-in scrollbar.  <a href="#aa842d59529f873683e55cd8392ec46e9"></a><br/></td></tr>
<tr class="separator:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab4cea6ace96193b5c4282e097a6fbfee">BeginRepositioningChildren</a> ()</td></tr>
<tr class="memdesc:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Prepare for changing positions of multiple child windows.  <a href="#ab4cea6ace96193b5c4282e097a6fbfee"></a><br/></td></tr>
<tr class="separator:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1203fbd238d781253b44e0e459532301">EndRepositioningChildren</a> ()</td></tr>
<tr class="memdesc:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Fix child window positions after setting all of them at once.  <a href="#a1203fbd238d781253b44e0e459532301"></a><br/></td></tr>
<tr class="separator:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a100905524d330cfd9620fd726e378066">CacheBestSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the cached best size value.  <a href="#a100905524d330cfd9620fd726e378066"></a><br/></td></tr>
<tr class="separator:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a693fffbbb7ad5f36a5f442703396dafa">ClientToWindowSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts client area size <em>size</em> to corresponding window size.  <a href="#a693fffbbb7ad5f36a5f442703396dafa"></a><br/></td></tr>
<tr class="separator:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa456f800c9dde3b2361cad0abf54bc27">WindowToClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts window size <em>size</em> to corresponding client area size In other words, the returned value is what would <a class="el" href="classwx_window.html#ae56fc53268b815b58570f66bfc33838f" title="Returns the size of the window &#39;client area&#39; in pixels.">GetClientSize()</a> return if this window had given window size.  <a href="#aa456f800c9dde3b2361cad0abf54bc27"></a><br/></td></tr>
<tr class="separator:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2bf38a6cbd1f82fb46f274396f482994">Fit</a> ()</td></tr>
<tr class="memdesc:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sizes the window so that it fits around its subwindows.  <a href="#a2bf38a6cbd1f82fb46f274396f482994"></a><br/></td></tr>
<tr class="separator:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a55aca401aab29d59f7cc53f89ba2e38d">FitInside</a> ()</td></tr>
<tr class="memdesc:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Similar to <a class="el" href="classwx_window.html#a2bf38a6cbd1f82fb46f274396f482994" title="Sizes the window so that it fits around its subwindows.">Fit()</a>, but sizes the interior (virtual) size of a window.  <a href="#a55aca401aab29d59f7cc53f89ba2e38d"></a><br/></td></tr>
<tr class="separator:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e64b9380374e5681f146e9e319e35e3">GetBestSize</a> () const </td></tr>
<tr class="memdesc:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This functions returns the best acceptable minimal size for the window.  <a href="#a7e64b9380374e5681f146e9e319e35e3"></a><br/></td></tr>
<tr class="separator:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae314d583790739dd751dedec49216b88">GetBestHeight</a> (int width) const </td></tr>
<tr class="memdesc:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the best height needed by this window if it had the given width.  <a href="#ae314d583790739dd751dedec49216b88"></a><br/></td></tr>
<tr class="separator:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac6ca826451f19a8814d12c31cda2afab">GetBestWidth</a> (int height) const </td></tr>
<tr class="memdesc:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the best width needed by this window if it had the given height.  <a href="#ac6ca826451f19a8814d12c31cda2afab"></a><br/></td></tr>
<tr class="separator:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae56fc53268b815b58570f66bfc33838f">GetClientSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the window 'client area' in pixels.  <a href="#ae56fc53268b815b58570f66bfc33838f"></a><br/></td></tr>
<tr class="separator:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afb9fd4a3b3310b2e11049a5113f749fa">GetClientSize</a> () const </td></tr>
<tr class="memdesc:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#afb9fd4a3b3310b2e11049a5113f749fa"></a><br/></td></tr>
<tr class="separator:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1a54fcda8d52986482e030bd54739e9f">GetEffectiveMinSize</a> () const </td></tr>
<tr class="memdesc:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Merges the window's best size into the min size and returns the result.  <a href="#a1a54fcda8d52986482e030bd54739e9f"></a><br/></td></tr>
<tr class="separator:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aef9b71458720452374137cd20be24b97">GetMaxClientSize</a> () const </td></tr>
<tr class="memdesc:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the maximum size of window's client area.  <a href="#aef9b71458720452374137cd20be24b97"></a><br/></td></tr>
<tr class="separator:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a1672e81caf81a95eb5b48383d22065">GetMaxSize</a> () const </td></tr>
<tr class="memdesc:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the maximum size of the window.  <a href="#a0a1672e81caf81a95eb5b48383d22065"></a><br/></td></tr>
<tr class="separator:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e88d1d38c2bf98a72d86b42cf3e35c0">GetMinClientSize</a> () const </td></tr>
<tr class="memdesc:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the minimum size of window's client area, an indication to the sizer layout mechanism that this is the minimum required size of its client area.  <a href="#a8e88d1d38c2bf98a72d86b42cf3e35c0"></a><br/></td></tr>
<tr class="separator:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a853c9a8443f996a368569a8fae551f5a">GetMinSize</a> () const </td></tr>
<tr class="memdesc:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the minimum size of the window, an indication to the sizer layout mechanism that this is the minimum required size.  <a href="#a853c9a8443f996a368569a8fae551f5a"></a><br/></td></tr>
<tr class="separator:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9f79aa07a1b82a9a738f6c1d9c17496f">GetMinWidth</a> () const </td></tr>
<tr class="memdesc:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the horizontal component of window minimal size.  <a href="#a9f79aa07a1b82a9a738f6c1d9c17496f"></a><br/></td></tr>
<tr class="separator:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae4dd9a046ff774ea3ef114caeb452681">GetMinHeight</a> () const </td></tr>
<tr class="memdesc:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the vertical component of window minimal size.  <a href="#ae4dd9a046ff774ea3ef114caeb452681"></a><br/></td></tr>
<tr class="separator:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2e953a64c41131b87bdd7c513ced3687">GetMaxWidth</a> () const </td></tr>
<tr class="memdesc:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the horizontal component of window maximal size.  <a href="#a2e953a64c41131b87bdd7c513ced3687"></a><br/></td></tr>
<tr class="separator:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5cc2082eb5ddb27f97be191bd093709e">GetMaxHeight</a> () const </td></tr>
<tr class="memdesc:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the vertical component of window maximal size.  <a href="#a5cc2082eb5ddb27f97be191bd093709e"></a><br/></td></tr>
<tr class="separator:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a124c12cff1e7b6e96a5e1fd3e48dca34">GetSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the entire window in pixels, including title bar, border, scrollbars, etc.  <a href="#a124c12cff1e7b6e96a5e1fd3e48dca34"></a><br/></td></tr>
<tr class="separator:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a66e144ed8ab9a20e080ae6c69fc7015c">GetSize</a> () const </td></tr>
<tr class="memdesc:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the GetSize(int*,int*) overload for more info.  <a href="#a66e144ed8ab9a20e080ae6c69fc7015c"></a><br/></td></tr>
<tr class="separator:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a614d32c464296b7d6caabcafc18deb97">GetVirtualSize</a> () const </td></tr>
<tr class="memdesc:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the virtual size of the window in pixels.  <a href="#a614d32c464296b7d6caabcafc18deb97"></a><br/></td></tr>
<tr class="separator:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2628c6f1f4aecb790f0c86622ebf4d56">GetVirtualSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Like the other <a class="el" href="classwx_window.html#a614d32c464296b7d6caabcafc18deb97" title="This gets the virtual size of the window in pixels.">GetVirtualSize()</a> overload but uses pointers instead.  <a href="#a2628c6f1f4aecb790f0c86622ebf4d56"></a><br/></td></tr>
<tr class="separator:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0180343fa395e0c8e6de4022684ca5d6">GetBestVirtualSize</a> () const </td></tr>
<tr class="memdesc:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the largest of ClientSize and BestSize (as determined by a sizer, interior children, or other means)  <a href="#a0180343fa395e0c8e6de4022684ca5d6"></a><br/></td></tr>
<tr class="separator:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6f230d4db56d1d2ab364fe1491f2e9ba">GetContentScaleFactor</a> () const </td></tr>
<tr class="memdesc:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the magnification of the backing store of this window, eg 2.0 for a window on a retina screen.  <a href="#a6f230d4db56d1d2ab364fe1491f2e9ba"></a><br/></td></tr>
<tr class="separator:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afd861e553190e22a76d3d40ee5e8d628">GetWindowBorderSize</a> () const </td></tr>
<tr class="memdesc:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the left/right and top/bottom borders of this window in x and y components of the result respectively.  <a href="#afd861e553190e22a76d3d40ee5e8d628"></a><br/></td></tr>
<tr class="separator:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9fd5b6520c1b30eb8e82bb5d56bc24c0">InformFirstDirection</a> (int direction, int size, int availableOtherDir)</td></tr>
<tr class="memdesc:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classwx_sizer.html" title="wxSizer is the abstract base class used for laying out subwindows in a window.">wxSizer</a> and friends use this to give a chance to a component to recalc its min size once one of the final size components is known.  <a href="#a9fd5b6520c1b30eb8e82bb5d56bc24c0"></a><br/></td></tr>
<tr class="separator:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae1b56ca87d8590ee5e576012229a380a">InvalidateBestSize</a> ()</td></tr>
<tr class="memdesc:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Resets the cached best size value so it will be recalculated the next time it is needed.  <a href="#ae1b56ca87d8590ee5e576012229a380a"></a><br/></td></tr>
<tr class="separator:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab1943463e6661f97e072b43337c6cc09">PostSizeEvent</a> ()</td></tr>
<tr class="memdesc:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Posts a size event to the window.  <a href="#ab1943463e6661f97e072b43337c6cc09"></a><br/></td></tr>
<tr class="separator:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa080d8dcda58bcc6ea2abd8bea592e3e">PostSizeEventToParent</a> ()</td></tr>
<tr class="memdesc:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Posts a size event to the parent of this window.  <a href="#aa080d8dcda58bcc6ea2abd8bea592e3e"></a><br/></td></tr>
<tr class="separator:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a237f739b21937d3e8f1bff5fa82ba4c2">SendSizeEvent</a> (int flags=0)</td></tr>
<tr class="memdesc:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sends a dummy <a class="el" href="classwx_size_event.html">size event</a> to the window allowing it to re-layout its children positions.  <a href="#a237f739b21937d3e8f1bff5fa82ba4c2"></a><br/></td></tr>
<tr class="separator:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af7987987978fd8a93df88b29b19a6388">SendSizeEventToParent</a> (int flags=0)</td></tr>
<tr class="memdesc:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Safe wrapper for <a class="el" href="classwx_window.html#a63871f881941b99b4b94328d1c4cd163" title="Returns the parent of the window, or NULL if there is no parent.">GetParent()</a>-&gt;<a class="el" href="classwx_window.html#a237f739b21937d3e8f1bff5fa82ba4c2" title="This function sends a dummy size event to the window allowing it to re-layout its children positions...">SendSizeEvent()</a>.  <a href="#af7987987978fd8a93df88b29b19a6388"></a><br/></td></tr>
<tr class="separator:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa59f715217fffa5bcf14cd97f92e7840">SetClientSize</a> (int width, int height)</td></tr>
<tr class="memdesc:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This sets the size of the window client area in pixels.  <a href="#aa59f715217fffa5bcf14cd97f92e7840"></a><br/></td></tr>
<tr class="separator:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab2aadc857ee7f55f47ab9a8669e3beb7">SetClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ab2aadc857ee7f55f47ab9a8669e3beb7"></a><br/></td></tr>
<tr class="separator:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a582d4d1f60a3f777627773b2da0bb2ef">SetClientSize</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect)</td></tr>
<tr class="memdesc:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a582d4d1f60a3f777627773b2da0bb2ef"></a><br/></td></tr>
<tr class="separator:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0ccf78fe06722b500adfb7f36b8ce443">SetContainingSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer)</td></tr>
<tr class="memdesc:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This normally does not need to be called by user code.  <a href="#a0ccf78fe06722b500adfb7f36b8ce443"></a><br/></td></tr>
<tr class="separator:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1b309ca50ba87e34f968c83b79af1397">SetInitialSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>)</td></tr>
<tr class="memdesc:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <em>smart</em> SetSize that will fill in default size components with the window's <em>best</em> size values.  <a href="#a1b309ca50ba87e34f968c83b79af1397"></a><br/></td></tr>
<tr class="separator:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a664e5b2ddd817d9c58788269fe1d8479">SetMaxClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum client size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size of its client area.  <a href="#a664e5b2ddd817d9c58788269fe1d8479"></a><br/></td></tr>
<tr class="separator:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a38b496214d728a3212afadee5ed51606">SetMaxSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size.  <a href="#a38b496214d728a3212afadee5ed51606"></a><br/></td></tr>
<tr class="separator:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6e35ba44b97e374dfffa460d41d94b31">SetMinClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum client size of the window, to indicate to the sizer layout mechanism that this is the minimum required size of window's client area.  <a href="#a6e35ba44b97e374dfffa460d41d94b31"></a><br/></td></tr>
<tr class="separator:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3fc066f4d8083319f004ac43811d545d">SetMinSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum size of the window, to indicate to the sizer layout mechanism that this is the minimum required size.  <a href="#a3fc066f4d8083319f004ac43811d545d"></a><br/></td></tr>
<tr class="separator:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a180312d5ad4a4a5ad805b8d52d67a74e">SetSize</a> (int x, int y, int width, int height, int sizeFlags=<a class="el" href="defs_8h.html#a9604019ec0a451fddab3c8e2ddbe2bee">wxSIZE_AUTO</a>)</td></tr>
<tr class="memdesc:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of the window in pixels.  <a href="#a180312d5ad4a4a5ad805b8d52d67a74e"></a><br/></td></tr>
<tr class="separator:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e383bc6d5ca008965922a36c676aea0">SetSize</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect)</td></tr>
<tr class="memdesc:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of the window in pixels.  <a href="#a8e383bc6d5ca008965922a36c676aea0"></a><br/></td></tr>
<tr class="separator:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a030a928cd854de3def97c5720f14695b">SetSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a030a928cd854de3def97c5720f14695b"></a><br/></td></tr>
<tr class="separator:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2ea9b25296d591aea4470c8fd99ff7cb">SetSize</a> (int width, int height)</td></tr>
<tr class="memdesc:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a2ea9b25296d591aea4470c8fd99ff7cb"></a><br/></td></tr>
<tr class="separator:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a307329dc3b10f5584aeb2cbce9293ffd">SetSizeHints</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;minSize, const <a class="el" href="classwx_size.html">wxSize</a> &amp;maxSize=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;incSize=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>)</td></tr>
<tr class="memdesc:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Use of this function for windows which are not toplevel windows (such as <a class="el" href="classwx_dialog.html" title="A dialog box is a window with a title bar and sometimes a system menu, which can be moved around the ...">wxDialog</a> or <a class="el" href="classwx_frame.html" title="A frame is a window whose size and position can (usually) be changed by the user.">wxFrame</a>) is discouraged.  <a href="#a307329dc3b10f5584aeb2cbce9293ffd"></a><br/></td></tr>
<tr class="separator:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae813c640e1e2bc6014423247050846cf">SetSizeHints</a> (int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1)</td></tr>
<tr class="memdesc:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ae813c640e1e2bc6014423247050846cf"></a><br/></td></tr>
<tr class="separator:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a37f293b7904bc6668b86cccb0aea5669">SetVirtualSize</a> (int width, int height)</td></tr>
<tr class="memdesc:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the virtual size of the window in pixels.  <a href="#a37f293b7904bc6668b86cccb0aea5669"></a><br/></td></tr>
<tr class="separator:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e95201edebe43b9623bd3bdc555af4d">SetVirtualSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a8e95201edebe43b9623bd3bdc555af4d"></a><br/></td></tr>
<tr class="separator:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a06c0ecb262995b40083bfb446a6cff99">Center</a> (int dir=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787" title="Centres the window.">Centre()</a>.  <a href="#a06c0ecb262995b40083bfb446a6cff99"></a><br/></td></tr>
<tr class="separator:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2dc4e0a85d33fc55cc9650eaea1da0a4">CenterOnParent</a> (int dir=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#ab8e9b91b0e2db344fd71259616dfd433" title="Centres the window on its parent.">CentreOnParent()</a>.  <a href="#a2dc4e0a85d33fc55cc9650eaea1da0a4"></a><br/></td></tr>
<tr class="separator:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787">Centre</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window.  <a href="#a4a1819eeee3f2143cdde4f329ffde787"></a><br/></td></tr>
<tr class="separator:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8e9b91b0e2db344fd71259616dfd433">CentreOnParent</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window on its parent.  <a href="#ab8e9b91b0e2db344fd71259616dfd433"></a><br/></td></tr>
<tr class="separator:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9f36392b289a1e567e95bee073d6533e">GetPosition</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.  <a href="#a9f36392b289a1e567e95bee073d6533e"></a><br/></td></tr>
<tr class="separator:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad9a883e20827fa717e92fc2f8bd99d6b">GetPosition</a> () const </td></tr>
<tr class="memdesc:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.  <a href="#ad9a883e20827fa717e92fc2f8bd99d6b"></a><br/></td></tr>
<tr class="separator:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac8809904bb379c32c33c79fbe38745eb">GetRect</a> () const </td></tr>
<tr class="memdesc:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the position and size of the window as a <a class="el" href="classwx_rect.html" title="A class for manipulating rectangles.">wxRect</a> object.  <a href="#ac8809904bb379c32c33c79fbe38745eb"></a><br/></td></tr>
<tr class="separator:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abd39ef50fbc1ef3771f695e7322e8c1d">GetScreenPosition</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window position in screen coordinates, whether the window is a child window or a top level one.  <a href="#abd39ef50fbc1ef3771f695e7322e8c1d"></a><br/></td></tr>
<tr class="separator:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a32074a2c677ebadb1ed6e92ab172656c">GetScreenPosition</a> () const </td></tr>
<tr class="memdesc:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window position in screen coordinates, whether the window is a child window or a top level one.  <a href="#a32074a2c677ebadb1ed6e92ab172656c"></a><br/></td></tr>
<tr class="separator:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5c0e45fac07ac4cf29eefa108337a110">GetScreenRect</a> () const </td></tr>
<tr class="memdesc:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the position and size of the window on the screen as a <a class="el" href="classwx_rect.html" title="A class for manipulating rectangles.">wxRect</a> object.  <a href="#a5c0e45fac07ac4cf29eefa108337a110"></a><br/></td></tr>
<tr class="separator:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8fd1c0fd88d63dfbf6fefb688b7fd19e">GetClientAreaOrigin</a> () const </td></tr>
<tr class="memdesc:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the origin of the client area of the window relative to the window top left corner (the client area may be shifted because of the borders, scrollbars, other decorations...)  <a href="#a8fd1c0fd88d63dfbf6fefb688b7fd19e"></a><br/></td></tr>
<tr class="separator:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3928765a8dd3c5c3d6a689179c8005e0">GetClientRect</a> () const </td></tr>
<tr class="memdesc:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the client rectangle in window (i.e. client) coordinates.  <a href="#a3928765a8dd3c5c3d6a689179c8005e0"></a><br/></td></tr>
<tr class="separator:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab1cb98c8d25b9e6ff7b706b1446c3df7">Move</a> (int x, int y, int flags=<a class="el" href="defs_8h.html#a2f39257d6e2924d14ba28afa42abcde6">wxSIZE_USE_EXISTING</a>)</td></tr>
<tr class="memdesc:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the window to the given position.  <a href="#ab1cb98c8d25b9e6ff7b706b1446c3df7"></a><br/></td></tr>
<tr class="separator:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a22a22c1e23ca05776707e7999d8047fe">Move</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt, int flags=<a class="el" href="defs_8h.html#a2f39257d6e2924d14ba28afa42abcde6">wxSIZE_USE_EXISTING</a>)</td></tr>
<tr class="memdesc:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the window to the given position.  <a href="#a22a22c1e23ca05776707e7999d8047fe"></a><br/></td></tr>
<tr class="separator:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a81f23590239934fa10fded0566a65d8c">SetPosition</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787" title="Centres the window.">Centre()</a>.  <a href="#a81f23590239934fa10fded0566a65d8c"></a><br/></td></tr>
<tr class="separator:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29eac611e5f6b47db82bb4dd5450ba3d">ClientToScreen</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts to screen coordinates from coordinates relative to this window.  <a href="#a29eac611e5f6b47db82bb4dd5450ba3d"></a><br/></td></tr>
<tr class="separator:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7de852b144210b93b690189e99dbe1df">ClientToScreen</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts to screen coordinates from coordinates relative to this window.  <a href="#a7de852b144210b93b690189e99dbe1df"></a><br/></td></tr>
<tr class="separator:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acb6787b6c3c314f9e015658a89ad0265">ConvertDialogToPixels</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point or size from dialog units to pixels.  <a href="#acb6787b6c3c314f9e015658a89ad0265"></a><br/></td></tr>
<tr class="separator:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3daf76b93f648c68224e6ccd8095066b">ConvertDialogToPixels</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;sz) const </td></tr>
<tr class="memdesc:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a3daf76b93f648c68224e6ccd8095066b"></a><br/></td></tr>
<tr class="separator:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a449aac6a24f1d14b1a82b58003447dfe">ConvertPixelsToDialog</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point or size from pixels to dialog units.  <a href="#a449aac6a24f1d14b1a82b58003447dfe"></a><br/></td></tr>
<tr class="separator:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afd955ce9d25ec26a115bfb794b1c7d8b">ConvertPixelsToDialog</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;sz) const </td></tr>
<tr class="memdesc:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#afd955ce9d25ec26a115bfb794b1c7d8b"></a><br/></td></tr>
<tr class="separator:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a65531bbc52f9508b0e31a9c08c97bd31">ScreenToClient</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts from screen to client window coordinates.  <a href="#a65531bbc52f9508b0e31a9c08c97bd31"></a><br/></td></tr>
<tr class="separator:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59d02b70a9107433836a977c4c0cd7a9">ScreenToClient</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts from screen to client window coordinates.  <a href="#a59d02b70a9107433836a977c4c0cd7a9"></a><br/></td></tr>
<tr class="separator:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a61e833684ee5c89775e91e88be1a9a52">ClearBackground</a> ()</td></tr>
<tr class="memdesc:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears the window by filling it with the current background colour.  <a href="#a61e833684ee5c89775e91e88be1a9a52"></a><br/></td></tr>
<tr class="separator:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3">Freeze</a> ()</td></tr>
<tr class="memdesc:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.  <a href="#a15c678314cfc1d807196bc298b713ed3"></a><br/></td></tr>
<tr class="separator:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a279a532124073261b28131b6afb59a1e">Thaw</a> ()</td></tr>
<tr class="memdesc:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Re-enables window updating after a previous call to <a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3" title="Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.">Freeze()</a>.  <a href="#a279a532124073261b28131b6afb59a1e"></a><br/></td></tr>
<tr class="separator:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a866c62cc23d8de88e952aad5db4d1a61">IsFrozen</a> () const </td></tr>
<tr class="memdesc:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is currently frozen by a call to <a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3" title="Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.">Freeze()</a>.  <a href="#a866c62cc23d8de88e952aad5db4d1a61"></a><br/></td></tr>
<tr class="separator:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_colour.html">wxColour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3006d98a4145b7064c1f08e39487d257">GetBackgroundColour</a> () const </td></tr>
<tr class="memdesc:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the background colour of the window.  <a href="#a3006d98a4145b7064c1f08e39487d257"></a><br/></td></tr>
<tr class="separator:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a4bc8ece80d508fd70283b5a3b4c41e5f">wxBackgroundStyle</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59047d52b88f2422bbcf01bbecdc4b7b">GetBackgroundStyle</a> () const </td></tr>
<tr class="memdesc:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the background style of the window.  <a href="#a59047d52b88f2422bbcf01bbecdc4b7b"></a><br/></td></tr>
<tr class="separator:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a304b4446de399b240a3fa4aa83a2e468">GetCharHeight</a> () const </td></tr>
<tr class="memdesc:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the character height for this window.  <a href="#a304b4446de399b240a3fa4aa83a2e468"></a><br/></td></tr>
<tr class="separator:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aef2745df13435e913027107cab2a6286">GetCharWidth</a> () const </td></tr>
<tr class="memdesc:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the average character width for this window.  <a href="#aef2745df13435e913027107cab2a6286"></a><br/></td></tr>
<tr class="separator:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="structwx_visual_attributes.html">wxVisualAttributes</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a24e7b8f717e91f4590d148140e853dc5">GetDefaultAttributes</a> () const </td></tr>
<tr class="memdesc:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Currently this is the same as calling <a class="el" href="classwx_window.html#a170d85e4aa0cbacbfcdd0728120e1417" title="Returns the default font and colours which are used by the control.">wxWindow::GetClassDefaultAttributes</a>(<a class="el" href="classwx_window.html#aafcccd0d5d31651484df02453c53361c" title="Returns the value previously passed to SetWindowVariant().">wxWindow::GetWindowVariant()</a>).  <a href="#a24e7b8f717e91f4590d148140e853dc5"></a><br/></td></tr>
<tr class="separator:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_font.html">wxFont</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0dcc6f6f7bda203a868ff10c413289fa">GetFont</a> () const </td></tr>
<tr class="memdesc:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the font for this window.  <a href="#a0dcc6f6f7bda203a868ff10c413289fa"></a><br/></td></tr>
<tr class="separator:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_colour.html">wxColour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acb8e9bd1c88f330bc9748255a5592964">GetForegroundColour</a> () const </td></tr>
<tr class="memdesc:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the foreground colour of the window.  <a href="#acb8e9bd1c88f330bc9748255a5592964"></a><br/></td></tr>
<tr class="separator:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac9cd7b4472d5419e518f69311914466f">GetTextExtent</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string, int *w, int *h, int *descent=NULL, int *externalLeading=NULL, const <a class="el" href="classwx_font.html">wxFont</a> *font=NULL) const </td></tr>
<tr class="memdesc:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the dimensions of the string as it would be drawn on the window with the currently selected font.  <a href="#ac9cd7b4472d5419e518f69311914466f"></a><br/></td></tr>
<tr class="separator:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a79e5f88a2408871663d4ab0405cd35f6">GetTextExtent</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string) const </td></tr>
<tr class="memdesc:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the dimensions of the string as it would be drawn on the window with the currently selected font.  <a href="#a79e5f88a2408871663d4ab0405cd35f6"></a><br/></td></tr>
<tr class="separator:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_region.html">wxRegion</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa982adbcebfa7bc73fbae7465132115b">GetUpdateRegion</a> () const </td></tr>
<tr class="memdesc:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the region specifying which parts of the window have been damaged.  <a href="#aa982adbcebfa7bc73fbae7465132115b"></a><br/></td></tr>
<tr class="separator:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e32d9a9ffd058c931db20416bc55baa">GetUpdateClientRect</a> () const </td></tr>
<tr class="memdesc:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the update rectangle bounding box in client coords.  <a href="#a7e32d9a9ffd058c931db20416bc55baa"></a><br/></td></tr>
<tr class="separator:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab9cbcb6d6f4a272c2f0342e69a13b59a">HasTransparentBackground</a> ()</td></tr>
<tr class="memdesc:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window background is transparent (as, for example, for <a class="el" href="classwx_static_text.html" title="A static text control displays one or more lines of read-only text.">wxStaticText</a>) and should show the parent window background.  <a href="#ab9cbcb6d6f4a272c2f0342e69a13b59a"></a><br/></td></tr>
<tr class="separator:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29dc7251746154c821b17841b9877830">Refresh</a> (bool eraseBackground=true, const <a class="el" href="classwx_rect.html">wxRect</a> *rect=NULL)</td></tr>
<tr class="memdesc:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Causes this window, and all of its children recursively (except under wxGTK1 where this is not implemented), to be repainted.  <a href="#a29dc7251746154c821b17841b9877830"></a><br/></td></tr>
<tr class="separator:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab0ae6b9898cd261c39ebeb2891aa3d67">RefreshRect</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect, bool eraseBackground=true)</td></tr>
<tr class="memdesc:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Redraws the contents of the given rectangle: only the area inside it will be repainted.  <a href="#ab0ae6b9898cd261c39ebeb2891aa3d67"></a><br/></td></tr>
<tr class="separator:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abaf28f1a075fd1b10f761a8febe597ec">Update</a> ()</td></tr>
<tr class="memdesc:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Calling this method immediately repaints the invalidated area of the window and all of its children recursively (this normally only happens when the flow of control returns to the event loop).  <a href="#abaf28f1a075fd1b10f761a8febe597ec"></a><br/></td></tr>
<tr class="separator:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a37219df52734626e23401fd83b25d8a0">SetBackgroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background colour of the window.  <a href="#a37219df52734626e23401fd83b25d8a0"></a><br/></td></tr>
<tr class="separator:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af14f8fd2ed2d30a9bbb5d4f9fd6594ec">SetBackgroundStyle</a> (<a class="el" href="defs_8h.html#a4bc8ece80d508fd70283b5a3b4c41e5f">wxBackgroundStyle</a> style)</td></tr>
<tr class="memdesc:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background style of the window.  <a href="#af14f8fd2ed2d30a9bbb5d4f9fd6594ec"></a><br/></td></tr>
<tr class="separator:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7940d510c5bdc062a2b109a1022dd8c2">IsTransparentBackgroundSupported</a> (<a class="el" href="classwx_string.html">wxString</a> *reason=NULL) const </td></tr>
<tr class="memdesc:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether using transparent background might work.  <a href="#a7940d510c5bdc062a2b109a1022dd8c2"></a><br/></td></tr>
<tr class="separator:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9ab11e7da57a1d08918aa75fc33f6ad3">SetFont</a> (const <a class="el" href="classwx_font.html">wxFont</a> &amp;font)</td></tr>
<tr class="memdesc:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the font for this window.  <a href="#a9ab11e7da57a1d08918aa75fc33f6ad3"></a><br/></td></tr>
<tr class="separator:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a69f1e1c7ddd370d72e68c70f13ac8de9">SetForegroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the foreground colour of the window.  <a href="#a69f1e1c7ddd370d72e68c70f13ac8de9"></a><br/></td></tr>
<tr class="separator:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9a3f9d8477aab1d9176cd66ee56e75d9">SetOwnBackgroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background colour of the window but prevents it from being inherited by the children of this window.  <a href="#a9a3f9d8477aab1d9176cd66ee56e75d9"></a><br/></td></tr>
<tr class="separator:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aaf4873525b3bf2fc20ccb76bd0738e41">InheritsBackgroundColour</a> () const </td></tr>
<tr class="memdesc:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> if this window inherits the background colour from its parent.  <a href="#aaf4873525b3bf2fc20ccb76bd0738e41"></a><br/></td></tr>
<tr class="separator:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8b81b6d4c3294bffb6df30d2608227a">UseBgCol</a> () const </td></tr>
<tr class="memdesc:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> if a background colour has been set for this window.  <a href="#ab8b81b6d4c3294bffb6df30d2608227a"></a><br/></td></tr>
<tr class="separator:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a89a4f62f23c1e7c845b8d07cecae4c43">SetOwnFont</a> (const <a class="el" href="classwx_font.html">wxFont</a> &amp;font)</td></tr>
<tr class="memdesc:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the font of the window but prevents it from being inherited by the children of this window.  <a href="#a89a4f62f23c1e7c845b8d07cecae4c43"></a><br/></td></tr>
<tr class="separator:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a53f4a878e4e2d440bd00543f8014aaaa">SetOwnForegroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the foreground colour of the window but prevents it from being inherited by the children of this window.  <a href="#a53f4a878e4e2d440bd00543f8014aaaa"></a><br/></td></tr>
<tr class="separator:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee57358435d6bd33f598c81354b47425 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aee57358435d6bd33f598c81354b47425">SetPalette</a> (const <a class="el" href="classwx_palette.html">wxPalette</a> &amp;pal)</td></tr>
<tr class="separator:aee57358435d6bd33f598c81354b47425 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0c43a27fa04f9c17cc28fde71fdba490">ShouldInheritColours</a> () const </td></tr>
<tr class="memdesc:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> from here to allow the colours of this window to be changed by <a class="el" href="classwx_window.html#a6b1bf9e099704e7a493b8c4666b1f7f7" title="This function is (or should be, in case of custom controls) called during window creation to intellig...">InheritAttributes()</a>.  <a href="#a0c43a27fa04f9c17cc28fde71fdba490"></a><br/></td></tr>
<tr class="separator:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a41dd19ed8809fd8ec662e2aa2a9579c3">SetThemeEnabled</a> (bool enable)</td></tr>
<tr class="memdesc:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function tells a window if it should use the system's "theme" code to draw the windows' background instead of its own background drawing code.  <a href="#a41dd19ed8809fd8ec662e2aa2a9579c3"></a><br/></td></tr>
<tr class="separator:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0b31a21532407cf809d73aa09f34235c">GetThemeEnabled</a> () const </td></tr>
<tr class="memdesc:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears the window by filling it with the current background colour.  <a href="#a0b31a21532407cf809d73aa09f34235c"></a><br/></td></tr>
<tr class="separator:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a64f7f6fb75bf4b7281e1d33542d523c7">CanSetTransparent</a> ()</td></tr>
<tr class="memdesc:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the system supports transparent windows and calling <a class="el" href="classwx_window.html#ac8cf4398cec50ac36634760f45a0656f" title="Set the transparency of the window.">SetTransparent()</a> may succeed.  <a href="#a64f7f6fb75bf4b7281e1d33542d523c7"></a><br/></td></tr>
<tr class="separator:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac8cf4398cec50ac36634760f45a0656f">SetTransparent</a> (<a class="el" href="defs_8h.html#a02052a0390b909998c03fe2371d8e83e">wxByte</a> alpha)</td></tr>
<tr class="memdesc:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the transparency of the window.  <a href="#ac8cf4398cec50ac36634760f45a0656f"></a><br/></td></tr>
<tr class="separator:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a72c2454cf309f30109da3cbfe237c760">GetEventHandler</a> () const </td></tr>
<tr class="memdesc:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the event handler for this window.  <a href="#a72c2454cf309f30109da3cbfe237c760"></a><br/></td></tr>
<tr class="separator:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a89d1b079de97aac170e999692095872c">HandleAsNavigationKey</a> (const <a class="el" href="classwx_key_event.html">wxKeyEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function will generate the appropriate call to <a class="el" href="classwx_window.html#a86904f6785df4af6036b33383490a805" title="Performs a keyboard navigation action starting from this window.">Navigate()</a> if the key event is one normally used for keyboard navigation and return <span class="literal">true</span> in this case.  <a href="#a89d1b079de97aac170e999692095872c"></a><br/></td></tr>
<tr class="separator:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a665731bbfa46a72c215b04df60216ef1">HandleWindowEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event) const </td></tr>
<tr class="memdesc:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shorthand for:  <a href="#a665731bbfa46a72c215b04df60216ef1"></a><br/></td></tr>
<tr class="separator:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a76891d726ad5f9a729e27e4eab2b57">ProcessWindowEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Convenient wrapper for <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a>.  <a href="#a0a76891d726ad5f9a729e27e4eab2b57"></a><br/></td></tr>
<tr class="separator:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a11aa4a50491d051f947e2618e52178">ProcessWindowEventLocally</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Wrapper for <a class="el" href="classwx_evt_handler.html#ac0f5d2cb29a04c1f7f82eb6b351f79fb" title="Try to process the event in this handler and all those chained to it.">wxEvtHandler::ProcessEventLocally()</a>.  <a href="#a0a11aa4a50491d051f947e2618e52178"></a><br/></td></tr>
<tr class="separator:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac45c1f4cf96c70779764c14cf528790b">PopEventHandler</a> (bool deleteHandler=false)</td></tr>
<tr class="memdesc:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes and returns the top-most event handler on the event handler stack.  <a href="#ac45c1f4cf96c70779764c14cf528790b"></a><br/></td></tr>
<tr class="separator:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a398c11ab9af7956067a964f560d1978c">PushEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pushes this event handler onto the event stack for the window.  <a href="#a398c11ab9af7956067a964f560d1978c"></a><br/></td></tr>
<tr class="separator:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aacbfe424fa527966b954229a1db96ab5">RemoveEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the given <em>handler</em> in the windows event handler stack and removes (but does not delete) it from the stack.  <a href="#aacbfe424fa527966b954229a1db96ab5"></a><br/></td></tr>
<tr class="separator:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af6c84b7679183b377ba27a52a2f708b4">SetEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the event handler for this window.  <a href="#af6c84b7679183b377ba27a52a2f708b4"></a><br/></td></tr>
<tr class="separator:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aeab905f61df7004c1b76a3351dca9e96">SetNextHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">wxWindows cannot be used to form event handler chains; this function thus will assert when called.  <a href="#aeab905f61df7004c1b76a3351dca9e96"></a><br/></td></tr>
<tr class="separator:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a07f5f7ed3f78e0ef7b3dee3f4da81001">SetPreviousHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">wxWindows cannot be used to form event handler chains; this function thus will assert when called.  <a href="#a07f5f7ed3f78e0ef7b3dee3f4da81001"></a><br/></td></tr>
<tr class="separator:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8da0e59017af368c062f11c9abe2c667">GetExtraStyle</a> () const </td></tr>
<tr class="memdesc:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the extra style bits for the window.  <a href="#a8da0e59017af368c062f11c9abe2c667"></a><br/></td></tr>
<tr class="separator:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a0e81677bf2f0de5982a634e11d9a69">GetWindowStyleFlag</a> () const </td></tr>
<tr class="memdesc:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the window style that was passed to the constructor or <a class="el" href="classwx_window.html#a95b7ca8faa033f5ab35458887c07bf38">Create()</a> method.  <a href="#a0a0e81677bf2f0de5982a634e11d9a69"></a><br/></td></tr>
<tr class="separator:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a994147d8294bd7d5a32c825d5692af28">GetWindowStyle</a> () const </td></tr>
<tr class="memdesc:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a0a0e81677bf2f0de5982a634e11d9a69" title="Gets the window style that was passed to the constructor or Create() method.">GetWindowStyleFlag()</a> for more info.  <a href="#a994147d8294bd7d5a32c825d5692af28"></a><br/></td></tr>
<tr class="separator:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae30b415c1ef526563161efea5b78d640">HasExtraStyle</a> (int exFlag) const </td></tr>
<tr class="memdesc:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window has the given <em>exFlag</em> bit set in its extra styles.  <a href="#ae30b415c1ef526563161efea5b78d640"></a><br/></td></tr>
<tr class="separator:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a62ba2fb9be6422bf06bb7db5871d551f">HasFlag</a> (int flag) const </td></tr>
<tr class="memdesc:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window has the given <em>flag</em> bit set.  <a href="#a62ba2fb9be6422bf06bb7db5871d551f"></a><br/></td></tr>
<tr class="separator:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae9655f7c35ce7ac89cac2f6c0054b103">SetExtraStyle</a> (long exStyle)</td></tr>
<tr class="memdesc:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the extra style bits for the window.  <a href="#ae9655f7c35ce7ac89cac2f6c0054b103"></a><br/></td></tr>
<tr class="separator:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aee2cf342f80523432e7f2299d299451b">SetWindowStyleFlag</a> (long style)</td></tr>
<tr class="memdesc:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the style of the window.  <a href="#aee2cf342f80523432e7f2299d299451b"></a><br/></td></tr>
<tr class="separator:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a306af30adec68689f74ed537b4f9d5fd">SetWindowStyle</a> (long style)</td></tr>
<tr class="memdesc:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#aee2cf342f80523432e7f2299d299451b" title="Sets the style of the window.">SetWindowStyleFlag()</a> for more info.  <a href="#a306af30adec68689f74ed537b4f9d5fd"></a><br/></td></tr>
<tr class="separator:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8a4fa47129de552bfec37db8c69688a2">ToggleWindowStyle</a> (int flag)</td></tr>
<tr class="memdesc:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turns the given <em>flag</em> on if it's currently turned off and vice versa.  <a href="#a8a4fa47129de552bfec37db8c69688a2"></a><br/></td></tr>
<tr class="separator:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a79e66079125e8420de269811bdb6f2b6">MoveAfterInTabOrder</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="memdesc:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves this window in the tab navigation order after the specified <em>win</em>.  <a href="#a79e66079125e8420de269811bdb6f2b6"></a><br/></td></tr>
<tr class="separator:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af2b92f61cd9f9e2e0efe4cce307e25b1">MoveBeforeInTabOrder</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="memdesc:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#a79e66079125e8420de269811bdb6f2b6" title="Moves this window in the tab navigation order after the specified win.">MoveAfterInTabOrder()</a> except that it inserts this window just before <em>win</em> instead of putting it right after it.  <a href="#af2b92f61cd9f9e2e0efe4cce307e25b1"></a><br/></td></tr>
<tr class="separator:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a86904f6785df4af6036b33383490a805">Navigate</a> (int flags=<a class="el" href="classwx_navigation_key_event.html#afba5af727118cf1e63998282c307ba21a225d9ac21e815524d56648d47a1cbda4">wxNavigationKeyEvent::IsForward</a>)</td></tr>
<tr class="memdesc:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs a keyboard navigation action starting from this window.  <a href="#a86904f6785df4af6036b33383490a805"></a><br/></td></tr>
<tr class="separator:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa58039c8fc65e19160becf510ee1d1d5">NavigateIn</a> (int flags=<a class="el" href="classwx_navigation_key_event.html#afba5af727118cf1e63998282c307ba21a225d9ac21e815524d56648d47a1cbda4">wxNavigationKeyEvent::IsForward</a>)</td></tr>
<tr class="memdesc:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs a keyboard navigation action inside this window.  <a href="#aa58039c8fc65e19160becf510ee1d1d5"></a><br/></td></tr>
<tr class="separator:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a124944524f36b71385dad8fddaad8ded">Lower</a> ()</td></tr>
<tr class="memdesc:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Lowers the window to the bottom of the window hierarchy (Z-order).  <a href="#a124944524f36b71385dad8fddaad8ded"></a><br/></td></tr>
<tr class="separator:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a54808c933f22a891c5db646f6209fa4d">Raise</a> ()</td></tr>
<tr class="memdesc:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Raises the window to the top of the window hierarchy (Z-order).  <a href="#a54808c933f22a891c5db646f6209fa4d"></a><br/></td></tr>
<tr class="separator:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7ed103df04014cb3c59c6a3fb4d95328">Hide</a> ()</td></tr>
<tr class="memdesc:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equivalent to calling <a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f" title="Shows or hides the window.">wxWindow::Show</a>(<span class="literal">false</span>).  <a href="#a7ed103df04014cb3c59c6a3fb4d95328"></a><br/></td></tr>
<tr class="separator:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5326fbb26557a224507a1c06e5640e89">HideWithEffect</a> (<a class="el" href="window_8h.html#a49efebddb5cf706e0eb819b434bdf918">wxShowEffect</a> effect, unsigned int timeout=0)</td></tr>
<tr class="memdesc:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function hides a window, like <a class="el" href="classwx_window.html#a7ed103df04014cb3c59c6a3fb4d95328" title="Equivalent to calling wxWindow::Show(false).">Hide()</a>, but using a special visual effect if possible.  <a href="#a5326fbb26557a224507a1c06e5640e89"></a><br/></td></tr>
<tr class="separator:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59452a5bd42f5ea4b31d7fc4aa59644f">IsEnabled</a> () const </td></tr>
<tr class="memdesc:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is enabled, i.e. if it accepts user input, <span class="literal">false</span> otherwise.  <a href="#a59452a5bd42f5ea4b31d7fc4aa59644f"></a><br/></td></tr>
<tr class="separator:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af27ef77c913e32050543f3b0ca435a0d">IsExposed</a> (int x, int y) const </td></tr>
<tr class="memdesc:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given point or rectangle area has been exposed since the last repaint.  <a href="#af27ef77c913e32050543f3b0ca435a0d"></a><br/></td></tr>
<tr class="separator:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a31af79f647cbec4950ce31620db51753">IsExposed</a> (<a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a31af79f647cbec4950ce31620db51753"></a><br/></td></tr>
<tr class="separator:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a23e724619ec070f7d5c45ba21529d5">IsExposed</a> (int x, int y, int w, int h) const </td></tr>
<tr class="memdesc:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a4a23e724619ec070f7d5c45ba21529d5"></a><br/></td></tr>
<tr class="separator:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4da9a2d13534535aaf7b45200ee8728e">IsExposed</a> (<a class="el" href="classwx_rect.html">wxRect</a> &amp;rect) const </td></tr>
<tr class="memdesc:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a4da9a2d13534535aaf7b45200ee8728e"></a><br/></td></tr>
<tr class="separator:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a95af3a39aa422580dae156ed281a7e88">IsShown</a> () const </td></tr>
<tr class="memdesc:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is shown, <span class="literal">false</span> if it has been hidden.  <a href="#a95af3a39aa422580dae156ed281a7e88"></a><br/></td></tr>
<tr class="separator:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a72d70fd14e3565bf782fbcd3271d8930">IsShownOnScreen</a> () const </td></tr>
<tr class="memdesc:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is physically visible on the screen, i.e. it is shown and all its parents up to the toplevel window are shown as well.  <a href="#a72d70fd14e3565bf782fbcd3271d8930"></a><br/></td></tr>
<tr class="separator:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a26d7329a9a753fa0445501f01f66c41e">Disable</a> ()</td></tr>
<tr class="memdesc:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disables the window.  <a href="#a26d7329a9a753fa0445501f01f66c41e"></a><br/></td></tr>
<tr class="separator:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4e933aa891f42fbb3b87438057c573af">Enable</a> (bool enable=true)</td></tr>
<tr class="memdesc:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enable or disable the window for user input.  <a href="#a4e933aa891f42fbb3b87438057c573af"></a><br/></td></tr>
<tr class="separator:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f">Show</a> (bool show=true)</td></tr>
<tr class="memdesc:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows or hides the window.  <a href="#a7fbc92ce240a8d4f6956b6e0276ef07f"></a><br/></td></tr>
<tr class="separator:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a596b1715edfc7609f352b2e000ecbaec">ShowWithEffect</a> (<a class="el" href="window_8h.html#a49efebddb5cf706e0eb819b434bdf918">wxShowEffect</a> effect, unsigned int timeout=0)</td></tr>
<tr class="memdesc:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a window, like <a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f" title="Shows or hides the window.">Show()</a>, but using a special visual effect if possible.  <a href="#a596b1715edfc7609f352b2e000ecbaec"></a><br/></td></tr>
<tr class="separator:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a77f8a4bbee228ed333af2e6a06509cff">GetHelpText</a> () const </td></tr>
<tr class="memdesc:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#a77f8a4bbee228ed333af2e6a06509cff"></a><br/></td></tr>
<tr class="separator:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4c1a2cbc7363237b3a7c70af4e702c72">SetHelpText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;helpText)</td></tr>
<tr class="memdesc:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the help text to be used as context-sensitive help for this window.  <a href="#a4c1a2cbc7363237b3a7c70af4e702c72"></a><br/></td></tr>
<tr class="separator:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa448f4e01bedc4a5e3d4324929e5d5d">GetHelpTextAtPoint</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;point, <a class="el" href="classwx_help_event.html#a29fe3ca1a548472f0abd0ae94b5def0c">wxHelpEvent::Origin</a> origin) const </td></tr>
<tr class="memdesc:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#afa448f4e01bedc4a5e3d4324929e5d5d"></a><br/></td></tr>
<tr class="separator:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_tip.html">wxToolTip</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aae94155ccf8a6e4e72ad08527c89ba89">GetToolTip</a> () const </td></tr>
<tr class="memdesc:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the associated tooltip or <span class="literal">NULL</span> if none.  <a href="#aae94155ccf8a6e4e72ad08527c89ba89"></a><br/></td></tr>
<tr class="separator:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad1a9c53c8e7e5010874f15b8ff4a6568">GetToolTipText</a> () const </td></tr>
<tr class="memdesc:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the text of the associated tooltip or empty string if none.  <a href="#ad1a9c53c8e7e5010874f15b8ff4a6568"></a><br/></td></tr>
<tr class="separator:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a81a9fb74e3c6c7f4416e882f5e589b8c">SetToolTip</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;tipString)</td></tr>
<tr class="memdesc:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Attach a tooltip to the window.  <a href="#a81a9fb74e3c6c7f4416e882f5e589b8c"></a><br/></td></tr>
<tr class="separator:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a494e0b7cfca9299caa40e847767e7357">SetToolTip</a> (<a class="el" href="classwx_tool_tip.html">wxToolTip</a> *tip)</td></tr>
<tr class="memdesc:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a494e0b7cfca9299caa40e847767e7357"></a><br/></td></tr>
<tr class="separator:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae75712451673658b0a533480bf5eeaa4">UnsetToolTip</a> ()</td></tr>
<tr class="memdesc:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unset any existing tooltip.  <a href="#ae75712451673658b0a533480bf5eeaa4"></a><br/></td></tr>
<tr class="separator:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b7de6ea85ca926b668ba0682a61a93e">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a popup menu at the given position in this window and returns the selected id.  <a href="#a9b7de6ea85ca926b668ba0682a61a93e"></a><br/></td></tr>
<tr class="separator:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00f5cb3cac003205317a565a33d4bb27">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, int x, int y)</td></tr>
<tr class="memdesc:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a00f5cb3cac003205317a565a33d4bb27"></a><br/></td></tr>
<tr class="separator:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up the given menu at the specified coordinates, relative to this window, and returns control when the user has dismissed the menu.  <a href="#a8f715d238cf74a845488b0e2645e98df"></a><br/></td></tr>
<tr class="separator:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a834bcdfd41f5e5370ebd9ea401c92900">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, int x, int y)</td></tr>
<tr class="memdesc:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a834bcdfd41f5e5370ebd9ea401c92900"></a><br/></td></tr>
<tr class="separator:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_validator.html">wxValidator</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a332586346cb9ece4a8fe058a7b88c4">GetValidator</a> ()</td></tr>
<tr class="memdesc:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator functions.  <a href="#a6a332586346cb9ece4a8fe058a7b88c4"></a><br/></td></tr>
<tr class="separator:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00066c70049a7be3ce6b648d206e6432">SetValidator</a> (const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator)</td></tr>
<tr class="memdesc:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes the current validator (if any) and sets the window validator, having called <a class="el" href="classwx_validator.html#a25a4e0250afe9451059fd7a967c4883f" title="All validator classes must implement the Clone() function, which returns an identical copy of itself...">wxValidator::Clone</a> to create a new validator of this type.  <a href="#a00066c70049a7be3ce6b648d206e6432"></a><br/></td></tr>
<tr class="separator:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8e51f36e7d8790b361c8d8c6f37b1ad">TransferDataFromWindow</a> ()</td></tr>
<tr class="memdesc:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values from child controls to data areas specified by their validators.  <a href="#ab8e51f36e7d8790b361c8d8c6f37b1ad"></a><br/></td></tr>
<tr class="separator:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a88cc65e424a129d9b0057756cdb67ec9">TransferDataToWindow</a> ()</td></tr>
<tr class="memdesc:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values to child controls from data areas specified by their validators.  <a href="#a88cc65e424a129d9b0057756cdb67ec9"></a><br/></td></tr>
<tr class="separator:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac87f253253a0c5eb498871c83afa40fd">Validate</a> ()</td></tr>
<tr class="memdesc:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validates the current values of the child controls using their validators.  <a href="#ac87f253253a0c5eb498871c83afa40fd"></a><br/></td></tr>
<tr class="separator:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4633b6ad527c921598f55af5274156f0">GetId</a> () const </td></tr>
<tr class="memdesc:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the identifier of the window.  <a href="#a4633b6ad527c921598f55af5274156f0"></a><br/></td></tr>
<tr class="separator:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a624f5fad4a603d58ffe94b058d4dda">GetLayoutDirection</a> () const </td></tr>
<tr class="memdesc:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the layout direction for this window, Note that <code>wxLayout_Default</code> is returned if layout direction is not supported.  <a href="#a0a624f5fad4a603d58ffe94b058d4dda"></a><br/></td></tr>
<tr class="separator:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa48188539f128689a3286a058f0394a8">AdjustForLayoutDirection</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> width, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> widthTotal) const </td></tr>
<tr class="memdesc:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mirror coordinates for RTL layout if this window uses it and if the mirroring is not done automatically like Win32.  <a href="#aa48188539f128689a3286a058f0394a8"></a><br/></td></tr>
<tr class="separator:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aab1b302c4bdabd134ce8d401dbaaf990">GetName</a> () const </td></tr>
<tr class="memdesc:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window's name.  <a href="#aab1b302c4bdabd134ce8d401dbaaf990"></a><br/></td></tr>
<tr class="separator:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aafcccd0d5d31651484df02453c53361c">GetWindowVariant</a> () const </td></tr>
<tr class="memdesc:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the value previously passed to <a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29" title="Chooses a different variant of the window display to use.">SetWindowVariant()</a>.  <a href="#aafcccd0d5d31651484df02453c53361c"></a><br/></td></tr>
<tr class="separator:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7f27d0faed14effa013381bdc40e1bcd">SetId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> winid)</td></tr>
<tr class="memdesc:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier of the window.  <a href="#a7f27d0faed14effa013381bdc40e1bcd"></a><br/></td></tr>
<tr class="separator:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9">SetLayoutDirection</a> (<a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a> dir)</td></tr>
<tr class="memdesc:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the layout direction for this window.  <a href="#a7d494549f7fcfed44af95f8ee364c1f9"></a><br/></td></tr>
<tr class="separator:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af80875cda5e1af98dcd7c8e712e3c800">SetName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name)</td></tr>
<tr class="memdesc:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's name.  <a href="#af80875cda5e1af98dcd7c8e712e3c800"></a><br/></td></tr>
<tr class="separator:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29">SetWindowVariant</a> (<a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a> variant)</td></tr>
<tr class="memdesc:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Chooses a different variant of the window display to use.  <a href="#acd955418c336e73b3e32cadf1ca46e29"></a><br/></td></tr>
<tr class="separator:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aefc02d7275010ebb8d5b66569e7287c4">GetAcceleratorTable</a> ()</td></tr>
<tr class="memdesc:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the accelerator table for this window.  <a href="#aefc02d7275010ebb8d5b66569e7287c4"></a><br/></td></tr>
<tr class="separator:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accessible.html">wxAccessible</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae0469b554e9c501b356b3ed4b6d8a3af">GetAccessible</a> ()</td></tr>
<tr class="memdesc:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the accessible object for this window, if any.  <a href="#ae0469b554e9c501b356b3ed4b6d8a3af"></a><br/></td></tr>
<tr class="separator:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0af5e9aa4dee6a4e92c0700f92605642">SetAcceleratorTable</a> (const <a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> &amp;accel)</td></tr>
<tr class="memdesc:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accelerator table for this window.  <a href="#a0af5e9aa4dee6a4e92c0700f92605642"></a><br/></td></tr>
<tr class="separator:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a413220ead41f05a2ec2cfe10b3d573df">SetAccessible</a> (<a class="el" href="classwx_accessible.html">wxAccessible</a> *accessible)</td></tr>
<tr class="memdesc:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accessible for this window.  <a href="#a413220ead41f05a2ec2cfe10b3d573df"></a><br/></td></tr>
<tr class="separator:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3e44f4a494fc9ef4346c4fba70c8de0c">Close</a> (bool force=false)</td></tr>
<tr class="memdesc:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function simply generates a <a class="el" href="classwx_close_event.html" title="This event class contains information about window and session close events.">wxCloseEvent</a> whose handler usually tries to close the window.  <a href="#a3e44f4a494fc9ef4346c4fba70c8de0c"></a><br/></td></tr>
<tr class="separator:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6bf0c5be864544d9ce0560087667b7fc">Destroy</a> ()</td></tr>
<tr class="memdesc:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys the window safely.  <a href="#a6bf0c5be864544d9ce0560087667b7fc"></a><br/></td></tr>
<tr class="separator:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af918e6fe8565c2d5235973cc3de84a43">IsBeingDeleted</a> () const </td></tr>
<tr class="memdesc:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this window is in process of being destroyed.  <a href="#af918e6fe8565c2d5235973cc3de84a43"></a><br/></td></tr>
<tr class="separator:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_drop_target.html">wxDropTarget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4511e71affd926a47c5c320563ca2df5">GetDropTarget</a> () const </td></tr>
<tr class="memdesc:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the associated drop target, which may be <span class="literal">NULL</span>.  <a href="#a4511e71affd926a47c5c320563ca2df5"></a><br/></td></tr>
<tr class="separator:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae34b4d45433ca8287df0e47d46411e58">SetDropTarget</a> (<a class="el" href="classwx_drop_target.html">wxDropTarget</a> *target)</td></tr>
<tr class="memdesc:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Associates a drop target with this window.  <a href="#ae34b4d45433ca8287df0e47d46411e58"></a><br/></td></tr>
<tr class="separator:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e7015bc61bd79b6821d2dccaecf9eda">DragAcceptFiles</a> (bool accept)</td></tr>
<tr class="memdesc:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables eligibility for drop file events (OnDropFiles).  <a href="#a7e7015bc61bd79b6821d2dccaecf9eda"></a><br/></td></tr>
<tr class="separator:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ade8de9a91bb5bf49c3a52e5262a5ffea">GetContainingSizer</a> () const </td></tr>
<tr class="memdesc:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ade8de9a91bb5bf49c3a52e5262a5ffea"></a><br/></td></tr>
<tr class="separator:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad8284cce1a2afe57724b52a89d7fac2f">GetSizer</a> () const </td></tr>
<tr class="memdesc:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer associated with the window by a previous call to <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a>, or <span class="literal">NULL</span>.  <a href="#ad8284cce1a2afe57724b52a89d7fac2f"></a><br/></td></tr>
<tr class="separator:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1">SetSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout sizer.  <a href="#abc95691b45e29a52c24aa9d33d46dec1"></a><br/></td></tr>
<tr class="separator:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29938af9828fd35da666536cdfb6b73c">SetSizerAndFit</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method calls <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a> and then <a class="el" href="classwx_sizer.html#abc460cd0e2bb3bde72142fdb434bc546" title="This method first calls Fit() and then wxTopLevelWindow::SetSizeHints() on the window passed to it...">wxSizer::SetSizeHints</a> which sets the initial window size to the size needed to accommodate all sizer elements and sets the size hints which, if this window is a top level one, prevent the user from resizing it to be less than this minimal size.  <a href="#a29938af9828fd35da666536cdfb6b73c"></a><br/></td></tr>
<tr class="separator:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac5664c7cd26848b5eebfaded2ecde7be">GetConstraints</a> () const </td></tr>
<tr class="memdesc:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the window's layout constraints, or <span class="literal">NULL</span> if there are none.  <a href="#ac5664c7cd26848b5eebfaded2ecde7be"></a><br/></td></tr>
<tr class="separator:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa75d111bbd9a68f837101a5fbed60a7">SetConstraints</a> (<a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *constraints)</td></tr>
<tr class="memdesc:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout constraints.  <a href="#afa75d111bbd9a68f837101a5fbed60a7"></a><br/></td></tr>
<tr class="separator:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1b143c3e72bd0af533b76db4830a6113">Layout</a> ()</td></tr>
<tr class="memdesc:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window.  <a href="#a1b143c3e72bd0af533b76db4830a6113"></a><br/></td></tr>
<tr class="separator:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad369fe1db5c20f9d9edff7b5eb1f7226">SetAutoLayout</a> (bool autoLayout)</td></tr>
<tr class="memdesc:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether the <a class="el" href="classwx_window.html#a1b143c3e72bd0af533b76db4830a6113" title="Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window...">Layout()</a> function will be called automatically when the window is resized.  <a href="#ad369fe1db5c20f9d9edff7b5eb1f7226"></a><br/></td></tr>
<tr class="separator:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7a9d7fca325112fae493a00d253b3be">GetAutoLayout</a> () const </td></tr>
<tr class="memdesc:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ad7a9d7fca325112fae493a00d253b3be"></a><br/></td></tr>
<tr class="separator:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef">CaptureMouse</a> ()</td></tr>
<tr class="memdesc:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Directs all mouse input to this window.  <a href="#a5c72c6260a73ef77bb0b1f7ec85fcfef"></a><br/></td></tr>
<tr class="separator:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_caret.html">wxCaret</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a83ed7c9d9252b912eebc753d6132245b">GetCaret</a> () const </td></tr>
<tr class="memdesc:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the caret() associated with the window.  <a href="#a83ed7c9d9252b912eebc753d6132245b"></a><br/></td></tr>
<tr class="separator:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7ce1e9af33e6be0b608813eff2d349c">GetCursor</a> () const </td></tr>
<tr class="memdesc:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the cursor associated with this window.  <a href="#ad7ce1e9af33e6be0b608813eff2d349c"></a><br/></td></tr>
<tr class="separator:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b44f61543b77317f9820e06856c5514">HasCapture</a> () const </td></tr>
<tr class="memdesc:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window has the current mouse capture.  <a href="#a9b44f61543b77317f9820e06856c5514"></a><br/></td></tr>
<tr class="separator:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adcc538819c11ecb3bd3e4e5d13c5ba7a">ReleaseMouse</a> ()</td></tr>
<tr class="memdesc:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Releases mouse input captured with <a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef" title="Directs all mouse input to this window.">CaptureMouse()</a>.  <a href="#adcc538819c11ecb3bd3e4e5d13c5ba7a"></a><br/></td></tr>
<tr class="separator:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acfef5e1cada92c73e2937b84ff57ff57">SetCaret</a> (<a class="el" href="classwx_caret.html">wxCaret</a> *caret)</td></tr>
<tr class="memdesc:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the caret() associated with the window.  <a href="#acfef5e1cada92c73e2937b84ff57ff57"></a><br/></td></tr>
<tr class="separator:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad83f9c51c6f31e0e05f598b47a19ed98">SetCursor</a> (const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;cursor)</td></tr>
<tr class="memdesc:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's cursor.  <a href="#ad83f9c51c6f31e0e05f598b47a19ed98"></a><br/></td></tr>
<tr class="separator:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac500152d1eca3a2ee98a68e7ea7372b5">WarpPointer</a> (int x, int y)</td></tr>
<tr class="memdesc:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the pointer to the given position on the window.  <a href="#ac500152d1eca3a2ee98a68e7ea7372b5"></a><br/></td></tr>
<tr class="separator:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a026b2a16a9f050deddd44e5586762c">HitTest</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y) const </td></tr>
<tr class="memdesc:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a6a026b2a16a9f050deddd44e5586762c"></a><br/></td></tr>
<tr class="separator:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a44f4d85f42fac6090a42cafd40f24ff5">HitTest</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a44f4d85f42fac6090a42cafd40f24ff5"></a><br/></td></tr>
<tr class="separator:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad95a95e683e57ac6365745b737571582">GetBorder</a> (long flags) const </td></tr>
<tr class="memdesc:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#ad95a95e683e57ac6365745b737571582"></a><br/></td></tr>
<tr class="separator:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa53c8d1b5af17a8fbbe8845210e2032b">GetBorder</a> () const </td></tr>
<tr class="memdesc:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get border for the flags of this window.  <a href="#aa53c8d1b5af17a8fbbe8845210e2032b"></a><br/></td></tr>
<tr class="separator:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae8a84a80645e99f4d24a22e5c386f626">DoUpdateWindowUI</a> (<a class="el" href="classwx_update_u_i_event.html">wxUpdateUIEvent</a> &amp;event)</td></tr>
<tr class="memdesc:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Does the window-specific updating after processing the update event.  <a href="#ae8a84a80645e99f4d24a22e5c386f626"></a><br/></td></tr>
<tr class="separator:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual WXWidget&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a185e6cd7065367b552748cb722651b27">GetHandle</a> () const </td></tr>
<tr class="memdesc:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the platform-specific handle of the physical window.  <a href="#a185e6cd7065367b552748cb722651b27"></a><br/></td></tr>
<tr class="separator:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abe1522483478b1f777ad8ef34fa7c44a">HasMultiplePages</a> () const </td></tr>
<tr class="memdesc:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method should be overridden to return <span class="literal">true</span> if this window has multiple pages.  <a href="#abe1522483478b1f777ad8ef34fa7c44a"></a><br/></td></tr>
<tr class="separator:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b1bf9e099704e7a493b8c4666b1f7f7">InheritAttributes</a> ()</td></tr>
<tr class="memdesc:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is (or should be, in case of custom controls) called during window creation to intelligently set up the window visual attributes, that is the font and the foreground and background colours.  <a href="#a6b1bf9e099704e7a493b8c4666b1f7f7"></a><br/></td></tr>
<tr class="separator:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa90a260c0a835a133043460b7d0024a8">InitDialog</a> ()</td></tr>
<tr class="memdesc:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sends an <code>wxEVT_INIT_DIALOG</code> event, whose handler usually transfers data to the dialog via validators.  <a href="#aa90a260c0a835a133043460b7d0024a8"></a><br/></td></tr>
<tr class="separator:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9d1be1bbb625ebf87ad4ad47e49a0194">IsDoubleBuffered</a> () const </td></tr>
<tr class="memdesc:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window contents is double-buffered by the system, i.e. if any drawing done on the window is really done on a temporary backing surface and transferred to the screen all at once later.  <a href="#a9d1be1bbb625ebf87ad4ad47e49a0194"></a><br/></td></tr>
<tr class="separator:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5477a89c17fdcc3ec6c90274796eb1c3">SetDoubleBuffered</a> (bool on)</td></tr>
<tr class="memdesc:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turn on or off double buffering of the window if the system supports it.  <a href="#a5477a89c17fdcc3ec6c90274796eb1c3"></a><br/></td></tr>
<tr class="separator:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae9b31dec54256b68574a4bba8cca94ab">IsRetained</a> () const </td></tr>
<tr class="memdesc:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is retained, <span class="literal">false</span> otherwise.  <a href="#ae9b31dec54256b68574a4bba8cca94ab"></a><br/></td></tr>
<tr class="separator:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a657ef8b6055eb06df894ac5e6ddfecf8">IsThisEnabled</a> () const </td></tr>
<tr class="memdesc:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window is intrinsically enabled, <span class="literal">false</span> otherwise, i.e. if <a class="el" href="classwx_window.html#a4e933aa891f42fbb3b87438057c573af">Enable()</a> Enable(<span class="literal">false</span>) had been called.  <a href="#a657ef8b6055eb06df894ac5e6ddfecf8"></a><br/></td></tr>
<tr class="separator:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0002826ad05f2a5661b4c8995713f37f">IsTopLevel</a> () const </td></tr>
<tr class="memdesc:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given window is a top-level one.  <a href="#a0002826ad05f2a5661b4c8995713f37f"></a><br/></td></tr>
<tr class="separator:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b5654c0c6c6245d592c279521f7099c">OnInternalIdle</a> ()</td></tr>
<tr class="memdesc:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is normally only used internally, but sometimes an application may need it to implement functionality that should not be disabled by an application defining an OnIdle handler in a derived class.  <a href="#a6b5654c0c6c6245d592c279521f7099c"></a><br/></td></tr>
<tr class="separator:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1afc1653413957537073c074dcc3eade">SendIdleEvents</a> (<a class="el" href="classwx_idle_event.html">wxIdleEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Send idle event to window and all subwindows.  <a href="#a1afc1653413957537073c074dcc3eade"></a><br/></td></tr>
<tr class="separator:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a53ca57872dac5851ea6ba55a494b899b">RegisterHotKey</a> (int hotkeyId, int modifiers, int virtualKeyCode)</td></tr>
<tr class="memdesc:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Registers a system wide hotkey.  <a href="#a53ca57872dac5851ea6ba55a494b899b"></a><br/></td></tr>
<tr class="separator:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a695f60d65f8f6c12e3c3645ad9c0c35b">UnregisterHotKey</a> (int hotkeyId)</td></tr>
<tr class="memdesc:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unregisters a system wide hotkey.  <a href="#a695f60d65f8f6c12e3c3645ad9c0c35b"></a><br/></td></tr>
<tr class="separator:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adf0a4987728bd0bf69f922641b3efbfc">UpdateWindowUI</a> (long flags=<a class="el" href="defs_8h.html#a125d733e58da75b9609114a226e4d81ca9edfae857d615d2de32b407a750a4af4">wxUPDATE_UI_NONE</a>)</td></tr>
<tr class="memdesc:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sends one or more <a class="el" href="classwx_update_u_i_event.html" title="This class is used for pseudo-events which are called by wxWidgets to give an application the chance ...">wxUpdateUIEvent</a> to the window.  <a href="#adf0a4987728bd0bf69f922641b3efbfc"></a><br/></td></tr>
<tr class="separator:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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">&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T , typename T1 , ... &gt; </td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a910416e4d0b1f38cec02213b8a0c6a12">CallAfter</a> (const T &amp;functor)</td></tr>
<tr class="memdesc:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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> &amp;event)</td></tr>
<tr class="memdesc:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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> &amp;event)</td></tr>
<tr class="memdesc:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3c07426130d2868a5ae7fa918a251f49">SearchEventTable</a> (wxEventTable &amp;table, <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62">Bind</a> (const EventTag &amp;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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a03cc68ca201fb79c7e837919025be71a">Bind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), 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">&#160;</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&lt;&gt;(const EventTag&amp;, 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">&#160;</td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da">Unbind</a> (const EventTag &amp;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">&#160;</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">&#160;</td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa49f9c4ad4462456b4fe4bd1ab53533d">Unbind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), 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">&#160;</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&lt;&gt;(const EventTag&amp;, 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">&#160;</td></tr>
<tr class="memitem:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void *&#160;</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">&#160;</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">&#160;</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> *&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</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> *&#160;</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">&#160;</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">&#160;</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> *&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</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="-"/>&#160;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">&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">&#160;</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> &amp;other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</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">&#160;</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">&#160;</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> *&#160;</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">&#160;</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">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;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">&#160;</td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</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> &amp;obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</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> &amp;clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</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">&#160;</td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;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">&#160;</td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object&#39;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">&#160;</td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void *&#160;</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> &amp;filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</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">&#160;</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_control"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_control')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classwx_control.html">wxControl</a></td></tr>
<tr class="memitem:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ae892fefe6b88168c158e11e975633665">GetLabelText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the given <em>label</em> string without mnemonics ("&amp;" characters).  <a href="#ae892fefe6b88168c158e11e975633665"></a><br/></td></tr>
<tr class="separator:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ab7df4ca0dfde3a6409833cf470ee02e6">RemoveMnemonics</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;str)</td></tr>
<tr class="memdesc:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the given <em>str</em> string without mnemonics ("&amp;" characters).  <a href="#ab7df4ca0dfde3a6409833cf470ee02e6"></a><br/></td></tr>
<tr class="separator:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#abdbd9c0684856546671e759dd95b23d4">EscapeMnemonics</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;text)</td></tr>
<tr class="memdesc:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Escapes the special mnemonics characters ("&amp;") in the given string.  <a href="#abdbd9c0684856546671e759dd95b23d4"></a><br/></td></tr>
<tr class="separator:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a0bb834cae2a8986aceddb89f84ef4ed1">Ellipsize</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc, <a class="el" href="control_8h.html#a0293befa07fe89f6efd8caec89c3b489">wxEllipsizeMode</a> mode, int maxWidth, int flags=<a class="el" href="control_8h.html#ad7c89373a31bffb2388cfa2b98abea39acf249cd72de81f7da28aecb146975722">wxELLIPSIZE_FLAGS_DEFAULT</a>)</td></tr>
<tr class="memdesc:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Replaces parts of the <em>label</em> string with ellipsis, if needed, so that it fits into <em>maxWidth</em> pixels if possible.  <a href="#a0bb834cae2a8986aceddb89f84ef4ed1"></a><br/></td></tr>
<tr class="separator:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classwx_window"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2d10b472a4962d1c852c83d55252c44b">DoCentre</a> (int direction)</td></tr>
<tr class="memdesc:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window.  <a href="#a2d10b472a4962d1c852c83d55252c44b"></a><br/></td></tr>
<tr class="separator:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a01e7604ab0f0b2b1a8e322a630a4669e">DoGetBestSize</a> () const </td></tr>
<tr class="memdesc:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implementation of <a class="el" href="classwx_window.html#a7e64b9380374e5681f146e9e319e35e3" title="This functions returns the best acceptable minimal size for the window.">GetBestSize()</a> that can be overridden.  <a href="#a01e7604ab0f0b2b1a8e322a630a4669e"></a><br/></td></tr>
<tr class="separator:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afe8447cb5975584ee3d4a03e3d02ee89">DoGetBestClientSize</a> () const </td></tr>
<tr class="memdesc:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to return the best size for a custom control.  <a href="#afe8447cb5975584ee3d4a03e3d02ee89"></a><br/></td></tr>
<tr class="separator:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a7af6aa217c9aa41d7ba3def3564520">DoGetBestClientHeight</a> (int width) const </td></tr>
<tr class="memdesc:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement height-for-width best size calculation.  <a href="#a4a7af6aa217c9aa41d7ba3def3564520"></a><br/></td></tr>
<tr class="separator:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9325f81776ce7167a42b6dd72aa0bd5c">DoGetBestClientWidth</a> (int height) const </td></tr>
<tr class="memdesc:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement width-for-height best size calculation.  <a href="#a9325f81776ce7167a42b6dd72aa0bd5c"></a><br/></td></tr>
<tr class="separator:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae6dfe0b0d4a8c666b21ce8df8d96727b">SetInitialBestSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the initial window size if none is given (i.e. at least one of the components of the size passed to ctor/Create() is wxDefaultCoord).  <a href="#ae6dfe0b0d4a8c666b21ce8df8d96727b"></a><br/></td></tr>
<tr class="separator:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e21eb6a0819281b29134a6432d064fe">SendDestroyEvent</a> ()</td></tr>
<tr class="memdesc:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generate <a class="el" href="classwx_window_destroy_event.html" title="This event is sent as early as possible during the window destruction process.">wxWindowDestroyEvent</a> for this window.  <a href="#a7e21eb6a0819281b29134a6432d064fe"></a><br/></td></tr>
<tr class="separator:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96">ProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is public in <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a> but protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> because for wxWindows you should always call <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> on the pointer returned by <a class="el" href="classwx_window.html#a72c2454cf309f30109da3cbfe237c760" title="Returns the event handler for this window.">GetEventHandler()</a> and not on the <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> object itself.  <a href="#a5ebdbd87c28644149a07f1742996df96"></a><br/></td></tr>
<tr class="separator:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0f9814efc50316b4c57b7ec2bf78b716">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a0f9814efc50316b4c57b7ec2bf78b716"></a><br/></td></tr>
<tr class="separator:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a69e450f21b0d7013269ec1a4771f043b">QueueEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> *event)</td></tr>
<tr class="memdesc:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a69e450f21b0d7013269ec1a4771f043b"></a><br/></td></tr>
<tr class="separator:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a774b5b5548a6258727b5e2099e63ae9a">AddPendingEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a774b5b5548a6258727b5e2099e63ae9a"></a><br/></td></tr>
<tr class="separator:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7cbee38944dab02d753a4dba74230443">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a7cbee38944dab02d753a4dba74230443"></a><br/></td></tr>
<tr class="separator:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9350b3a9c2e380707eaea92cedad12a5">ProcessThreadEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a9350b3a9c2e380707eaea92cedad12a5"></a><br/></td></tr>
<tr class="separator:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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> *&#160;</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">&#160;</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">&#160;</td></tr>
</table>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a1d03fd30dfb9c0af2e65164008eca1a3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxToolBar::wxToolBar </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Default constructor. </p>

</div>
</div>
<a class="anchor" id="a1c5d3a2853b41a2ef728dad18c321e1f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxToolBar::wxToolBar </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</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_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em> = <code><a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em> = <code><a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>style</em> = <code><a class="el" href="interface_2wx_2toolbar_8h.html#ae8a3b6a5d0d3244ed73924ab2421a0d0a9a03bef2c82a31f2981860e7e283ad74">wxTB_HORIZONTAL</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em> = <code>wxToolBarNameStr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Constructs a toolbar. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>Pointer to a parent window. </td></tr>
    <tr><td class="paramname">id</td><td>Window identifier. If -1, will automatically create an identifier. </td></tr>
    <tr><td class="paramname">pos</td><td>Window position. <a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0" title="Global instance of a wxPoint initialized with values (-1,-1).">wxDefaultPosition</a> indicates that wxWidgets should generate a default position for the window. If using the <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> class directly, supply an actual position. </td></tr>
    <tr><td class="paramname">size</td><td>Window size. <a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b" title="Global instance of a wxSize object initialized to (-1,-1).">wxDefaultSize</a> indicates that wxWidgets should generate a default size for the window. </td></tr>
    <tr><td class="paramname">style</td><td>Window style. See <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> initial description for details. </td></tr>
    <tr><td class="paramname">name</td><td>Window name.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>After a toolbar is created, you use <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a> and perhaps <a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, and then you must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> to construct and display the toolbar tools. </dd></dl>

</div>
</div>
<a class="anchor" id="a612596bf858e2b2298e842d4c7cad7c1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual wxToolBar::~wxToolBar </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>Toolbar destructor. </p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a2e650357ee8872a7443b3c4276d5cbd4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddCheckTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap1</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpDisabled</em> = <code><a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelp</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> &amp;&#160;</td>
          <td class="paramname"><em>longHelp</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="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a new check (or toggle) tool to the toolbar. </p>
<p>The parameters are the same as in <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aec263a8e47372eb78e91b8db8797731d"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddControl </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_control.html">wxControl</a> *&#160;</td>
          <td class="paramname"><em>control</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</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>Adds any control to the toolbar, typically e.g. a <a class="el" href="classwx_combo_box.html" title="A combobox is like a combination of an edit control and a listbox.">wxComboBox</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">control</td><td>The control to be added. </td></tr>
    <tr><td class="paramname">label</td><td>Text to be displayed near the control.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>wxMSW: the label is only displayed if there is enough space available below the embedded control.</dd>
<dd>
wxMac: labels are only displayed if wxWidgets is built with <code>wxMAC_USE_NATIVE_TOOLBAR</code> set to 1 </dd></dl>

</div>
</div>
<a class="anchor" id="abd8741bd04f531ccfa840e6c0ccc4c65"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddRadioTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap1</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpDisabled</em> = <code><a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelp</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> &amp;&#160;</td>
          <td class="paramname"><em>longHelp</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="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a new radio tool to the toolbar. </p>
<p>Consecutive radio tools form a radio group such that exactly one button in the group is pressed at any moment, in other words whenever a button in the group is pressed the previously pressed button is automatically released. You should avoid having the radio groups of only one element as it would be impossible for the user to use such button.</p>
<p>By default, the first button in the radio group is initially pressed, the others are not.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="acff16fd0b48ae42e9d73597fe66a8cca"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddSeparator </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>Adds a separator for spacing groups of tools. </p>
<p>Notice that the separator uses the look appropriate for the current platform so it can be a vertical line (MSW, some versions of GTK) or just an empty space or something else.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>, <a class="el" href="classwx_tool_bar.html#a163c9bfdd0f9f30707688bf498ab788c" title="Sets the default separator size.">SetToolSeparation()</a>, <a class="el" href="classwx_tool_bar.html#adb30df5ae52f2fabc974d0dd1376f5cd" title="Adds a stretchable space to the toolbar.">AddStretchableSpace()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="adb30df5ae52f2fabc974d0dd1376f5cd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddStretchableSpace </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a stretchable space to the toolbar. </p>
<p>Any space not taken up by the fixed items (all items except for stretchable spaces) is distributed in equal measure between the stretchable spaces in the toolbar. The most common use for this method is to add a single stretchable space before the items which should be right-aligned in the toolbar, but more exotic possibilities are possible, e.g. a stretchable space may be added in the beginning and the end of the toolbar to centre all toolbar items.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>, <a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, <a class="el" href="classwx_tool_bar.html#ae1c54313589268d8cd8ff692da4294af" title="Inserts a stretchable space at the given position.">InsertStretchableSpace()</a></dd></dl>
<dl class="section since"><dt>Since</dt><dd>2.9.1 </dd></dl>

</div>
</div>
<a class="anchor" id="acd25fec352f66fb174f7f81a7d834b21"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddTool </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td>
          <td class="paramname"><em>tool</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>Adds a tool to the toolbar. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">tool</td><td>The tool to be added.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>After you have added tools to a toolbar, you must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> in order to have the tools appear.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, <a class="el" href="classwx_tool_bar.html#a2e650357ee8872a7443b3c4276d5cbd4" title="Adds a new check (or toggle) tool to the toolbar.">AddCheckTool()</a>, <a class="el" href="classwx_tool_bar.html#abd8741bd04f531ccfa840e6c0ccc4c65" title="Adds a new radio tool to the toolbar.">AddRadioTool()</a>, <a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a>, <a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a>, <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a>, <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">SetDropdownMenu()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="adee3758ad1dfdb1b7921648729d1bf39"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelp</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>&#160;</td>
          <td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a tool to the toolbar. </p>
<p>This most commonly used version has fewer parameters than the full version below which specifies the more rarely used button features.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>An integer by which the tool may be identified in subsequent operations. </td></tr>
    <tr><td class="paramname">label</td><td>The string to be displayed with the tool. </td></tr>
    <tr><td class="paramname">bitmap</td><td>The primary tool bitmap. </td></tr>
    <tr><td class="paramname">shortHelp</td><td>This string is used for the tools tooltip. </td></tr>
    <tr><td class="paramname">kind</td><td>May be <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509" title="Normal tool button / menu item.">wxITEM_NORMAL</a> for a normal button (default), <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da92800d0bce3f5f62d522427453920915" title="Check (or toggle) tool button / menu item.">wxITEM_CHECK</a> for a checkable tool (such tool stays pressed after it had been toggled) or <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da507c6d99e0b95533b7ead953b344651c" title="Radio tool button / menu item.">wxITEM_RADIO</a> for a checkable tool which makes part of a radio group of tools each of which is automatically unchecked whenever another button in the group is checked. <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2dafa0165779b9c82764ec37bbafef68cbb" title="Normal tool button with a dropdown arrow next to it.">wxITEM_DROPDOWN</a> specifies that a drop-down menu button will appear next to the tool button (only GTK+ and MSW). Call <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">SetDropdownMenu()</a> afterwards.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>After you have added tools to a toolbar, you must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> in order to have the tools appear.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, <a class="el" href="classwx_tool_bar.html#a2e650357ee8872a7443b3c4276d5cbd4" title="Adds a new check (or toggle) tool to the toolbar.">AddCheckTool()</a>, <a class="el" href="classwx_tool_bar.html#abd8741bd04f531ccfa840e6c0ccc4c65" title="Adds a new radio tool to the toolbar.">AddRadioTool()</a>, <a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a>, <a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a>, <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a>, <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">SetDropdownMenu()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a487ba33ad14dd9fe6cb8c29a71d31d4f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::AddTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpDisabled</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a>&#160;</td>
          <td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelpString</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> &amp;&#160;</td>
          <td class="paramname"><em>longHelpString</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="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Adds a tool to the toolbar. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>An integer by which the tool may be identified in subsequent operations. </td></tr>
    <tr><td class="paramname">label</td><td>The string to be displayed with the tool. </td></tr>
    <tr><td class="paramname">bitmap</td><td>The primary tool bitmap. </td></tr>
    <tr><td class="paramname">bmpDisabled</td><td>The bitmap used when the tool is disabled. If it is equal to <a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21" title="An empty wxBitmap object.">wxNullBitmap</a> (default), the disabled bitmap is automatically generated by greying the normal one. </td></tr>
    <tr><td class="paramname">kind</td><td>May be <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509" title="Normal tool button / menu item.">wxITEM_NORMAL</a> for a normal button (default), <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da92800d0bce3f5f62d522427453920915" title="Check (or toggle) tool button / menu item.">wxITEM_CHECK</a> for a checkable tool (such tool stays pressed after it had been toggled) or <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da507c6d99e0b95533b7ead953b344651c" title="Radio tool button / menu item.">wxITEM_RADIO</a> for a checkable tool which makes part of a radio group of tools each of which is automatically unchecked whenever another button in the group is checked. <a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2dafa0165779b9c82764ec37bbafef68cbb" title="Normal tool button with a dropdown arrow next to it.">wxITEM_DROPDOWN</a> specifies that a drop-down menu button will appear next to the tool button (only GTK+ and MSW). Call <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">SetDropdownMenu()</a> afterwards. </td></tr>
    <tr><td class="paramname">shortHelpString</td><td>This string is used for the tools tooltip. </td></tr>
    <tr><td class="paramname">longHelpString</td><td>This string is shown in the statusbar (if any) of the parent frame when the mouse pointer is inside the tool. </td></tr>
    <tr><td class="paramname">clientData</td><td>An optional pointer to client data which can be retrieved later using <a class="el" href="classwx_tool_bar.html#a962ad5609303d6ed5151e396be47b501" title="Get any client data associated with the tool.">GetToolClientData()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>After you have added tools to a toolbar, you must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> in order to have the tools appear.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, <a class="el" href="classwx_tool_bar.html#a2e650357ee8872a7443b3c4276d5cbd4" title="Adds a new check (or toggle) tool to the toolbar.">AddCheckTool()</a>, <a class="el" href="classwx_tool_bar.html#abd8741bd04f531ccfa840e6c0ccc4c65" title="Adds a new radio tool to the toolbar.">AddRadioTool()</a>, <a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a>, <a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a>, <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a>, <a class="el" href="classwx_tool_bar.html#a77e36541602e9c0f7daa4e9bf8b6e33e" title="Sets the dropdown menu for the tool given by its id.">SetDropdownMenu()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad431696ec829540e2f9889588f6589a5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::ClearTools </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>Deletes all the tools in the toolbar. </p>

</div>
</div>
<a class="anchor" id="a1b4f0cacaff5e06c4894294c88b0b4f0"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::CreateTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpNormal</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpDisabled</em> = <code><a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a>&#160;</td>
          <td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelp</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> &amp;&#160;</td>
          <td class="paramname"><em>longHelp</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</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>Factory function to create a new toolbar tool. </p>

</div>
</div>
<a class="anchor" id="a2ad5be5698778b5d215dcabf8b907701"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::CreateTool </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_control.html">wxControl</a> *&#160;</td>
          <td class="paramname"><em>control</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>&#160;</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>Factory function to create a new control toolbar tool. </p>

</div>
</div>
<a class="anchor" id="aea3c91f9b3d7505e4b511f678883c73d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::DeleteTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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>Removes the specified tool from the toolbar and deletes it. </p>
<p>If you don't want to delete the tool, but just to remove it from the toolbar (to possibly add it back later), you may use <a class="el" href="classwx_tool_bar.html#a50f65799ae6294ee4ba08a1c75120089" title="Removes the given tool from the toolbar but doesn&#39;t delete it.">RemoveTool()</a> instead.</p>
<dl class="section note"><dt>Note</dt><dd>It is unnecessary to call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place, it will happen immediately.</dd></dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the tool was deleted, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a441f430c309c1fa8e43803fe09c2fa25" title="This function behaves like DeleteTool() but it deletes the tool at the specified position and not the...">DeleteToolByPos()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a441f430c309c1fa8e43803fe09c2fa25"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::DeleteToolByPos </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</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>This function behaves like <a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a> but it deletes the tool at the specified position and not the one with the given id. </p>

</div>
</div>
<a class="anchor" id="ad6b3481a2a6d71cad7b0923adf15c9d0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::EnableTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>enable</em>&#160;</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>Enables or disables the tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool to enable or disable, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">enable</td><td>If <span class="literal">true</span>, enables the tool, otherwise disables it.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>Some implementations will change the visible state of the tool to indicate that it is disabled.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a5e00931bc47567febe8c693b4ca4245d" title="Called to determine whether a tool is enabled (responds to user input).">GetToolEnabled()</a>, <a class="el" href="classwx_tool_bar.html#a9a7a9fb115b35f267d4b10a293667542" title="Toggles a tool on or off.">ToggleTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a1157728ed141356867ade93418dd87c1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::FindById </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>id</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a pointer to the tool identified by <em>id</em> or <span class="literal">NULL</span> if no corresponding tool is found. </p>

</div>
</div>
<a class="anchor" id="a21e7604b705b699fcf1fe5eecb9976e0"></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_control.html">wxControl</a>* wxToolBar::FindControl </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>id</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>Returns a pointer to the control identified by <em>id</em> or <span class="literal">NULL</span> if no corresponding control is found. </p>

</div>
</div>
<a class="anchor" id="ae4968860591b08c4e00a9d20e3bb73af"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::FindToolForPosition </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>y</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</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 a tool for the given mouse position. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">x</td><td>X position. </td></tr>
    <tr><td class="paramname">y</td><td>Y position.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A pointer to a tool if a tool is found, or <span class="literal">NULL</span> otherwise.</dd></dl>
<dl class="section remark"><dt>Remarks</dt><dd>Currently not implemented in wxGTK (always returns <span class="literal">NULL</span> there). </dd></dl>

</div>
</div>
<a class="anchor" id="a69a14d0bc57db1cc8da86c48a7f6610a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_size.html">wxSize</a> wxToolBar::GetMargins </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the left/right and top/bottom margins, which are also used for inter-toolspacing. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#af35993e6b491f619b810fbcf084f44e3" title="Set the values to be used as margins for the toolbar.">SetMargins()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a17fb94f787394647021e7f4327ea0c04"></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_size.html">wxSize</a> wxToolBar::GetToolBitmapSize </td>
          <td>(</td>
          <td class="paramname"></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 size of bitmap that the toolbar expects to have. </p>
<p>The default bitmap size is platform-dependent: for example, it is 16*15 for MSW and 24*24 for GTK. This size does <em>not</em> necessarily indicate the best size to use for the toolbars on the given platform, for this you should use <code>wxArtProvider::GetNativeSizeHint(wxART_TOOLBAR)</code> but in any case, as the bitmap size is deduced automatically from the size of the bitmaps associated with the tools added to the toolbar, it is usually unnecessary to call <a class="el" href="classwx_tool_bar.html#a57398893cb553fad90ffa7cd18cb1882" title="Sets the default size of each tool bitmap.">SetToolBitmapSize()</a> explicitly.</p>
<dl class="section remark"><dt>Remarks</dt><dd>Note that this is the size of the bitmap you pass to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>, and not the eventual size of the tool button.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a57398893cb553fad90ffa7cd18cb1882" title="Sets the default size of each tool bitmap.">SetToolBitmapSize()</a>, <a class="el" href="classwx_tool_bar.html#aef3f23ccc5faee6fc9de7233ac959612" title="Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D ef...">GetToolSize()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a2a40b1f6f6dc8483d721997afd4fcf05"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::GetToolByPos </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>pos</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a pointer to the tool at ordinal position <em>pos</em>. </p>
<p>Don't confuse this with <a class="el" href="classwx_tool_bar.html#ae4968860591b08c4e00a9d20e3bb73af" title="Finds a tool for the given mouse position.">FindToolForPosition()</a>.</p>
<dl class="section since"><dt>Since</dt><dd>2.9.1</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a4296cfe7a856e20f3da5805d2c21e91c" title="Returns the number of tools in the toolbar.">GetToolsCount()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a962ad5609303d6ed5151e396be47b501"></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_object.html">wxObject</a>* wxToolBar::GetToolClientData </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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>Get any client data associated with the tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Client data, or <span class="literal">NULL</span> if there is none. </dd></dl>

</div>
</div>
<a class="anchor" id="a5e00931bc47567febe8c693b4ca4245d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::GetToolEnabled </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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>Called to determine whether a tool is enabled (responds to user input). </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the tool is enabled, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#ad6b3481a2a6d71cad7b0923adf15c9d0" title="Enables or disables the tool.">EnableTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a708978cb19385f9ee3a6f688b8be47df"></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> wxToolBar::GetToolLongHelp </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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 long help for the given tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#abaf8db63f2bc75e0de67280b7e83711d" title="Sets the long help for the given tool.">SetToolLongHelp()</a>, <a class="el" href="classwx_tool_bar.html#a28ad34823b70faeae9a64c6152b8fcd1" title="Sets the short help for the given tool.">SetToolShortHelp()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a9020f56133c3b793068618c1e8a798fc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual int wxToolBar::GetToolPacking </td>
          <td>(</td>
          <td class="paramname"></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 value used for packing tools. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a26ddfe7e52a93fbc4c169159863c629c" title="Sets the value used for spacing tools.">SetToolPacking()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a50b893fd3fe02d123cf1f54f74f7e23f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual int wxToolBar::GetToolPos </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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 tool position in the toolbar, or <code>wxNOT_FOUND</code> if the tool is not found. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4296cfe7a856e20f3da5805d2c21e91c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxToolBar::GetToolsCount </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of tools in the toolbar. </p>

</div>
</div>
<a class="anchor" id="aa275ee6955ea92ed633b3c952e620829"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual int wxToolBar::GetToolSeparation </td>
          <td>(</td>
          <td class="paramname"></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 default separator size. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a163c9bfdd0f9f30707688bf498ab788c" title="Sets the default separator size.">SetToolSeparation()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a8ae92fba03e57f40c626f41217cc2fb1"></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> wxToolBar::GetToolShortHelp </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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 short help for the given tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a708978cb19385f9ee3a6f688b8be47df" title="Returns the long help for the given tool.">GetToolLongHelp()</a>, <a class="el" href="classwx_tool_bar.html#a28ad34823b70faeae9a64c6152b8fcd1" title="Sets the short help for the given tool.">SetToolShortHelp()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aef3f23ccc5faee6fc9de7233ac959612"></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_size.html">wxSize</a> wxToolBar::GetToolSize </td>
          <td>(</td>
          <td class="paramname"></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 size of a whole button, which is usually larger than a tool bitmap because of added 3D effects. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a57398893cb553fad90ffa7cd18cb1882" title="Sets the default size of each tool bitmap.">SetToolBitmapSize()</a>, <a class="el" href="classwx_tool_bar.html#a17fb94f787394647021e7f4327ea0c04" title="Returns the size of bitmap that the toolbar expects to have.">GetToolBitmapSize()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab33c570054526074d0ad6a74868bb7ee"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::GetToolState </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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>Gets the on/off state of a toggle tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the tool is toggled on, <span class="literal">false</span> otherwise.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a9a7a9fb115b35f267d4b10a293667542" title="Toggles a tool on or off.">ToggleTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a479503a1e3be0f387fd2da9365fc8eb4"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::InsertControl </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_control.html">wxControl</a> *&#160;</td>
          <td class="paramname"><em>control</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</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>Inserts the control into the toolbar at the given position. </p>
<p>You must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#aec263a8e47372eb78e91b8db8797731d" title="Adds any control to the toolbar, typically e.g. a wxComboBox.">AddControl()</a>, <a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a57e48a59e3baa218dd294be4357cde7c"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::InsertSeparator </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</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>Inserts the separator into the toolbar at the given position. </p>
<p>You must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a>, <a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ae1c54313589268d8cd8ff692da4294af"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::InsertStretchableSpace </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Inserts a stretchable space at the given position. </p>
<p>See <a class="el" href="classwx_tool_bar.html#adb30df5ae52f2fabc974d0dd1376f5cd" title="Adds a stretchable space to the toolbar.">AddStretchableSpace()</a> for details about stretchable spaces.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a584c791a0108fd848c9cd1e997316ad3" title="Inserts the tool with the specified attributes into the toolbar at the given position.">InsertTool()</a>, <a class="el" href="classwx_tool_bar.html#a57e48a59e3baa218dd294be4357cde7c" title="Inserts the separator into the toolbar at the given position.">InsertSeparator()</a></dd></dl>
<dl class="section since"><dt>Since</dt><dd>2.9.1 </dd></dl>

</div>
</div>
<a class="anchor" id="a584c791a0108fd848c9cd1e997316ad3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::InsertTool </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bmpDisabled</em> = <code><a class="el" href="interface_2wx_2bitmap_8h.html#a2947690e84b8fdb2e37b79a4af8f8a21">wxNullBitmap</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2d">wxItemKind</a>&#160;</td>
          <td class="paramname"><em>kind</em> = <code><a class="el" href="defs_8h.html#abd0c640814a55e4adda3bce698646d2da5281887c1cd68cdd6d4f6a98efc88509">wxITEM_NORMAL</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>shortHelp</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> &amp;&#160;</td>
          <td class="paramname"><em>longHelp</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="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Inserts the tool with the specified attributes into the toolbar at the given position. </p>
<p>You must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>, <a class="el" href="classwx_tool_bar.html#a479503a1e3be0f387fd2da9365fc8eb4" title="Inserts the control into the toolbar at the given position.">InsertControl()</a>, <a class="el" href="classwx_tool_bar.html#a57e48a59e3baa218dd294be4357cde7c" title="Inserts the separator into the toolbar at the given position.">InsertSeparator()</a></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The newly inserted tool or <span class="literal">NULL</span> on failure. Notice that with the overload taking <em>tool</em> parameter the caller is responsible for deleting the tool in the latter case. </dd></dl>

</div>
</div>
<a class="anchor" id="a95ac49d3dd205b02425ca6da0686d612"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::InsertTool </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pos</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_tool_bar_tool_base.html">wxToolBarToolBase</a> *&#160;</td>
          <td class="paramname"><em>tool</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Inserts the tool with the specified attributes into the toolbar at the given position. </p>
<p>You must call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>, <a class="el" href="classwx_tool_bar.html#a479503a1e3be0f387fd2da9365fc8eb4" title="Inserts the control into the toolbar at the given position.">InsertControl()</a>, <a class="el" href="classwx_tool_bar.html#a57e48a59e3baa218dd294be4357cde7c" title="Inserts the separator into the toolbar at the given position.">InsertSeparator()</a></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The newly inserted tool or <span class="literal">NULL</span> on failure. Notice that with the overload taking <em>tool</em> parameter the caller is responsible for deleting the tool in the latter case. </dd></dl>

</div>
</div>
<a class="anchor" id="ab25e206f57a873d909cf5c45d2f91971"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::OnLeftClick </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>toggleDown</em>&#160;</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>Called when the user clicks on a tool with the left mouse button. </p>
<p>This is the old way of detecting tool clicks; although it will still work, you should use the EVT_MENU() or EVT_TOOL() macro instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>The identifier passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">toggleDown</td><td><span class="literal">true</span> if the tool is a toggle and the toggle is down, otherwise is <span class="literal">false</span>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>If the tool is a toggle and this function returns <span class="literal">false</span>, the toggle state (internal and visual) will not be changed. This provides a way of specifying that toggle operations are not permitted in some circumstances.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a11fb9b5c65661ea63d28198ce156cf4d" title="This is called when the mouse cursor moves into a tool or out of the toolbar.">OnMouseEnter()</a>, <a class="el" href="classwx_tool_bar.html#add255ea52fdf9d5bfde64a22bf94dab6">OnRightClick()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a11fb9b5c65661ea63d28198ce156cf4d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::OnMouseEnter </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</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>This is called when the mouse cursor moves into a tool or out of the toolbar. </p>
<p>This is the old way of detecting mouse enter events; although it will still work, you should use the EVT_TOOL_ENTER() macro instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>Greater than -1 if the mouse cursor has moved into the tool, or -1 if the mouse cursor has moved. The programmer can override this to provide extra information about the tool, such as a short description on the status line.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>With some derived toolbar classes, if the mouse moves quickly out of the toolbar, wxWidgets may not be able to detect it. Therefore this function may not always be called when expected. </dd></dl>

</div>
</div>
<a class="anchor" id="add255ea52fdf9d5bfde64a22bf94dab6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::OnRightClick </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>y</em>&#160;</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">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000055">Deprecated:</a></b></dt><dd>This is the old way of detecting tool right clicks; although it will still work, you should use the EVT_TOOL_RCLICKED() macro instead.</dd></dl>
<p>Called when the user clicks on a tool with the right mouse button. The programmer should override this function to detect right tool clicks.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>The identifier passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">x</td><td>The x position of the mouse cursor. </td></tr>
    <tr><td class="paramname">y</td><td>The y position of the mouse cursor.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>A typical use of this member might be to pop up a menu.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a11fb9b5c65661ea63d28198ce156cf4d" title="This is called when the mouse cursor moves into a tool or out of the toolbar.">OnMouseEnter()</a>, <a class="el" href="classwx_tool_bar.html#ab25e206f57a873d909cf5c45d2f91971" title="Called when the user clicks on a tool with the left mouse button.">OnLeftClick()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="abb31ce337a2d3c1e30e8e3748905ecbf"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxToolBar::Realize </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>This function should be called after you have added tools. </p>

</div>
</div>
<a class="anchor" id="a50f65799ae6294ee4ba08a1c75120089"></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_tool_bar_tool_base.html">wxToolBarToolBase</a>* wxToolBar::RemoveTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>id</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>Removes the given tool from the toolbar but doesn't delete it. </p>
<p>This allows to insert/add this tool back to this (or another) toolbar later.</p>
<dl class="section note"><dt>Note</dt><dd>It is unnecessary to call <a class="el" href="classwx_tool_bar.html#abb31ce337a2d3c1e30e8e3748905ecbf" title="This function should be called after you have added tools.">Realize()</a> for the change to take place, it will happen immediately.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#aea3c91f9b3d7505e4b511f678883c73d" title="Removes the specified tool from the toolbar and deletes it.">DeleteTool()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab360aaa5af1d07783071351cbe5c836b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxToolBar::SetBitmapResource </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>resourceId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the bitmap resource identifier for specifying tool bitmaps as indices into a custom bitmap. </p>
<p>This is a Windows CE-specific method not available in the other ports.</p>
<div><span class="avail">Availability:</span>&#160;&#160;only available for the <a class="el" href="page_port.html#page_port_wxmsw_wince">wxWinCE</a> port.</div>  
</div>
</div>
<a class="anchor" id="a77e36541602e9c0f7daa4e9bf8b6e33e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxToolBar::SetDropdownMenu </td>
          <td>(</td>
          <td class="paramtype">int&#160;</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> *&#160;</td>
          <td class="paramname"><em>menu</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the dropdown menu for the tool given by its <em>id</em>. </p>
<p>The tool itself will delete the menu when it's no longer needed. Only supported under GTK+ und MSW.</p>
<p>If you define a EVT_TOOL_DROPDOWN() handler in your program, you must call <a class="el" href="classwx_event.html#a98eb20b76106f9a933c2eb3ee119f66c" title="This method can be used inside an event handler to control whether further event handlers bound to th...">wxEvent::Skip()</a> from it or the menu won't be displayed. </p>

</div>
</div>
<a class="anchor" id="af35993e6b491f619b810fbcf084f44e3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetMargins </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em>&#160;</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>Set the values to be used as margins for the toolbar. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">x</td><td>Left margin, right margin and inter-tool separation value. </td></tr>
    <tr><td class="paramname">y</td><td>Top margin, bottom margin and inter-tool separation value.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>This must be called before the tools are added if absolute positioning is to be used, and the default (zero-size) margins are to be overridden.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a69a14d0bc57db1cc8da86c48a7f6610a" title="Returns the left/right and top/bottom margins, which are also used for inter-toolspacing.">GetMargins()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a7f793b01108f804ab076d05420b420da"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxToolBar::SetMargins </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the margins for the toolbar. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">size</td><td>Margin size.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>This must be called before the tools are added if absolute positioning is to be used, and the default (zero-size) margins are to be overridden.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a69a14d0bc57db1cc8da86c48a7f6610a" title="Returns the left/right and top/bottom margins, which are also used for inter-toolspacing.">GetMargins()</a>, <a class="el" href="classwx_size.html" title="A wxSize is a useful data structure for graphics operations.">wxSize</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a57398893cb553fad90ffa7cd18cb1882"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolBitmapSize </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</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 default size of each tool bitmap. </p>
<p>The default bitmap size is 16 by 15 pixels.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">size</td><td>The size of the bitmaps in the toolbar.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>This should be called to tell the toolbar what the tool bitmap size is. Call it before you add tools.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a17fb94f787394647021e7f4327ea0c04" title="Returns the size of bitmap that the toolbar expects to have.">GetToolBitmapSize()</a>, <a class="el" href="classwx_tool_bar.html#aef3f23ccc5faee6fc9de7233ac959612" title="Returns the size of a whole button, which is usually larger than a tool bitmap because of added 3D ef...">GetToolSize()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a4e3c80eeecb4723c9d4f090caab5151f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolClientData </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>clientData</em>&#160;</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 the client data associated with the tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">clientData</td><td>The client data to use. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a051db073ec1aff7bb69cb58baa1a9ba9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolDisabledBitmap </td>
          <td>(</td>
          <td class="paramtype">int&#160;</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_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap</em>&#160;</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 the bitmap to be used by the tool with the given ID when the tool is in a disabled state. </p>
<p>This can only be used on Button tools, not controls.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">bitmap</td><td>Bitmap to use for disabled tools.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section note"><dt>Note</dt><dd>The native toolbar classes on the main platforms all synthesize the disabled bitmap from the normal bitmap, so this function will have no effect on those platforms. </dd></dl>

</div>
</div>
<a class="anchor" id="abaf8db63f2bc75e0de67280b7e83711d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolLongHelp </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>helpString</em>&#160;</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 the long help for the given tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">helpString</td><td>A string for the long help.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>You might use the long help for displaying the tool purpose on the status line.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a708978cb19385f9ee3a6f688b8be47df" title="Returns the long help for the given tool.">GetToolLongHelp()</a>, <a class="el" href="classwx_tool_bar.html#a28ad34823b70faeae9a64c6152b8fcd1" title="Sets the short help for the given tool.">SetToolShortHelp()</a>, </dd></dl>

</div>
</div>
<a class="anchor" id="a46b05975759ab8dc745908210ce17fcc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolNormalBitmap </td>
          <td>(</td>
          <td class="paramtype">int&#160;</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_bitmap.html">wxBitmap</a> &amp;&#160;</td>
          <td class="paramname"><em>bitmap</em>&#160;</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 the bitmap to be used by the tool with the given ID. </p>
<p>This can only be used on Button tools, not controls.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">bitmap</td><td>Bitmap to use for normals tools. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a26ddfe7e52a93fbc4c169159863c629c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolPacking </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>packing</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 value used for spacing tools. </p>
<p>The default value is 1.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">packing</td><td>The value for packing.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>The packing is used for spacing in the vertical direction if the toolbar is horizontal, and for spacing in the horizontal direction if the toolbar is vertical.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a9020f56133c3b793068618c1e8a798fc" title="Returns the value used for packing tools.">GetToolPacking()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a163c9bfdd0f9f30707688bf498ab788c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolSeparation </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>separation</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 default separator size. </p>
<p>The default value is 5.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">separation</td><td>The separator size.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#acff16fd0b48ae42e9d73597fe66a8cca" title="Adds a separator for spacing groups of tools.">AddSeparator()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a28ad34823b70faeae9a64c6152b8fcd1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::SetToolShortHelp </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>helpString</em>&#160;</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 the short help for the given tool. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">helpString</td><td>The string for the short help.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>An application might use short help for identifying the tool purpose in a tooltip.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_tool_bar.html#a8ae92fba03e57f40c626f41217cc2fb1" title="Returns the short help for the given tool.">GetToolShortHelp()</a>, <a class="el" href="classwx_tool_bar.html#abaf8db63f2bc75e0de67280b7e83711d" title="Sets the long help for the given tool.">SetToolLongHelp()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a9a7a9fb115b35f267d4b10a293667542"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxToolBar::ToggleTool </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>toolId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>toggle</em>&#160;</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>Toggles a tool on or off. </p>
<p>This does not cause any event to get emitted.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">toolId</td><td>ID of the tool in question, as passed to <a class="el" href="classwx_tool_bar.html#acd25fec352f66fb174f7f81a7d834b21" title="Adds a tool to the toolbar.">AddTool()</a>. </td></tr>
    <tr><td class="paramname">toggle</td><td>If <span class="literal">true</span>, toggles the tool on, otherwise toggles it off.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section remark"><dt>Remarks</dt><dd>Only applies to a tool that has been specified as a toggle tool. </dd></dl>

</div>
</div>
</div><!-- contents -->

<address class="footer">
	<small>
		Generated on Thu Nov 27 2014 13:47:01 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>