File: classwx_v_list_box.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 (2050 lines) | stat: -rw-r--r-- 368,024 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
<!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: wxVListBox 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="#pro-methods">Protected Member Functions</a> &#124;
<a href="classwx_v_list_box-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxVListBox Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span><div class="ingroups"><a class="el" href="group__group__class__ctrl.html">Controls</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/vlbox.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 wxVListBox:</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_v_list_box__inherit__graph.png" border="0" usemap="#wx_v_list_box_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_v_list_box_inherit__map" id="wx_v_list_box_inherit__map">
<area shape="rect" id="node19" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows..." alt="" coords="119,470,225,498"/><area shape="rect" id="node2" href="classwx_v_scrolled_window.html" title="In the name of this class, &quot;V&quot; may stand for &quot;variable&quot; because it can be used for scrolling rows of ..." alt="" coords="104,315,240,343"/><area shape="rect" id="node4" href="classwx_panel.html" title="A panel is a window on which controls are placed." alt="" coords="71,238,140,266"/><area shape="rect" id="node6" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen." alt="" coords="60,161,143,189"/><area shape="rect" id="node8" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system." alt="" coords="52,83,151,111"/><area shape="rect" id="node10" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="11,6,85,34"/><area shape="rect" id="node12" href="classwx_trackable.html" title="Add&#45;on base class for a trackable object." alt="" coords="109,6,203,34"/><area shape="rect" id="node14" href="classwx_var_v_scroll_helper.html" title="This class provides functions wrapping the wxVarScrollHelperBase class, targeted for vertical&#45;specifi..." alt="" coords="172,238,305,266"/><area shape="rect" id="node16" href="classwx_var_scroll_helper_base.html" title="This class provides all common base functionality for scroll calculations shared among all variable s..." alt="" coords="167,161,321,189"/><area shape="rect" id="node21" href="classwx_rich_text_style_list_box.html" title="This is a listbox that can display the styles in a wxRichTextStyleSheet, and apply the selection to a..." alt="" coords="5,547,163,575"/><area shape="rect" id="node23" href="classwx_simple_html_list_box.html" title="wxSimpleHtmlListBox is an implementation of wxHtmlListBox which shows HTML content in the listbox row..." alt="" coords="187,547,333,575"/></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 class="el" href="classwx_v_list_box.html" title="wxVListBox is a wxListBox-like control with the following two main differences from a regular wxListB...">wxVListBox</a> is a wxListBox-like control with the following two main differences from a regular <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a>: it can have an arbitrarily huge number of items because it doesn't store them itself but uses the <a class="el" href="classwx_v_list_box.html#aa3f4d4f5f0c9f00dd3e671334345b83b" title="The derived class must implement this function to actually draw the item with the given index on the ...">OnDrawItem()</a> callback to draw them (so it is a virtual listbox) and its items can have variable height as determined by <a class="el" href="classwx_v_list_box.html#a25c651d397f60c62039dd89bd6f92152" title="The derived class must implement this method to return the height of the specified item (in pixels)...">OnMeasureItem()</a> (so it is also a listbox with the lines of variable height). </p>
<p>Also, as a consequence of its virtual nature, it doesn't have any methods to append or insert items in it as it isn't necessary to do it: you just have to call <a class="el" href="classwx_v_list_box.html#a205615c79836dc7999d20e083a4a8ffb" title="Set the number of items to be shown in the control.">SetItemCount()</a> to tell the control how many items it should display. Of course, this also means that you will never use this class directly because it has pure virtual functions, but will need to derive your own class from it (for example, <a class="el" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows...">wxHtmlListBox</a>).</p>
<p>However it emits the same events as <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a> and the same event macros may be used with it. Since <a class="el" href="classwx_v_list_box.html" title="wxVListBox is a wxListBox-like control with the following two main differences from a regular wxListB...">wxVListBox</a> does not store its items itself, the events will only contain the index, not any contents such as the string of an item.</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__ctrl.html">Controls</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_simple_html_list_box.html" title="wxSimpleHtmlListBox is an implementation of wxHtmlListBox which shows HTML content in the listbox row...">wxSimpleHtmlListBox</a>, <a class="el" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows...">wxHtmlListBox</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:a16c1200f6b3024967ab8de52760deffa"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a16c1200f6b3024967ab8de52760deffa">wxVListBox</a> ()</td></tr>
<tr class="memdesc:a16c1200f6b3024967ab8de52760deffa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor, you must call <a class="el" href="classwx_v_list_box.html#ab04914d5db45af7c3c032e19fa2b2615" title="Creates the control.">Create()</a> later.  <a href="#a16c1200f6b3024967ab8de52760deffa"></a><br/></td></tr>
<tr class="separator:a16c1200f6b3024967ab8de52760deffa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf0f414c7638c76d5bf306349f39b280"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#abf0f414c7638c76d5bf306349f39b280">wxVListBox</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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=wxVListBoxNameStr)</td></tr>
<tr class="memdesc:abf0f414c7638c76d5bf306349f39b280"><td class="mdescLeft">&#160;</td><td class="mdescRight">Normal constructor which calls <a class="el" href="classwx_v_list_box.html#ab04914d5db45af7c3c032e19fa2b2615" title="Creates the control.">Create()</a> internally.  <a href="#abf0f414c7638c76d5bf306349f39b280"></a><br/></td></tr>
<tr class="separator:abf0f414c7638c76d5bf306349f39b280"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a302339253a1e8e4f2d3cc6c33166d7ee"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a302339253a1e8e4f2d3cc6c33166d7ee">~wxVListBox</a> ()</td></tr>
<tr class="memdesc:a302339253a1e8e4f2d3cc6c33166d7ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a302339253a1e8e4f2d3cc6c33166d7ee"></a><br/></td></tr>
<tr class="separator:a302339253a1e8e4f2d3cc6c33166d7ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf92fc38649bd6efc5b1f72c508a5f6f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#aaf92fc38649bd6efc5b1f72c508a5f6f">Clear</a> ()</td></tr>
<tr class="memdesc:aaf92fc38649bd6efc5b1f72c508a5f6f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes all items from the control.  <a href="#aaf92fc38649bd6efc5b1f72c508a5f6f"></a><br/></td></tr>
<tr class="separator:aaf92fc38649bd6efc5b1f72c508a5f6f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab04914d5db45af7c3c032e19fa2b2615"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#ab04914d5db45af7c3c032e19fa2b2615">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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=wxVListBoxNameStr)</td></tr>
<tr class="memdesc:ab04914d5db45af7c3c032e19fa2b2615"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates the control.  <a href="#ab04914d5db45af7c3c032e19fa2b2615"></a><br/></td></tr>
<tr class="separator:ab04914d5db45af7c3c032e19fa2b2615"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d922a858e2af9eb94026a5360e2c443"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a3d922a858e2af9eb94026a5360e2c443">DeselectAll</a> ()</td></tr>
<tr class="memdesc:a3d922a858e2af9eb94026a5360e2c443"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deselects all the items in the listbox.  <a href="#a3d922a858e2af9eb94026a5360e2c443"></a><br/></td></tr>
<tr class="separator:a3d922a858e2af9eb94026a5360e2c443"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44a07d450268cb40d60cb5320309bef2"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a44a07d450268cb40d60cb5320309bef2">GetFirstSelected</a> (unsigned long &amp;cookie) const </td></tr>
<tr class="memdesc:a44a07d450268cb40d60cb5320309bef2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the first selected item in the listbox or <code>wxNOT_FOUND</code> if no items are currently selected.  <a href="#a44a07d450268cb40d60cb5320309bef2"></a><br/></td></tr>
<tr class="separator:a44a07d450268cb40d60cb5320309bef2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb8472a48e56b43070c526c13c084e28"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#adb8472a48e56b43070c526c13c084e28">GetItemCount</a> () const </td></tr>
<tr class="memdesc:adb8472a48e56b43070c526c13c084e28"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of items in the control.  <a href="#adb8472a48e56b43070c526c13c084e28"></a><br/></td></tr>
<tr class="separator:adb8472a48e56b43070c526c13c084e28"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a297b81765b7f60c7125595fd01869294"><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_v_list_box.html#a297b81765b7f60c7125595fd01869294">GetMargins</a> () const </td></tr>
<tr class="memdesc:a297b81765b7f60c7125595fd01869294"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the margins used by the control.  <a href="#a297b81765b7f60c7125595fd01869294"></a><br/></td></tr>
<tr class="separator:a297b81765b7f60c7125595fd01869294"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad80e30710423e8c673416fcb4d3989fa"><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_v_list_box.html#ad80e30710423e8c673416fcb4d3989fa">GetItemRect</a> (size_t item) const </td></tr>
<tr class="memdesc:ad80e30710423e8c673416fcb4d3989fa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the rectangle occupied by this item in physical coordinates.  <a href="#ad80e30710423e8c673416fcb4d3989fa"></a><br/></td></tr>
<tr class="separator:ad80e30710423e8c673416fcb4d3989fa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abbc72b73be6e13aa2edd0ef08b30d235"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#abbc72b73be6e13aa2edd0ef08b30d235">GetNextSelected</a> (unsigned long &amp;cookie) const </td></tr>
<tr class="memdesc:abbc72b73be6e13aa2edd0ef08b30d235"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the next selected item or <code>wxNOT_FOUND</code> if there are no more.  <a href="#abbc72b73be6e13aa2edd0ef08b30d235"></a><br/></td></tr>
<tr class="separator:abbc72b73be6e13aa2edd0ef08b30d235"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a729b869aec06e50cc60c0abe72bcfac2"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a729b869aec06e50cc60c0abe72bcfac2">GetSelectedCount</a> () const </td></tr>
<tr class="memdesc:a729b869aec06e50cc60c0abe72bcfac2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of the items currently selected.  <a href="#a729b869aec06e50cc60c0abe72bcfac2"></a><br/></td></tr>
<tr class="separator:a729b869aec06e50cc60c0abe72bcfac2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad133e56ceb5baae37d4f62c0a5fa2c2b"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#ad133e56ceb5baae37d4f62c0a5fa2c2b">GetSelection</a> () const </td></tr>
<tr class="memdesc:ad133e56ceb5baae37d4f62c0a5fa2c2b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the currently selected item or <code>wxNOT_FOUND</code> if there is no selection.  <a href="#ad133e56ceb5baae37d4f62c0a5fa2c2b"></a><br/></td></tr>
<tr class="separator:ad133e56ceb5baae37d4f62c0a5fa2c2b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a573faf189bae0c82d0f6f8bbd60d009f"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_colour.html">wxColour</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a573faf189bae0c82d0f6f8bbd60d009f">GetSelectionBackground</a> () const </td></tr>
<tr class="memdesc:a573faf189bae0c82d0f6f8bbd60d009f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the background colour used for the selected cells.  <a href="#a573faf189bae0c82d0f6f8bbd60d009f"></a><br/></td></tr>
<tr class="separator:a573faf189bae0c82d0f6f8bbd60d009f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b30ca1c9e37ee9f6670c99e65b6dbb5"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a4b30ca1c9e37ee9f6670c99e65b6dbb5">HasMultipleSelection</a> () const </td></tr>
<tr class="memdesc:a4b30ca1c9e37ee9f6670c99e65b6dbb5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the listbox was created with <code>wxLB_MULTIPLE</code> style and so supports multiple selection or <span class="literal">false</span> if it is a single selection listbox.  <a href="#a4b30ca1c9e37ee9f6670c99e65b6dbb5"></a><br/></td></tr>
<tr class="separator:a4b30ca1c9e37ee9f6670c99e65b6dbb5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adbef7038b847654aba0823d81496b60b"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#adbef7038b847654aba0823d81496b60b">IsCurrent</a> (size_t item) const </td></tr>
<tr class="memdesc:adbef7038b847654aba0823d81496b60b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this item is the current one, <span class="literal">false</span> otherwise.  <a href="#adbef7038b847654aba0823d81496b60b"></a><br/></td></tr>
<tr class="separator:adbef7038b847654aba0823d81496b60b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae0e866eff39e92d81e090aa316769333"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#ae0e866eff39e92d81e090aa316769333">IsSelected</a> (size_t item) const </td></tr>
<tr class="memdesc:ae0e866eff39e92d81e090aa316769333"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this item is selected, <span class="literal">false</span> otherwise.  <a href="#ae0e866eff39e92d81e090aa316769333"></a><br/></td></tr>
<tr class="separator:ae0e866eff39e92d81e090aa316769333"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b49818db23a5fbd987438ca5ea0f607"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a0b49818db23a5fbd987438ca5ea0f607">Select</a> (size_t item, bool select=true)</td></tr>
<tr class="memdesc:a0b49818db23a5fbd987438ca5ea0f607"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects or deselects the specified item which must be valid (i.e. not equal to <code>wxNOT_FOUND</code>).  <a href="#a0b49818db23a5fbd987438ca5ea0f607"></a><br/></td></tr>
<tr class="separator:a0b49818db23a5fbd987438ca5ea0f607"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a46d5153f9c50bff13663d1768818255e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a46d5153f9c50bff13663d1768818255e">SelectAll</a> ()</td></tr>
<tr class="memdesc:a46d5153f9c50bff13663d1768818255e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects all the items in the listbox.  <a href="#a46d5153f9c50bff13663d1768818255e"></a><br/></td></tr>
<tr class="separator:a46d5153f9c50bff13663d1768818255e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab148ec397eacecb1a71e829c2b5aa13a"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#ab148ec397eacecb1a71e829c2b5aa13a">SelectRange</a> (size_t from, size_t to)</td></tr>
<tr class="memdesc:ab148ec397eacecb1a71e829c2b5aa13a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects all items in the specified range which may be given in any order.  <a href="#ab148ec397eacecb1a71e829c2b5aa13a"></a><br/></td></tr>
<tr class="separator:ab148ec397eacecb1a71e829c2b5aa13a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a205615c79836dc7999d20e083a4a8ffb"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a205615c79836dc7999d20e083a4a8ffb">SetItemCount</a> (size_t count)</td></tr>
<tr class="memdesc:a205615c79836dc7999d20e083a4a8ffb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the number of items to be shown in the control.  <a href="#a205615c79836dc7999d20e083a4a8ffb"></a><br/></td></tr>
<tr class="separator:a205615c79836dc7999d20e083a4a8ffb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee1df263dbb96e49dbc44684fb7d9dad"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#aee1df263dbb96e49dbc44684fb7d9dad">SetSelection</a> (int selection)</td></tr>
<tr class="memdesc:aee1df263dbb96e49dbc44684fb7d9dad"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the selection to the specified item, if it is -1 the selection is unset.  <a href="#aee1df263dbb96e49dbc44684fb7d9dad"></a><br/></td></tr>
<tr class="separator:aee1df263dbb96e49dbc44684fb7d9dad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad25b40caedb9a864ab347d50e8c5e8b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#aad25b40caedb9a864ab347d50e8c5e8b">SetSelectionBackground</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;col)</td></tr>
<tr class="memdesc:aad25b40caedb9a864ab347d50e8c5e8b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the colour to be used for the selected cells background.  <a href="#aad25b40caedb9a864ab347d50e8c5e8b"></a><br/></td></tr>
<tr class="separator:aad25b40caedb9a864ab347d50e8c5e8b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae530f18573bd96ea497d64b1b1b18905"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#ae530f18573bd96ea497d64b1b1b18905">Toggle</a> (size_t item)</td></tr>
<tr class="memdesc:ae530f18573bd96ea497d64b1b1b18905"><td class="mdescLeft">&#160;</td><td class="mdescRight">Toggles the state of the specified <em>item</em>, i.e. selects it if it was unselected and deselects it if it was selected.  <a href="#ae530f18573bd96ea497d64b1b1b18905"></a><br/></td></tr>
<tr class="separator:ae530f18573bd96ea497d64b1b1b18905"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr class="memitem:aeabe37f2b1a1887f995c431eb5522921"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#aeabe37f2b1a1887f995c431eb5522921">SetMargins</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:aeabe37f2b1a1887f995c431eb5522921"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the margins: horizontal margin is the distance between the window border and the item contents while vertical margin is half of the distance between items.  <a href="#aeabe37f2b1a1887f995c431eb5522921"></a><br/></td></tr>
<tr class="separator:aeabe37f2b1a1887f995c431eb5522921"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20ef3b7013828036d0c3901500d23cf3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a20ef3b7013828036d0c3901500d23cf3">SetMargins</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y)</td></tr>
<tr class="memdesc:a20ef3b7013828036d0c3901500d23cf3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the margins: horizontal margin is the distance between the window border and the item contents while vertical margin is half of the distance between items.  <a href="#a20ef3b7013828036d0c3901500d23cf3"></a><br/></td></tr>
<tr class="separator:a20ef3b7013828036d0c3901500d23cf3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_v_scrolled_window"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_v_scrolled_window')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_v_scrolled_window.html">wxVScrolledWindow</a></td></tr>
<tr class="memitem:adb06f27558d3eb244ec301a21b0172c4 inherit pub_methods_classwx_v_scrolled_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_scrolled_window.html#adb06f27558d3eb244ec301a21b0172c4">wxVScrolledWindow</a> ()</td></tr>
<tr class="memdesc:adb06f27558d3eb244ec301a21b0172c4 inherit pub_methods_classwx_v_scrolled_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor, you must call <a class="el" href="classwx_v_scrolled_window.html#ac6e7a6ace37133efb091b1bf69d09a90" title="Same as the non-default constructor, but returns a status code: true if ok, false if the window could...">Create()</a> later.  <a href="#adb06f27558d3eb244ec301a21b0172c4"></a><br/></td></tr>
<tr class="separator:adb06f27558d3eb244ec301a21b0172c4 inherit pub_methods_classwx_v_scrolled_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad5515a8d0ad86539caa736012ec0f3aa inherit pub_methods_classwx_v_scrolled_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_scrolled_window.html#ad5515a8d0ad86539caa736012ec0f3aa">wxVScrolledWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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:ad5515a8d0ad86539caa736012ec0f3aa inherit pub_methods_classwx_v_scrolled_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is the normal constructor, no need to call <a class="el" href="classwx_v_scrolled_window.html#ac6e7a6ace37133efb091b1bf69d09a90" title="Same as the non-default constructor, but returns a status code: true if ok, false if the window could...">Create()</a> after using this constructor.  <a href="#ad5515a8d0ad86539caa736012ec0f3aa"></a><br/></td></tr>
<tr class="separator:ad5515a8d0ad86539caa736012ec0f3aa inherit pub_methods_classwx_v_scrolled_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6e7a6ace37133efb091b1bf69d09a90 inherit pub_methods_classwx_v_scrolled_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_scrolled_window.html#ac6e7a6ace37133efb091b1bf69d09a90">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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:ac6e7a6ace37133efb091b1bf69d09a90 inherit pub_methods_classwx_v_scrolled_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as the non-default constructor, but returns a status code: <span class="literal">true</span> if ok, <span class="literal">false</span> if the window couldn't be created.  <a href="#ac6e7a6ace37133efb091b1bf69d09a90"></a><br/></td></tr>
<tr class="separator:ac6e7a6ace37133efb091b1bf69d09a90 inherit pub_methods_classwx_v_scrolled_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_panel"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_panel')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_panel.html">wxPanel</a></td></tr>
<tr class="memitem:abacb5b24465e240cfdc04e069249cbbb inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#abacb5b24465e240cfdc04e069249cbbb">wxPanel</a> ()</td></tr>
<tr class="memdesc:abacb5b24465e240cfdc04e069249cbbb inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#abacb5b24465e240cfdc04e069249cbbb"></a><br/></td></tr>
<tr class="separator:abacb5b24465e240cfdc04e069249cbbb inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5860a221ee88bd4ea6f0843112523890 inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a5860a221ee88bd4ea6f0843112523890">wxPanel</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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="defs_8h.html#a80617961a7712edd27988dffbe0e8cca">wxTAB_TRAVERSAL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="memdesc:a5860a221ee88bd4ea6f0843112523890 inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a5860a221ee88bd4ea6f0843112523890"></a><br/></td></tr>
<tr class="separator:a5860a221ee88bd4ea6f0843112523890 inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8feabacc22645e4c331516a652a2002d inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a8feabacc22645e4c331516a652a2002d">~wxPanel</a> ()</td></tr>
<tr class="memdesc:a8feabacc22645e4c331516a652a2002d inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a8feabacc22645e4c331516a652a2002d"></a><br/></td></tr>
<tr class="separator:a8feabacc22645e4c331516a652a2002d inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad43482bf961c0a8185624085facd0853 inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#ad43482bf961c0a8185624085facd0853">AcceptsFocus</a> () const </td></tr>
<tr class="memdesc:ad43482bf961c0a8185624085facd0853 inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is overridden from <a class="el" href="classwx_window.html#a3afbd49b1ea2f8275e3600dcac102923" title="This method may be overridden in the derived classes to return false to indicate that this control do...">wxWindow::AcceptsFocus()</a> and returns <span class="literal">true</span> only if there is no child window in the panel which can accept the focus.  <a href="#ad43482bf961c0a8185624085facd0853"></a><br/></td></tr>
<tr class="separator:ad43482bf961c0a8185624085facd0853 inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3ff58c601a52262e03abf84d3896ff2f inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a3ff58c601a52262e03abf84d3896ff2f">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, 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="defs_8h.html#a80617961a7712edd27988dffbe0e8cca">wxTAB_TRAVERSAL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="memdesc:a3ff58c601a52262e03abf84d3896ff2f inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Used for two-step panel construction.  <a href="#a3ff58c601a52262e03abf84d3896ff2f"></a><br/></td></tr>
<tr class="separator:a3ff58c601a52262e03abf84d3896ff2f inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab632da62e9cc8969bb25c628a2b8bdee inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#ab632da62e9cc8969bb25c628a2b8bdee">InitDialog</a> ()</td></tr>
<tr class="memdesc:ab632da62e9cc8969bb25c628a2b8bdee inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sends a <a class="el" href="classwx_init_dialog_event.html" title="A wxInitDialogEvent is sent as a dialog or panel is being initialised.">wxInitDialogEvent</a>, which in turn transfers data to the dialog via validators.  <a href="#ab632da62e9cc8969bb25c628a2b8bdee"></a><br/></td></tr>
<tr class="separator:ab632da62e9cc8969bb25c628a2b8bdee inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ded9b75baf21e2c9f5496f746b68bf0 inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a6ded9b75baf21e2c9f5496f746b68bf0">Layout</a> ()</td></tr>
<tr class="memdesc:a6ded9b75baf21e2c9f5496f746b68bf0 inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#ad369fe1db5c20f9d9edff7b5eb1f7226" title="Determines whether the Layout() function will be called automatically when the window is resized...">wxWindow::SetAutoLayout()</a>: when auto layout is on, this function gets called automatically when the window is resized.  <a href="#a6ded9b75baf21e2c9f5496f746b68bf0"></a><br/></td></tr>
<tr class="separator:a6ded9b75baf21e2c9f5496f746b68bf0 inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3953dd8ab6e04b15206b24a96c2636a4 inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a3953dd8ab6e04b15206b24a96c2636a4">OnSysColourChanged</a> (<a class="el" href="classwx_sys_colour_changed_event.html">wxSysColourChangedEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a3953dd8ab6e04b15206b24a96c2636a4 inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">The default handler for <code>wxEVT_SYS_COLOUR_CHANGED</code>.  <a href="#a3953dd8ab6e04b15206b24a96c2636a4"></a><br/></td></tr>
<tr class="separator:a3953dd8ab6e04b15206b24a96c2636a4 inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3764294f9ec0393033efc02860daba5b inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#a3764294f9ec0393033efc02860daba5b">SetFocus</a> ()</td></tr>
<tr class="memdesc:a3764294f9ec0393033efc02860daba5b inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">Overrides <a class="el" href="classwx_window.html#a697f9f8d3ff389790f1c74b59bcb1d75" title="This sets the window to receive keyboard input.">wxWindow::SetFocus()</a>.  <a href="#a3764294f9ec0393033efc02860daba5b"></a><br/></td></tr>
<tr class="separator:a3764294f9ec0393033efc02860daba5b inherit pub_methods_classwx_panel"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1f608902d585383401423a8e4eefe13 inherit pub_methods_classwx_panel"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_panel.html#ae1f608902d585383401423a8e4eefe13">SetFocusIgnoringChildren</a> ()</td></tr>
<tr class="memdesc:ae1f608902d585383401423a8e4eefe13 inherit pub_methods_classwx_panel"><td class="mdescLeft">&#160;</td><td class="mdescRight">In contrast to <a class="el" href="classwx_panel.html#a3764294f9ec0393033efc02860daba5b" title="Overrides wxWindow::SetFocus().">SetFocus()</a> (see above) this will set the focus to the panel even if there are child windows in the panel.  <a href="#ae1f608902d585383401423a8e4eefe13"></a><br/></td></tr>
<tr class="separator:ae1f608902d585383401423a8e4eefe13 inherit pub_methods_classwx_panel"><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: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: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:a87fc676546f2ab837342b2e164dd52f0 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#a87fc676546f2ab837342b2e164dd52f0">GetLabel</a> () const </td></tr>
<tr class="memdesc:a87fc676546f2ab837342b2e164dd52f0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generic way of getting a label from any window, for identification purposes.  <a href="#a87fc676546f2ab837342b2e164dd52f0"></a><br/></td></tr>
<tr class="separator:a87fc676546f2ab837342b2e164dd52f0 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:aa00ffea9f53587f29ae343adde033b8e 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#aa00ffea9f53587f29ae343adde033b8e">SetLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:aa00ffea9f53587f29ae343adde033b8e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's label.  <a href="#aa00ffea9f53587f29ae343adde033b8e"></a><br/></td></tr>
<tr class="separator:aa00ffea9f53587f29ae343adde033b8e 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: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: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>
<tr class="inherit_header pub_methods_classwx_var_v_scroll_helper"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_var_v_scroll_helper')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_var_v_scroll_helper.html">wxVarVScrollHelper</a></td></tr>
<tr class="memitem:a74665da02aa3152cd0e77fb470d2b3c8 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a74665da02aa3152cd0e77fb470d2b3c8">wxVarVScrollHelper</a> (<a class="el" href="classwx_window.html">wxWindow</a> *winToScroll)</td></tr>
<tr class="memdesc:a74665da02aa3152cd0e77fb470d2b3c8 inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor taking the target window to be scrolled by this helper class.  <a href="#a74665da02aa3152cd0e77fb470d2b3c8"></a><br/></td></tr>
<tr class="separator:a74665da02aa3152cd0e77fb470d2b3c8 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0078e10ddacacbfbe8dea07b71f9c833 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a0078e10ddacacbfbe8dea07b71f9c833">GetRowCount</a> () const </td></tr>
<tr class="memdesc:a0078e10ddacacbfbe8dea07b71f9c833 inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of rows the target window contains.  <a href="#a0078e10ddacacbfbe8dea07b71f9c833"></a><br/></td></tr>
<tr class="separator:a0078e10ddacacbfbe8dea07b71f9c833 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9afbc0d5e28938ef9d6abcfbd7cb6ab2 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a9afbc0d5e28938ef9d6abcfbd7cb6ab2">GetVisibleRowsBegin</a> () const </td></tr>
<tr class="memdesc:a9afbc0d5e28938ef9d6abcfbd7cb6ab2 inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the first visible row based on the scroll position.  <a href="#a9afbc0d5e28938ef9d6abcfbd7cb6ab2"></a><br/></td></tr>
<tr class="separator:a9afbc0d5e28938ef9d6abcfbd7cb6ab2 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a797f4c333cc2348b6729bb3e87ce758d inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a797f4c333cc2348b6729bb3e87ce758d">GetVisibleRowsEnd</a> () const </td></tr>
<tr class="memdesc:a797f4c333cc2348b6729bb3e87ce758d inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the last visible row based on the scroll position.  <a href="#a797f4c333cc2348b6729bb3e87ce758d"></a><br/></td></tr>
<tr class="separator:a797f4c333cc2348b6729bb3e87ce758d inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f3313760511ead7dc98ce9789a056fd inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a8f3313760511ead7dc98ce9789a056fd">IsRowVisible</a> (size_t row) const </td></tr>
<tr class="memdesc:a8f3313760511ead7dc98ce9789a056fd inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given row is currently visible (even if only partially visible) or <span class="literal">false</span> otherwise.  <a href="#a8f3313760511ead7dc98ce9789a056fd"></a><br/></td></tr>
<tr class="separator:a8f3313760511ead7dc98ce9789a056fd inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c1572f531aa885d3460bc137d20580f inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a5c1572f531aa885d3460bc137d20580f">RefreshRow</a> (size_t row)</td></tr>
<tr class="memdesc:a5c1572f531aa885d3460bc137d20580f inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Triggers a refresh for just the given row's area of the window if it's visible.  <a href="#a5c1572f531aa885d3460bc137d20580f"></a><br/></td></tr>
<tr class="separator:a5c1572f531aa885d3460bc137d20580f inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad1124a2b155144ea8263d237ac39801d inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#ad1124a2b155144ea8263d237ac39801d">RefreshRows</a> (size_t from, size_t to)</td></tr>
<tr class="memdesc:ad1124a2b155144ea8263d237ac39801d inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Triggers a refresh for the area between the specified range of rows given (inclusively).  <a href="#ad1124a2b155144ea8263d237ac39801d"></a><br/></td></tr>
<tr class="separator:ad1124a2b155144ea8263d237ac39801d inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35d204bfdc71ce869af2b76eef884ceb inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a35d204bfdc71ce869af2b76eef884ceb">ScrollRowPages</a> (int pages)</td></tr>
<tr class="memdesc:a35d204bfdc71ce869af2b76eef884ceb inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scroll by the specified number of pages which may be positive (to scroll down) or negative (to scroll up).  <a href="#a35d204bfdc71ce869af2b76eef884ceb"></a><br/></td></tr>
<tr class="separator:a35d204bfdc71ce869af2b76eef884ceb inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7219ca66b365e9ecdbe38abf94df1484 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a7219ca66b365e9ecdbe38abf94df1484">ScrollRows</a> (int rows)</td></tr>
<tr class="memdesc:a7219ca66b365e9ecdbe38abf94df1484 inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scroll by the specified number of rows which may be positive (to scroll down) or negative (to scroll up).  <a href="#a7219ca66b365e9ecdbe38abf94df1484"></a><br/></td></tr>
<tr class="separator:a7219ca66b365e9ecdbe38abf94df1484 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a592638e69855ba6dfcbf8fb6142a1a92 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#a592638e69855ba6dfcbf8fb6142a1a92">ScrollToRow</a> (size_t row)</td></tr>
<tr class="memdesc:a592638e69855ba6dfcbf8fb6142a1a92 inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scroll to the specified row.  <a href="#a592638e69855ba6dfcbf8fb6142a1a92"></a><br/></td></tr>
<tr class="separator:a592638e69855ba6dfcbf8fb6142a1a92 inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adcf2e7fa5ea560587a7a1055cf0659ad inherit pub_methods_classwx_var_v_scroll_helper"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_v_scroll_helper.html#adcf2e7fa5ea560587a7a1055cf0659ad">SetRowCount</a> (size_t rowCount)</td></tr>
<tr class="memdesc:adcf2e7fa5ea560587a7a1055cf0659ad inherit pub_methods_classwx_var_v_scroll_helper"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the number of rows the window contains.  <a href="#adcf2e7fa5ea560587a7a1055cf0659ad"></a><br/></td></tr>
<tr class="separator:adcf2e7fa5ea560587a7a1055cf0659ad inherit pub_methods_classwx_var_v_scroll_helper"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_var_scroll_helper_base"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_var_scroll_helper_base')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_var_scroll_helper_base.html">wxVarScrollHelperBase</a></td></tr>
<tr class="memitem:a51c4f935ffef35e38d800b5fb1aea20b inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a51c4f935ffef35e38d800b5fb1aea20b">wxVarScrollHelperBase</a> (<a class="el" href="classwx_window.html">wxWindow</a> *winToScroll)</td></tr>
<tr class="memdesc:a51c4f935ffef35e38d800b5fb1aea20b inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor taking the target window to be scrolled by this helper class.  <a href="#a51c4f935ffef35e38d800b5fb1aea20b"></a><br/></td></tr>
<tr class="separator:a51c4f935ffef35e38d800b5fb1aea20b inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1d98424cb2af1db02e326c5c7065c12d inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a1d98424cb2af1db02e326c5c7065c12d">~wxVarScrollHelperBase</a> ()</td></tr>
<tr class="memdesc:a1d98424cb2af1db02e326c5c7065c12d inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Virtual destructor for detaching scroll event handlers attached with this helper class.  <a href="#a1d98424cb2af1db02e326c5c7065c12d"></a><br/></td></tr>
<tr class="separator:a1d98424cb2af1db02e326c5c7065c12d inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed909bbbec82269f2c53dad5e7da8ed7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#aed909bbbec82269f2c53dad5e7da8ed7">CalcScrolledPosition</a> (int coord) const </td></tr>
<tr class="memdesc:aed909bbbec82269f2c53dad5e7da8ed7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Translates the logical coordinate given to the current device coordinate.  <a href="#aed909bbbec82269f2c53dad5e7da8ed7"></a><br/></td></tr>
<tr class="separator:aed909bbbec82269f2c53dad5e7da8ed7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b2142bd630ec007036d2d826fa25b4a inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a8b2142bd630ec007036d2d826fa25b4a">CalcUnscrolledPosition</a> (int coord) const </td></tr>
<tr class="memdesc:a8b2142bd630ec007036d2d826fa25b4a inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Translates the device coordinate given to the corresponding logical coordinate.  <a href="#a8b2142bd630ec007036d2d826fa25b4a"></a><br/></td></tr>
<tr class="separator:a8b2142bd630ec007036d2d826fa25b4a inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acdcec3046de7670eb2d448463a011b81 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#acdcec3046de7670eb2d448463a011b81">EnablePhysicalScrolling</a> (bool scrolling=true)</td></tr>
<tr class="memdesc:acdcec3046de7670eb2d448463a011b81 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">With physical scrolling on (when this is <span class="literal">true</span>), the device origin is changed properly when a <a class="el" href="classwx_paint_d_c.html" title="A wxPaintDC must be constructed if an application wishes to paint on the client area of a window from...">wxPaintDC</a> is prepared, children are actually moved and laid out properly, and the contents of the window (pixels) are actually moved.  <a href="#acdcec3046de7670eb2d448463a011b81"></a><br/></td></tr>
<tr class="separator:acdcec3046de7670eb2d448463a011b81 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b9316fbade3450efdc359ac049a7839 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a5b9316fbade3450efdc359ac049a7839">GetNonOrientationTargetSize</a> () const =0</td></tr>
<tr class="memdesc:a5b9316fbade3450efdc359ac049a7839 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function needs to be overridden in the in the derived class to return the window size with respect to the opposing orientation.  <a href="#a5b9316fbade3450efdc359ac049a7839"></a><br/></td></tr>
<tr class="separator:a5b9316fbade3450efdc359ac049a7839 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:addff4d4e4e099adac7abfe56fbb50682 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971">wxOrientation</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#addff4d4e4e099adac7abfe56fbb50682">GetOrientation</a> () const =0</td></tr>
<tr class="memdesc:addff4d4e4e099adac7abfe56fbb50682 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function need to be overridden to return the orientation that this helper is working with, either <code>wxHORIZONTAL</code> or <code>wxVERTICAL</code>.  <a href="#addff4d4e4e099adac7abfe56fbb50682"></a><br/></td></tr>
<tr class="separator:addff4d4e4e099adac7abfe56fbb50682 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d195a4216200894fc3e843c01ec4e54 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a5d195a4216200894fc3e843c01ec4e54">GetOrientationTargetSize</a> () const =0</td></tr>
<tr class="memdesc:a5d195a4216200894fc3e843c01ec4e54 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function needs to be overridden in the in the derived class to return the window size with respect to the orientation this helper is working with.  <a href="#a5d195a4216200894fc3e843c01ec4e54"></a><br/></td></tr>
<tr class="separator:a5d195a4216200894fc3e843c01ec4e54 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afcd2d4890fcc4ea1128e67dc2faf4c2c inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#afcd2d4890fcc4ea1128e67dc2faf4c2c">GetTargetWindow</a> () const </td></tr>
<tr class="memdesc:afcd2d4890fcc4ea1128e67dc2faf4c2c inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function will return the target window this helper class is currently scrolling.  <a href="#afcd2d4890fcc4ea1128e67dc2faf4c2c"></a><br/></td></tr>
<tr class="separator:afcd2d4890fcc4ea1128e67dc2faf4c2c inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a95eda4e88e6444e33a37b8bb0fcd91 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a3a95eda4e88e6444e33a37b8bb0fcd91">GetVisibleBegin</a> () const </td></tr>
<tr class="memdesc:a3a95eda4e88e6444e33a37b8bb0fcd91 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the first visible unit based on the scroll position.  <a href="#a3a95eda4e88e6444e33a37b8bb0fcd91"></a><br/></td></tr>
<tr class="separator:a3a95eda4e88e6444e33a37b8bb0fcd91 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa6b3959f6dbf90329c1c98a64735334 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#aaa6b3959f6dbf90329c1c98a64735334">GetVisibleEnd</a> () const </td></tr>
<tr class="memdesc:aaa6b3959f6dbf90329c1c98a64735334 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the last visible unit based on the scroll position.  <a href="#aaa6b3959f6dbf90329c1c98a64735334"></a><br/></td></tr>
<tr class="separator:aaa6b3959f6dbf90329c1c98a64735334 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeb032c41e1436c630b9fadf3c198c91d inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#aeb032c41e1436c630b9fadf3c198c91d">IsVisible</a> (size_t unit) const </td></tr>
<tr class="memdesc:aeb032c41e1436c630b9fadf3c198c91d inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given scroll unit is currently visible (even if only partially visible) or <span class="literal">false</span> otherwise.  <a href="#aeb032c41e1436c630b9fadf3c198c91d"></a><br/></td></tr>
<tr class="separator:aeb032c41e1436c630b9fadf3c198c91d inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeae3e1b16c52dc5227b439cb6ffacf59 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#aeae3e1b16c52dc5227b439cb6ffacf59">RefreshAll</a> ()</td></tr>
<tr class="memdesc:aeae3e1b16c52dc5227b439cb6ffacf59 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Recalculate all parameters and repaint all units.  <a href="#aeae3e1b16c52dc5227b439cb6ffacf59"></a><br/></td></tr>
<tr class="separator:aeae3e1b16c52dc5227b439cb6ffacf59 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af79bfa4aac18be344d5dbcf7932cf1f7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#af79bfa4aac18be344d5dbcf7932cf1f7">SetTargetWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *target)</td></tr>
<tr class="memdesc:af79bfa4aac18be344d5dbcf7932cf1f7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Normally the window will scroll itself, but in some rare occasions you might want it to scroll (part of) another window (e.g.  <a href="#af79bfa4aac18be344d5dbcf7932cf1f7"></a><br/></td></tr>
<tr class="separator:af79bfa4aac18be344d5dbcf7932cf1f7 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b05466ede3d27fa28daf2f62ae2ecb9 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#a0b05466ede3d27fa28daf2f62ae2ecb9">UpdateScrollbar</a> ()</td></tr>
<tr class="memdesc:a0b05466ede3d27fa28daf2f62ae2ecb9 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Update the thumb size shown by the scrollbar.  <a href="#a0b05466ede3d27fa28daf2f62ae2ecb9"></a><br/></td></tr>
<tr class="separator:a0b05466ede3d27fa28daf2f62ae2ecb9 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab17ffa8dd9790d7ffc789ea080816518 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_var_scroll_helper_base.html#ab17ffa8dd9790d7ffc789ea080816518">VirtualHitTest</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> coord) const </td></tr>
<tr class="memdesc:ab17ffa8dd9790d7ffc789ea080816518 inherit pub_methods_classwx_var_scroll_helper_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the virtual scroll unit under the device unit given accounting for scroll position or <code>wxNOT_FOUND</code> if none (i.e.  <a href="#ab17ffa8dd9790d7ffc789ea080816518"></a><br/></td></tr>
<tr class="separator:ab17ffa8dd9790d7ffc789ea080816518 inherit pub_methods_classwx_var_scroll_helper_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:aa3f4d4f5f0c9f00dd3e671334345b83b"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#aa3f4d4f5f0c9f00dd3e671334345b83b">OnDrawItem</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc, const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect, size_t n) const =0</td></tr>
<tr class="memdesc:aa3f4d4f5f0c9f00dd3e671334345b83b"><td class="mdescLeft">&#160;</td><td class="mdescRight">The derived class must implement this function to actually draw the item with the given index on the provided DC.  <a href="#aa3f4d4f5f0c9f00dd3e671334345b83b"></a><br/></td></tr>
<tr class="separator:aa3f4d4f5f0c9f00dd3e671334345b83b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8c0f38e3e18eb34b3c793a2c7abd07d8"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a8c0f38e3e18eb34b3c793a2c7abd07d8">OnDrawBackground</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc, const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect, size_t n) const </td></tr>
<tr class="memdesc:a8c0f38e3e18eb34b3c793a2c7abd07d8"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is used to draw the item's background and, maybe, a border around it.  <a href="#a8c0f38e3e18eb34b3c793a2c7abd07d8"></a><br/></td></tr>
<tr class="separator:a8c0f38e3e18eb34b3c793a2c7abd07d8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1cf1eb252fe80386f77d30d183bd072e"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_v_list_box.html#a1cf1eb252fe80386f77d30d183bd072e">OnDrawSeparator</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc, <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect, size_t n) const </td></tr>
<tr class="memdesc:a1cf1eb252fe80386f77d30d183bd072e"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method may be used to draw separators between the lines.  <a href="#a1cf1eb252fe80386f77d30d183bd072e"></a><br/></td></tr>
<tr class="separator:a1cf1eb252fe80386f77d30d183bd072e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a25c651d397f60c62039dd89bd6f92152"><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_v_list_box.html#a25c651d397f60c62039dd89bd6f92152">OnMeasureItem</a> (size_t n) const =0</td></tr>
<tr class="memdesc:a25c651d397f60c62039dd89bd6f92152"><td class="mdescLeft">&#160;</td><td class="mdescRight">The derived class must implement this method to return the height of the specified item (in pixels).  <a href="#a25c651d397f60c62039dd89bd6f92152"></a><br/></td></tr>
<tr class="separator:a25c651d397f60c62039dd89bd6f92152"><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_window"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a170d85e4aa0cbacbfcdd0728120e1417 inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="structwx_visual_attributes.html">wxVisualAttributes</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a170d85e4aa0cbacbfcdd0728120e1417">GetClassDefaultAttributes</a> (<a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a> variant=<a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8aca0e936e160cfb2b98d8a7bc38bfaee234">wxWINDOW_VARIANT_NORMAL</a>)</td></tr>
<tr class="memdesc:a170d85e4aa0cbacbfcdd0728120e1417 inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the default font and colours which are used by the control.  <a href="#a170d85e4aa0cbacbfcdd0728120e1417"></a><br/></td></tr>
<tr class="separator:a170d85e4aa0cbacbfcdd0728120e1417 inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a777258379a3eef1b0530f12db6b77cab inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a777258379a3eef1b0530f12db6b77cab">FindFocus</a> ()</td></tr>
<tr class="memdesc:a777258379a3eef1b0530f12db6b77cab inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Finds the window or control which currently has the keyboard focus.  <a href="#a777258379a3eef1b0530f12db6b77cab"></a><br/></td></tr>
<tr class="separator:a777258379a3eef1b0530f12db6b77cab inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a101201b12ccd5fba49fa06ed19b5c6fb inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a101201b12ccd5fba49fa06ed19b5c6fb">FindWindowById</a> (long id, const <a class="el" href="classwx_window.html">wxWindow</a> *parent=0)</td></tr>
<tr class="memdesc:a101201b12ccd5fba49fa06ed19b5c6fb inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the first window with the given <em>id</em>.  <a href="#a101201b12ccd5fba49fa06ed19b5c6fb"></a><br/></td></tr>
<tr class="separator:a101201b12ccd5fba49fa06ed19b5c6fb inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8eb148fffae109e0fac86e88d569670 inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8eb148fffae109e0fac86e88d569670">FindWindowByLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_window.html">wxWindow</a> *parent=0)</td></tr>
<tr class="memdesc:ab8eb148fffae109e0fac86e88d569670 inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a window by its label.  <a href="#ab8eb148fffae109e0fac86e88d569670"></a><br/></td></tr>
<tr class="separator:ab8eb148fffae109e0fac86e88d569670 inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adbe4eea02f615313c12a2c00557a44c3 inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adbe4eea02f615313c12a2c00557a44c3">FindWindowByName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name, const <a class="el" href="classwx_window.html">wxWindow</a> *parent=0)</td></tr>
<tr class="memdesc:adbe4eea02f615313c12a2c00557a44c3 inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a window by its name (as given in a window constructor or <a class="el" href="classwx_window.html#a95b7ca8faa033f5ab35458887c07bf38">Create()</a> function call).  <a href="#adbe4eea02f615313c12a2c00557a44c3"></a><br/></td></tr>
<tr class="separator:adbe4eea02f615313c12a2c00557a44c3 inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a483d3f73925bd38c3964dad058672f0a inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a483d3f73925bd38c3964dad058672f0a">GetCapture</a> ()</td></tr>
<tr class="memdesc:a483d3f73925bd38c3964dad058672f0a inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the currently captured window.  <a href="#a483d3f73925bd38c3964dad058672f0a"></a><br/></td></tr>
<tr class="separator:a483d3f73925bd38c3964dad058672f0a inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8175da594e6045635a1d1cfe775cdddb inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8175da594e6045635a1d1cfe775cdddb">NewControlId</a> (int count=1)</td></tr>
<tr class="memdesc:a8175da594e6045635a1d1cfe775cdddb inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a new ID or range of IDs that are not currently in use.  <a href="#a8175da594e6045635a1d1cfe775cdddb"></a><br/></td></tr>
<tr class="separator:a8175da594e6045635a1d1cfe775cdddb inherit pub_static_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9bc342d1e38d221e37f0f6396950c8c inherit pub_static_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad9bc342d1e38d221e37f0f6396950c8c">UnreserveControlId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, int count=1)</td></tr>
<tr class="memdesc:ad9bc342d1e38d221e37f0f6396950c8c inherit pub_static_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unreserve an ID or range of IDs that was reserved by <a class="el" href="classwx_window.html#a8175da594e6045635a1d1cfe775cdddb" title="Create a new ID or range of IDs that are not currently in use.">NewControlId()</a>.  <a href="#ad9bc342d1e38d221e37f0f6396950c8c"></a><br/></td></tr>
<tr class="separator:ad9bc342d1e38d221e37f0f6396950c8c inherit pub_static_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="a16c1200f6b3024967ab8de52760deffa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxVListBox::wxVListBox </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Default constructor, you must call <a class="el" href="classwx_v_list_box.html#ab04914d5db45af7c3c032e19fa2b2615" title="Creates the control.">Create()</a> later. </p>

</div>
</div>
<a class="anchor" id="abf0f414c7638c76d5bf306349f39b280"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxVListBox::wxVListBox </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> = <code><a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a></code>, </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>0</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>wxVListBoxNameStr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Normal constructor which calls <a class="el" href="classwx_v_list_box.html#ab04914d5db45af7c3c032e19fa2b2615" title="Creates the control.">Create()</a> internally. </p>

</div>
</div>
<a class="anchor" id="a302339253a1e8e4f2d3cc6c33166d7ee"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual wxVListBox::~wxVListBox </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Destructor. </p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aaf92fc38649bd6efc5b1f72c508a5f6f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::Clear </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Deletes all items from the control. </p>

</div>
</div>
<a class="anchor" id="ab04914d5db45af7c3c032e19fa2b2615"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::Create </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> = <code><a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a></code>, </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>0</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>wxVListBoxNameStr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates the control. </p>
<p>To finish creating it you also should call <a class="el" href="classwx_v_list_box.html#a205615c79836dc7999d20e083a4a8ffb" title="Set the number of items to be shown in the control.">SetItemCount()</a> to let it know about the number of items it contains.</p>
<p>The only special style which may be used with <a class="el" href="classwx_v_list_box.html" title="wxVListBox is a wxListBox-like control with the following two main differences from a regular wxListB...">wxVListBox</a> is <code>wxLB_MULTIPLE</code> which indicates that the listbox should support multiple selection.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> on success or <span class="literal">false</span> if the control couldn't be created. </dd></dl>

</div>
</div>
<a class="anchor" id="a3d922a858e2af9eb94026a5360e2c443"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::DeselectAll </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Deselects all the items in the listbox. </p>
<p>This method is only valid for multi selection listboxes.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if any items were changed, i.e. if there had been any selected items before, or <span class="literal">false</span> if all the items were already deselected.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a46d5153f9c50bff13663d1768818255e" title="Selects all the items in the listbox.">SelectAll()</a>, <a class="el" href="classwx_v_list_box.html#a0b49818db23a5fbd987438ca5ea0f607" title="Selects or deselects the specified item which must be valid (i.e. not equal to wxNOT_FOUND).">Select()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a44a07d450268cb40d60cb5320309bef2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxVListBox::GetFirstSelected </td>
          <td>(</td>
          <td class="paramtype">unsigned long &amp;&#160;</td>
          <td class="paramname"><em>cookie</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the index of the first selected item in the listbox or <code>wxNOT_FOUND</code> if no items are currently selected. </p>
<p><em>cookie</em> is an opaque parameter which should be passed to the subsequent calls to <a class="el" href="classwx_v_list_box.html#abbc72b73be6e13aa2edd0ef08b30d235" title="Returns the index of the next selected item or wxNOT_FOUND if there are no more.">GetNextSelected()</a>. It is needed in order to allow parallel iterations over the selected items.</p>
<p>Here is a typical example of using these functions:</p>
<div class="fragment"><div class="line"><span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> cookie;</div>
<div class="line"><span class="keywordtype">int</span> item = hlbox-&gt;GetFirstSelected(cookie);</div>
<div class="line"><span class="keywordflow">while</span> ( item != <a class="code" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a> )</div>
<div class="line">{</div>
<div class="line">    <span class="comment">// ... process item ...</span></div>
<div class="line">    item = hlbox-&gt;GetNextSelected(cookie);</div>
<div class="line">}</div>
</div><!-- fragment --><p>This method is only valid for multi selection listboxes. </p>

</div>
</div>
<a class="anchor" id="adb8472a48e56b43070c526c13c084e28"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxVListBox::GetItemCount </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the number of items in the control. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a205615c79836dc7999d20e083a4a8ffb" title="Set the number of items to be shown in the control.">SetItemCount()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad80e30710423e8c673416fcb4d3989fa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_rect.html">wxRect</a> wxVListBox::GetItemRect </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>item</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the rectangle occupied by this item in physical coordinates. </p>
<p>If the item is not currently visible, returns an empty rectangle.</p>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>

</div>
</div>
<a class="anchor" id="a297b81765b7f60c7125595fd01869294"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_point.html">wxPoint</a> wxVListBox::GetMargins </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the margins used by the control. </p>
<p>The <code>x</code> field of the returned point is the horizontal margin and the <code>y</code> field is the vertical one.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#aeabe37f2b1a1887f995c431eb5522921" title="Set the margins: horizontal margin is the distance between the window border and the item contents wh...">SetMargins()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="abbc72b73be6e13aa2edd0ef08b30d235"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxVListBox::GetNextSelected </td>
          <td>(</td>
          <td class="paramtype">unsigned long &amp;&#160;</td>
          <td class="paramname"><em>cookie</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the index of the next selected item or <code>wxNOT_FOUND</code> if there are no more. </p>
<p>This method is only valid for multi selection listboxes.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a44a07d450268cb40d60cb5320309bef2" title="Returns the index of the first selected item in the listbox or wxNOT_FOUND if no items are currently ...">GetFirstSelected()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a729b869aec06e50cc60c0abe72bcfac2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxVListBox::GetSelectedCount </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the number of the items currently selected. </p>
<p>It is valid for both single and multi selection controls. In the former case it may only return 0 or 1 however.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#ae0e866eff39e92d81e090aa316769333" title="Returns true if this item is selected, false otherwise.">IsSelected()</a>, <a class="el" href="classwx_v_list_box.html#a44a07d450268cb40d60cb5320309bef2" title="Returns the index of the first selected item in the listbox or wxNOT_FOUND if no items are currently ...">GetFirstSelected()</a>, <a class="el" href="classwx_v_list_box.html#abbc72b73be6e13aa2edd0ef08b30d235" title="Returns the index of the next selected item or wxNOT_FOUND if there are no more.">GetNextSelected()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad133e56ceb5baae37d4f62c0a5fa2c2b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxVListBox::GetSelection </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the currently selected item or <code>wxNOT_FOUND</code> if there is no selection. </p>

</div>
</div>
<a class="anchor" id="a573faf189bae0c82d0f6f8bbd60d009f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classwx_colour.html">wxColour</a>&amp; wxVListBox::GetSelectionBackground </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the background colour used for the selected cells. </p>
<p>By default the standard system colour is used.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_system_settings.html#ab252414b60f16a233bc17df2a19bd804" title="Returns a system colour.">wxSystemSettings::GetColour()</a>, <a class="el" href="classwx_v_list_box.html#aad25b40caedb9a864ab347d50e8c5e8b" title="Sets the colour to be used for the selected cells background.">SetSelectionBackground()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a4b30ca1c9e37ee9f6670c99e65b6dbb5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::HasMultipleSelection </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the listbox was created with <code>wxLB_MULTIPLE</code> style and so supports multiple selection or <span class="literal">false</span> if it is a single selection listbox. </p>

</div>
</div>
<a class="anchor" id="adbef7038b847654aba0823d81496b60b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::IsCurrent </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>item</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if this item is the current one, <span class="literal">false</span> otherwise. </p>
<p>The current item is always the same as selected one for the single selection listbox and in this case this method is equivalent to <a class="el" href="classwx_v_list_box.html#ae0e866eff39e92d81e090aa316769333" title="Returns true if this item is selected, false otherwise.">IsSelected()</a> but they are different for multi selection listboxes where many items may be selected but only one (at most) is current. </p>

</div>
</div>
<a class="anchor" id="ae0e866eff39e92d81e090aa316769333"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::IsSelected </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>item</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if this item is selected, <span class="literal">false</span> otherwise. </p>

</div>
</div>
<a class="anchor" id="a8c0f38e3e18eb34b3c793a2c7abd07d8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxVListBox::OnDrawBackground </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_d_c.html">wxDC</a> &amp;&#160;</td>
          <td class="paramname"><em>dc</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_rect.html">wxRect</a> &amp;&#160;</td>
          <td class="paramname"><em>rect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>n</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">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This method is used to draw the item's background and, maybe, a border around it. </p>
<p>The base class version implements a reasonable default behaviour which consists in drawing the selected item with the standard background colour and drawing a border around the item if it is either selected or current.</p>
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000052">Todo:</a></b></dt><dd>Change this function signature to non-const. </dd></dl>

</div>
</div>
<a class="anchor" id="aa3f4d4f5f0c9f00dd3e671334345b83b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxVListBox::OnDrawItem </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_d_c.html">wxDC</a> &amp;&#160;</td>
          <td class="paramname"><em>dc</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_rect.html">wxRect</a> &amp;&#160;</td>
          <td class="paramname"><em>rect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>n</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">protected</span><span class="mlabel">pure virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>The derived class must implement this function to actually draw the item with the given index on the provided DC. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dc</td><td>The device context to use for drawing. </td></tr>
    <tr><td class="paramname">rect</td><td>The bounding rectangle for the item being drawn (DC clipping region is set to this rectangle before calling this function). </td></tr>
    <tr><td class="paramname">n</td><td>The index of the item to be drawn.</td></tr>
  </table>
  </dd>
</dl>
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000051">Todo:</a></b></dt><dd>Change this function signature to non-const. </dd></dl>

</div>
</div>
<a class="anchor" id="a1cf1eb252fe80386f77d30d183bd072e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxVListBox::OnDrawSeparator </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_d_c.html">wxDC</a> &amp;&#160;</td>
          <td class="paramname"><em>dc</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_rect.html">wxRect</a> &amp;&#160;</td>
          <td class="paramname"><em>rect</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>n</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">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This method may be used to draw separators between the lines. </p>
<p>The rectangle passed to it may be modified, typically to deflate it a bit before passing to <a class="el" href="classwx_v_list_box.html#aa3f4d4f5f0c9f00dd3e671334345b83b" title="The derived class must implement this function to actually draw the item with the given index on the ...">OnDrawItem()</a>.</p>
<p>The base class version of this method doesn't do anything.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dc</td><td>The device context to use for drawing. </td></tr>
    <tr><td class="paramname">rect</td><td>The bounding rectangle for the item. </td></tr>
    <tr><td class="paramname">n</td><td>The index of the item.</td></tr>
  </table>
  </dd>
</dl>
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000053">Todo:</a></b></dt><dd>Change this function signature to non-const. </dd></dl>

</div>
</div>
<a class="anchor" id="a25c651d397f60c62039dd89bd6f92152"></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="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> wxVListBox::OnMeasureItem </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>n</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">pure virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>The derived class must implement this method to return the height of the specified item (in pixels). </p>

</div>
</div>
<a class="anchor" id="a0b49818db23a5fbd987438ca5ea0f607"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::Select </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>select</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects or deselects the specified item which must be valid (i.e. not equal to <code>wxNOT_FOUND</code>). </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the items selection status has changed or <span class="literal">false</span> otherwise.</dd></dl>
<p>This function is only valid for the multiple selection listboxes, use <a class="el" href="classwx_v_list_box.html#aee1df263dbb96e49dbc44684fb7d9dad" title="Set the selection to the specified item, if it is -1 the selection is unset.">SetSelection()</a> for the single selection ones. </p>

</div>
</div>
<a class="anchor" id="a46d5153f9c50bff13663d1768818255e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::SelectAll </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects all the items in the listbox. </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if any items were changed, i.e. if there had been any unselected items before, or <span class="literal">false</span> if all the items were already selected.</dd></dl>
<p>This method is only valid for multi selection listboxes.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a3d922a858e2af9eb94026a5360e2c443" title="Deselects all the items in the listbox.">DeselectAll()</a>, <a class="el" href="classwx_v_list_box.html#a0b49818db23a5fbd987438ca5ea0f607" title="Selects or deselects the specified item which must be valid (i.e. not equal to wxNOT_FOUND).">Select()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab148ec397eacecb1a71e829c2b5aa13a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxVListBox::SelectRange </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>from</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>to</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects all items in the specified range which may be given in any order. </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the items selection status has changed or <span class="literal">false</span> otherwise.</dd></dl>
<p>This method is only valid for multi selection listboxes.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a46d5153f9c50bff13663d1768818255e" title="Selects all the items in the listbox.">SelectAll()</a>, <a class="el" href="classwx_v_list_box.html#a0b49818db23a5fbd987438ca5ea0f607" title="Selects or deselects the specified item which must be valid (i.e. not equal to wxNOT_FOUND).">Select()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a205615c79836dc7999d20e083a4a8ffb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxVListBox::SetItemCount </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>count</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>Set the number of items to be shown in the control. </p>
<p>This is just a synonym for <a class="el" href="classwx_var_v_scroll_helper.html#adcf2e7fa5ea560587a7a1055cf0659ad" title="Set the number of rows the window contains.">wxVScrolledWindow::SetRowCount()</a>. </p>

</div>
</div>
<a class="anchor" id="aeabe37f2b1a1887f995c431eb5522921"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::SetMargins </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pt</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the margins: horizontal margin is the distance between the window border and the item contents while vertical margin is half of the distance between items. </p>
<p>By default both margins are 0. </p>

</div>
</div>
<a class="anchor" id="a20ef3b7013828036d0c3901500d23cf3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::SetMargins </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></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the margins: horizontal margin is the distance between the window border and the item contents while vertical margin is half of the distance between items. </p>
<p>By default both margins are 0. </p>

</div>
</div>
<a class="anchor" id="aee1df263dbb96e49dbc44684fb7d9dad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::SetSelection </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>selection</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the selection to the specified item, if it is -1 the selection is unset. </p>
<p>The selected item will be automatically scrolled into view if it isn't currently visible.</p>
<p>This method may be used both with single and multiple selection listboxes. </p>

</div>
</div>
<a class="anchor" id="aad25b40caedb9a864ab347d50e8c5e8b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::SetSelectionBackground </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_colour.html">wxColour</a> &amp;&#160;</td>
          <td class="paramname"><em>col</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the colour to be used for the selected cells background. </p>
<p>The background of the standard cells may be changed by simply calling <a class="el" href="classwx_window.html#a37219df52734626e23401fd83b25d8a0" title="Sets the background colour of the window.">wxWindow::SetBackgroundColour()</a>.</p>
<dl class="section note"><dt>Note</dt><dd>Using a non-default background colour may result in control having an appearance different from the similar native controls and should be avoided in general.</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a573faf189bae0c82d0f6f8bbd60d009f" title="Returns the background colour used for the selected cells.">GetSelectionBackground()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ae530f18573bd96ea497d64b1b1b18905"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVListBox::Toggle </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>item</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Toggles the state of the specified <em>item</em>, i.e. selects it if it was unselected and deselects it if it was selected. </p>
<p>This method is only valid for multi selection listboxes.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_v_list_box.html#a0b49818db23a5fbd987438ca5ea0f607" title="Selects or deselects the specified item which must be valid (i.e. not equal to wxNOT_FOUND).">Select()</a> </dd></dl>

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

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