File: classwx_treebook.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 (1766 lines) | stat: -rw-r--r-- 349,464 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
<!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: wxTreebook Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
 <tbody>
 <tr>
  <td id="projectlogo">
    <a href="http://www.wxwidgets.org/" target="_new">
      <img alt="wxWidgets" src="logo.png"/>
    </a>
  </td>
  <td style="padding-left: 0.5em; text-align: right;">
   <span id="projectnumber">Version: 3.0.2</span>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Categories</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="classwx_treebook-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxTreebook Class Reference<div class="ingroups"><a class="el" href="group__group__class__bookctrl.html">Book Controls</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/treebook.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 wxTreebook:</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_treebook__inherit__graph.png" border="0" usemap="#wx_treebook_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_treebook_inherit__map" id="wx_treebook_inherit__map">
<area shape="rect" id="node2" href="classwx_book_ctrl_base.html" title="A book control is a convenient way of displaying multiple pages of information, displayed one page at..." alt="" coords="96,315,211,343"/><area shape="rect" id="node4" href="classwx_control.html" title="This is the base class for a control or &quot;widget&quot;." alt="" coords="57,238,135,266"/><area shape="rect" id="node6" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen." alt="" coords="55,161,137,189"/><area shape="rect" id="node8" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system." alt="" coords="47,83,145,111"/><area shape="rect" id="node10" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="5,6,80,34"/><area shape="rect" id="node12" href="classwx_trackable.html" title="Add&#45;on base class for a trackable object." alt="" coords="104,6,197,34"/><area shape="rect" id="node14" href="classwx_with_images.html" title="A mixin class to be used with other classes that use a wxImageList." alt="" coords="159,238,263,266"/></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>This class is an extension of the <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a> class that allows a tree structured set of pages to be shown in a control. </p>
<p>A classic example is a netscape preferences dialog that shows a tree of preference sections on the left and select section page on the right.</p>
<p>To use the class simply create it and populate with pages using <a class="el" href="classwx_treebook.html#a9491fe745b68b9a51063f8f3aac59376" title="Inserts a new page just before the page indicated by pagePos.">InsertPage()</a>, <a class="el" href="classwx_treebook.html#ae3c46fd64891e13d511b4840b275143c" title="Inserts a sub page under the specified page.">InsertSubPage()</a>, <a class="el" href="classwx_treebook.html#a005654249564b0f3e3c1127bc33cfb8b" title="Adds a new page.">AddPage()</a>, <a class="el" href="classwx_treebook.html#a409e957bacff40d46c3ba9a6606fc0d2" title="Adds a new child-page to the last top-level page.">AddSubPage()</a>.</p>
<p>If your tree is no more than 1 level in depth then you could simply use <a class="el" href="classwx_treebook.html#a005654249564b0f3e3c1127bc33cfb8b" title="Adds a new page.">AddPage()</a> and <a class="el" href="classwx_treebook.html#a409e957bacff40d46c3ba9a6606fc0d2" title="Adds a new child-page to the last top-level page.">AddSubPage()</a> to sequentially populate your tree by adding at every step a page or a subpage to the end of the tree.</p>
<h2>Events emitted by this class</h2>
<p>The following event handler macros redirect the events to member function handlers '<b>func</b>' with prototypes like: </p>
<div class="eventHandler"><span>void&#160;handlerFuncName(<a class="el" href="classwx_book_ctrl_event.html" title="This class represents the events generated by book controls (wxNotebook, wxListbook, wxChoicebook, wxTreebook, wxAuiNotebook).">wxBookCtrlEvent</a>&amp;&#160;event)</span></div><p>Event macros for events emitted by this class:</p>
<div> </div><ul>
<li><span class="event">EVT_TREEBOOK_PAGE_CHANGED(id,  func)</span>:<div class="eventDesc"> The page selection was changed. Processes a <code>wxEVT_TREEBOOK_PAGE_CHANGED</code> event. </div></li>
<li><span class="event">EVT_TREEBOOK_PAGE_CHANGING(id,  func)</span>:<div class="eventDesc"> The page selection is about to be changed. Processes a <code>wxEVT_TREEBOOK_PAGE_CHANGING</code> event. This event can be <a class="el" href="classwx_notify_event.html#a49e4502414a11e273f51a34a21d2acd3">vetoed</a>. </div></li>
<li><span class="event">EVT_TREEBOOK_NODE_COLLAPSED(id,  func)</span>:<div class="eventDesc"> The page node is going to be collapsed. Processes a <code>wxEVT_TREEBOOK_NODE_COLLAPSED</code> event. </div></li>
<li><span class="event">EVT_TREEBOOK_NODE_EXPANDED(id,  func)</span>:<div class="eventDesc"> The page node is going to be expanded. Processes a <code>wxEVT_TREEBOOK_NODE_EXPANDED</code> event. </div></li>
</ul>
<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__bookctrl.html">Book Controls</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="interface_2wx_2bookctrl_8h.html#ab367c06ea9df73f0d3bf3c464afdb7d6" title="wxBookCtrl is defined to one of the &#39;real&#39; book controls.">wxBookCtrl</a>, <a class="el" href="classwx_book_ctrl_event.html" title="This class represents the events generated by book controls (wxNotebook, wxListbook, wxChoicebook, wxTreebook, wxAuiNotebook).">wxBookCtrlEvent</a>, <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a>, <a class="el" href="classwx_tree_ctrl.html" title="A tree control presents information as a hierarchy, with items that may be expanded to show further i...">wxTreeCtrl</a>, <a class="el" href="classwx_image_list.html" title="A wxImageList contains a list of images, which are stored in an unspecified form.">wxImageList</a>, <a class="el" href="overview_bookctrl.html">wxBookCtrl Overview</a>, <a class="el" href="page_samples.html#page_samples_notebook">Notebook Sample</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:acf521d7cb242cd792756ff6959fec797"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#acf521d7cb242cd792756ff6959fec797">wxTreebook</a> ()</td></tr>
<tr class="memdesc:acf521d7cb242cd792756ff6959fec797"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#acf521d7cb242cd792756ff6959fec797"></a><br/></td></tr>
<tr class="separator:acf521d7cb242cd792756ff6959fec797"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9206f1a4a98bc1defb9244284bb01ab8"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#a9206f1a4a98bc1defb9244284bb01ab8">wxTreebook</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=<a class="el" href="interface_2wx_2bookctrl_8h.html#a7e388df7b1f655029adefef1faa6544d">wxBK_DEFAULT</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a9206f1a4a98bc1defb9244284bb01ab8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates an empty <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a>.  <a href="#a9206f1a4a98bc1defb9244284bb01ab8"></a><br/></td></tr>
<tr class="separator:a9206f1a4a98bc1defb9244284bb01ab8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5aff81342da1459d1c1b26f8edf110d"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#ac5aff81342da1459d1c1b26f8edf110d">~wxTreebook</a> ()</td></tr>
<tr class="memdesc:ac5aff81342da1459d1c1b26f8edf110d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys the <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a> object.  <a href="#ac5aff81342da1459d1c1b26f8edf110d"></a><br/></td></tr>
<tr class="separator:ac5aff81342da1459d1c1b26f8edf110d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a005654249564b0f3e3c1127bc33cfb8b"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#a005654249564b0f3e3c1127bc33cfb8b">AddPage</a> (<a class="el" href="classwx_window.html">wxWindow</a> *page, const <a class="el" href="classwx_string.html">wxString</a> &amp;text, bool bSelect=false, int imageId=<a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a>)</td></tr>
<tr class="memdesc:a005654249564b0f3e3c1127bc33cfb8b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a new page.  <a href="#a005654249564b0f3e3c1127bc33cfb8b"></a><br/></td></tr>
<tr class="separator:a005654249564b0f3e3c1127bc33cfb8b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a409e957bacff40d46c3ba9a6606fc0d2"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#a409e957bacff40d46c3ba9a6606fc0d2">AddSubPage</a> (<a class="el" href="classwx_window.html">wxWindow</a> *page, const <a class="el" href="classwx_string.html">wxString</a> &amp;text, bool bSelect=false, int imageId=<a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a>)</td></tr>
<tr class="memdesc:a409e957bacff40d46c3ba9a6606fc0d2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a new child-page to the last top-level page.  <a href="#a409e957bacff40d46c3ba9a6606fc0d2"></a><br/></td></tr>
<tr class="separator:a409e957bacff40d46c3ba9a6606fc0d2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae71d6c62bb452d6a808cf289b98ef30b"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#ae71d6c62bb452d6a808cf289b98ef30b">CollapseNode</a> (size_t pageId)</td></tr>
<tr class="memdesc:ae71d6c62bb452d6a808cf289b98ef30b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shortcut for <a class="el" href="classwx_treebook.html#add0b76a06599dc37b6275dc4b35ead79">ExpandNode</a>( <em>pageId</em>, <span class="literal">false</span> ).  <a href="#ae71d6c62bb452d6a808cf289b98ef30b"></a><br/></td></tr>
<tr class="separator:ae71d6c62bb452d6a808cf289b98ef30b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6ff8c68c20d71c2c7d4b96bbe7714ce"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#ac6ff8c68c20d71c2c7d4b96bbe7714ce">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=<a class="el" href="interface_2wx_2bookctrl_8h.html#a7e388df7b1f655029adefef1faa6544d">wxBK_DEFAULT</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:ac6ff8c68c20d71c2c7d4b96bbe7714ce"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a treebook control.  <a href="#ac6ff8c68c20d71c2c7d4b96bbe7714ce"></a><br/></td></tr>
<tr class="separator:ac6ff8c68c20d71c2c7d4b96bbe7714ce"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7b46ac8ed525f1f0627671d3fb0bc5b6"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#a7b46ac8ed525f1f0627671d3fb0bc5b6">DeletePage</a> (size_t pagePos)</td></tr>
<tr class="memdesc:a7b46ac8ed525f1f0627671d3fb0bc5b6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes the page at the specified position and all its children.  <a href="#a7b46ac8ed525f1f0627671d3fb0bc5b6"></a><br/></td></tr>
<tr class="separator:a7b46ac8ed525f1f0627671d3fb0bc5b6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:add0b76a06599dc37b6275dc4b35ead79"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#add0b76a06599dc37b6275dc4b35ead79">ExpandNode</a> (size_t pageId, bool expand=true)</td></tr>
<tr class="memdesc:add0b76a06599dc37b6275dc4b35ead79"><td class="mdescLeft">&#160;</td><td class="mdescRight">Expands (collapses) the <em>pageId</em> node.  <a href="#add0b76a06599dc37b6275dc4b35ead79"></a><br/></td></tr>
<tr class="separator:add0b76a06599dc37b6275dc4b35ead79"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa20a6511cd3f7ff9aab45a5d50bc6ce"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#aaa20a6511cd3f7ff9aab45a5d50bc6ce">GetPageParent</a> (size_t page) const </td></tr>
<tr class="memdesc:aaa20a6511cd3f7ff9aab45a5d50bc6ce"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the parent page of the given one or <code>wxNOT_FOUND</code> if this is a top-level page.  <a href="#aaa20a6511cd3f7ff9aab45a5d50bc6ce"></a><br/></td></tr>
<tr class="separator:aaa20a6511cd3f7ff9aab45a5d50bc6ce"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb6e45bb33306cb80b9a9a611a8478a1"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#afb6e45bb33306cb80b9a9a611a8478a1">GetSelection</a> () const </td></tr>
<tr class="memdesc:afb6e45bb33306cb80b9a9a611a8478a1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the currently selected page, or <code>wxNOT_FOUND</code> if none was selected.  <a href="#afb6e45bb33306cb80b9a9a611a8478a1"></a><br/></td></tr>
<tr class="separator:afb6e45bb33306cb80b9a9a611a8478a1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9491fe745b68b9a51063f8f3aac59376"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#a9491fe745b68b9a51063f8f3aac59376">InsertPage</a> (size_t pagePos, <a class="el" href="classwx_window.html">wxWindow</a> *page, const <a class="el" href="classwx_string.html">wxString</a> &amp;text, bool bSelect=false, int imageId=<a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a>)</td></tr>
<tr class="memdesc:a9491fe745b68b9a51063f8f3aac59376"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts a new page just before the page indicated by <em>pagePos</em>.  <a href="#a9491fe745b68b9a51063f8f3aac59376"></a><br/></td></tr>
<tr class="separator:a9491fe745b68b9a51063f8f3aac59376"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae3c46fd64891e13d511b4840b275143c"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#ae3c46fd64891e13d511b4840b275143c">InsertSubPage</a> (size_t pagePos, <a class="el" href="classwx_window.html">wxWindow</a> *page, const <a class="el" href="classwx_string.html">wxString</a> &amp;text, bool bSelect=false, int imageId=<a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a>)</td></tr>
<tr class="memdesc:ae3c46fd64891e13d511b4840b275143c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts a sub page under the specified page.  <a href="#ae3c46fd64891e13d511b4840b275143c"></a><br/></td></tr>
<tr class="separator:ae3c46fd64891e13d511b4840b275143c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc4850f3cede0207a67187edc33cc91d"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_treebook.html#afc4850f3cede0207a67187edc33cc91d">IsNodeExpanded</a> (size_t pageId) const </td></tr>
<tr class="memdesc:afc4850f3cede0207a67187edc33cc91d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the page represented by <em>pageId</em> is expanded.  <a href="#afc4850f3cede0207a67187edc33cc91d"></a><br/></td></tr>
<tr class="separator:afc4850f3cede0207a67187edc33cc91d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_book_ctrl_base"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_book_ctrl_base')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_book_ctrl_base.html">wxBookCtrlBase</a></td></tr>
<tr class="memitem:a8ef001ed2e647d32c05747ca7b940934 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a8ef001ed2e647d32c05747ca7b940934">wxBookCtrlBase</a> ()</td></tr>
<tr class="memdesc:a8ef001ed2e647d32c05747ca7b940934 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default ctor.  <a href="#a8ef001ed2e647d32c05747ca7b940934"></a><br/></td></tr>
<tr class="separator:a8ef001ed2e647d32c05747ca7b940934 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab085e6968b72d0eb7990a1b863afa2b0 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#ab085e6968b72d0eb7990a1b863afa2b0">wxBookCtrlBase</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> winid, 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=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:ab085e6968b72d0eb7990a1b863afa2b0 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs the book control with the given parameters.  <a href="#ab085e6968b72d0eb7990a1b863afa2b0"></a><br/></td></tr>
<tr class="separator:ab085e6968b72d0eb7990a1b863afa2b0 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad61f7fc3c1fbccbcb119e1dea3fdc4a6 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#ad61f7fc3c1fbccbcb119e1dea3fdc4a6">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> winid, 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=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:ad61f7fc3c1fbccbcb119e1dea3fdc4a6 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs the book control with the given parameters.  <a href="#ad61f7fc3c1fbccbcb119e1dea3fdc4a6"></a><br/></td></tr>
<tr class="separator:ad61f7fc3c1fbccbcb119e1dea3fdc4a6 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ab6ba69644452e74bf914b3c30a9e58 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a7ab6ba69644452e74bf914b3c30a9e58">SetPageSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a7ab6ba69644452e74bf914b3c30a9e58 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the width and height of the pages.  <a href="#a7ab6ba69644452e74bf914b3c30a9e58"></a><br/></td></tr>
<tr class="separator:a7ab6ba69644452e74bf914b3c30a9e58 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc45bcabbe2b54e258147af6b4b4d9f8 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#adc45bcabbe2b54e258147af6b4b4d9f8">HitTest</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt, long *flags=NULL) const </td></tr>
<tr class="memdesc:adc45bcabbe2b54e258147af6b4b4d9f8 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the tab at the specified position or <code>wxNOT_FOUND</code> if none.  <a href="#adc45bcabbe2b54e258147af6b4b4d9f8"></a><br/></td></tr>
<tr class="separator:adc45bcabbe2b54e258147af6b4b4d9f8 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87f9cf7b1a5abc5cca716511277b39f8 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a87f9cf7b1a5abc5cca716511277b39f8">GetPageImage</a> (size_t nPage) const =0</td></tr>
<tr class="memdesc:a87f9cf7b1a5abc5cca716511277b39f8 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the image index for the given page.  <a href="#a87f9cf7b1a5abc5cca716511277b39f8"></a><br/></td></tr>
<tr class="separator:a87f9cf7b1a5abc5cca716511277b39f8 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a990cc596ea313b3c057314398085d0b3 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a990cc596ea313b3c057314398085d0b3">SetPageImage</a> (size_t page, int image)=0</td></tr>
<tr class="memdesc:a990cc596ea313b3c057314398085d0b3 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the image index for the given page.  <a href="#a990cc596ea313b3c057314398085d0b3"></a><br/></td></tr>
<tr class="separator:a990cc596ea313b3c057314398085d0b3 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a795e4f831ade0580a391ae876f69fb28 inherit pub_methods_classwx_book_ctrl_base"><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_book_ctrl_base.html#a795e4f831ade0580a391ae876f69fb28">GetPageText</a> (size_t nPage) const =0</td></tr>
<tr class="memdesc:a795e4f831ade0580a391ae876f69fb28 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the string for the given page.  <a href="#a795e4f831ade0580a391ae876f69fb28"></a><br/></td></tr>
<tr class="separator:a795e4f831ade0580a391ae876f69fb28 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aacc118888433ae50194cde356dbf2d50 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#aacc118888433ae50194cde356dbf2d50">SetPageText</a> (size_t page, const <a class="el" href="classwx_string.html">wxString</a> &amp;text)=0</td></tr>
<tr class="memdesc:aacc118888433ae50194cde356dbf2d50 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the text for the given page.  <a href="#aacc118888433ae50194cde356dbf2d50"></a><br/></td></tr>
<tr class="separator:aacc118888433ae50194cde356dbf2d50 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a39c3e19db2929b38632d1126c41db1 inherit pub_methods_classwx_book_ctrl_base"><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_book_ctrl_base.html#a3a39c3e19db2929b38632d1126c41db1">GetCurrentPage</a> () const </td></tr>
<tr class="memdesc:a3a39c3e19db2929b38632d1126c41db1 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the currently selected page or <span class="literal">NULL</span>.  <a href="#a3a39c3e19db2929b38632d1126c41db1"></a><br/></td></tr>
<tr class="separator:a3a39c3e19db2929b38632d1126c41db1 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a522ca472343a07a262de92348e3f2d2c inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a522ca472343a07a262de92348e3f2d2c">SetSelection</a> (size_t page)=0</td></tr>
<tr class="memdesc:a522ca472343a07a262de92348e3f2d2c inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the selection to the given page, returning the previous selection.  <a href="#a522ca472343a07a262de92348e3f2d2c"></a><br/></td></tr>
<tr class="separator:a522ca472343a07a262de92348e3f2d2c inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b5b18fbf0281e99d227e574b5ffc1ac inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a8b5b18fbf0281e99d227e574b5ffc1ac">AdvanceSelection</a> (bool forward=true)</td></tr>
<tr class="memdesc:a8b5b18fbf0281e99d227e574b5ffc1ac inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Cycles through the tabs.  <a href="#a8b5b18fbf0281e99d227e574b5ffc1ac"></a><br/></td></tr>
<tr class="separator:a8b5b18fbf0281e99d227e574b5ffc1ac inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab938512b16be50849c1c4888ffa6aa29 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#ab938512b16be50849c1c4888ffa6aa29">ChangeSelection</a> (size_t page)=0</td></tr>
<tr class="memdesc:ab938512b16be50849c1c4888ffa6aa29 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the selection to the given page, returning the previous selection.  <a href="#ab938512b16be50849c1c4888ffa6aa29"></a><br/></td></tr>
<tr class="separator:ab938512b16be50849c1c4888ffa6aa29 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a098c7ea66b5328bee5ce06d9c973fbc1 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a098c7ea66b5328bee5ce06d9c973fbc1">FindPage</a> (const <a class="el" href="classwx_window.html">wxWindow</a> *page) const </td></tr>
<tr class="memdesc:a098c7ea66b5328bee5ce06d9c973fbc1 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the index of the specified tab window or <code>wxNOT_FOUND</code> if not found.  <a href="#a098c7ea66b5328bee5ce06d9c973fbc1"></a><br/></td></tr>
<tr class="separator:a098c7ea66b5328bee5ce06d9c973fbc1 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a91c1d122585b48ae1b5eab04104210da inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a91c1d122585b48ae1b5eab04104210da">DeleteAllPages</a> ()</td></tr>
<tr class="memdesc:a91c1d122585b48ae1b5eab04104210da inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes all pages.  <a href="#a91c1d122585b48ae1b5eab04104210da"></a><br/></td></tr>
<tr class="separator:a91c1d122585b48ae1b5eab04104210da inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3297ad25597b3e993aa2b7a310c5159c inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#a3297ad25597b3e993aa2b7a310c5159c">RemovePage</a> (size_t page)</td></tr>
<tr class="memdesc:a3297ad25597b3e993aa2b7a310c5159c inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes the specified page, without deleting the associated window.  <a href="#a3297ad25597b3e993aa2b7a310c5159c"></a><br/></td></tr>
<tr class="separator:a3297ad25597b3e993aa2b7a310c5159c inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af3eb384bd80171225f4604da8bf5cc91 inherit pub_methods_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">virtual size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_book_ctrl_base.html#af3eb384bd80171225f4604da8bf5cc91">GetPageCount</a> () const </td></tr>
<tr class="memdesc:af3eb384bd80171225f4604da8bf5cc91 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of pages in the control.  <a href="#af3eb384bd80171225f4604da8bf5cc91"></a><br/></td></tr>
<tr class="separator:af3eb384bd80171225f4604da8bf5cc91 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa31a56c79370cc16cc663ad6133d0412 inherit pub_methods_classwx_book_ctrl_base"><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_book_ctrl_base.html#aa31a56c79370cc16cc663ad6133d0412">GetPage</a> (size_t page) const </td></tr>
<tr class="memdesc:aa31a56c79370cc16cc663ad6133d0412 inherit pub_methods_classwx_book_ctrl_base"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window at the given page position.  <a href="#aa31a56c79370cc16cc663ad6133d0412"></a><br/></td></tr>
<tr class="separator:aa31a56c79370cc16cc663ad6133d0412 inherit pub_methods_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_control"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_control')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_control.html">wxControl</a></td></tr>
<tr class="memitem:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#adb8f3edf807efa9159de826bf92d6a44">wxControl</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator=<a class="el" href="validate_8h.html#af1e90d8aa1824fd2ce4024ef7e40703c">wxDefaultValidator</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxControlNameStr)</td></tr>
<tr class="memdesc:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a control.  <a href="#adb8f3edf807efa9159de826bf92d6a44"></a><br/></td></tr>
<tr class="separator:adb8f3edf807efa9159de826bf92d6a44 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a08428de2ba5cc988a86fe17071d49522">wxControl</a> ()</td></tr>
<tr class="memdesc:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor to allow 2-phase creation.  <a href="#a08428de2ba5cc988a86fe17071d49522"></a><br/></td></tr>
<tr class="separator:a08428de2ba5cc988a86fe17071d49522 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe23789c94c86907463a0e8434be822a inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#abe23789c94c86907463a0e8434be822a">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator=<a class="el" href="validate_8h.html#af1e90d8aa1824fd2ce4024ef7e40703c">wxDefaultValidator</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxControlNameStr)</td></tr>
<tr class="separator:abe23789c94c86907463a0e8434be822a inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a8cd7ac81debaf506d6d146528c3d9a82">Command</a> (<a class="el" href="classwx_command_event.html">wxCommandEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Simulates the effect of the user issuing a command to the item.  <a href="#a8cd7ac81debaf506d6d146528c3d9a82"></a><br/></td></tr>
<tr class="separator:a8cd7ac81debaf506d6d146528c3d9a82 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a0c15321992cfb77595db57cd4e4aec37">GetLabel</a> () const </td></tr>
<tr class="memdesc:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the control's label, as it was passed to <a class="el" href="classwx_control.html#a2c2ae20554e7db5e765f163022ce09c0" title="Sets the control&#39;s label.">SetLabel()</a>.  <a href="#a0c15321992cfb77595db57cd4e4aec37"></a><br/></td></tr>
<tr class="separator:a0c15321992cfb77595db57cd4e4aec37 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ad95895ecdd123dff35866db1d2430a76">GetLabelText</a> () const </td></tr>
<tr class="memdesc:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the control's label without mnemonics.  <a href="#ad95895ecdd123dff35866db1d2430a76"></a><br/></td></tr>
<tr class="separator:ad95895ecdd123dff35866db1d2430a76 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a7f163dbbfa581a52192a94506784efc9">GetSizeFromTextSize</a> (int xlen, int ylen=-1) const </td></tr>
<tr class="memdesc:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determine the size needed by the control to leave the given area for its text.  <a href="#a7f163dbbfa581a52192a94506784efc9"></a><br/></td></tr>
<tr class="separator:a7f163dbbfa581a52192a94506784efc9 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ad4490fe34a7f7b1f763a1de61c439681">GetSizeFromTextSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;tsize) const </td></tr>
<tr class="memdesc:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ad4490fe34a7f7b1f763a1de61c439681"></a><br/></td></tr>
<tr class="separator:ad4490fe34a7f7b1f763a1de61c439681 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a2c2ae20554e7db5e765f163022ce09c0">SetLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the control's label.  <a href="#a2c2ae20554e7db5e765f163022ce09c0"></a><br/></td></tr>
<tr class="separator:a2c2ae20554e7db5e765f163022ce09c0 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ae092899c3fe658831a9c796755a65eb7">SetLabelText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;text)</td></tr>
<tr class="memdesc:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the control's label to exactly the given string.  <a href="#ae092899c3fe658831a9c796755a65eb7"></a><br/></td></tr>
<tr class="separator:ae092899c3fe658831a9c796755a65eb7 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#afeb308dc3b54d8d735b33cb250395503">SetLabelMarkup</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;markup)</td></tr>
<tr class="memdesc:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the controls label to a string using markup.  <a href="#afeb308dc3b54d8d735b33cb250395503"></a><br/></td></tr>
<tr class="separator:afeb308dc3b54d8d735b33cb250395503 inherit pub_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_window"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a695200a4915b934926dcf32afa44544c">wxWindow</a> ()</td></tr>
<tr class="memdesc:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a695200a4915b934926dcf32afa44544c"></a><br/></td></tr>
<tr class="separator:a695200a4915b934926dcf32afa44544c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7799009b10d1765d1bbb6db4994f922e">wxWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="memdesc:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs a window, which can be a child of a frame, dialog or any other non-control window.  <a href="#a7799009b10d1765d1bbb6db4994f922e"></a><br/></td></tr>
<tr class="separator:a7799009b10d1765d1bbb6db4994f922e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0c2a46181a89c349327f0b276f5ef8d7">~wxWindow</a> ()</td></tr>
<tr class="memdesc:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a0c2a46181a89c349327f0b276f5ef8d7"></a><br/></td></tr>
<tr class="separator:a0c2a46181a89c349327f0b276f5ef8d7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95b7ca8faa033f5ab35458887c07bf38 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a95b7ca8faa033f5ab35458887c07bf38">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=0, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxPanelNameStr)</td></tr>
<tr class="separator:a95b7ca8faa033f5ab35458887c07bf38 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3afbd49b1ea2f8275e3600dcac102923">AcceptsFocus</a> () const </td></tr>
<tr class="memdesc:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method may be overridden in the derived classes to return <span class="literal">false</span> to indicate that this control doesn't accept input at all (i.e. behaves like e.g. <a class="el" href="classwx_static_text.html" title="A static text control displays one or more lines of read-only text.">wxStaticText</a>) and so doesn't need focus.  <a href="#a3afbd49b1ea2f8275e3600dcac102923"></a><br/></td></tr>
<tr class="separator:a3afbd49b1ea2f8275e3600dcac102923 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2370bdd3ab08e7ef3c7555c6aa8301b8">AcceptsFocusFromKeyboard</a> () const </td></tr>
<tr class="memdesc:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method may be overridden in the derived classes to return <span class="literal">false</span> to indicate that while this control can, in principle, have focus if the user clicks it with the mouse, it shouldn't be included in the TAB traversal chain when using the keyboard.  <a href="#a2370bdd3ab08e7ef3c7555c6aa8301b8"></a><br/></td></tr>
<tr class="separator:a2370bdd3ab08e7ef3c7555c6aa8301b8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac7ed96693517630f4d2e99265b76d1a9">AcceptsFocusRecursively</a> () const </td></tr>
<tr class="memdesc:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Overridden to indicate whether this window or one of its children accepts focus.  <a href="#ac7ed96693517630f4d2e99265b76d1a9"></a><br/></td></tr>
<tr class="separator:ac7ed96693517630f4d2e99265b76d1a9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1415b1354d5670237090de09da28b662">IsFocusable</a> () const </td></tr>
<tr class="memdesc:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window itself have focus?  <a href="#a1415b1354d5670237090de09da28b662"></a><br/></td></tr>
<tr class="separator:a1415b1354d5670237090de09da28b662 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acd7f1a89fac1fda0ed49f7140d38d1b1">CanAcceptFocus</a> () const </td></tr>
<tr class="memdesc:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window have focus right now?  <a href="#acd7f1a89fac1fda0ed49f7140d38d1b1"></a><br/></td></tr>
<tr class="separator:acd7f1a89fac1fda0ed49f7140d38d1b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a855b39d837f0ae6d13d0e30d0c9682">CanAcceptFocusFromKeyboard</a> () const </td></tr>
<tr class="memdesc:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Can this window be assigned focus from keyboard right now?  <a href="#a6a855b39d837f0ae6d13d0e30d0c9682"></a><br/></td></tr>
<tr class="separator:a6a855b39d837f0ae6d13d0e30d0c9682 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4e0abff99d64d2a595ee0ab4b415bbd6">HasFocus</a> () const </td></tr>
<tr class="memdesc:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window (or in case of composite controls, its main child window) has focus.  <a href="#a4e0abff99d64d2a595ee0ab4b415bbd6"></a><br/></td></tr>
<tr class="separator:a4e0abff99d64d2a595ee0ab4b415bbd6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2b8b2e99231a0ec1a05f5066f1b7f3d8">SetCanFocus</a> (bool canFocus)</td></tr>
<tr class="memdesc:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is only implemented by ports which have support for native TAB traversal (such as GTK+ 2.0).  <a href="#a2b8b2e99231a0ec1a05f5066f1b7f3d8"></a><br/></td></tr>
<tr class="separator:a2b8b2e99231a0ec1a05f5066f1b7f3d8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a697f9f8d3ff389790f1c74b59bcb1d75">SetFocus</a> ()</td></tr>
<tr class="memdesc:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This sets the window to receive keyboard input.  <a href="#a697f9f8d3ff389790f1c74b59bcb1d75"></a><br/></td></tr>
<tr class="separator:a697f9f8d3ff389790f1c74b59bcb1d75 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6fa03f82d7917dff482754d0d2e2b1c8">SetFocusFromKbd</a> ()</td></tr>
<tr class="memdesc:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is called by wxWidgets keyboard navigation code when the user gives the focus to this window from keyboard (e.g.  <a href="#a6fa03f82d7917dff482754d0d2e2b1c8"></a><br/></td></tr>
<tr class="separator:a6fa03f82d7917dff482754d0d2e2b1c8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abf60159278059a5bb397eb8647227bb3">AddChild</a> (<a class="el" href="classwx_window.html">wxWindow</a> *child)</td></tr>
<tr class="memdesc:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a child window.  <a href="#abf60159278059a5bb397eb8647227bb3"></a><br/></td></tr>
<tr class="separator:abf60159278059a5bb397eb8647227bb3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aff47b32c8d42d515ea0bb6a6c2fea917">DestroyChildren</a> ()</td></tr>
<tr class="memdesc:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys all children of a window.  <a href="#aff47b32c8d42d515ea0bb6a6c2fea917"></a><br/></td></tr>
<tr class="separator:aff47b32c8d42d515ea0bb6a6c2fea917 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3468ef382c612b5f8e91c7c18d00a69f">FindWindow</a> (long id) const </td></tr>
<tr class="memdesc:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a child of this window, by <em>id</em>.  <a href="#a3468ef382c612b5f8e91c7c18d00a69f"></a><br/></td></tr>
<tr class="separator:a3468ef382c612b5f8e91c7c18d00a69f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab2dad735acc2121b964ee1d51836cffa">FindWindow</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name) const </td></tr>
<tr class="memdesc:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a child of this window, by name.  <a href="#ab2dad735acc2121b964ee1d51836cffa"></a><br/></td></tr>
<tr class="separator:ab2dad735acc2121b964ee1d51836cffa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">wxWindowList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad500085ad0511879b5e018706c91a494">GetChildren</a> ()</td></tr>
<tr class="memdesc:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a reference to the list of the window's children.  <a href="#ad500085ad0511879b5e018706c91a494"></a><br/></td></tr>
<tr class="separator:ad500085ad0511879b5e018706c91a494 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const wxWindowList &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a666cfe7cc8eda6fcecfd39c67c50f609">GetChildren</a> () const </td></tr>
<tr class="memdesc:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a666cfe7cc8eda6fcecfd39c67c50f609"></a><br/></td></tr>
<tr class="separator:a666cfe7cc8eda6fcecfd39c67c50f609 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acee332ed4368d26e8bc3db5767c1240a">RemoveChild</a> (<a class="el" href="classwx_window.html">wxWindow</a> *child)</td></tr>
<tr class="memdesc:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a child window.  <a href="#acee332ed4368d26e8bc3db5767c1240a"></a><br/></td></tr>
<tr class="separator:acee332ed4368d26e8bc3db5767c1240a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a55d3155d2d3139a84e8fb19a8900aa76">GetGrandParent</a> () const </td></tr>
<tr class="memdesc:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the grandparent of a window, or <span class="literal">NULL</span> if there isn't one.  <a href="#a55d3155d2d3139a84e8fb19a8900aa76"></a><br/></td></tr>
<tr class="separator:a55d3155d2d3139a84e8fb19a8900aa76 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a41608736affe2ff115d80d8f69dc832e">GetNextSibling</a> () const </td></tr>
<tr class="memdesc:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the next window after this one among the parent's children or <span class="literal">NULL</span> if this window is the last child.  <a href="#a41608736affe2ff115d80d8f69dc832e"></a><br/></td></tr>
<tr class="separator:a41608736affe2ff115d80d8f69dc832e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a63871f881941b99b4b94328d1c4cd163">GetParent</a> () const </td></tr>
<tr class="memdesc:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the parent of the window, or <span class="literal">NULL</span> if there is no parent.  <a href="#a63871f881941b99b4b94328d1c4cd163"></a><br/></td></tr>
<tr class="separator:a63871f881941b99b4b94328d1c4cd163 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa4cb912eb28be31279fa1b95747c6d02">GetPrevSibling</a> () const </td></tr>
<tr class="memdesc:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the previous window before this one among the parent's children or <code></code> <span class="literal">NULL</span> if this window is the first child.  <a href="#aa4cb912eb28be31279fa1b95747c6d02"></a><br/></td></tr>
<tr class="separator:aa4cb912eb28be31279fa1b95747c6d02 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a469f0881da248d37691440c9d4cc7200">IsDescendant</a> (wxWindowBase *win) const </td></tr>
<tr class="memdesc:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Check if the specified window is a descendant of this one.  <a href="#a469f0881da248d37691440c9d4cc7200"></a><br/></td></tr>
<tr class="separator:a469f0881da248d37691440c9d4cc7200 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7977b749284e65aecfed2ce146799cb9">Reparent</a> (<a class="el" href="classwx_window.html">wxWindow</a> *newParent)</td></tr>
<tr class="memdesc:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reparents the window, i.e. the window will be removed from its current parent window (e.g.  <a href="#a7977b749284e65aecfed2ce146799cb9"></a><br/></td></tr>
<tr class="separator:a7977b749284e65aecfed2ce146799cb9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aae29552806a328c6a55ef8f07647f5ba">AlwaysShowScrollbars</a> (bool hflag=true, bool vflag=true)</td></tr>
<tr class="memdesc:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Call this function to force one or both scrollbars to be always shown, even if the window is big enough to show its entire contents without scrolling.  <a href="#aae29552806a328c6a55ef8f07647f5ba"></a><br/></td></tr>
<tr class="separator:aae29552806a328c6a55ef8f07647f5ba inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3e23d10c17943fd873d0acb472db0caa">GetScrollPos</a> (int orientation) const </td></tr>
<tr class="memdesc:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar position.  <a href="#a3e23d10c17943fd873d0acb472db0caa"></a><br/></td></tr>
<tr class="separator:a3e23d10c17943fd873d0acb472db0caa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a067d2a38efbf2f535f717f1027003281">GetScrollRange</a> (int orientation) const </td></tr>
<tr class="memdesc:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar range.  <a href="#a067d2a38efbf2f535f717f1027003281"></a><br/></td></tr>
<tr class="separator:a067d2a38efbf2f535f717f1027003281 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a10d24c60525a1c612cd775fc44dd1953">GetScrollThumb</a> (int orientation) const </td></tr>
<tr class="memdesc:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the built-in scrollbar thumb size.  <a href="#a10d24c60525a1c612cd775fc44dd1953"></a><br/></td></tr>
<tr class="separator:a10d24c60525a1c612cd775fc44dd1953 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a179f9a770f8c835f279923d2cbe5d766">CanScroll</a> (int orient) const </td></tr>
<tr class="memdesc:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window can have a scroll bar in this orientation.  <a href="#a179f9a770f8c835f279923d2cbe5d766"></a><br/></td></tr>
<tr class="separator:a179f9a770f8c835f279923d2cbe5d766 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a950847ecf2d488d83c14a74a3906f668">HasScrollbar</a> (int orient) const </td></tr>
<tr class="memdesc:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window currently has a scroll bar for this orientation.  <a href="#a950847ecf2d488d83c14a74a3906f668"></a><br/></td></tr>
<tr class="separator:a950847ecf2d488d83c14a74a3906f668 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aeeef7eaf8c8f1ec1a54e7a68d63923d0">IsScrollbarAlwaysShown</a> (int orient) const </td></tr>
<tr class="memdesc:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether a scrollbar is always shown.  <a href="#aeeef7eaf8c8f1ec1a54e7a68d63923d0"></a><br/></td></tr>
<tr class="separator:aeeef7eaf8c8f1ec1a54e7a68d63923d0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64">ScrollLines</a> (int lines)</td></tr>
<tr class="memdesc:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scrolls the window by the given number of lines down (if <em>lines</em> is positive) or up.  <a href="#aa5c5b683bd11a0d9771bd2fcdf643c64"></a><br/></td></tr>
<tr class="separator:aa5c5b683bd11a0d9771bd2fcdf643c64 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d">ScrollPages</a> (int pages)</td></tr>
<tr class="memdesc:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scrolls the window by the given number of pages down (if <em>pages</em> is positive) or up.  <a href="#adc0ed5e1c4925223cb901ced14b8343d"></a><br/></td></tr>
<tr class="separator:adc0ed5e1c4925223cb901ced14b8343d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab7be4956ff22da37fff2b8aaa581045c">ScrollWindow</a> (int dx, int dy, const <a class="el" href="classwx_rect.html">wxRect</a> *rect=NULL)</td></tr>
<tr class="memdesc:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Physically scrolls the pixels in the window and move child windows accordingly.  <a href="#ab7be4956ff22da37fff2b8aaa581045c"></a><br/></td></tr>
<tr class="separator:ab7be4956ff22da37fff2b8aaa581045c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afc0816a174ceee6d36d1995c6824a273">LineUp</a> ()</td></tr>
<tr class="memdesc:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64" title="Scrolls the window by the given number of lines down (if lines is positive) or up.">ScrollLines</a> (-1).  <a href="#afc0816a174ceee6d36d1995c6824a273"></a><br/></td></tr>
<tr class="separator:afc0816a174ceee6d36d1995c6824a273 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ade808784f0e64d9985e2f279b5ca8c02">LineDown</a> ()</td></tr>
<tr class="memdesc:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#aa5c5b683bd11a0d9771bd2fcdf643c64" title="Scrolls the window by the given number of lines down (if lines is positive) or up.">ScrollLines</a> (1).  <a href="#ade808784f0e64d9985e2f279b5ca8c02"></a><br/></td></tr>
<tr class="separator:ade808784f0e64d9985e2f279b5ca8c02 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa7c2bbc480d8863d9f139c01d7abc1b1">PageUp</a> ()</td></tr>
<tr class="memdesc:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d" title="Scrolls the window by the given number of pages down (if pages is positive) or up.">ScrollPages</a> (-1).  <a href="#aa7c2bbc480d8863d9f139c01d7abc1b1"></a><br/></td></tr>
<tr class="separator:aa7c2bbc480d8863d9f139c01d7abc1b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a61e78cb48ece3e9e989e37b475ac1e35">PageDown</a> ()</td></tr>
<tr class="memdesc:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#adc0ed5e1c4925223cb901ced14b8343d" title="Scrolls the window by the given number of pages down (if pages is positive) or up.">ScrollPages</a> (1).  <a href="#a61e78cb48ece3e9e989e37b475ac1e35"></a><br/></td></tr>
<tr class="separator:a61e78cb48ece3e9e989e37b475ac1e35 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afbf4dc9064cf70cfe6884554b97a27bf">SetScrollPos</a> (int orientation, int pos, bool refresh=true)</td></tr>
<tr class="memdesc:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the position of one of the built-in scrollbars.  <a href="#afbf4dc9064cf70cfe6884554b97a27bf"></a><br/></td></tr>
<tr class="separator:afbf4dc9064cf70cfe6884554b97a27bf inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa842d59529f873683e55cd8392ec46e9">SetScrollbar</a> (int orientation, int position, int thumbSize, int range, bool refresh=true)</td></tr>
<tr class="memdesc:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the scrollbar properties of a built-in scrollbar.  <a href="#aa842d59529f873683e55cd8392ec46e9"></a><br/></td></tr>
<tr class="separator:aa842d59529f873683e55cd8392ec46e9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab4cea6ace96193b5c4282e097a6fbfee">BeginRepositioningChildren</a> ()</td></tr>
<tr class="memdesc:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Prepare for changing positions of multiple child windows.  <a href="#ab4cea6ace96193b5c4282e097a6fbfee"></a><br/></td></tr>
<tr class="separator:ab4cea6ace96193b5c4282e097a6fbfee inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1203fbd238d781253b44e0e459532301">EndRepositioningChildren</a> ()</td></tr>
<tr class="memdesc:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Fix child window positions after setting all of them at once.  <a href="#a1203fbd238d781253b44e0e459532301"></a><br/></td></tr>
<tr class="separator:a1203fbd238d781253b44e0e459532301 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a100905524d330cfd9620fd726e378066">CacheBestSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the cached best size value.  <a href="#a100905524d330cfd9620fd726e378066"></a><br/></td></tr>
<tr class="separator:a100905524d330cfd9620fd726e378066 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a693fffbbb7ad5f36a5f442703396dafa">ClientToWindowSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts client area size <em>size</em> to corresponding window size.  <a href="#a693fffbbb7ad5f36a5f442703396dafa"></a><br/></td></tr>
<tr class="separator:a693fffbbb7ad5f36a5f442703396dafa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa456f800c9dde3b2361cad0abf54bc27">WindowToClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size) const </td></tr>
<tr class="memdesc:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts window size <em>size</em> to corresponding client area size In other words, the returned value is what would <a class="el" href="classwx_window.html#ae56fc53268b815b58570f66bfc33838f" title="Returns the size of the window &#39;client area&#39; in pixels.">GetClientSize()</a> return if this window had given window size.  <a href="#aa456f800c9dde3b2361cad0abf54bc27"></a><br/></td></tr>
<tr class="separator:aa456f800c9dde3b2361cad0abf54bc27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2bf38a6cbd1f82fb46f274396f482994">Fit</a> ()</td></tr>
<tr class="memdesc:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sizes the window so that it fits around its subwindows.  <a href="#a2bf38a6cbd1f82fb46f274396f482994"></a><br/></td></tr>
<tr class="separator:a2bf38a6cbd1f82fb46f274396f482994 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a55aca401aab29d59f7cc53f89ba2e38d">FitInside</a> ()</td></tr>
<tr class="memdesc:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Similar to <a class="el" href="classwx_window.html#a2bf38a6cbd1f82fb46f274396f482994" title="Sizes the window so that it fits around its subwindows.">Fit()</a>, but sizes the interior (virtual) size of a window.  <a href="#a55aca401aab29d59f7cc53f89ba2e38d"></a><br/></td></tr>
<tr class="separator:a55aca401aab29d59f7cc53f89ba2e38d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e64b9380374e5681f146e9e319e35e3">GetBestSize</a> () const </td></tr>
<tr class="memdesc:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This functions returns the best acceptable minimal size for the window.  <a href="#a7e64b9380374e5681f146e9e319e35e3"></a><br/></td></tr>
<tr class="separator:a7e64b9380374e5681f146e9e319e35e3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae314d583790739dd751dedec49216b88">GetBestHeight</a> (int width) const </td></tr>
<tr class="memdesc:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the best height needed by this window if it had the given width.  <a href="#ae314d583790739dd751dedec49216b88"></a><br/></td></tr>
<tr class="separator:ae314d583790739dd751dedec49216b88 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac6ca826451f19a8814d12c31cda2afab">GetBestWidth</a> (int height) const </td></tr>
<tr class="memdesc:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the best width needed by this window if it had the given height.  <a href="#ac6ca826451f19a8814d12c31cda2afab"></a><br/></td></tr>
<tr class="separator:ac6ca826451f19a8814d12c31cda2afab inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae56fc53268b815b58570f66bfc33838f">GetClientSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the window 'client area' in pixels.  <a href="#ae56fc53268b815b58570f66bfc33838f"></a><br/></td></tr>
<tr class="separator:ae56fc53268b815b58570f66bfc33838f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afb9fd4a3b3310b2e11049a5113f749fa">GetClientSize</a> () const </td></tr>
<tr class="memdesc:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#afb9fd4a3b3310b2e11049a5113f749fa"></a><br/></td></tr>
<tr class="separator:afb9fd4a3b3310b2e11049a5113f749fa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1a54fcda8d52986482e030bd54739e9f">GetEffectiveMinSize</a> () const </td></tr>
<tr class="memdesc:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Merges the window's best size into the min size and returns the result.  <a href="#a1a54fcda8d52986482e030bd54739e9f"></a><br/></td></tr>
<tr class="separator:a1a54fcda8d52986482e030bd54739e9f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aef9b71458720452374137cd20be24b97">GetMaxClientSize</a> () const </td></tr>
<tr class="memdesc:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the maximum size of window's client area.  <a href="#aef9b71458720452374137cd20be24b97"></a><br/></td></tr>
<tr class="separator:aef9b71458720452374137cd20be24b97 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a1672e81caf81a95eb5b48383d22065">GetMaxSize</a> () const </td></tr>
<tr class="memdesc:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the maximum size of the window.  <a href="#a0a1672e81caf81a95eb5b48383d22065"></a><br/></td></tr>
<tr class="separator:a0a1672e81caf81a95eb5b48383d22065 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e88d1d38c2bf98a72d86b42cf3e35c0">GetMinClientSize</a> () const </td></tr>
<tr class="memdesc:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the minimum size of window's client area, an indication to the sizer layout mechanism that this is the minimum required size of its client area.  <a href="#a8e88d1d38c2bf98a72d86b42cf3e35c0"></a><br/></td></tr>
<tr class="separator:a8e88d1d38c2bf98a72d86b42cf3e35c0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a853c9a8443f996a368569a8fae551f5a">GetMinSize</a> () const </td></tr>
<tr class="memdesc:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the minimum size of the window, an indication to the sizer layout mechanism that this is the minimum required size.  <a href="#a853c9a8443f996a368569a8fae551f5a"></a><br/></td></tr>
<tr class="separator:a853c9a8443f996a368569a8fae551f5a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9f79aa07a1b82a9a738f6c1d9c17496f">GetMinWidth</a> () const </td></tr>
<tr class="memdesc:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the horizontal component of window minimal size.  <a href="#a9f79aa07a1b82a9a738f6c1d9c17496f"></a><br/></td></tr>
<tr class="separator:a9f79aa07a1b82a9a738f6c1d9c17496f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae4dd9a046ff774ea3ef114caeb452681">GetMinHeight</a> () const </td></tr>
<tr class="memdesc:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the vertical component of window minimal size.  <a href="#ae4dd9a046ff774ea3ef114caeb452681"></a><br/></td></tr>
<tr class="separator:ae4dd9a046ff774ea3ef114caeb452681 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2e953a64c41131b87bdd7c513ced3687">GetMaxWidth</a> () const </td></tr>
<tr class="memdesc:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the horizontal component of window maximal size.  <a href="#a2e953a64c41131b87bdd7c513ced3687"></a><br/></td></tr>
<tr class="separator:a2e953a64c41131b87bdd7c513ced3687 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5cc2082eb5ddb27f97be191bd093709e">GetMaxHeight</a> () const </td></tr>
<tr class="memdesc:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the vertical component of window maximal size.  <a href="#a5cc2082eb5ddb27f97be191bd093709e"></a><br/></td></tr>
<tr class="separator:a5cc2082eb5ddb27f97be191bd093709e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a124c12cff1e7b6e96a5e1fd3e48dca34">GetSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the entire window in pixels, including title bar, border, scrollbars, etc.  <a href="#a124c12cff1e7b6e96a5e1fd3e48dca34"></a><br/></td></tr>
<tr class="separator:a124c12cff1e7b6e96a5e1fd3e48dca34 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a66e144ed8ab9a20e080ae6c69fc7015c">GetSize</a> () const </td></tr>
<tr class="memdesc:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the GetSize(int*,int*) overload for more info.  <a href="#a66e144ed8ab9a20e080ae6c69fc7015c"></a><br/></td></tr>
<tr class="separator:a66e144ed8ab9a20e080ae6c69fc7015c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a614d32c464296b7d6caabcafc18deb97">GetVirtualSize</a> () const </td></tr>
<tr class="memdesc:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the virtual size of the window in pixels.  <a href="#a614d32c464296b7d6caabcafc18deb97"></a><br/></td></tr>
<tr class="separator:a614d32c464296b7d6caabcafc18deb97 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2628c6f1f4aecb790f0c86622ebf4d56">GetVirtualSize</a> (int *width, int *height) const </td></tr>
<tr class="memdesc:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Like the other <a class="el" href="classwx_window.html#a614d32c464296b7d6caabcafc18deb97" title="This gets the virtual size of the window in pixels.">GetVirtualSize()</a> overload but uses pointers instead.  <a href="#a2628c6f1f4aecb790f0c86622ebf4d56"></a><br/></td></tr>
<tr class="separator:a2628c6f1f4aecb790f0c86622ebf4d56 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0180343fa395e0c8e6de4022684ca5d6">GetBestVirtualSize</a> () const </td></tr>
<tr class="memdesc:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the largest of ClientSize and BestSize (as determined by a sizer, interior children, or other means)  <a href="#a0180343fa395e0c8e6de4022684ca5d6"></a><br/></td></tr>
<tr class="separator:a0180343fa395e0c8e6de4022684ca5d6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6f230d4db56d1d2ab364fe1491f2e9ba">GetContentScaleFactor</a> () const </td></tr>
<tr class="memdesc:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the magnification of the backing store of this window, eg 2.0 for a window on a retina screen.  <a href="#a6f230d4db56d1d2ab364fe1491f2e9ba"></a><br/></td></tr>
<tr class="separator:a6f230d4db56d1d2ab364fe1491f2e9ba inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afd861e553190e22a76d3d40ee5e8d628">GetWindowBorderSize</a> () const </td></tr>
<tr class="memdesc:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the left/right and top/bottom borders of this window in x and y components of the result respectively.  <a href="#afd861e553190e22a76d3d40ee5e8d628"></a><br/></td></tr>
<tr class="separator:afd861e553190e22a76d3d40ee5e8d628 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9fd5b6520c1b30eb8e82bb5d56bc24c0">InformFirstDirection</a> (int direction, int size, int availableOtherDir)</td></tr>
<tr class="memdesc:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classwx_sizer.html" title="wxSizer is the abstract base class used for laying out subwindows in a window.">wxSizer</a> and friends use this to give a chance to a component to recalc its min size once one of the final size components is known.  <a href="#a9fd5b6520c1b30eb8e82bb5d56bc24c0"></a><br/></td></tr>
<tr class="separator:a9fd5b6520c1b30eb8e82bb5d56bc24c0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae1b56ca87d8590ee5e576012229a380a">InvalidateBestSize</a> ()</td></tr>
<tr class="memdesc:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Resets the cached best size value so it will be recalculated the next time it is needed.  <a href="#ae1b56ca87d8590ee5e576012229a380a"></a><br/></td></tr>
<tr class="separator:ae1b56ca87d8590ee5e576012229a380a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab1943463e6661f97e072b43337c6cc09">PostSizeEvent</a> ()</td></tr>
<tr class="memdesc:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Posts a size event to the window.  <a href="#ab1943463e6661f97e072b43337c6cc09"></a><br/></td></tr>
<tr class="separator:ab1943463e6661f97e072b43337c6cc09 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa080d8dcda58bcc6ea2abd8bea592e3e">PostSizeEventToParent</a> ()</td></tr>
<tr class="memdesc:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Posts a size event to the parent of this window.  <a href="#aa080d8dcda58bcc6ea2abd8bea592e3e"></a><br/></td></tr>
<tr class="separator:aa080d8dcda58bcc6ea2abd8bea592e3e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a237f739b21937d3e8f1bff5fa82ba4c2">SendSizeEvent</a> (int flags=0)</td></tr>
<tr class="memdesc:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sends a dummy <a class="el" href="classwx_size_event.html">size event</a> to the window allowing it to re-layout its children positions.  <a href="#a237f739b21937d3e8f1bff5fa82ba4c2"></a><br/></td></tr>
<tr class="separator:a237f739b21937d3e8f1bff5fa82ba4c2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af7987987978fd8a93df88b29b19a6388">SendSizeEventToParent</a> (int flags=0)</td></tr>
<tr class="memdesc:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Safe wrapper for <a class="el" href="classwx_window.html#a63871f881941b99b4b94328d1c4cd163" title="Returns the parent of the window, or NULL if there is no parent.">GetParent()</a>-&gt;<a class="el" href="classwx_window.html#a237f739b21937d3e8f1bff5fa82ba4c2" title="This function sends a dummy size event to the window allowing it to re-layout its children positions...">SendSizeEvent()</a>.  <a href="#af7987987978fd8a93df88b29b19a6388"></a><br/></td></tr>
<tr class="separator:af7987987978fd8a93df88b29b19a6388 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa59f715217fffa5bcf14cd97f92e7840">SetClientSize</a> (int width, int height)</td></tr>
<tr class="memdesc:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This sets the size of the window client area in pixels.  <a href="#aa59f715217fffa5bcf14cd97f92e7840"></a><br/></td></tr>
<tr class="separator:aa59f715217fffa5bcf14cd97f92e7840 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab2aadc857ee7f55f47ab9a8669e3beb7">SetClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ab2aadc857ee7f55f47ab9a8669e3beb7"></a><br/></td></tr>
<tr class="separator:ab2aadc857ee7f55f47ab9a8669e3beb7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a582d4d1f60a3f777627773b2da0bb2ef">SetClientSize</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect)</td></tr>
<tr class="memdesc:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a582d4d1f60a3f777627773b2da0bb2ef"></a><br/></td></tr>
<tr class="separator:a582d4d1f60a3f777627773b2da0bb2ef inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0ccf78fe06722b500adfb7f36b8ce443">SetContainingSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer)</td></tr>
<tr class="memdesc:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This normally does not need to be called by user code.  <a href="#a0ccf78fe06722b500adfb7f36b8ce443"></a><br/></td></tr>
<tr class="separator:a0ccf78fe06722b500adfb7f36b8ce443 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1b309ca50ba87e34f968c83b79af1397">SetInitialSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>)</td></tr>
<tr class="memdesc:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A <em>smart</em> SetSize that will fill in default size components with the window's <em>best</em> size values.  <a href="#a1b309ca50ba87e34f968c83b79af1397"></a><br/></td></tr>
<tr class="separator:a1b309ca50ba87e34f968c83b79af1397 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a664e5b2ddd817d9c58788269fe1d8479">SetMaxClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum client size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size of its client area.  <a href="#a664e5b2ddd817d9c58788269fe1d8479"></a><br/></td></tr>
<tr class="separator:a664e5b2ddd817d9c58788269fe1d8479 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a38b496214d728a3212afadee5ed51606">SetMaxSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the maximum size of the window, to indicate to the sizer layout mechanism that this is the maximum possible size.  <a href="#a38b496214d728a3212afadee5ed51606"></a><br/></td></tr>
<tr class="separator:a38b496214d728a3212afadee5ed51606 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6e35ba44b97e374dfffa460d41d94b31">SetMinClientSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum client size of the window, to indicate to the sizer layout mechanism that this is the minimum required size of window's client area.  <a href="#a6e35ba44b97e374dfffa460d41d94b31"></a><br/></td></tr>
<tr class="separator:a6e35ba44b97e374dfffa460d41d94b31 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3fc066f4d8083319f004ac43811d545d">SetMinSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the minimum size of the window, to indicate to the sizer layout mechanism that this is the minimum required size.  <a href="#a3fc066f4d8083319f004ac43811d545d"></a><br/></td></tr>
<tr class="separator:a3fc066f4d8083319f004ac43811d545d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a180312d5ad4a4a5ad805b8d52d67a74e">SetSize</a> (int x, int y, int width, int height, int sizeFlags=<a class="el" href="defs_8h.html#a9604019ec0a451fddab3c8e2ddbe2bee">wxSIZE_AUTO</a>)</td></tr>
<tr class="memdesc:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of the window in pixels.  <a href="#a180312d5ad4a4a5ad805b8d52d67a74e"></a><br/></td></tr>
<tr class="separator:a180312d5ad4a4a5ad805b8d52d67a74e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e383bc6d5ca008965922a36c676aea0">SetSize</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect)</td></tr>
<tr class="memdesc:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the size of the window in pixels.  <a href="#a8e383bc6d5ca008965922a36c676aea0"></a><br/></td></tr>
<tr class="separator:a8e383bc6d5ca008965922a36c676aea0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a030a928cd854de3def97c5720f14695b">SetSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a030a928cd854de3def97c5720f14695b"></a><br/></td></tr>
<tr class="separator:a030a928cd854de3def97c5720f14695b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2ea9b25296d591aea4470c8fd99ff7cb">SetSize</a> (int width, int height)</td></tr>
<tr class="memdesc:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a2ea9b25296d591aea4470c8fd99ff7cb"></a><br/></td></tr>
<tr class="separator:a2ea9b25296d591aea4470c8fd99ff7cb inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a307329dc3b10f5584aeb2cbce9293ffd">SetSizeHints</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;minSize, const <a class="el" href="classwx_size.html">wxSize</a> &amp;maxSize=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;incSize=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>)</td></tr>
<tr class="memdesc:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Use of this function for windows which are not toplevel windows (such as <a class="el" href="classwx_dialog.html" title="A dialog box is a window with a title bar and sometimes a system menu, which can be moved around the ...">wxDialog</a> or <a class="el" href="classwx_frame.html" title="A frame is a window whose size and position can (usually) be changed by the user.">wxFrame</a>) is discouraged.  <a href="#a307329dc3b10f5584aeb2cbce9293ffd"></a><br/></td></tr>
<tr class="separator:a307329dc3b10f5584aeb2cbce9293ffd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae813c640e1e2bc6014423247050846cf">SetSizeHints</a> (int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1)</td></tr>
<tr class="memdesc:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#ae813c640e1e2bc6014423247050846cf"></a><br/></td></tr>
<tr class="separator:ae813c640e1e2bc6014423247050846cf inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a37f293b7904bc6668b86cccb0aea5669">SetVirtualSize</a> (int width, int height)</td></tr>
<tr class="memdesc:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the virtual size of the window in pixels.  <a href="#a37f293b7904bc6668b86cccb0aea5669"></a><br/></td></tr>
<tr class="separator:a37f293b7904bc6668b86cccb0aea5669 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8e95201edebe43b9623bd3bdc555af4d">SetVirtualSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a8e95201edebe43b9623bd3bdc555af4d"></a><br/></td></tr>
<tr class="separator:a8e95201edebe43b9623bd3bdc555af4d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a06c0ecb262995b40083bfb446a6cff99">Center</a> (int dir=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787" title="Centres the window.">Centre()</a>.  <a href="#a06c0ecb262995b40083bfb446a6cff99"></a><br/></td></tr>
<tr class="separator:a06c0ecb262995b40083bfb446a6cff99 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2dc4e0a85d33fc55cc9650eaea1da0a4">CenterOnParent</a> (int dir=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#ab8e9b91b0e2db344fd71259616dfd433" title="Centres the window on its parent.">CentreOnParent()</a>.  <a href="#a2dc4e0a85d33fc55cc9650eaea1da0a4"></a><br/></td></tr>
<tr class="separator:a2dc4e0a85d33fc55cc9650eaea1da0a4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787">Centre</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window.  <a href="#a4a1819eeee3f2143cdde4f329ffde787"></a><br/></td></tr>
<tr class="separator:a4a1819eeee3f2143cdde4f329ffde787 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8e9b91b0e2db344fd71259616dfd433">CentreOnParent</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window on its parent.  <a href="#ab8e9b91b0e2db344fd71259616dfd433"></a><br/></td></tr>
<tr class="separator:ab8e9b91b0e2db344fd71259616dfd433 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9f36392b289a1e567e95bee073d6533e">GetPosition</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.  <a href="#a9f36392b289a1e567e95bee073d6533e"></a><br/></td></tr>
<tr class="separator:a9f36392b289a1e567e95bee073d6533e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad9a883e20827fa717e92fc2f8bd99d6b">GetPosition</a> () const </td></tr>
<tr class="memdesc:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This gets the position of the window in pixels, relative to the parent window for the child windows or relative to the display origin for the top level windows.  <a href="#ad9a883e20827fa717e92fc2f8bd99d6b"></a><br/></td></tr>
<tr class="separator:ad9a883e20827fa717e92fc2f8bd99d6b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac8809904bb379c32c33c79fbe38745eb">GetRect</a> () const </td></tr>
<tr class="memdesc:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the position and size of the window as a <a class="el" href="classwx_rect.html" title="A class for manipulating rectangles.">wxRect</a> object.  <a href="#ac8809904bb379c32c33c79fbe38745eb"></a><br/></td></tr>
<tr class="separator:ac8809904bb379c32c33c79fbe38745eb inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abd39ef50fbc1ef3771f695e7322e8c1d">GetScreenPosition</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window position in screen coordinates, whether the window is a child window or a top level one.  <a href="#abd39ef50fbc1ef3771f695e7322e8c1d"></a><br/></td></tr>
<tr class="separator:abd39ef50fbc1ef3771f695e7322e8c1d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a32074a2c677ebadb1ed6e92ab172656c">GetScreenPosition</a> () const </td></tr>
<tr class="memdesc:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window position in screen coordinates, whether the window is a child window or a top level one.  <a href="#a32074a2c677ebadb1ed6e92ab172656c"></a><br/></td></tr>
<tr class="separator:a32074a2c677ebadb1ed6e92ab172656c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5c0e45fac07ac4cf29eefa108337a110">GetScreenRect</a> () const </td></tr>
<tr class="memdesc:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the position and size of the window on the screen as a <a class="el" href="classwx_rect.html" title="A class for manipulating rectangles.">wxRect</a> object.  <a href="#a5c0e45fac07ac4cf29eefa108337a110"></a><br/></td></tr>
<tr class="separator:a5c0e45fac07ac4cf29eefa108337a110 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8fd1c0fd88d63dfbf6fefb688b7fd19e">GetClientAreaOrigin</a> () const </td></tr>
<tr class="memdesc:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the origin of the client area of the window relative to the window top left corner (the client area may be shifted because of the borders, scrollbars, other decorations...)  <a href="#a8fd1c0fd88d63dfbf6fefb688b7fd19e"></a><br/></td></tr>
<tr class="separator:a8fd1c0fd88d63dfbf6fefb688b7fd19e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3928765a8dd3c5c3d6a689179c8005e0">GetClientRect</a> () const </td></tr>
<tr class="memdesc:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the client rectangle in window (i.e. client) coordinates.  <a href="#a3928765a8dd3c5c3d6a689179c8005e0"></a><br/></td></tr>
<tr class="separator:a3928765a8dd3c5c3d6a689179c8005e0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab1cb98c8d25b9e6ff7b706b1446c3df7">Move</a> (int x, int y, int flags=<a class="el" href="defs_8h.html#a2f39257d6e2924d14ba28afa42abcde6">wxSIZE_USE_EXISTING</a>)</td></tr>
<tr class="memdesc:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the window to the given position.  <a href="#ab1cb98c8d25b9e6ff7b706b1446c3df7"></a><br/></td></tr>
<tr class="separator:ab1cb98c8d25b9e6ff7b706b1446c3df7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a22a22c1e23ca05776707e7999d8047fe">Move</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt, int flags=<a class="el" href="defs_8h.html#a2f39257d6e2924d14ba28afa42abcde6">wxSIZE_USE_EXISTING</a>)</td></tr>
<tr class="memdesc:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the window to the given position.  <a href="#a22a22c1e23ca05776707e7999d8047fe"></a><br/></td></tr>
<tr class="separator:a22a22c1e23ca05776707e7999d8047fe inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a81f23590239934fa10fded0566a65d8c">SetPosition</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_window.html#a4a1819eeee3f2143cdde4f329ffde787" title="Centres the window.">Centre()</a>.  <a href="#a81f23590239934fa10fded0566a65d8c"></a><br/></td></tr>
<tr class="separator:a81f23590239934fa10fded0566a65d8c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29eac611e5f6b47db82bb4dd5450ba3d">ClientToScreen</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts to screen coordinates from coordinates relative to this window.  <a href="#a29eac611e5f6b47db82bb4dd5450ba3d"></a><br/></td></tr>
<tr class="separator:a29eac611e5f6b47db82bb4dd5450ba3d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7de852b144210b93b690189e99dbe1df">ClientToScreen</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts to screen coordinates from coordinates relative to this window.  <a href="#a7de852b144210b93b690189e99dbe1df"></a><br/></td></tr>
<tr class="separator:a7de852b144210b93b690189e99dbe1df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acb6787b6c3c314f9e015658a89ad0265">ConvertDialogToPixels</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point or size from dialog units to pixels.  <a href="#acb6787b6c3c314f9e015658a89ad0265"></a><br/></td></tr>
<tr class="separator:acb6787b6c3c314f9e015658a89ad0265 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3daf76b93f648c68224e6ccd8095066b">ConvertDialogToPixels</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;sz) const </td></tr>
<tr class="memdesc:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a3daf76b93f648c68224e6ccd8095066b"></a><br/></td></tr>
<tr class="separator:a3daf76b93f648c68224e6ccd8095066b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a449aac6a24f1d14b1a82b58003447dfe">ConvertPixelsToDialog</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts a point or size from pixels to dialog units.  <a href="#a449aac6a24f1d14b1a82b58003447dfe"></a><br/></td></tr>
<tr class="separator:a449aac6a24f1d14b1a82b58003447dfe inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afd955ce9d25ec26a115bfb794b1c7d8b">ConvertPixelsToDialog</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;sz) const </td></tr>
<tr class="memdesc:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#afd955ce9d25ec26a115bfb794b1c7d8b"></a><br/></td></tr>
<tr class="separator:afd955ce9d25ec26a115bfb794b1c7d8b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a65531bbc52f9508b0e31a9c08c97bd31">ScreenToClient</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts from screen to client window coordinates.  <a href="#a65531bbc52f9508b0e31a9c08c97bd31"></a><br/></td></tr>
<tr class="separator:a65531bbc52f9508b0e31a9c08c97bd31 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59d02b70a9107433836a977c4c0cd7a9">ScreenToClient</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts from screen to client window coordinates.  <a href="#a59d02b70a9107433836a977c4c0cd7a9"></a><br/></td></tr>
<tr class="separator:a59d02b70a9107433836a977c4c0cd7a9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a61e833684ee5c89775e91e88be1a9a52">ClearBackground</a> ()</td></tr>
<tr class="memdesc:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears the window by filling it with the current background colour.  <a href="#a61e833684ee5c89775e91e88be1a9a52"></a><br/></td></tr>
<tr class="separator:a61e833684ee5c89775e91e88be1a9a52 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3">Freeze</a> ()</td></tr>
<tr class="memdesc:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.  <a href="#a15c678314cfc1d807196bc298b713ed3"></a><br/></td></tr>
<tr class="separator:a15c678314cfc1d807196bc298b713ed3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a279a532124073261b28131b6afb59a1e">Thaw</a> ()</td></tr>
<tr class="memdesc:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Re-enables window updating after a previous call to <a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3" title="Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.">Freeze()</a>.  <a href="#a279a532124073261b28131b6afb59a1e"></a><br/></td></tr>
<tr class="separator:a279a532124073261b28131b6afb59a1e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a866c62cc23d8de88e952aad5db4d1a61">IsFrozen</a> () const </td></tr>
<tr class="memdesc:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is currently frozen by a call to <a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3" title="Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.">Freeze()</a>.  <a href="#a866c62cc23d8de88e952aad5db4d1a61"></a><br/></td></tr>
<tr class="separator:a866c62cc23d8de88e952aad5db4d1a61 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_colour.html">wxColour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3006d98a4145b7064c1f08e39487d257">GetBackgroundColour</a> () const </td></tr>
<tr class="memdesc:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the background colour of the window.  <a href="#a3006d98a4145b7064c1f08e39487d257"></a><br/></td></tr>
<tr class="separator:a3006d98a4145b7064c1f08e39487d257 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a4bc8ece80d508fd70283b5a3b4c41e5f">wxBackgroundStyle</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59047d52b88f2422bbcf01bbecdc4b7b">GetBackgroundStyle</a> () const </td></tr>
<tr class="memdesc:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the background style of the window.  <a href="#a59047d52b88f2422bbcf01bbecdc4b7b"></a><br/></td></tr>
<tr class="separator:a59047d52b88f2422bbcf01bbecdc4b7b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a304b4446de399b240a3fa4aa83a2e468">GetCharHeight</a> () const </td></tr>
<tr class="memdesc:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the character height for this window.  <a href="#a304b4446de399b240a3fa4aa83a2e468"></a><br/></td></tr>
<tr class="separator:a304b4446de399b240a3fa4aa83a2e468 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aef2745df13435e913027107cab2a6286">GetCharWidth</a> () const </td></tr>
<tr class="memdesc:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the average character width for this window.  <a href="#aef2745df13435e913027107cab2a6286"></a><br/></td></tr>
<tr class="separator:aef2745df13435e913027107cab2a6286 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="structwx_visual_attributes.html">wxVisualAttributes</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a24e7b8f717e91f4590d148140e853dc5">GetDefaultAttributes</a> () const </td></tr>
<tr class="memdesc:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Currently this is the same as calling <a class="el" href="classwx_window.html#a170d85e4aa0cbacbfcdd0728120e1417" title="Returns the default font and colours which are used by the control.">wxWindow::GetClassDefaultAttributes</a>(<a class="el" href="classwx_window.html#aafcccd0d5d31651484df02453c53361c" title="Returns the value previously passed to SetWindowVariant().">wxWindow::GetWindowVariant()</a>).  <a href="#a24e7b8f717e91f4590d148140e853dc5"></a><br/></td></tr>
<tr class="separator:a24e7b8f717e91f4590d148140e853dc5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_font.html">wxFont</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0dcc6f6f7bda203a868ff10c413289fa">GetFont</a> () const </td></tr>
<tr class="memdesc:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the font for this window.  <a href="#a0dcc6f6f7bda203a868ff10c413289fa"></a><br/></td></tr>
<tr class="separator:a0dcc6f6f7bda203a868ff10c413289fa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_colour.html">wxColour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acb8e9bd1c88f330bc9748255a5592964">GetForegroundColour</a> () const </td></tr>
<tr class="memdesc:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the foreground colour of the window.  <a href="#acb8e9bd1c88f330bc9748255a5592964"></a><br/></td></tr>
<tr class="separator:acb8e9bd1c88f330bc9748255a5592964 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac9cd7b4472d5419e518f69311914466f">GetTextExtent</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string, int *w, int *h, int *descent=NULL, int *externalLeading=NULL, const <a class="el" href="classwx_font.html">wxFont</a> *font=NULL) const </td></tr>
<tr class="memdesc:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the dimensions of the string as it would be drawn on the window with the currently selected font.  <a href="#ac9cd7b4472d5419e518f69311914466f"></a><br/></td></tr>
<tr class="separator:ac9cd7b4472d5419e518f69311914466f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a79e5f88a2408871663d4ab0405cd35f6">GetTextExtent</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string) const </td></tr>
<tr class="memdesc:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the dimensions of the string as it would be drawn on the window with the currently selected font.  <a href="#a79e5f88a2408871663d4ab0405cd35f6"></a><br/></td></tr>
<tr class="separator:a79e5f88a2408871663d4ab0405cd35f6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_region.html">wxRegion</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa982adbcebfa7bc73fbae7465132115b">GetUpdateRegion</a> () const </td></tr>
<tr class="memdesc:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the region specifying which parts of the window have been damaged.  <a href="#aa982adbcebfa7bc73fbae7465132115b"></a><br/></td></tr>
<tr class="separator:aa982adbcebfa7bc73fbae7465132115b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e32d9a9ffd058c931db20416bc55baa">GetUpdateClientRect</a> () const </td></tr>
<tr class="memdesc:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the update rectangle bounding box in client coords.  <a href="#a7e32d9a9ffd058c931db20416bc55baa"></a><br/></td></tr>
<tr class="separator:a7e32d9a9ffd058c931db20416bc55baa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab9cbcb6d6f4a272c2f0342e69a13b59a">HasTransparentBackground</a> ()</td></tr>
<tr class="memdesc:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window background is transparent (as, for example, for <a class="el" href="classwx_static_text.html" title="A static text control displays one or more lines of read-only text.">wxStaticText</a>) and should show the parent window background.  <a href="#ab9cbcb6d6f4a272c2f0342e69a13b59a"></a><br/></td></tr>
<tr class="separator:ab9cbcb6d6f4a272c2f0342e69a13b59a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29dc7251746154c821b17841b9877830">Refresh</a> (bool eraseBackground=true, const <a class="el" href="classwx_rect.html">wxRect</a> *rect=NULL)</td></tr>
<tr class="memdesc:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Causes this window, and all of its children recursively (except under wxGTK1 where this is not implemented), to be repainted.  <a href="#a29dc7251746154c821b17841b9877830"></a><br/></td></tr>
<tr class="separator:a29dc7251746154c821b17841b9877830 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab0ae6b9898cd261c39ebeb2891aa3d67">RefreshRect</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect, bool eraseBackground=true)</td></tr>
<tr class="memdesc:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Redraws the contents of the given rectangle: only the area inside it will be repainted.  <a href="#ab0ae6b9898cd261c39ebeb2891aa3d67"></a><br/></td></tr>
<tr class="separator:ab0ae6b9898cd261c39ebeb2891aa3d67 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abaf28f1a075fd1b10f761a8febe597ec">Update</a> ()</td></tr>
<tr class="memdesc:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Calling this method immediately repaints the invalidated area of the window and all of its children recursively (this normally only happens when the flow of control returns to the event loop).  <a href="#abaf28f1a075fd1b10f761a8febe597ec"></a><br/></td></tr>
<tr class="separator:abaf28f1a075fd1b10f761a8febe597ec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a37219df52734626e23401fd83b25d8a0">SetBackgroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background colour of the window.  <a href="#a37219df52734626e23401fd83b25d8a0"></a><br/></td></tr>
<tr class="separator:a37219df52734626e23401fd83b25d8a0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af14f8fd2ed2d30a9bbb5d4f9fd6594ec">SetBackgroundStyle</a> (<a class="el" href="defs_8h.html#a4bc8ece80d508fd70283b5a3b4c41e5f">wxBackgroundStyle</a> style)</td></tr>
<tr class="memdesc:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background style of the window.  <a href="#af14f8fd2ed2d30a9bbb5d4f9fd6594ec"></a><br/></td></tr>
<tr class="separator:af14f8fd2ed2d30a9bbb5d4f9fd6594ec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7940d510c5bdc062a2b109a1022dd8c2">IsTransparentBackgroundSupported</a> (<a class="el" href="classwx_string.html">wxString</a> *reason=NULL) const </td></tr>
<tr class="memdesc:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether using transparent background might work.  <a href="#a7940d510c5bdc062a2b109a1022dd8c2"></a><br/></td></tr>
<tr class="separator:a7940d510c5bdc062a2b109a1022dd8c2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9ab11e7da57a1d08918aa75fc33f6ad3">SetFont</a> (const <a class="el" href="classwx_font.html">wxFont</a> &amp;font)</td></tr>
<tr class="memdesc:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the font for this window.  <a href="#a9ab11e7da57a1d08918aa75fc33f6ad3"></a><br/></td></tr>
<tr class="separator:a9ab11e7da57a1d08918aa75fc33f6ad3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a69f1e1c7ddd370d72e68c70f13ac8de9">SetForegroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the foreground colour of the window.  <a href="#a69f1e1c7ddd370d72e68c70f13ac8de9"></a><br/></td></tr>
<tr class="separator:a69f1e1c7ddd370d72e68c70f13ac8de9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9a3f9d8477aab1d9176cd66ee56e75d9">SetOwnBackgroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the background colour of the window but prevents it from being inherited by the children of this window.  <a href="#a9a3f9d8477aab1d9176cd66ee56e75d9"></a><br/></td></tr>
<tr class="separator:a9a3f9d8477aab1d9176cd66ee56e75d9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aaf4873525b3bf2fc20ccb76bd0738e41">InheritsBackgroundColour</a> () const </td></tr>
<tr class="memdesc:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> if this window inherits the background colour from its parent.  <a href="#aaf4873525b3bf2fc20ccb76bd0738e41"></a><br/></td></tr>
<tr class="separator:aaf4873525b3bf2fc20ccb76bd0738e41 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8b81b6d4c3294bffb6df30d2608227a">UseBgCol</a> () const </td></tr>
<tr class="memdesc:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> if a background colour has been set for this window.  <a href="#ab8b81b6d4c3294bffb6df30d2608227a"></a><br/></td></tr>
<tr class="separator:ab8b81b6d4c3294bffb6df30d2608227a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a89a4f62f23c1e7c845b8d07cecae4c43">SetOwnFont</a> (const <a class="el" href="classwx_font.html">wxFont</a> &amp;font)</td></tr>
<tr class="memdesc:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the font of the window but prevents it from being inherited by the children of this window.  <a href="#a89a4f62f23c1e7c845b8d07cecae4c43"></a><br/></td></tr>
<tr class="separator:a89a4f62f23c1e7c845b8d07cecae4c43 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a53f4a878e4e2d440bd00543f8014aaaa">SetOwnForegroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the foreground colour of the window but prevents it from being inherited by the children of this window.  <a href="#a53f4a878e4e2d440bd00543f8014aaaa"></a><br/></td></tr>
<tr class="separator:a53f4a878e4e2d440bd00543f8014aaaa inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee57358435d6bd33f598c81354b47425 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aee57358435d6bd33f598c81354b47425">SetPalette</a> (const <a class="el" href="classwx_palette.html">wxPalette</a> &amp;pal)</td></tr>
<tr class="separator:aee57358435d6bd33f598c81354b47425 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0c43a27fa04f9c17cc28fde71fdba490">ShouldInheritColours</a> () const </td></tr>
<tr class="memdesc:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return <span class="literal">true</span> from here to allow the colours of this window to be changed by <a class="el" href="classwx_window.html#a6b1bf9e099704e7a493b8c4666b1f7f7" title="This function is (or should be, in case of custom controls) called during window creation to intellig...">InheritAttributes()</a>.  <a href="#a0c43a27fa04f9c17cc28fde71fdba490"></a><br/></td></tr>
<tr class="separator:a0c43a27fa04f9c17cc28fde71fdba490 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a41dd19ed8809fd8ec662e2aa2a9579c3">SetThemeEnabled</a> (bool enable)</td></tr>
<tr class="memdesc:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function tells a window if it should use the system's "theme" code to draw the windows' background instead of its own background drawing code.  <a href="#a41dd19ed8809fd8ec662e2aa2a9579c3"></a><br/></td></tr>
<tr class="separator:a41dd19ed8809fd8ec662e2aa2a9579c3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0b31a21532407cf809d73aa09f34235c">GetThemeEnabled</a> () const </td></tr>
<tr class="memdesc:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears the window by filling it with the current background colour.  <a href="#a0b31a21532407cf809d73aa09f34235c"></a><br/></td></tr>
<tr class="separator:a0b31a21532407cf809d73aa09f34235c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a64f7f6fb75bf4b7281e1d33542d523c7">CanSetTransparent</a> ()</td></tr>
<tr class="memdesc:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the system supports transparent windows and calling <a class="el" href="classwx_window.html#ac8cf4398cec50ac36634760f45a0656f" title="Set the transparency of the window.">SetTransparent()</a> may succeed.  <a href="#a64f7f6fb75bf4b7281e1d33542d523c7"></a><br/></td></tr>
<tr class="separator:a64f7f6fb75bf4b7281e1d33542d523c7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac8cf4398cec50ac36634760f45a0656f">SetTransparent</a> (<a class="el" href="defs_8h.html#a02052a0390b909998c03fe2371d8e83e">wxByte</a> alpha)</td></tr>
<tr class="memdesc:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the transparency of the window.  <a href="#ac8cf4398cec50ac36634760f45a0656f"></a><br/></td></tr>
<tr class="separator:ac8cf4398cec50ac36634760f45a0656f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a72c2454cf309f30109da3cbfe237c760">GetEventHandler</a> () const </td></tr>
<tr class="memdesc:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the event handler for this window.  <a href="#a72c2454cf309f30109da3cbfe237c760"></a><br/></td></tr>
<tr class="separator:a72c2454cf309f30109da3cbfe237c760 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a89d1b079de97aac170e999692095872c">HandleAsNavigationKey</a> (const <a class="el" href="classwx_key_event.html">wxKeyEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function will generate the appropriate call to <a class="el" href="classwx_window.html#a86904f6785df4af6036b33383490a805" title="Performs a keyboard navigation action starting from this window.">Navigate()</a> if the key event is one normally used for keyboard navigation and return <span class="literal">true</span> in this case.  <a href="#a89d1b079de97aac170e999692095872c"></a><br/></td></tr>
<tr class="separator:a89d1b079de97aac170e999692095872c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a665731bbfa46a72c215b04df60216ef1">HandleWindowEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event) const </td></tr>
<tr class="memdesc:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shorthand for:  <a href="#a665731bbfa46a72c215b04df60216ef1"></a><br/></td></tr>
<tr class="separator:a665731bbfa46a72c215b04df60216ef1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a76891d726ad5f9a729e27e4eab2b57">ProcessWindowEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Convenient wrapper for <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a>.  <a href="#a0a76891d726ad5f9a729e27e4eab2b57"></a><br/></td></tr>
<tr class="separator:a0a76891d726ad5f9a729e27e4eab2b57 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a11aa4a50491d051f947e2618e52178">ProcessWindowEventLocally</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Wrapper for <a class="el" href="classwx_evt_handler.html#ac0f5d2cb29a04c1f7f82eb6b351f79fb" title="Try to process the event in this handler and all those chained to it.">wxEvtHandler::ProcessEventLocally()</a>.  <a href="#a0a11aa4a50491d051f947e2618e52178"></a><br/></td></tr>
<tr class="separator:a0a11aa4a50491d051f947e2618e52178 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac45c1f4cf96c70779764c14cf528790b">PopEventHandler</a> (bool deleteHandler=false)</td></tr>
<tr class="memdesc:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes and returns the top-most event handler on the event handler stack.  <a href="#ac45c1f4cf96c70779764c14cf528790b"></a><br/></td></tr>
<tr class="separator:ac45c1f4cf96c70779764c14cf528790b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a398c11ab9af7956067a964f560d1978c">PushEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pushes this event handler onto the event stack for the window.  <a href="#a398c11ab9af7956067a964f560d1978c"></a><br/></td></tr>
<tr class="separator:a398c11ab9af7956067a964f560d1978c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aacbfe424fa527966b954229a1db96ab5">RemoveEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the given <em>handler</em> in the windows event handler stack and removes (but does not delete) it from the stack.  <a href="#aacbfe424fa527966b954229a1db96ab5"></a><br/></td></tr>
<tr class="separator:aacbfe424fa527966b954229a1db96ab5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af6c84b7679183b377ba27a52a2f708b4">SetEventHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the event handler for this window.  <a href="#af6c84b7679183b377ba27a52a2f708b4"></a><br/></td></tr>
<tr class="separator:af6c84b7679183b377ba27a52a2f708b4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aeab905f61df7004c1b76a3351dca9e96">SetNextHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">wxWindows cannot be used to form event handler chains; this function thus will assert when called.  <a href="#aeab905f61df7004c1b76a3351dca9e96"></a><br/></td></tr>
<tr class="separator:aeab905f61df7004c1b76a3351dca9e96 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a07f5f7ed3f78e0ef7b3dee3f4da81001">SetPreviousHandler</a> (<a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *handler)</td></tr>
<tr class="memdesc:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">wxWindows cannot be used to form event handler chains; this function thus will assert when called.  <a href="#a07f5f7ed3f78e0ef7b3dee3f4da81001"></a><br/></td></tr>
<tr class="separator:a07f5f7ed3f78e0ef7b3dee3f4da81001 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8da0e59017af368c062f11c9abe2c667">GetExtraStyle</a> () const </td></tr>
<tr class="memdesc:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the extra style bits for the window.  <a href="#a8da0e59017af368c062f11c9abe2c667"></a><br/></td></tr>
<tr class="separator:a8da0e59017af368c062f11c9abe2c667 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a0e81677bf2f0de5982a634e11d9a69">GetWindowStyleFlag</a> () const </td></tr>
<tr class="memdesc:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the window style that was passed to the constructor or <a class="el" href="classwx_window.html#a95b7ca8faa033f5ab35458887c07bf38">Create()</a> method.  <a href="#a0a0e81677bf2f0de5982a634e11d9a69"></a><br/></td></tr>
<tr class="separator:a0a0e81677bf2f0de5982a634e11d9a69 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a994147d8294bd7d5a32c825d5692af28">GetWindowStyle</a> () const </td></tr>
<tr class="memdesc:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a0a0e81677bf2f0de5982a634e11d9a69" title="Gets the window style that was passed to the constructor or Create() method.">GetWindowStyleFlag()</a> for more info.  <a href="#a994147d8294bd7d5a32c825d5692af28"></a><br/></td></tr>
<tr class="separator:a994147d8294bd7d5a32c825d5692af28 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae30b415c1ef526563161efea5b78d640">HasExtraStyle</a> (int exFlag) const </td></tr>
<tr class="memdesc:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window has the given <em>exFlag</em> bit set in its extra styles.  <a href="#ae30b415c1ef526563161efea5b78d640"></a><br/></td></tr>
<tr class="separator:ae30b415c1ef526563161efea5b78d640 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a62ba2fb9be6422bf06bb7db5871d551f">HasFlag</a> (int flag) const </td></tr>
<tr class="memdesc:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window has the given <em>flag</em> bit set.  <a href="#a62ba2fb9be6422bf06bb7db5871d551f"></a><br/></td></tr>
<tr class="separator:a62ba2fb9be6422bf06bb7db5871d551f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae9655f7c35ce7ac89cac2f6c0054b103">SetExtraStyle</a> (long exStyle)</td></tr>
<tr class="memdesc:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the extra style bits for the window.  <a href="#ae9655f7c35ce7ac89cac2f6c0054b103"></a><br/></td></tr>
<tr class="separator:ae9655f7c35ce7ac89cac2f6c0054b103 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aee2cf342f80523432e7f2299d299451b">SetWindowStyleFlag</a> (long style)</td></tr>
<tr class="memdesc:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the style of the window.  <a href="#aee2cf342f80523432e7f2299d299451b"></a><br/></td></tr>
<tr class="separator:aee2cf342f80523432e7f2299d299451b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a306af30adec68689f74ed537b4f9d5fd">SetWindowStyle</a> (long style)</td></tr>
<tr class="memdesc:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#aee2cf342f80523432e7f2299d299451b" title="Sets the style of the window.">SetWindowStyleFlag()</a> for more info.  <a href="#a306af30adec68689f74ed537b4f9d5fd"></a><br/></td></tr>
<tr class="separator:a306af30adec68689f74ed537b4f9d5fd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8a4fa47129de552bfec37db8c69688a2">ToggleWindowStyle</a> (int flag)</td></tr>
<tr class="memdesc:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turns the given <em>flag</em> on if it's currently turned off and vice versa.  <a href="#a8a4fa47129de552bfec37db8c69688a2"></a><br/></td></tr>
<tr class="separator:a8a4fa47129de552bfec37db8c69688a2 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a79e66079125e8420de269811bdb6f2b6">MoveAfterInTabOrder</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="memdesc:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves this window in the tab navigation order after the specified <em>win</em>.  <a href="#a79e66079125e8420de269811bdb6f2b6"></a><br/></td></tr>
<tr class="separator:a79e66079125e8420de269811bdb6f2b6 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af2b92f61cd9f9e2e0efe4cce307e25b1">MoveBeforeInTabOrder</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="memdesc:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="classwx_window.html#a79e66079125e8420de269811bdb6f2b6" title="Moves this window in the tab navigation order after the specified win.">MoveAfterInTabOrder()</a> except that it inserts this window just before <em>win</em> instead of putting it right after it.  <a href="#af2b92f61cd9f9e2e0efe4cce307e25b1"></a><br/></td></tr>
<tr class="separator:af2b92f61cd9f9e2e0efe4cce307e25b1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a86904f6785df4af6036b33383490a805">Navigate</a> (int flags=<a class="el" href="classwx_navigation_key_event.html#afba5af727118cf1e63998282c307ba21a225d9ac21e815524d56648d47a1cbda4">wxNavigationKeyEvent::IsForward</a>)</td></tr>
<tr class="memdesc:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs a keyboard navigation action starting from this window.  <a href="#a86904f6785df4af6036b33383490a805"></a><br/></td></tr>
<tr class="separator:a86904f6785df4af6036b33383490a805 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa58039c8fc65e19160becf510ee1d1d5">NavigateIn</a> (int flags=<a class="el" href="classwx_navigation_key_event.html#afba5af727118cf1e63998282c307ba21a225d9ac21e815524d56648d47a1cbda4">wxNavigationKeyEvent::IsForward</a>)</td></tr>
<tr class="memdesc:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs a keyboard navigation action inside this window.  <a href="#aa58039c8fc65e19160becf510ee1d1d5"></a><br/></td></tr>
<tr class="separator:aa58039c8fc65e19160becf510ee1d1d5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a124944524f36b71385dad8fddaad8ded">Lower</a> ()</td></tr>
<tr class="memdesc:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Lowers the window to the bottom of the window hierarchy (Z-order).  <a href="#a124944524f36b71385dad8fddaad8ded"></a><br/></td></tr>
<tr class="separator:a124944524f36b71385dad8fddaad8ded inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a54808c933f22a891c5db646f6209fa4d">Raise</a> ()</td></tr>
<tr class="memdesc:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Raises the window to the top of the window hierarchy (Z-order).  <a href="#a54808c933f22a891c5db646f6209fa4d"></a><br/></td></tr>
<tr class="separator:a54808c933f22a891c5db646f6209fa4d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7ed103df04014cb3c59c6a3fb4d95328">Hide</a> ()</td></tr>
<tr class="memdesc:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Equivalent to calling <a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f" title="Shows or hides the window.">wxWindow::Show</a>(<span class="literal">false</span>).  <a href="#a7ed103df04014cb3c59c6a3fb4d95328"></a><br/></td></tr>
<tr class="separator:a7ed103df04014cb3c59c6a3fb4d95328 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5326fbb26557a224507a1c06e5640e89">HideWithEffect</a> (<a class="el" href="window_8h.html#a49efebddb5cf706e0eb819b434bdf918">wxShowEffect</a> effect, unsigned int timeout=0)</td></tr>
<tr class="memdesc:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function hides a window, like <a class="el" href="classwx_window.html#a7ed103df04014cb3c59c6a3fb4d95328" title="Equivalent to calling wxWindow::Show(false).">Hide()</a>, but using a special visual effect if possible.  <a href="#a5326fbb26557a224507a1c06e5640e89"></a><br/></td></tr>
<tr class="separator:a5326fbb26557a224507a1c06e5640e89 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a59452a5bd42f5ea4b31d7fc4aa59644f">IsEnabled</a> () const </td></tr>
<tr class="memdesc:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is enabled, i.e. if it accepts user input, <span class="literal">false</span> otherwise.  <a href="#a59452a5bd42f5ea4b31d7fc4aa59644f"></a><br/></td></tr>
<tr class="separator:a59452a5bd42f5ea4b31d7fc4aa59644f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af27ef77c913e32050543f3b0ca435a0d">IsExposed</a> (int x, int y) const </td></tr>
<tr class="memdesc:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given point or rectangle area has been exposed since the last repaint.  <a href="#af27ef77c913e32050543f3b0ca435a0d"></a><br/></td></tr>
<tr class="separator:af27ef77c913e32050543f3b0ca435a0d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a31af79f647cbec4950ce31620db51753">IsExposed</a> (<a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a31af79f647cbec4950ce31620db51753"></a><br/></td></tr>
<tr class="separator:a31af79f647cbec4950ce31620db51753 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a23e724619ec070f7d5c45ba21529d5">IsExposed</a> (int x, int y, int w, int h) const </td></tr>
<tr class="memdesc:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a4a23e724619ec070f7d5c45ba21529d5"></a><br/></td></tr>
<tr class="separator:a4a23e724619ec070f7d5c45ba21529d5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4da9a2d13534535aaf7b45200ee8728e">IsExposed</a> (<a class="el" href="classwx_rect.html">wxRect</a> &amp;rect) const </td></tr>
<tr class="memdesc:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a4da9a2d13534535aaf7b45200ee8728e"></a><br/></td></tr>
<tr class="separator:a4da9a2d13534535aaf7b45200ee8728e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a95af3a39aa422580dae156ed281a7e88">IsShown</a> () const </td></tr>
<tr class="memdesc:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is shown, <span class="literal">false</span> if it has been hidden.  <a href="#a95af3a39aa422580dae156ed281a7e88"></a><br/></td></tr>
<tr class="separator:a95af3a39aa422580dae156ed281a7e88 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a72d70fd14e3565bf782fbcd3271d8930">IsShownOnScreen</a> () const </td></tr>
<tr class="memdesc:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is physically visible on the screen, i.e. it is shown and all its parents up to the toplevel window are shown as well.  <a href="#a72d70fd14e3565bf782fbcd3271d8930"></a><br/></td></tr>
<tr class="separator:a72d70fd14e3565bf782fbcd3271d8930 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a26d7329a9a753fa0445501f01f66c41e">Disable</a> ()</td></tr>
<tr class="memdesc:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disables the window.  <a href="#a26d7329a9a753fa0445501f01f66c41e"></a><br/></td></tr>
<tr class="separator:a26d7329a9a753fa0445501f01f66c41e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4e933aa891f42fbb3b87438057c573af">Enable</a> (bool enable=true)</td></tr>
<tr class="memdesc:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enable or disable the window for user input.  <a href="#a4e933aa891f42fbb3b87438057c573af"></a><br/></td></tr>
<tr class="separator:a4e933aa891f42fbb3b87438057c573af inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f">Show</a> (bool show=true)</td></tr>
<tr class="memdesc:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows or hides the window.  <a href="#a7fbc92ce240a8d4f6956b6e0276ef07f"></a><br/></td></tr>
<tr class="separator:a7fbc92ce240a8d4f6956b6e0276ef07f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a596b1715edfc7609f352b2e000ecbaec">ShowWithEffect</a> (<a class="el" href="window_8h.html#a49efebddb5cf706e0eb819b434bdf918">wxShowEffect</a> effect, unsigned int timeout=0)</td></tr>
<tr class="memdesc:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a window, like <a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f" title="Shows or hides the window.">Show()</a>, but using a special visual effect if possible.  <a href="#a596b1715edfc7609f352b2e000ecbaec"></a><br/></td></tr>
<tr class="separator:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a77f8a4bbee228ed333af2e6a06509cff">GetHelpText</a> () const </td></tr>
<tr class="memdesc:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#a77f8a4bbee228ed333af2e6a06509cff"></a><br/></td></tr>
<tr class="separator:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4c1a2cbc7363237b3a7c70af4e702c72">SetHelpText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;helpText)</td></tr>
<tr class="memdesc:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the help text to be used as context-sensitive help for this window.  <a href="#a4c1a2cbc7363237b3a7c70af4e702c72"></a><br/></td></tr>
<tr class="separator:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa448f4e01bedc4a5e3d4324929e5d5d">GetHelpTextAtPoint</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;point, <a class="el" href="classwx_help_event.html#a29fe3ca1a548472f0abd0ae94b5def0c">wxHelpEvent::Origin</a> origin) const </td></tr>
<tr class="memdesc:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#afa448f4e01bedc4a5e3d4324929e5d5d"></a><br/></td></tr>
<tr class="separator:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_tip.html">wxToolTip</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aae94155ccf8a6e4e72ad08527c89ba89">GetToolTip</a> () const </td></tr>
<tr class="memdesc:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the associated tooltip or <span class="literal">NULL</span> if none.  <a href="#aae94155ccf8a6e4e72ad08527c89ba89"></a><br/></td></tr>
<tr class="separator:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad1a9c53c8e7e5010874f15b8ff4a6568">GetToolTipText</a> () const </td></tr>
<tr class="memdesc:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the text of the associated tooltip or empty string if none.  <a href="#ad1a9c53c8e7e5010874f15b8ff4a6568"></a><br/></td></tr>
<tr class="separator:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a81a9fb74e3c6c7f4416e882f5e589b8c">SetToolTip</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;tipString)</td></tr>
<tr class="memdesc:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Attach a tooltip to the window.  <a href="#a81a9fb74e3c6c7f4416e882f5e589b8c"></a><br/></td></tr>
<tr class="separator:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a494e0b7cfca9299caa40e847767e7357">SetToolTip</a> (<a class="el" href="classwx_tool_tip.html">wxToolTip</a> *tip)</td></tr>
<tr class="memdesc:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a494e0b7cfca9299caa40e847767e7357"></a><br/></td></tr>
<tr class="separator:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae75712451673658b0a533480bf5eeaa4">UnsetToolTip</a> ()</td></tr>
<tr class="memdesc:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unset any existing tooltip.  <a href="#ae75712451673658b0a533480bf5eeaa4"></a><br/></td></tr>
<tr class="separator:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b7de6ea85ca926b668ba0682a61a93e">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a popup menu at the given position in this window and returns the selected id.  <a href="#a9b7de6ea85ca926b668ba0682a61a93e"></a><br/></td></tr>
<tr class="separator:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00f5cb3cac003205317a565a33d4bb27">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, int x, int y)</td></tr>
<tr class="memdesc:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a00f5cb3cac003205317a565a33d4bb27"></a><br/></td></tr>
<tr class="separator:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up the given menu at the specified coordinates, relative to this window, and returns control when the user has dismissed the menu.  <a href="#a8f715d238cf74a845488b0e2645e98df"></a><br/></td></tr>
<tr class="separator:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a834bcdfd41f5e5370ebd9ea401c92900">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, int x, int y)</td></tr>
<tr class="memdesc:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a834bcdfd41f5e5370ebd9ea401c92900"></a><br/></td></tr>
<tr class="separator:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_validator.html">wxValidator</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a332586346cb9ece4a8fe058a7b88c4">GetValidator</a> ()</td></tr>
<tr class="memdesc:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator functions.  <a href="#a6a332586346cb9ece4a8fe058a7b88c4"></a><br/></td></tr>
<tr class="separator:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00066c70049a7be3ce6b648d206e6432">SetValidator</a> (const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator)</td></tr>
<tr class="memdesc:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes the current validator (if any) and sets the window validator, having called <a class="el" href="classwx_validator.html#a25a4e0250afe9451059fd7a967c4883f" title="All validator classes must implement the Clone() function, which returns an identical copy of itself...">wxValidator::Clone</a> to create a new validator of this type.  <a href="#a00066c70049a7be3ce6b648d206e6432"></a><br/></td></tr>
<tr class="separator:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8e51f36e7d8790b361c8d8c6f37b1ad">TransferDataFromWindow</a> ()</td></tr>
<tr class="memdesc:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values from child controls to data areas specified by their validators.  <a href="#ab8e51f36e7d8790b361c8d8c6f37b1ad"></a><br/></td></tr>
<tr class="separator:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a88cc65e424a129d9b0057756cdb67ec9">TransferDataToWindow</a> ()</td></tr>
<tr class="memdesc:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values to child controls from data areas specified by their validators.  <a href="#a88cc65e424a129d9b0057756cdb67ec9"></a><br/></td></tr>
<tr class="separator:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac87f253253a0c5eb498871c83afa40fd">Validate</a> ()</td></tr>
<tr class="memdesc:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validates the current values of the child controls using their validators.  <a href="#ac87f253253a0c5eb498871c83afa40fd"></a><br/></td></tr>
<tr class="separator:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4633b6ad527c921598f55af5274156f0">GetId</a> () const </td></tr>
<tr class="memdesc:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the identifier of the window.  <a href="#a4633b6ad527c921598f55af5274156f0"></a><br/></td></tr>
<tr class="separator:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a624f5fad4a603d58ffe94b058d4dda">GetLayoutDirection</a> () const </td></tr>
<tr class="memdesc:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the layout direction for this window, Note that <code>wxLayout_Default</code> is returned if layout direction is not supported.  <a href="#a0a624f5fad4a603d58ffe94b058d4dda"></a><br/></td></tr>
<tr class="separator:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa48188539f128689a3286a058f0394a8">AdjustForLayoutDirection</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> width, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> widthTotal) const </td></tr>
<tr class="memdesc:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mirror coordinates for RTL layout if this window uses it and if the mirroring is not done automatically like Win32.  <a href="#aa48188539f128689a3286a058f0394a8"></a><br/></td></tr>
<tr class="separator:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aab1b302c4bdabd134ce8d401dbaaf990">GetName</a> () const </td></tr>
<tr class="memdesc:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window's name.  <a href="#aab1b302c4bdabd134ce8d401dbaaf990"></a><br/></td></tr>
<tr class="separator:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aafcccd0d5d31651484df02453c53361c">GetWindowVariant</a> () const </td></tr>
<tr class="memdesc:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the value previously passed to <a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29" title="Chooses a different variant of the window display to use.">SetWindowVariant()</a>.  <a href="#aafcccd0d5d31651484df02453c53361c"></a><br/></td></tr>
<tr class="separator:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7f27d0faed14effa013381bdc40e1bcd">SetId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> winid)</td></tr>
<tr class="memdesc:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier of the window.  <a href="#a7f27d0faed14effa013381bdc40e1bcd"></a><br/></td></tr>
<tr class="separator:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9">SetLayoutDirection</a> (<a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a> dir)</td></tr>
<tr class="memdesc:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the layout direction for this window.  <a href="#a7d494549f7fcfed44af95f8ee364c1f9"></a><br/></td></tr>
<tr class="separator:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af80875cda5e1af98dcd7c8e712e3c800">SetName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name)</td></tr>
<tr class="memdesc:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's name.  <a href="#af80875cda5e1af98dcd7c8e712e3c800"></a><br/></td></tr>
<tr class="separator:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29">SetWindowVariant</a> (<a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a> variant)</td></tr>
<tr class="memdesc:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Chooses a different variant of the window display to use.  <a href="#acd955418c336e73b3e32cadf1ca46e29"></a><br/></td></tr>
<tr class="separator:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aefc02d7275010ebb8d5b66569e7287c4">GetAcceleratorTable</a> ()</td></tr>
<tr class="memdesc:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the accelerator table for this window.  <a href="#aefc02d7275010ebb8d5b66569e7287c4"></a><br/></td></tr>
<tr class="separator:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accessible.html">wxAccessible</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae0469b554e9c501b356b3ed4b6d8a3af">GetAccessible</a> ()</td></tr>
<tr class="memdesc:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the accessible object for this window, if any.  <a href="#ae0469b554e9c501b356b3ed4b6d8a3af"></a><br/></td></tr>
<tr class="separator:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0af5e9aa4dee6a4e92c0700f92605642">SetAcceleratorTable</a> (const <a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> &amp;accel)</td></tr>
<tr class="memdesc:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accelerator table for this window.  <a href="#a0af5e9aa4dee6a4e92c0700f92605642"></a><br/></td></tr>
<tr class="separator:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a413220ead41f05a2ec2cfe10b3d573df">SetAccessible</a> (<a class="el" href="classwx_accessible.html">wxAccessible</a> *accessible)</td></tr>
<tr class="memdesc:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accessible for this window.  <a href="#a413220ead41f05a2ec2cfe10b3d573df"></a><br/></td></tr>
<tr class="separator:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3e44f4a494fc9ef4346c4fba70c8de0c">Close</a> (bool force=false)</td></tr>
<tr class="memdesc:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function simply generates a <a class="el" href="classwx_close_event.html" title="This event class contains information about window and session close events.">wxCloseEvent</a> whose handler usually tries to close the window.  <a href="#a3e44f4a494fc9ef4346c4fba70c8de0c"></a><br/></td></tr>
<tr class="separator:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6bf0c5be864544d9ce0560087667b7fc">Destroy</a> ()</td></tr>
<tr class="memdesc:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys the window safely.  <a href="#a6bf0c5be864544d9ce0560087667b7fc"></a><br/></td></tr>
<tr class="separator:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af918e6fe8565c2d5235973cc3de84a43">IsBeingDeleted</a> () const </td></tr>
<tr class="memdesc:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this window is in process of being destroyed.  <a href="#af918e6fe8565c2d5235973cc3de84a43"></a><br/></td></tr>
<tr class="separator:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_drop_target.html">wxDropTarget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4511e71affd926a47c5c320563ca2df5">GetDropTarget</a> () const </td></tr>
<tr class="memdesc:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the associated drop target, which may be <span class="literal">NULL</span>.  <a href="#a4511e71affd926a47c5c320563ca2df5"></a><br/></td></tr>
<tr class="separator:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae34b4d45433ca8287df0e47d46411e58">SetDropTarget</a> (<a class="el" href="classwx_drop_target.html">wxDropTarget</a> *target)</td></tr>
<tr class="memdesc:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Associates a drop target with this window.  <a href="#ae34b4d45433ca8287df0e47d46411e58"></a><br/></td></tr>
<tr class="separator:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e7015bc61bd79b6821d2dccaecf9eda">DragAcceptFiles</a> (bool accept)</td></tr>
<tr class="memdesc:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables eligibility for drop file events (OnDropFiles).  <a href="#a7e7015bc61bd79b6821d2dccaecf9eda"></a><br/></td></tr>
<tr class="separator:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ade8de9a91bb5bf49c3a52e5262a5ffea">GetContainingSizer</a> () const </td></tr>
<tr class="memdesc:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ade8de9a91bb5bf49c3a52e5262a5ffea"></a><br/></td></tr>
<tr class="separator:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad8284cce1a2afe57724b52a89d7fac2f">GetSizer</a> () const </td></tr>
<tr class="memdesc:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer associated with the window by a previous call to <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a>, or <span class="literal">NULL</span>.  <a href="#ad8284cce1a2afe57724b52a89d7fac2f"></a><br/></td></tr>
<tr class="separator:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1">SetSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout sizer.  <a href="#abc95691b45e29a52c24aa9d33d46dec1"></a><br/></td></tr>
<tr class="separator:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29938af9828fd35da666536cdfb6b73c">SetSizerAndFit</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method calls <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a> and then <a class="el" href="classwx_sizer.html#abc460cd0e2bb3bde72142fdb434bc546" title="This method first calls Fit() and then wxTopLevelWindow::SetSizeHints() on the window passed to it...">wxSizer::SetSizeHints</a> which sets the initial window size to the size needed to accommodate all sizer elements and sets the size hints which, if this window is a top level one, prevent the user from resizing it to be less than this minimal size.  <a href="#a29938af9828fd35da666536cdfb6b73c"></a><br/></td></tr>
<tr class="separator:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac5664c7cd26848b5eebfaded2ecde7be">GetConstraints</a> () const </td></tr>
<tr class="memdesc:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the window's layout constraints, or <span class="literal">NULL</span> if there are none.  <a href="#ac5664c7cd26848b5eebfaded2ecde7be"></a><br/></td></tr>
<tr class="separator:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa75d111bbd9a68f837101a5fbed60a7">SetConstraints</a> (<a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *constraints)</td></tr>
<tr class="memdesc:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout constraints.  <a href="#afa75d111bbd9a68f837101a5fbed60a7"></a><br/></td></tr>
<tr class="separator:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1b143c3e72bd0af533b76db4830a6113">Layout</a> ()</td></tr>
<tr class="memdesc:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window.  <a href="#a1b143c3e72bd0af533b76db4830a6113"></a><br/></td></tr>
<tr class="separator:a1b143c3e72bd0af533b76db4830a6113 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad369fe1db5c20f9d9edff7b5eb1f7226">SetAutoLayout</a> (bool autoLayout)</td></tr>
<tr class="memdesc:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether the <a class="el" href="classwx_window.html#a1b143c3e72bd0af533b76db4830a6113" title="Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window...">Layout()</a> function will be called automatically when the window is resized.  <a href="#ad369fe1db5c20f9d9edff7b5eb1f7226"></a><br/></td></tr>
<tr class="separator:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7a9d7fca325112fae493a00d253b3be">GetAutoLayout</a> () const </td></tr>
<tr class="memdesc:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ad7a9d7fca325112fae493a00d253b3be"></a><br/></td></tr>
<tr class="separator:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef">CaptureMouse</a> ()</td></tr>
<tr class="memdesc:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Directs all mouse input to this window.  <a href="#a5c72c6260a73ef77bb0b1f7ec85fcfef"></a><br/></td></tr>
<tr class="separator:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_caret.html">wxCaret</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a83ed7c9d9252b912eebc753d6132245b">GetCaret</a> () const </td></tr>
<tr class="memdesc:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the caret() associated with the window.  <a href="#a83ed7c9d9252b912eebc753d6132245b"></a><br/></td></tr>
<tr class="separator:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7ce1e9af33e6be0b608813eff2d349c">GetCursor</a> () const </td></tr>
<tr class="memdesc:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the cursor associated with this window.  <a href="#ad7ce1e9af33e6be0b608813eff2d349c"></a><br/></td></tr>
<tr class="separator:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b44f61543b77317f9820e06856c5514">HasCapture</a> () const </td></tr>
<tr class="memdesc:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window has the current mouse capture.  <a href="#a9b44f61543b77317f9820e06856c5514"></a><br/></td></tr>
<tr class="separator:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adcc538819c11ecb3bd3e4e5d13c5ba7a">ReleaseMouse</a> ()</td></tr>
<tr class="memdesc:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Releases mouse input captured with <a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef" title="Directs all mouse input to this window.">CaptureMouse()</a>.  <a href="#adcc538819c11ecb3bd3e4e5d13c5ba7a"></a><br/></td></tr>
<tr class="separator:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acfef5e1cada92c73e2937b84ff57ff57">SetCaret</a> (<a class="el" href="classwx_caret.html">wxCaret</a> *caret)</td></tr>
<tr class="memdesc:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the caret() associated with the window.  <a href="#acfef5e1cada92c73e2937b84ff57ff57"></a><br/></td></tr>
<tr class="separator:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad83f9c51c6f31e0e05f598b47a19ed98">SetCursor</a> (const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;cursor)</td></tr>
<tr class="memdesc:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's cursor.  <a href="#ad83f9c51c6f31e0e05f598b47a19ed98"></a><br/></td></tr>
<tr class="separator:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac500152d1eca3a2ee98a68e7ea7372b5">WarpPointer</a> (int x, int y)</td></tr>
<tr class="memdesc:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the pointer to the given position on the window.  <a href="#ac500152d1eca3a2ee98a68e7ea7372b5"></a><br/></td></tr>
<tr class="separator:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a026b2a16a9f050deddd44e5586762c">HitTest</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y) const </td></tr>
<tr class="memdesc:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a6a026b2a16a9f050deddd44e5586762c"></a><br/></td></tr>
<tr class="separator:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a44f4d85f42fac6090a42cafd40f24ff5">HitTest</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a44f4d85f42fac6090a42cafd40f24ff5"></a><br/></td></tr>
<tr class="separator:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad95a95e683e57ac6365745b737571582">GetBorder</a> (long flags) const </td></tr>
<tr class="memdesc:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#ad95a95e683e57ac6365745b737571582"></a><br/></td></tr>
<tr class="separator:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa53c8d1b5af17a8fbbe8845210e2032b">GetBorder</a> () const </td></tr>
<tr class="memdesc:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get border for the flags of this window.  <a href="#aa53c8d1b5af17a8fbbe8845210e2032b"></a><br/></td></tr>
<tr class="separator:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae8a84a80645e99f4d24a22e5c386f626">DoUpdateWindowUI</a> (<a class="el" href="classwx_update_u_i_event.html">wxUpdateUIEvent</a> &amp;event)</td></tr>
<tr class="memdesc:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Does the window-specific updating after processing the update event.  <a href="#ae8a84a80645e99f4d24a22e5c386f626"></a><br/></td></tr>
<tr class="separator:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual WXWidget&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a185e6cd7065367b552748cb722651b27">GetHandle</a> () const </td></tr>
<tr class="memdesc:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the platform-specific handle of the physical window.  <a href="#a185e6cd7065367b552748cb722651b27"></a><br/></td></tr>
<tr class="separator:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abe1522483478b1f777ad8ef34fa7c44a">HasMultiplePages</a> () const </td></tr>
<tr class="memdesc:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method should be overridden to return <span class="literal">true</span> if this window has multiple pages.  <a href="#abe1522483478b1f777ad8ef34fa7c44a"></a><br/></td></tr>
<tr class="separator:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b1bf9e099704e7a493b8c4666b1f7f7">InheritAttributes</a> ()</td></tr>
<tr class="memdesc:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is (or should be, in case of custom controls) called during window creation to intelligently set up the window visual attributes, that is the font and the foreground and background colours.  <a href="#a6b1bf9e099704e7a493b8c4666b1f7f7"></a><br/></td></tr>
<tr class="separator:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa90a260c0a835a133043460b7d0024a8">InitDialog</a> ()</td></tr>
<tr class="memdesc:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sends an <code>wxEVT_INIT_DIALOG</code> event, whose handler usually transfers data to the dialog via validators.  <a href="#aa90a260c0a835a133043460b7d0024a8"></a><br/></td></tr>
<tr class="separator:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9d1be1bbb625ebf87ad4ad47e49a0194">IsDoubleBuffered</a> () const </td></tr>
<tr class="memdesc:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window contents is double-buffered by the system, i.e. if any drawing done on the window is really done on a temporary backing surface and transferred to the screen all at once later.  <a href="#a9d1be1bbb625ebf87ad4ad47e49a0194"></a><br/></td></tr>
<tr class="separator:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5477a89c17fdcc3ec6c90274796eb1c3">SetDoubleBuffered</a> (bool on)</td></tr>
<tr class="memdesc:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turn on or off double buffering of the window if the system supports it.  <a href="#a5477a89c17fdcc3ec6c90274796eb1c3"></a><br/></td></tr>
<tr class="separator:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae9b31dec54256b68574a4bba8cca94ab">IsRetained</a> () const </td></tr>
<tr class="memdesc:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is retained, <span class="literal">false</span> otherwise.  <a href="#ae9b31dec54256b68574a4bba8cca94ab"></a><br/></td></tr>
<tr class="separator:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a657ef8b6055eb06df894ac5e6ddfecf8">IsThisEnabled</a> () const </td></tr>
<tr class="memdesc:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window is intrinsically enabled, <span class="literal">false</span> otherwise, i.e. if <a class="el" href="classwx_window.html#a4e933aa891f42fbb3b87438057c573af">Enable()</a> Enable(<span class="literal">false</span>) had been called.  <a href="#a657ef8b6055eb06df894ac5e6ddfecf8"></a><br/></td></tr>
<tr class="separator:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0002826ad05f2a5661b4c8995713f37f">IsTopLevel</a> () const </td></tr>
<tr class="memdesc:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given window is a top-level one.  <a href="#a0002826ad05f2a5661b4c8995713f37f"></a><br/></td></tr>
<tr class="separator:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b5654c0c6c6245d592c279521f7099c">OnInternalIdle</a> ()</td></tr>
<tr class="memdesc:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is normally only used internally, but sometimes an application may need it to implement functionality that should not be disabled by an application defining an OnIdle handler in a derived class.  <a href="#a6b5654c0c6c6245d592c279521f7099c"></a><br/></td></tr>
<tr class="separator:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1afc1653413957537073c074dcc3eade">SendIdleEvents</a> (<a class="el" href="classwx_idle_event.html">wxIdleEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Send idle event to window and all subwindows.  <a href="#a1afc1653413957537073c074dcc3eade"></a><br/></td></tr>
<tr class="separator:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a53ca57872dac5851ea6ba55a494b899b">RegisterHotKey</a> (int hotkeyId, int modifiers, int virtualKeyCode)</td></tr>
<tr class="memdesc:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Registers a system wide hotkey.  <a href="#a53ca57872dac5851ea6ba55a494b899b"></a><br/></td></tr>
<tr class="separator:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a695f60d65f8f6c12e3c3645ad9c0c35b">UnregisterHotKey</a> (int hotkeyId)</td></tr>
<tr class="memdesc:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unregisters a system wide hotkey.  <a href="#a695f60d65f8f6c12e3c3645ad9c0c35b"></a><br/></td></tr>
<tr class="separator:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adf0a4987728bd0bf69f922641b3efbfc">UpdateWindowUI</a> (long flags=<a class="el" href="defs_8h.html#a125d733e58da75b9609114a226e4d81ca9edfae857d615d2de32b407a750a4af4">wxUPDATE_UI_NONE</a>)</td></tr>
<tr class="memdesc:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sends one or more <a class="el" href="classwx_update_u_i_event.html" title="This class is used for pseudo-events which are called by wxWidgets to give an application the chance ...">wxUpdateUIEvent</a> to the window.  <a href="#adf0a4987728bd0bf69f922641b3efbfc"></a><br/></td></tr>
<tr class="separator:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_evt_handler"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_evt_handler')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a></td></tr>
<tr class="memitem:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3f0166c4154227d05575b01eb2c8d4be">wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a3f0166c4154227d05575b01eb2c8d4be"></a><br/></td></tr>
<tr class="separator:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a372d2239d91521eddc8fd2715fcab584">~wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a372d2239d91521eddc8fd2715fcab584"></a><br/></td></tr>
<tr class="separator:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T , typename T1 , ... &gt; </td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a63c7351618fd77330d80a250b3719519">CallAfter</a> (void(T::*method)(T1,...), T1 x1,...)</td></tr>
<tr class="memdesc:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asynchronously call the given method.  <a href="#a63c7351618fd77330d80a250b3719519"></a><br/></td></tr>
<tr class="separator:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a910416e4d0b1f38cec02213b8a0c6a12">CallAfter</a> (const T &amp;functor)</td></tr>
<tr class="memdesc:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asynchronously call the given functor.  <a href="#a910416e4d0b1f38cec02213b8a0c6a12"></a><br/></td></tr>
<tr class="separator:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ac0f5d2cb29a04c1f7f82eb6b351f79fb">ProcessEventLocally</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Try to process the event in this handler and all those chained to it.  <a href="#ac0f5d2cb29a04c1f7f82eb6b351f79fb"></a><br/></td></tr>
<tr class="separator:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a8205cb1a5a00d8b550b3ead22266b16b">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Processes an event by calling <a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08" title="Processes an event, searching event tables and calling zero or more suitable event handler function(s...">ProcessEvent()</a> and handles any exceptions that occur in the process.  <a href="#a8205cb1a5a00d8b550b3ead22266b16b"></a><br/></td></tr>
<tr class="separator:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6f643dbdcf8e914ae1c8b70dd305e6f2">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Processes the pending events previously queued using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>; you must call this function only if you are sure there are pending events for this handler, otherwise a <code>wxCHECK</code> will fail.  <a href="#a6f643dbdcf8e914ae1c8b70dd305e6f2"></a><br/></td></tr>
<tr class="separator:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6e7f9cf4ebd0623c1d94979855d096f8">DeletePendingEvents</a> ()</td></tr>
<tr class="memdesc:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes all events queued on this event handler using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>.  <a href="#a6e7f9cf4ebd0623c1d94979855d096f8"></a><br/></td></tr>
<tr class="separator:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3c07426130d2868a5ae7fa918a251f49">SearchEventTable</a> (wxEventTable &amp;table, <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Searches the event table, executing an event handler function if an appropriate one is found.  <a href="#a3c07426130d2868a5ae7fa918a251f49"></a><br/></td></tr>
<tr class="separator:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943">Connect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Connects the given function dynamically with the event handler, id and event type.  <a href="#a78719e8b82c9f9c6e4056b3449df1943"></a><br/></td></tr>
<tr class="separator:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a1e8b5fc4c7e7f6d32d40bc00d4108ba4">Connect</a> (int id, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a1e8b5fc4c7e7f6d32d40bc00d4108ba4"></a><br/></td></tr>
<tr class="separator:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa290d9b67348e74c1da8497955a4e35c">Connect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#aa290d9b67348e74c1da8497955a4e35c"></a><br/></td></tr>
<tr class="separator:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc">Disconnect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disconnects the given function dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed.  <a href="#a13061cf0ed01ac10a804ac057ef4bdbc"></a><br/></td></tr>
<tr class="separator:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2f171e19444b9c4034c5e11f24fa9c91">Disconnect</a> (int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType=<a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a>, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a2f171e19444b9c4034c5e11f24fa9c91"></a><br/></td></tr>
<tr class="separator:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a16a6f823853e4b74b43dd9a2cf3abee6">Disconnect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a16a6f823853e4b74b43dd9a2cf3abee6"></a><br/></td></tr>
<tr class="separator:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62">Bind</a> (const EventTag &amp;eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Binds the given function, functor or method dynamically with the event.  <a href="#a0f30c8fa5583b4a5f661897d63de3b62"></a><br/></td></tr>
<tr class="separator:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a03cc68ca201fb79c7e837919025be71a">Bind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62" title="Binds the given function, functor or method dynamically with the event.">Bind&lt;&gt;(const EventTag&amp;, Functor, int, int, wxObject*)</a> overload for more info.  <a href="#a03cc68ca201fb79c7e837919025be71a"></a><br/></td></tr>
<tr class="separator:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da">Unbind</a> (const EventTag &amp;eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unbinds the given function, functor or method dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed.  <a href="#a2b7df8272075a96daea78cdd799c00da"></a><br/></td></tr>
<tr class="separator:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa49f9c4ad4462456b4fe4bd1ab53533d">Unbind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da" title="Unbinds the given function, functor or method dynamically from the event handler, using the specified...">Unbind&lt;&gt;(const EventTag&amp;, Functor, int, int, wxObject*)</a> overload for more info.  <a href="#aa49f9c4ad4462456b4fe4bd1ab53533d"></a><br/></td></tr>
<tr class="separator:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ad6e543115a9405962152630138645588">GetClientData</a> () const </td></tr>
<tr class="memdesc:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns user-supplied client data.  <a href="#ad6e543115a9405962152630138645588"></a><br/></td></tr>
<tr class="separator:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_client_data.html">wxClientData</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b3949eaba1f25cb48618163a7c0583b">GetClientObject</a> () const </td></tr>
<tr class="memdesc:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the user-supplied client data object.  <a href="#a2b3949eaba1f25cb48618163a7c0583b"></a><br/></td></tr>
<tr class="separator:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a82c74f2cebfa02cb3c1563d459c872bf">SetClientData</a> (void *data)</td></tr>
<tr class="memdesc:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets user-supplied client data.  <a href="#a82c74f2cebfa02cb3c1563d459c872bf"></a><br/></td></tr>
<tr class="separator:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#af1e33a06087b8b2ddc43c7d15a91b326">SetClientObject</a> (<a class="el" href="classwx_client_data.html">wxClientData</a> *data)</td></tr>
<tr class="memdesc:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the client data object.  <a href="#af1e33a06087b8b2ddc43c7d15a91b326"></a><br/></td></tr>
<tr class="separator:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a533e62afcb125abf1fcc8bb53fbc2e81">GetEvtHandlerEnabled</a> () const </td></tr>
<tr class="memdesc:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the event handler is enabled, <span class="literal">false</span> otherwise.  <a href="#a533e62afcb125abf1fcc8bb53fbc2e81"></a><br/></td></tr>
<tr class="separator:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a4b2f853f5c7a64432ae72f9b606698f9">GetNextHandler</a> () const </td></tr>
<tr class="memdesc:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the pointer to the next handler in the chain.  <a href="#a4b2f853f5c7a64432ae72f9b606698f9"></a><br/></td></tr>
<tr class="separator:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aad1ba7fa9ccbf12ee2d80f5f12350adb">GetPreviousHandler</a> () const </td></tr>
<tr class="memdesc:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the pointer to the previous handler in the chain.  <a href="#aad1ba7fa9ccbf12ee2d80f5f12350adb"></a><br/></td></tr>
<tr class="separator:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a7388ae19c8657e5656471b658c320036">SetEvtHandlerEnabled</a> (bool enabled)</td></tr>
<tr class="memdesc:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables the event handler.  <a href="#a7388ae19c8657e5656471b658c320036"></a><br/></td></tr>
<tr class="separator:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a22e5db2ec1d19c8252c056fd116975d7">Unlink</a> ()</td></tr>
<tr class="memdesc:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unlinks this event handler from the chain it's part of (if any); then links the "previous" event handler to the "next" one (so that the chain won't be interrupted).  <a href="#a22e5db2ec1d19c8252c056fd116975d7"></a><br/></td></tr>
<tr class="separator:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a360fdeefcf53b62fb49fb828406bb8a6">IsUnlinked</a> () const </td></tr>
<tr class="memdesc:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the next and the previous handler pointers of this event handler instance are <span class="literal">NULL</span>.  <a href="#a360fdeefcf53b62fb49fb828406bb8a6"></a><br/></td></tr>
<tr class="separator:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#acaa378363a28af421ab56ad7b46eadf0">wxObject</a> ()</td></tr>
<tr class="memdesc:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default ctor; initializes to <span class="literal">NULL</span> the internal reference data.  <a href="#acaa378363a28af421ab56ad7b46eadf0"></a><br/></td></tr>
<tr class="separator:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a4721b4dc9b7aff0f30904ba2ea3954cf">wxObject</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy ctor.  <a href="#a4721b4dc9b7aff0f30904ba2ea3954cf"></a><br/></td></tr>
<tr class="separator:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2a51aa8bfbab47ca2f051bcf84b3f35b">~wxObject</a> ()</td></tr>
<tr class="memdesc:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a2a51aa8bfbab47ca2f051bcf84b3f35b"></a><br/></td></tr>
<tr class="separator:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_class_info.html">wxClassInfo</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#ab3a0c6f723cbaddb47be4e8dd98cc8e2">GetClassInfo</a> () const </td></tr>
<tr class="memdesc:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is redefined for every class that requires run-time type information, when using the <a class="el" href="group__group__funcmacro__rtti.html#ga20465fc7e022e29a5dacfad46e152e75" title="Used inside a class declaration to declare that the class should be made known to the class hierarchy...">wxDECLARE_CLASS</a> macro (or similar).  <a href="#ab3a0c6f723cbaddb47be4e8dd98cc8e2"></a><br/></td></tr>
<tr class="separator:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#aabdb4fc957226544a8408167844e4f42">GetRefData</a> () const </td></tr>
<tr class="memdesc:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;s reference-counted data.">wxObject::m_refData</a> pointer, i.e. the data referenced by this object.  <a href="#aabdb4fc957226544a8408167844e4f42"></a><br/></td></tr>
<tr class="separator:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af40d580385cf4f8112fae7713404b01e">IsKindOf</a> (const <a class="el" href="classwx_class_info.html">wxClassInfo</a> *info) const </td></tr>
<tr class="memdesc:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether this class is a subclass of (or the same class as) the given class.  <a href="#af40d580385cf4f8112fae7713404b01e"></a><br/></td></tr>
<tr class="separator:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a80a1a3fda7b14396a9ddd3d7a46a88bd">IsSameAs</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this object has the same data pointer as <em>obj</em>.  <a href="#a80a1a3fda7b14396a9ddd3d7a46a88bd"></a><br/></td></tr>
<tr class="separator:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2f6f1aa51fe9fc2b1415ca4211a90e9e">Ref</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes this object refer to the data in <em>clone</em>.  <a href="#a2f6f1aa51fe9fc2b1415ca4211a90e9e"></a><br/></td></tr>
<tr class="separator:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#afab780710f2adc1bb33310e27590140b">SetRefData</a> (<a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data)</td></tr>
<tr class="memdesc:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;s reference-counted data.">wxObject::m_refData</a> pointer.  <a href="#afab780710f2adc1bb33310e27590140b"></a><br/></td></tr>
<tr class="separator:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af51efc6b1ae632fc7f0cd7ebbce9fa36">UnRef</a> ()</td></tr>
<tr class="memdesc:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decrements the reference count in the associated data, and if it is zero, deletes the data.  <a href="#af51efc6b1ae632fc7f0cd7ebbce9fa36"></a><br/></td></tr>
<tr class="separator:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a74b40e42d19a4b9e9bec0b57d62a5725">UnShare</a> ()</td></tr>
<tr class="memdesc:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object&#39;s data is not shared with any other object.">AllocExclusive()</a> but this method is public.  <a href="#a74b40e42d19a4b9e9bec0b57d62a5725"></a><br/></td></tr>
<tr class="separator:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a07b8f34f5afc5743195c5fed052f55d3">operator delete</a> (void *buf)</td></tr>
<tr class="memdesc:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">The <em>delete</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined.  <a href="#a07b8f34f5afc5743195c5fed052f55d3"></a><br/></td></tr>
<tr class="separator:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a96fa423a1dbc212c8227a5d83825971f">operator new</a> (size_t size, const <a class="el" href="classwx_string.html">wxString</a> &amp;filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">The <em>new</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined.  <a href="#a96fa423a1dbc212c8227a5d83825971f"></a><br/></td></tr>
<tr class="separator:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_with_images"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_with_images')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_with_images.html">wxWithImages</a></td></tr>
<tr class="memitem:ace26c8e42e40f25cdbcd05fc9a870484 inherit pub_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#ace26c8e42e40f25cdbcd05fc9a870484">wxWithImages</a> ()</td></tr>
<tr class="separator:ace26c8e42e40f25cdbcd05fc9a870484 inherit pub_methods_classwx_with_images"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a931475b0ae296c7d577e76b6d67f01ba inherit pub_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#a931475b0ae296c7d577e76b6d67f01ba">~wxWithImages</a> ()</td></tr>
<tr class="separator:a931475b0ae296c7d577e76b6d67f01ba inherit pub_methods_classwx_with_images"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab25ea07b6da88d532e224be8e037a816 inherit pub_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#ab25ea07b6da88d532e224be8e037a816">AssignImageList</a> (<a class="el" href="classwx_image_list.html">wxImageList</a> *imageList)</td></tr>
<tr class="memdesc:ab25ea07b6da88d532e224be8e037a816 inherit pub_methods_classwx_with_images"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the image list for the page control and takes ownership of the list.  <a href="#ab25ea07b6da88d532e224be8e037a816"></a><br/></td></tr>
<tr class="separator:ab25ea07b6da88d532e224be8e037a816 inherit pub_methods_classwx_with_images"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8436e7fdc49a5a23fdca2effebd319ef inherit pub_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#a8436e7fdc49a5a23fdca2effebd319ef">SetImageList</a> (<a class="el" href="classwx_image_list.html">wxImageList</a> *imageList)</td></tr>
<tr class="memdesc:a8436e7fdc49a5a23fdca2effebd319ef inherit pub_methods_classwx_with_images"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the image list to use.  <a href="#a8436e7fdc49a5a23fdca2effebd319ef"></a><br/></td></tr>
<tr class="separator:a8436e7fdc49a5a23fdca2effebd319ef inherit pub_methods_classwx_with_images"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7dab9774f31c09a1fa0837bb384eb106 inherit pub_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_image_list.html">wxImageList</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#a7dab9774f31c09a1fa0837bb384eb106">GetImageList</a> () const </td></tr>
<tr class="memdesc:a7dab9774f31c09a1fa0837bb384eb106 inherit pub_methods_classwx_with_images"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the associated image list, may be NULL.  <a href="#a7dab9774f31c09a1fa0837bb384eb106"></a><br/></td></tr>
<tr class="separator:a7dab9774f31c09a1fa0837bb384eb106 inherit pub_methods_classwx_with_images"><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_types_classwx_book_ctrl_base"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classwx_book_ctrl_base')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classwx_book_ctrl_base.html">wxBookCtrlBase</a></td></tr>
<tr class="memitem:a2329dd4eea633a8764dbc29ac353c1a6 inherit pub_types_classwx_book_ctrl_base"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom">{ <a class="el" href="classwx_book_ctrl_base.html#a2329dd4eea633a8764dbc29ac353c1a6a76a5551525c61310e58ed494b5d4d730">NO_IMAGE</a> = -1
 }</td></tr>
<tr class="separator:a2329dd4eea633a8764dbc29ac353c1a6 inherit pub_types_classwx_book_ctrl_base"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classwx_control"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_control')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classwx_control.html">wxControl</a></td></tr>
<tr class="memitem:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ae892fefe6b88168c158e11e975633665">GetLabelText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the given <em>label</em> string without mnemonics ("&amp;" characters).  <a href="#ae892fefe6b88168c158e11e975633665"></a><br/></td></tr>
<tr class="separator:ae892fefe6b88168c158e11e975633665 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#ab7df4ca0dfde3a6409833cf470ee02e6">RemoveMnemonics</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;str)</td></tr>
<tr class="memdesc:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the given <em>str</em> string without mnemonics ("&amp;" characters).  <a href="#ab7df4ca0dfde3a6409833cf470ee02e6"></a><br/></td></tr>
<tr class="separator:ab7df4ca0dfde3a6409833cf470ee02e6 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#abdbd9c0684856546671e759dd95b23d4">EscapeMnemonics</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;text)</td></tr>
<tr class="memdesc:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Escapes the special mnemonics characters ("&amp;") in the given string.  <a href="#abdbd9c0684856546671e759dd95b23d4"></a><br/></td></tr>
<tr class="separator:abdbd9c0684856546671e759dd95b23d4 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_control.html#a0bb834cae2a8986aceddb89f84ef4ed1">Ellipsize</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label, const <a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc, <a class="el" href="control_8h.html#a0293befa07fe89f6efd8caec89c3b489">wxEllipsizeMode</a> mode, int maxWidth, int flags=<a class="el" href="control_8h.html#ad7c89373a31bffb2388cfa2b98abea39acf249cd72de81f7da28aecb146975722">wxELLIPSIZE_FLAGS_DEFAULT</a>)</td></tr>
<tr class="memdesc:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="mdescLeft">&#160;</td><td class="mdescRight">Replaces parts of the <em>label</em> string with ellipsis, if needed, so that it fits into <em>maxWidth</em> pixels if possible.  <a href="#a0bb834cae2a8986aceddb89f84ef4ed1"></a><br/></td></tr>
<tr class="separator:a0bb834cae2a8986aceddb89f84ef4ed1 inherit pub_static_methods_classwx_control"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classwx_window"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2d10b472a4962d1c852c83d55252c44b">DoCentre</a> (int direction)</td></tr>
<tr class="memdesc:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window.  <a href="#a2d10b472a4962d1c852c83d55252c44b"></a><br/></td></tr>
<tr class="separator:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a01e7604ab0f0b2b1a8e322a630a4669e">DoGetBestSize</a> () const </td></tr>
<tr class="memdesc:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implementation of <a class="el" href="classwx_window.html#a7e64b9380374e5681f146e9e319e35e3" title="This functions returns the best acceptable minimal size for the window.">GetBestSize()</a> that can be overridden.  <a href="#a01e7604ab0f0b2b1a8e322a630a4669e"></a><br/></td></tr>
<tr class="separator:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afe8447cb5975584ee3d4a03e3d02ee89">DoGetBestClientSize</a> () const </td></tr>
<tr class="memdesc:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to return the best size for a custom control.  <a href="#afe8447cb5975584ee3d4a03e3d02ee89"></a><br/></td></tr>
<tr class="separator:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a7af6aa217c9aa41d7ba3def3564520">DoGetBestClientHeight</a> (int width) const </td></tr>
<tr class="memdesc:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement height-for-width best size calculation.  <a href="#a4a7af6aa217c9aa41d7ba3def3564520"></a><br/></td></tr>
<tr class="separator:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9325f81776ce7167a42b6dd72aa0bd5c">DoGetBestClientWidth</a> (int height) const </td></tr>
<tr class="memdesc:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement width-for-height best size calculation.  <a href="#a9325f81776ce7167a42b6dd72aa0bd5c"></a><br/></td></tr>
<tr class="separator:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae6dfe0b0d4a8c666b21ce8df8d96727b">SetInitialBestSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the initial window size if none is given (i.e. at least one of the components of the size passed to ctor/Create() is wxDefaultCoord).  <a href="#ae6dfe0b0d4a8c666b21ce8df8d96727b"></a><br/></td></tr>
<tr class="separator:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e21eb6a0819281b29134a6432d064fe">SendDestroyEvent</a> ()</td></tr>
<tr class="memdesc:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generate <a class="el" href="classwx_window_destroy_event.html" title="This event is sent as early as possible during the window destruction process.">wxWindowDestroyEvent</a> for this window.  <a href="#a7e21eb6a0819281b29134a6432d064fe"></a><br/></td></tr>
<tr class="separator:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96">ProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is public in <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a> but protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> because for wxWindows you should always call <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> on the pointer returned by <a class="el" href="classwx_window.html#a72c2454cf309f30109da3cbfe237c760" title="Returns the event handler for this window.">GetEventHandler()</a> and not on the <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> object itself.  <a href="#a5ebdbd87c28644149a07f1742996df96"></a><br/></td></tr>
<tr class="separator:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0f9814efc50316b4c57b7ec2bf78b716">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a0f9814efc50316b4c57b7ec2bf78b716"></a><br/></td></tr>
<tr class="separator:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a69e450f21b0d7013269ec1a4771f043b">QueueEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> *event)</td></tr>
<tr class="memdesc:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a69e450f21b0d7013269ec1a4771f043b"></a><br/></td></tr>
<tr class="separator:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a774b5b5548a6258727b5e2099e63ae9a">AddPendingEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a774b5b5548a6258727b5e2099e63ae9a"></a><br/></td></tr>
<tr class="separator:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7cbee38944dab02d753a4dba74230443">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a7cbee38944dab02d753a4dba74230443"></a><br/></td></tr>
<tr class="separator:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9350b3a9c2e380707eaea92cedad12a5">ProcessThreadEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a9350b3a9c2e380707eaea92cedad12a5"></a><br/></td></tr>
<tr class="separator:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classwx_with_images"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_with_images')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classwx_with_images.html">wxWithImages</a></td></tr>
<tr class="memitem:a828e23a0895ed6c664d077918eb7b5ee inherit pro_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#a828e23a0895ed6c664d077918eb7b5ee">HasImageList</a> () const </td></tr>
<tr class="memdesc:a828e23a0895ed6c664d077918eb7b5ee inherit pro_methods_classwx_with_images"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return true if we have a valid image list.  <a href="#a828e23a0895ed6c664d077918eb7b5ee"></a><br/></td></tr>
<tr class="separator:a828e23a0895ed6c664d077918eb7b5ee inherit pro_methods_classwx_with_images"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18df9cacf60a39bf0a7fb59d0eb18200 inherit pro_methods_classwx_with_images"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_icon.html">wxIcon</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_with_images.html#a18df9cacf60a39bf0a7fb59d0eb18200">GetImage</a> (int iconIndex) const </td></tr>
<tr class="memdesc:a18df9cacf60a39bf0a7fb59d0eb18200 inherit pro_methods_classwx_with_images"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the image with the given index from the image list.  <a href="#a18df9cacf60a39bf0a7fb59d0eb18200"></a><br/></td></tr>
<tr class="separator:a18df9cacf60a39bf0a7fb59d0eb18200 inherit pro_methods_classwx_with_images"><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="acf521d7cb242cd792756ff6959fec797"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxTreebook::wxTreebook </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Default constructor. </p>

</div>
</div>
<a class="anchor" id="a9206f1a4a98bc1defb9244284bb01ab8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxTreebook::wxTreebook </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em> = <code><a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em> = <code><a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>style</em> = <code><a class="el" href="interface_2wx_2bookctrl_8h.html#a7e388df7b1f655029adefef1faa6544d">wxBK_DEFAULT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates an empty <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>The parent window. Must be non-<span class="literal">NULL</span>. </td></tr>
    <tr><td class="paramname">id</td><td>The window identifier. </td></tr>
    <tr><td class="paramname">pos</td><td>The window position. </td></tr>
    <tr><td class="paramname">size</td><td>The window size. </td></tr>
    <tr><td class="paramname">style</td><td>The window style. See <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a>. </td></tr>
    <tr><td class="paramname">name</td><td>The name of the control (used only under Motif). </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac5aff81342da1459d1c1b26f8edf110d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual wxTreebook::~wxTreebook </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>Destroys the <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a> object. </p>
<p>Also deletes all the pages owned by the control (inserted previously into it). </p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a005654249564b0f3e3c1127bc33cfb8b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::AddPage </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>page</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>bSelect</em> = <code>false</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>imageId</em> = <code><a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Adds a new page. </p>
<p>The page is placed at the topmost level after all other pages. <span class="literal">NULL</span> could be specified for page to create an empty page. </p>

<p>Reimplemented from <a class="el" href="classwx_book_ctrl_base.html#ab47f8935c3705a452fce7d292d8181dd">wxBookCtrlBase</a>.</p>

</div>
</div>
<a class="anchor" id="a409e957bacff40d46c3ba9a6606fc0d2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::AddSubPage </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>page</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>bSelect</em> = <code>false</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>imageId</em> = <code><a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Adds a new child-page to the last top-level page. </p>
<p><span class="literal">NULL</span> could be specified for page to create an empty page. </p>

</div>
</div>
<a class="anchor" id="ae71d6c62bb452d6a808cf289b98ef30b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxTreebook::CollapseNode </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pageId</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Shortcut for <a class="el" href="classwx_treebook.html#add0b76a06599dc37b6275dc4b35ead79">ExpandNode</a>( <em>pageId</em>, <span class="literal">false</span> ). </p>

</div>
</div>
<a class="anchor" id="ac6ff8c68c20d71c2c7d4b96bbe7714ce"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxTreebook::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>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em> = <code><a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em> = <code><a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>style</em> = <code><a class="el" href="interface_2wx_2bookctrl_8h.html#a7e388df7b1f655029adefef1faa6544d">wxBK_DEFAULT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates a treebook control. </p>
<p>See <a class="el" href="classwx_treebook.html#acf521d7cb242cd792756ff6959fec797" title="Default constructor.">wxTreebook::wxTreebook()</a> for the description of the parameters. </p>

</div>
</div>
<a class="anchor" id="a7b46ac8ed525f1f0627671d3fb0bc5b6"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::DeletePage </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pagePos</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>Deletes the page at the specified position and all its children. </p>
<p>Could trigger page selection change in a case when selected page is removed. In that case its parent is selected (or the next page if no parent). </p>

<p>Reimplemented from <a class="el" href="classwx_book_ctrl_base.html#a7cbc19f60daf15af7019de20561b29f4">wxBookCtrlBase</a>.</p>

</div>
</div>
<a class="anchor" id="add0b76a06599dc37b6275dc4b35ead79"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::ExpandNode </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pageId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>expand</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Expands (collapses) the <em>pageId</em> node. </p>
<p>Returns the previous state. May generate page changing events (if selected page is under the collapsed branch, then its parent is autoselected). </p>

</div>
</div>
<a class="anchor" id="aaa20a6511cd3f7ff9aab45a5d50bc6ce"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxTreebook::GetPageParent </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>page</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the parent page of the given one or <code>wxNOT_FOUND</code> if this is a top-level page. </p>

</div>
</div>
<a class="anchor" id="afb6e45bb33306cb80b9a9a611a8478a1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual int wxTreebook::GetSelection </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the currently selected page, or <code>wxNOT_FOUND</code> if none was selected. </p>
<dl class="section note"><dt>Note</dt><dd>This method may return either the previously or newly selected page when called from the EVT_TREEBOOK_PAGE_CHANGED() handler depending on the platform and so <a class="el" href="classwx_book_ctrl_event.html#af2721f1f6e9d6e5b83612f03ef36c4b5" title="Returns the currently selected page, or wxNOT_FOUND if none was selected.">wxBookCtrlEvent::GetSelection()</a> should be used instead in this case. </dd></dl>

<p>Implements <a class="el" href="classwx_book_ctrl_base.html#a42b7d557ec288a1819b024613adf6315">wxBookCtrlBase</a>.</p>

</div>
</div>
<a class="anchor" id="a9491fe745b68b9a51063f8f3aac59376"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::InsertPage </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pagePos</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>page</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>bSelect</em> = <code>false</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>imageId</em> = <code><a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Inserts a new page just before the page indicated by <em>pagePos</em>. </p>
<p>The new page is placed before <em>pagePos</em> page and on the same level. <span class="literal">NULL</span> could be specified for page to create an empty page. </p>

<p>Implements <a class="el" href="classwx_book_ctrl_base.html#a2dcfe645ba865a3f44ebaf660a9ab0ed">wxBookCtrlBase</a>.</p>

</div>
</div>
<a class="anchor" id="ae3c46fd64891e13d511b4840b275143c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::InsertSubPage </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pagePos</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>page</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>bSelect</em> = <code>false</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>imageId</em> = <code><a class="el" href="defs_8h.html#a89de5e6353fc7812991b085e12263e98">wxNOT_FOUND</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Inserts a sub page under the specified page. </p>
<p><span class="literal">NULL</span> could be specified for page to create an empty page. </p>

</div>
</div>
<a class="anchor" id="afc4850f3cede0207a67187edc33cc91d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxTreebook::IsNodeExpanded </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>pageId</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if the page represented by <em>pageId</em> is expanded. </p>

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

<address class="footer">
	<small>
		Generated on Thu Nov 27 2014 13:47:01 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
	</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>