File: classwx_print_abort_dialog.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 (1398 lines) | stat: -rw-r--r-- 355,260 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
<!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: wxPrintAbortDialog 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_print_abort_dialog-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxPrintAbortDialog Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/print.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 wxPrintAbortDialog:</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_print_abort_dialog__inherit__graph.png" border="0" usemap="#wx_print_abort_dialog_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_print_abort_dialog_inherit__map" id="wx_print_abort_dialog_inherit__map">
<area shape="rect" id="node2" 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 ..." alt="" coords="60,393,132,421"/><area shape="rect" id="node4" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame." alt="" coords="29,315,163,343"/><area shape="rect" id="node6" href="classwx_non_owned_window.html" title="Common base class for all non&#45;child windows." alt="" coords="24,238,168,266"/><area shape="rect" id="node8" 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="node10" 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="node12" 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="node14" href="classwx_trackable.html" title="Add&#45;on base class for a trackable object." alt="" coords="104,6,197,34"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>The dialog created by default by the print framework that enables aborting the printing process. </p>
</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:acd2a68189872e03e82e22ba4e158e48b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_print_abort_dialog.html#acd2a68189872e03e82e22ba4e158e48b">wxPrintAbortDialog</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, const <a class="el" href="classwx_string.html">wxString</a> &amp;documentTitle, 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_2dialog_8h.html#a05926442fcb63ec70f4389a62729027a">wxDEFAULT_DIALOG_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=&quot;dialog&quot;)</td></tr>
<tr class="separator:acd2a68189872e03e82e22ba4e158e48b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed4ba13c34a8a256eec1ff139b11a6f2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_print_abort_dialog.html#aed4ba13c34a8a256eec1ff139b11a6f2">SetProgress</a> (int currentPage, int totalPages, int currentCopy, int totalCopies)</td></tr>
<tr class="separator:aed4ba13c34a8a256eec1ff139b11a6f2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_dialog"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_dialog')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_dialog.html">wxDialog</a></td></tr>
<tr class="memitem:a11f9715b3975218071a4de9b29a4ed03 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a11f9715b3975218071a4de9b29a4ed03">wxDialog</a> ()</td></tr>
<tr class="memdesc:a11f9715b3975218071a4de9b29a4ed03 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a11f9715b3975218071a4de9b29a4ed03"></a><br/></td></tr>
<tr class="separator:a11f9715b3975218071a4de9b29a4ed03 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0bbd20a18b306aad59429b9d6783d39b inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a0bbd20a18b306aad59429b9d6783d39b">wxDialog</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_string.html">wxString</a> &amp;title, 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_2dialog_8h.html#a05926442fcb63ec70f4389a62729027a">wxDEFAULT_DIALOG_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxDialogNameStr)</td></tr>
<tr class="memdesc:a0bbd20a18b306aad59429b9d6783d39b inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a0bbd20a18b306aad59429b9d6783d39b"></a><br/></td></tr>
<tr class="separator:a0bbd20a18b306aad59429b9d6783d39b inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9cf257635ad3273cde4a95a0d356657c inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a9cf257635ad3273cde4a95a0d356657c">~wxDialog</a> ()</td></tr>
<tr class="memdesc:a9cf257635ad3273cde4a95a0d356657c inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a9cf257635ad3273cde4a95a0d356657c"></a><br/></td></tr>
<tr class="separator:a9cf257635ad3273cde4a95a0d356657c inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af3a75b9d24abe5c79d1bb5397c67b108 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#af3a75b9d24abe5c79d1bb5397c67b108">AddMainButtonId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id)</td></tr>
<tr class="memdesc:af3a75b9d24abe5c79d1bb5397c67b108 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds an identifier to be regarded as a main button for the non-scrolling area of a dialog.  <a href="#af3a75b9d24abe5c79d1bb5397c67b108"></a><br/></td></tr>
<tr class="separator:af3a75b9d24abe5c79d1bb5397c67b108 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a233dd280efa8ee93c61792e439904731 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a233dd280efa8ee93c61792e439904731">CanDoLayoutAdaptation</a> ()</td></tr>
<tr class="memdesc:a233dd280efa8ee93c61792e439904731 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this dialog can and should perform layout adaptation using <a class="el" href="classwx_dialog.html#a919613599a9e919913146e21d09b44c0" title="Performs layout adaptation, usually if the dialog is too large to fit on the display.">DoLayoutAdaptation()</a>, usually if the dialog is too large to fit on the display.  <a href="#a233dd280efa8ee93c61792e439904731"></a><br/></td></tr>
<tr class="separator:a233dd280efa8ee93c61792e439904731 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6af384c4a558965bfee61784f5e0b7fc inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a6af384c4a558965bfee61784f5e0b7fc">Centre</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a6af384c4a558965bfee61784f5e0b7fc inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the dialog box on the display.  <a href="#a6af384c4a558965bfee61784f5e0b7fc"></a><br/></td></tr>
<tr class="separator:a6af384c4a558965bfee61784f5e0b7fc inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44e42338cb8bd2a1b312ab7a6f1722a3 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a44e42338cb8bd2a1b312ab7a6f1722a3">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_string.html">wxString</a> &amp;title, 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_2dialog_8h.html#a05926442fcb63ec70f4389a62729027a">wxDEFAULT_DIALOG_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxDialogNameStr)</td></tr>
<tr class="memdesc:a44e42338cb8bd2a1b312ab7a6f1722a3 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Used for two-step dialog box construction.  <a href="#a44e42338cb8bd2a1b312ab7a6f1722a3"></a><br/></td></tr>
<tr class="separator:a44e42338cb8bd2a1b312ab7a6f1722a3 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae362b7c61430593ef8ac5034f1bd92c8 inherit pub_methods_classwx_dialog"><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_dialog.html#ae362b7c61430593ef8ac5034f1bd92c8">CreateButtonSizer</a> (long flags)</td></tr>
<tr class="memdesc:ae362b7c61430593ef8ac5034f1bd92c8 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a sizer with standard buttons.  <a href="#ae362b7c61430593ef8ac5034f1bd92c8"></a><br/></td></tr>
<tr class="separator:ae362b7c61430593ef8ac5034f1bd92c8 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c6fb55be0b07b934b30550e0225df8f inherit pub_methods_classwx_dialog"><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_dialog.html#a0c6fb55be0b07b934b30550e0225df8f">CreateSeparatedButtonSizer</a> (long flags)</td></tr>
<tr class="memdesc:a0c6fb55be0b07b934b30550e0225df8f inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a sizer with standard buttons using <a class="el" href="classwx_dialog.html#ae362b7c61430593ef8ac5034f1bd92c8" title="Creates a sizer with standard buttons.">CreateButtonSizer()</a> separated from the rest of the dialog contents by a horizontal <a class="el" href="classwx_static_line.html" title="A static line is just a line which may be used in a dialog to separate the groups of controls...">wxStaticLine</a>.  <a href="#a0c6fb55be0b07b934b30550e0225df8f"></a><br/></td></tr>
<tr class="separator:a0c6fb55be0b07b934b30550e0225df8f inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7a5666b612d6cfdfb2660fd9bd3393e inherit pub_methods_classwx_dialog"><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_dialog.html#ab7a5666b612d6cfdfb2660fd9bd3393e">CreateSeparatedSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer)</td></tr>
<tr class="memdesc:ab7a5666b612d6cfdfb2660fd9bd3393e inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer containing the given one with a separating <a class="el" href="classwx_static_line.html" title="A static line is just a line which may be used in a dialog to separate the groups of controls...">wxStaticLine</a> if necessarily.  <a href="#ab7a5666b612d6cfdfb2660fd9bd3393e"></a><br/></td></tr>
<tr class="separator:ab7a5666b612d6cfdfb2660fd9bd3393e inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f2f565975f843035391ce62b0b9f8e8 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_std_dialog_button_sizer.html">wxStdDialogButtonSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a8f2f565975f843035391ce62b0b9f8e8">CreateStdDialogButtonSizer</a> (long flags)</td></tr>
<tr class="memdesc:a8f2f565975f843035391ce62b0b9f8e8 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a <a class="el" href="classwx_std_dialog_button_sizer.html" title="This class creates button layouts which conform to the standard button spacing and ordering defined b...">wxStdDialogButtonSizer</a> with standard buttons.  <a href="#a8f2f565975f843035391ce62b0b9f8e8"></a><br/></td></tr>
<tr class="separator:a8f2f565975f843035391ce62b0b9f8e8 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5bead5e932f17b7c2345dfc41b6cc79c inherit pub_methods_classwx_dialog"><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_dialog.html#a5bead5e932f17b7c2345dfc41b6cc79c">CreateTextSizer</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message)</td></tr>
<tr class="memdesc:a5bead5e932f17b7c2345dfc41b6cc79c inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Splits text up at newlines and places the lines into <a class="el" href="classwx_static_text.html" title="A static text control displays one or more lines of read-only text.">wxStaticText</a> objects in a vertical <a class="el" href="classwx_box_sizer.html" title="The basic idea behind a box sizer is that windows will most often be laid out in rather simple basic ...">wxBoxSizer</a>.  <a href="#a5bead5e932f17b7c2345dfc41b6cc79c"></a><br/></td></tr>
<tr class="separator:a5bead5e932f17b7c2345dfc41b6cc79c inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a919613599a9e919913146e21d09b44c0 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a919613599a9e919913146e21d09b44c0">DoLayoutAdaptation</a> ()</td></tr>
<tr class="memdesc:a919613599a9e919913146e21d09b44c0 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Performs layout adaptation, usually if the dialog is too large to fit on the display.  <a href="#a919613599a9e919913146e21d09b44c0"></a><br/></td></tr>
<tr class="separator:a919613599a9e919913146e21d09b44c0 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a08a07820be45f6c6fcde5c9e2f786389 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a08a07820be45f6c6fcde5c9e2f786389">DoOK</a> ()</td></tr>
<tr class="memdesc:a08a07820be45f6c6fcde5c9e2f786389 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is called when the titlebar OK button is pressed (PocketPC only).  <a href="#a08a07820be45f6c6fcde5c9e2f786389"></a><br/></td></tr>
<tr class="separator:a08a07820be45f6c6fcde5c9e2f786389 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89b6085b05b63e98001311fafcfb21f0 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a89b6085b05b63e98001311fafcfb21f0">EndModal</a> (int retCode)</td></tr>
<tr class="memdesc:a89b6085b05b63e98001311fafcfb21f0 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ends a modal dialog, passing a value to be returned from the <a class="el" href="classwx_dialog.html#a6e078c3d0653f75ad3c34a37c0b54637" title="Shows an application-modal dialog.">ShowModal()</a> invocation.  <a href="#a89b6085b05b63e98001311fafcfb21f0"></a><br/></td></tr>
<tr class="separator:a89b6085b05b63e98001311fafcfb21f0 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1dfa9d9b983615e6f350dbbfafbabe6 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ae1dfa9d9b983615e6f350dbbfafbabe6">GetAffirmativeId</a> () const </td></tr>
<tr class="memdesc:ae1dfa9d9b983615e6f350dbbfafbabe6 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the identifier of the button which works like standard OK button in this dialog.  <a href="#ae1dfa9d9b983615e6f350dbbfafbabe6"></a><br/></td></tr>
<tr class="separator:ae1dfa9d9b983615e6f350dbbfafbabe6 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee73457b69fb24e29a9039b6506eb92e inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#aee73457b69fb24e29a9039b6506eb92e">GetContentWindow</a> () const </td></tr>
<tr class="memdesc:aee73457b69fb24e29a9039b6506eb92e inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this to return a window containing the main content of the dialog.  <a href="#aee73457b69fb24e29a9039b6506eb92e"></a><br/></td></tr>
<tr class="separator:aee73457b69fb24e29a9039b6506eb92e inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae65d2ca1b31f331cb5b820509721d857 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ae65d2ca1b31f331cb5b820509721d857">GetEscapeId</a> () const </td></tr>
<tr class="memdesc:ae65d2ca1b31f331cb5b820509721d857 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the identifier of the button to map presses of <code>ESC</code> button to.  <a href="#ae65d2ca1b31f331cb5b820509721d857"></a><br/></td></tr>
<tr class="separator:ae65d2ca1b31f331cb5b820509721d857 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a52d7d0ff9942ce8fee87a07c8d45e8f7 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a52d7d0ff9942ce8fee87a07c8d45e8f7">GetLayoutAdaptationDone</a> () const </td></tr>
<tr class="memdesc:a52d7d0ff9942ce8fee87a07c8d45e8f7 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the dialog has been adapted, usually by making it scrollable to work with a small display.  <a href="#a52d7d0ff9942ce8fee87a07c8d45e8f7"></a><br/></td></tr>
<tr class="separator:a52d7d0ff9942ce8fee87a07c8d45e8f7 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef837b62721ec6d0043d2baa7da7d566 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#aef837b62721ec6d0043d2baa7da7d566">GetLayoutAdaptationLevel</a> () const </td></tr>
<tr class="memdesc:aef837b62721ec6d0043d2baa7da7d566 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets a value representing the aggressiveness of search for buttons and sizers to be in the non-scrolling part of a layout-adapted dialog.  <a href="#aef837b62721ec6d0043d2baa7da7d566"></a><br/></td></tr>
<tr class="separator:aef837b62721ec6d0043d2baa7da7d566 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e84aaae7dacd40639c6e76adab2bfbe inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top"><a class="el" href="interface_2wx_2dialog_8h.html#a5121a982861076ced173471760f36baf">wxDialogLayoutAdaptationMode</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a4e84aaae7dacd40639c6e76adab2bfbe">GetLayoutAdaptationMode</a> () const </td></tr>
<tr class="memdesc:a4e84aaae7dacd40639c6e76adab2bfbe inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the adaptation mode, overriding the global adaptation flag.  <a href="#a4e84aaae7dacd40639c6e76adab2bfbe"></a><br/></td></tr>
<tr class="separator:a4e84aaae7dacd40639c6e76adab2bfbe inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad32f9a1b42bb0ab4cea9816dbd4af4ea inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top"><a class="el" href="dynarray_8h.html#add87f199292e36ee87efd6d7f0d4ee66">wxArrayInt</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ad32f9a1b42bb0ab4cea9816dbd4af4ea">GetMainButtonIds</a> ()</td></tr>
<tr class="memdesc:ad32f9a1b42bb0ab4cea9816dbd4af4ea inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an array of identifiers to be regarded as the main buttons for the non-scrolling area of a dialog.  <a href="#ad32f9a1b42bb0ab4cea9816dbd4af4ea"></a><br/></td></tr>
<tr class="separator:ad32f9a1b42bb0ab4cea9816dbd4af4ea inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5f56f8d3ecc4336df4150aea989343df inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a5f56f8d3ecc4336df4150aea989343df">GetReturnCode</a> () const </td></tr>
<tr class="memdesc:a5f56f8d3ecc4336df4150aea989343df inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the return code for this window.  <a href="#a5f56f8d3ecc4336df4150aea989343df"></a><br/></td></tr>
<tr class="separator:a5f56f8d3ecc4336df4150aea989343df inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80c76ed6b8f6eb92992f816e1a987f80 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_bar.html">wxToolBar</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a80c76ed6b8f6eb92992f816e1a987f80">GetToolBar</a> () const </td></tr>
<tr class="memdesc:a80c76ed6b8f6eb92992f816e1a987f80 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">On PocketPC, a dialog is automatically provided with an empty toolbar.  <a href="#a80c76ed6b8f6eb92992f816e1a987f80"></a><br/></td></tr>
<tr class="separator:a80c76ed6b8f6eb92992f816e1a987f80 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afbc8650246551e62a37bf9667c05fc68 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#afbc8650246551e62a37bf9667c05fc68">Iconize</a> (bool iconize=true)</td></tr>
<tr class="memdesc:afbc8650246551e62a37bf9667c05fc68 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Iconizes or restores the dialog.  <a href="#afbc8650246551e62a37bf9667c05fc68"></a><br/></td></tr>
<tr class="separator:afbc8650246551e62a37bf9667c05fc68 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a08c94474dc5691639c519bd81b8dee inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a6a08c94474dc5691639c519bd81b8dee">IsIconized</a> () const </td></tr>
<tr class="memdesc:a6a08c94474dc5691639c519bd81b8dee inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the dialog box is iconized.  <a href="#a6a08c94474dc5691639c519bd81b8dee"></a><br/></td></tr>
<tr class="separator:a6a08c94474dc5691639c519bd81b8dee inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab300c0c3bdf454efb22e85bfc30a8e41 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ab300c0c3bdf454efb22e85bfc30a8e41">IsMainButtonId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id) const </td></tr>
<tr class="memdesc:ab300c0c3bdf454efb22e85bfc30a8e41 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if <em>id</em> is in the array of identifiers to be regarded as the main buttons for the non-scrolling area of a dialog.  <a href="#ab300c0c3bdf454efb22e85bfc30a8e41"></a><br/></td></tr>
<tr class="separator:ab300c0c3bdf454efb22e85bfc30a8e41 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c135c1ae94d87a64ab6b6390fa8ce1e inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a2c135c1ae94d87a64ab6b6390fa8ce1e">IsModal</a> () const </td></tr>
<tr class="memdesc:a2c135c1ae94d87a64ab6b6390fa8ce1e inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the dialog box is modal, <span class="literal">false</span> otherwise.  <a href="#a2c135c1ae94d87a64ab6b6390fa8ce1e"></a><br/></td></tr>
<tr class="separator:a2c135c1ae94d87a64ab6b6390fa8ce1e inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72ea7e269bedb2552bfeaccdbac07939 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a72ea7e269bedb2552bfeaccdbac07939">SetAffirmativeId</a> (int id)</td></tr>
<tr class="memdesc:a72ea7e269bedb2552bfeaccdbac07939 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier to be used as OK button.  <a href="#a72ea7e269bedb2552bfeaccdbac07939"></a><br/></td></tr>
<tr class="separator:a72ea7e269bedb2552bfeaccdbac07939 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a585869988e308f549128a6a065f387c6 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a585869988e308f549128a6a065f387c6">SetEscapeId</a> (int id)</td></tr>
<tr class="memdesc:a585869988e308f549128a6a065f387c6 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier of the button which should work like the standard "Cancel" button in this dialog.  <a href="#a585869988e308f549128a6a065f387c6"></a><br/></td></tr>
<tr class="separator:a585869988e308f549128a6a065f387c6 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a717435f3dd9d977feaa40fb359a6da84 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a717435f3dd9d977feaa40fb359a6da84">SetIcon</a> (const <a class="el" href="classwx_icon.html">wxIcon</a> &amp;icon)</td></tr>
<tr class="memdesc:a717435f3dd9d977feaa40fb359a6da84 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the icon for this dialog.  <a href="#a717435f3dd9d977feaa40fb359a6da84"></a><br/></td></tr>
<tr class="separator:a717435f3dd9d977feaa40fb359a6da84 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a25159a919f632d6b2d15f19a1bfbe639 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a25159a919f632d6b2d15f19a1bfbe639">SetIcons</a> (const <a class="el" href="classwx_icon_bundle.html">wxIconBundle</a> &amp;icons)</td></tr>
<tr class="memdesc:a25159a919f632d6b2d15f19a1bfbe639 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the icons for this dialog.  <a href="#a25159a919f632d6b2d15f19a1bfbe639"></a><br/></td></tr>
<tr class="separator:a25159a919f632d6b2d15f19a1bfbe639 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8b02ae4d97e300b4d7bbce6cc6af221 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ab8b02ae4d97e300b4d7bbce6cc6af221">SetLayoutAdaptationDone</a> (bool done)</td></tr>
<tr class="memdesc:ab8b02ae4d97e300b4d7bbce6cc6af221 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the dialog as having been adapted, usually by making it scrollable to work with a small display.  <a href="#ab8b02ae4d97e300b4d7bbce6cc6af221"></a><br/></td></tr>
<tr class="separator:ab8b02ae4d97e300b4d7bbce6cc6af221 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9eaef1625f225bc25f8c92449d123a67 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a9eaef1625f225bc25f8c92449d123a67">SetLayoutAdaptationLevel</a> (int level)</td></tr>
<tr class="memdesc:a9eaef1625f225bc25f8c92449d123a67 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the aggressiveness of search for buttons and sizers to be in the non-scrolling part of a layout-adapted dialog.  <a href="#a9eaef1625f225bc25f8c92449d123a67"></a><br/></td></tr>
<tr class="separator:a9eaef1625f225bc25f8c92449d123a67 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f949c545ca70571cec8cd2fcbfc0991 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a9f949c545ca70571cec8cd2fcbfc0991">SetLayoutAdaptationMode</a> (<a class="el" href="interface_2wx_2dialog_8h.html#a5121a982861076ced173471760f36baf">wxDialogLayoutAdaptationMode</a> mode)</td></tr>
<tr class="memdesc:a9f949c545ca70571cec8cd2fcbfc0991 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the adaptation mode, overriding the global adaptation flag.  <a href="#a9f949c545ca70571cec8cd2fcbfc0991"></a><br/></td></tr>
<tr class="separator:a9f949c545ca70571cec8cd2fcbfc0991 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0d04ed85ac5cd271a61514d446340673 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a0d04ed85ac5cd271a61514d446340673">SetReturnCode</a> (int retCode)</td></tr>
<tr class="memdesc:a0d04ed85ac5cd271a61514d446340673 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the return code for this window.  <a href="#a0d04ed85ac5cd271a61514d446340673"></a><br/></td></tr>
<tr class="separator:a0d04ed85ac5cd271a61514d446340673 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8e5fa98d473b812b8d1c2f163b65c67 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ae8e5fa98d473b812b8d1c2f163b65c67">Show</a> (bool show=1)</td></tr>
<tr class="memdesc:ae8e5fa98d473b812b8d1c2f163b65c67 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Hides or shows the dialog.  <a href="#ae8e5fa98d473b812b8d1c2f163b65c67"></a><br/></td></tr>
<tr class="separator:ae8e5fa98d473b812b8d1c2f163b65c67 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e078c3d0653f75ad3c34a37c0b54637 inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a6e078c3d0653f75ad3c34a37c0b54637">ShowModal</a> ()</td></tr>
<tr class="memdesc:a6e078c3d0653f75ad3c34a37c0b54637 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows an application-modal dialog.  <a href="#a6e078c3d0653f75ad3c34a37c0b54637"></a><br/></td></tr>
<tr class="separator:a6e078c3d0653f75ad3c34a37c0b54637 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c61636f657c0ae9503c4dfa534e073e inherit pub_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a5c61636f657c0ae9503c4dfa534e073e">ShowWindowModal</a> ()</td></tr>
<tr class="memdesc:a5c61636f657c0ae9503c4dfa534e073e inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog modal to the parent top level window only.  <a href="#a5c61636f657c0ae9503c4dfa534e073e"></a><br/></td></tr>
<tr class="separator:a5c61636f657c0ae9503c4dfa534e073e inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea762a9e04e46f5b080903daabe32197 inherit pub_methods_classwx_dialog"><td class="memTemplParams" colspan="2">template&lt;typename Functor &gt; </td></tr>
<tr class="memitem:aea762a9e04e46f5b080903daabe32197 inherit pub_methods_classwx_dialog"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#aea762a9e04e46f5b080903daabe32197">ShowWindowModalThenDo</a> (const Functor &amp;onEndModal)</td></tr>
<tr class="memdesc:aea762a9e04e46f5b080903daabe32197 inherit pub_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog modal to the parent top level window only and call a functor after the dialog is closed.  <a href="#aea762a9e04e46f5b080903daabe32197"></a><br/></td></tr>
<tr class="separator:aea762a9e04e46f5b080903daabe32197 inherit pub_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_top_level_window"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_top_level_window')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_top_level_window.html">wxTopLevelWindow</a></td></tr>
<tr class="memitem:abb919ad585057de6fce94bb7d5497256 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#abb919ad585057de6fce94bb7d5497256">wxTopLevelWindow</a> ()</td></tr>
<tr class="memdesc:abb919ad585057de6fce94bb7d5497256 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default ctor.  <a href="#abb919ad585057de6fce94bb7d5497256"></a><br/></td></tr>
<tr class="separator:abb919ad585057de6fce94bb7d5497256 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abddbaa0d42b46847b679464b485654be inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#abddbaa0d42b46847b679464b485654be">wxTopLevelWindow</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_string.html">wxString</a> &amp;title, 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="toplevel_8h.html#ab3ad2777e5178344fa798ec8fd8e95e2">wxDEFAULT_FRAME_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxFrameNameStr)</td></tr>
<tr class="memdesc:abddbaa0d42b46847b679464b485654be inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor creating the top level window.  <a href="#abddbaa0d42b46847b679464b485654be"></a><br/></td></tr>
<tr class="separator:abddbaa0d42b46847b679464b485654be inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a643df4d651b5394b8a674067aef4dd04 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a643df4d651b5394b8a674067aef4dd04">~wxTopLevelWindow</a> ()</td></tr>
<tr class="memdesc:a643df4d651b5394b8a674067aef4dd04 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a643df4d651b5394b8a674067aef4dd04"></a><br/></td></tr>
<tr class="separator:a643df4d651b5394b8a674067aef4dd04 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a03f383ee3a98f62b3419463f27f346 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a3a03f383ee3a98f62b3419463f27f346">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_string.html">wxString</a> &amp;title, 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="toplevel_8h.html#ab3ad2777e5178344fa798ec8fd8e95e2">wxDEFAULT_FRAME_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=wxFrameNameStr)</td></tr>
<tr class="memdesc:a3a03f383ee3a98f62b3419463f27f346 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates the top level window.  <a href="#a3a03f383ee3a98f62b3419463f27f346"></a><br/></td></tr>
<tr class="separator:a3a03f383ee3a98f62b3419463f27f346 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a392cf325512c5558d776ca85abc0c451 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a392cf325512c5558d776ca85abc0c451">CanSetTransparent</a> ()</td></tr>
<tr class="memdesc:a392cf325512c5558d776ca85abc0c451 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the platform supports making the window translucent.  <a href="#a392cf325512c5558d776ca85abc0c451"></a><br/></td></tr>
<tr class="separator:a392cf325512c5558d776ca85abc0c451 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adaaa8f83cde59e1c4c563c058b381ac4 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#adaaa8f83cde59e1c4c563c058b381ac4">CenterOnScreen</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:adaaa8f83cde59e1c4c563c058b381ac4 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A synonym for <a class="el" href="classwx_top_level_window.html#a1d28df1d739af6a3d5d2ec9e43b03c29" title="Centres the window on screen.">CentreOnScreen()</a>.  <a href="#adaaa8f83cde59e1c4c563c058b381ac4"></a><br/></td></tr>
<tr class="separator:adaaa8f83cde59e1c4c563c058b381ac4 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1d28df1d739af6a3d5d2ec9e43b03c29 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a1d28df1d739af6a3d5d2ec9e43b03c29">CentreOnScreen</a> (int direction=<a class="el" href="defs_8h.html#a1e6994f40bd9cb140e292afb165af971a31055fdab980125bf5a575f776066097">wxBOTH</a>)</td></tr>
<tr class="memdesc:a1d28df1d739af6a3d5d2ec9e43b03c29 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window on screen.  <a href="#a1d28df1d739af6a3d5d2ec9e43b03c29"></a><br/></td></tr>
<tr class="separator:a1d28df1d739af6a3d5d2ec9e43b03c29 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a78a9441746702894fba7653c2d98cb8d inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a78a9441746702894fba7653c2d98cb8d">EnableCloseButton</a> (bool enable=true)</td></tr>
<tr class="memdesc:a78a9441746702894fba7653c2d98cb8d inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables the Close button (most often in the right upper corner of a dialog) and the Close entry of the system menu (most often in the left upper corner of the dialog).  <a href="#a78a9441746702894fba7653c2d98cb8d"></a><br/></td></tr>
<tr class="separator:a78a9441746702894fba7653c2d98cb8d inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23d4891fff947cd3676c205dfbb59762 inherit pub_methods_classwx_top_level_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_top_level_window.html#a23d4891fff947cd3676c205dfbb59762">GetDefaultItem</a> () const </td></tr>
<tr class="memdesc:a23d4891fff947cd3676c205dfbb59762 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the button which is the default for this window, or <code></code> <span class="literal">NULL</span>.  <a href="#a23d4891fff947cd3676c205dfbb59762"></a><br/></td></tr>
<tr class="separator:a23d4891fff947cd3676c205dfbb59762 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8d348a7243dcdabafdd02999120f0fa4 inherit pub_methods_classwx_top_level_window"><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_top_level_window.html#a8d348a7243dcdabafdd02999120f0fa4">GetIcon</a> () const </td></tr>
<tr class="memdesc:a8d348a7243dcdabafdd02999120f0fa4 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the standard icon of the window.  <a href="#a8d348a7243dcdabafdd02999120f0fa4"></a><br/></td></tr>
<tr class="separator:a8d348a7243dcdabafdd02999120f0fa4 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ba40d042855f8f547d1845502ff4598 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_icon_bundle.html">wxIconBundle</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a9ba40d042855f8f547d1845502ff4598">GetIcons</a> () const </td></tr>
<tr class="memdesc:a9ba40d042855f8f547d1845502ff4598 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns all icons associated with the window, there will be none of them if neither <a class="el" href="classwx_top_level_window.html#a33dc013a7cb33384f631b2764ca53b06" title="Sets the icon for this window.">SetIcon()</a> nor <a class="el" href="classwx_top_level_window.html#a34270084ea5a46c12309abbb99f2004c" title="Sets several icons of different sizes for this window: this allows to use different icons for differe...">SetIcons()</a> had been called before.  <a href="#a9ba40d042855f8f547d1845502ff4598"></a><br/></td></tr>
<tr class="separator:a9ba40d042855f8f547d1845502ff4598 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9dd7cd78a4cdb7870152d9af7360d9b inherit pub_methods_classwx_top_level_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_top_level_window.html#ac9dd7cd78a4cdb7870152d9af7360d9b">GetTitle</a> () const </td></tr>
<tr class="memdesc:ac9dd7cd78a4cdb7870152d9af7360d9b inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets a string containing the window title.  <a href="#ac9dd7cd78a4cdb7870152d9af7360d9b"></a><br/></td></tr>
<tr class="separator:ac9dd7cd78a4cdb7870152d9af7360d9b inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac804159a17302c7e805d70ff4911318c inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#ac804159a17302c7e805d70ff4911318c">HandleSettingChange</a> (WXWPARAM wParam, WXLPARAM lParam)</td></tr>
<tr class="memdesc:ac804159a17302c7e805d70ff4911318c inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unique to the wxWinCE port.  <a href="#ac804159a17302c7e805d70ff4911318c"></a><br/></td></tr>
<tr class="separator:ac804159a17302c7e805d70ff4911318c inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa58f411cf488eb9279683b1d20a74b6 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#afa58f411cf488eb9279683b1d20a74b6">IsActive</a> ()</td></tr>
<tr class="memdesc:afa58f411cf488eb9279683b1d20a74b6 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window is currently active, i.e. if the user is currently working with it.  <a href="#afa58f411cf488eb9279683b1d20a74b6"></a><br/></td></tr>
<tr class="separator:afa58f411cf488eb9279683b1d20a74b6 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0c7a7cb6e6dfdf7e59300ee5d476ce3 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#ac0c7a7cb6e6dfdf7e59300ee5d476ce3">IsAlwaysMaximized</a> () const </td></tr>
<tr class="memdesc:ac0c7a7cb6e6dfdf7e59300ee5d476ce3 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window is expected to be always maximized, either due to platform policy or due to local policy regarding particular class.  <a href="#ac0c7a7cb6e6dfdf7e59300ee5d476ce3"></a><br/></td></tr>
<tr class="separator:ac0c7a7cb6e6dfdf7e59300ee5d476ce3 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8239216e113ae811ad5f517f256e2bed inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a8239216e113ae811ad5f517f256e2bed">IsFullScreen</a> () const </td></tr>
<tr class="memdesc:a8239216e113ae811ad5f517f256e2bed inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is in fullscreen mode.  <a href="#a8239216e113ae811ad5f517f256e2bed"></a><br/></td></tr>
<tr class="separator:a8239216e113ae811ad5f517f256e2bed inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0cefec818c018b44435d32a5cb78893c inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a0cefec818c018b44435d32a5cb78893c">IsMaximized</a> () const </td></tr>
<tr class="memdesc:a0cefec818c018b44435d32a5cb78893c inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is maximized.  <a href="#a0cefec818c018b44435d32a5cb78893c"></a><br/></td></tr>
<tr class="separator:a0cefec818c018b44435d32a5cb78893c inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a305c48ddb8e45f89add1694053185a7d inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a305c48ddb8e45f89add1694053185a7d">IsUsingNativeDecorations</a> () const </td></tr>
<tr class="memdesc:a305c48ddb8e45f89add1694053185a7d inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is specific to wxUniversal port.  <a href="#a305c48ddb8e45f89add1694053185a7d"></a><br/></td></tr>
<tr class="separator:a305c48ddb8e45f89add1694053185a7d inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adfe7e3f4a32f3ed178968f64431bbfe0 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#adfe7e3f4a32f3ed178968f64431bbfe0">Layout</a> ()</td></tr>
<tr class="memdesc:adfe7e3f4a32f3ed178968f64431bbfe0 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#ad369fe1db5c20f9d9edff7b5eb1f7226" title="Determines whether the Layout() function will be called automatically when the window is resized...">wxWindow::SetAutoLayout()</a>: when auto layout is on, this function gets called automatically when the window is resized.  <a href="#adfe7e3f4a32f3ed178968f64431bbfe0"></a><br/></td></tr>
<tr class="separator:adfe7e3f4a32f3ed178968f64431bbfe0 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:addb1612e9f00ac82c2e19c2bac6ffc4f inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#addb1612e9f00ac82c2e19c2bac6ffc4f">Maximize</a> (bool maximize=true)</td></tr>
<tr class="memdesc:addb1612e9f00ac82c2e19c2bac6ffc4f inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Maximizes or restores the window.  <a href="#addb1612e9f00ac82c2e19c2bac6ffc4f"></a><br/></td></tr>
<tr class="separator:addb1612e9f00ac82c2e19c2bac6ffc4f inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a503565e9c0a1f37a281b52e1d53029b6 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_menu.html">wxMenu</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a503565e9c0a1f37a281b52e1d53029b6">MSWGetSystemMenu</a> () const </td></tr>
<tr class="memdesc:a503565e9c0a1f37a281b52e1d53029b6 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">MSW-specific function for accessing the system menu.  <a href="#a503565e9c0a1f37a281b52e1d53029b6"></a><br/></td></tr>
<tr class="separator:a503565e9c0a1f37a281b52e1d53029b6 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a749d23ea08f6273fb93fe2c003b650b3 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a749d23ea08f6273fb93fe2c003b650b3">RequestUserAttention</a> (int flags=<a class="el" href="toplevel_8h.html#af715e26dfffd1f8de1c18449e2770cffa8108db1470990d8ff6bf08c195f11c4f">wxUSER_ATTENTION_INFO</a>)</td></tr>
<tr class="memdesc:a749d23ea08f6273fb93fe2c003b650b3 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Use a system-dependent way to attract users attention to the window when it is in background.  <a href="#a749d23ea08f6273fb93fe2c003b650b3"></a><br/></td></tr>
<tr class="separator:a749d23ea08f6273fb93fe2c003b650b3 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae27318a65876ca787c0483c960bdbb01 inherit pub_methods_classwx_top_level_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_top_level_window.html#ae27318a65876ca787c0483c960bdbb01">SetDefaultItem</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="memdesc:ae27318a65876ca787c0483c960bdbb01 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the default item for the panel, usually <em>win</em> is a button.  <a href="#ae27318a65876ca787c0483c960bdbb01"></a><br/></td></tr>
<tr class="separator:ae27318a65876ca787c0483c960bdbb01 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03d21174f2a9a527d6483c7562339167 inherit pub_methods_classwx_top_level_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_top_level_window.html#a03d21174f2a9a527d6483c7562339167">SetTmpDefaultItem</a> (<a class="el" href="classwx_window.html">wxWindow</a> *win)</td></tr>
<tr class="separator:a03d21174f2a9a527d6483c7562339167 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a48e119913454f2b548daeb1b093bc7 inherit pub_methods_classwx_top_level_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_top_level_window.html#a9a48e119913454f2b548daeb1b093bc7">GetTmpDefaultItem</a> () const </td></tr>
<tr class="separator:a9a48e119913454f2b548daeb1b093bc7 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a33dc013a7cb33384f631b2764ca53b06 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a33dc013a7cb33384f631b2764ca53b06">SetIcon</a> (const <a class="el" href="classwx_icon.html">wxIcon</a> &amp;icon)</td></tr>
<tr class="memdesc:a33dc013a7cb33384f631b2764ca53b06 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the icon for this window.  <a href="#a33dc013a7cb33384f631b2764ca53b06"></a><br/></td></tr>
<tr class="separator:a33dc013a7cb33384f631b2764ca53b06 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a198cff4212ff5342c0c4358b59274fd5 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a198cff4212ff5342c0c4358b59274fd5">SetLeftMenu</a> (int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;label=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_menu.html">wxMenu</a> *subMenu=NULL)</td></tr>
<tr class="memdesc:a198cff4212ff5342c0c4358b59274fd5 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets action or menu activated by pressing left hardware button on the smart phones.  <a href="#a198cff4212ff5342c0c4358b59274fd5"></a><br/></td></tr>
<tr class="separator:a198cff4212ff5342c0c4358b59274fd5 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd6d2cccfe0ba0ff91e36f4d16cf3c7b inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#afd6d2cccfe0ba0ff91e36f4d16cf3c7b">SetMaxSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:afd6d2cccfe0ba0ff91e36f4d16cf3c7b inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A simpler interface for setting the size hints than <a class="el" href="classwx_top_level_window.html#ac01a45e5d82e4e3be22a4841c1217e11" title="Allows specification of minimum and maximum window sizes, and window size increments.">SetSizeHints()</a>.  <a href="#afd6d2cccfe0ba0ff91e36f4d16cf3c7b"></a><br/></td></tr>
<tr class="separator:afd6d2cccfe0ba0ff91e36f4d16cf3c7b inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac491313979c027b67526786b06167e6d inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#ac491313979c027b67526786b06167e6d">SetMinSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ac491313979c027b67526786b06167e6d inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">A simpler interface for setting the size hints than <a class="el" href="classwx_top_level_window.html#ac01a45e5d82e4e3be22a4841c1217e11" title="Allows specification of minimum and maximum window sizes, and window size increments.">SetSizeHints()</a>.  <a href="#ac491313979c027b67526786b06167e6d"></a><br/></td></tr>
<tr class="separator:ac491313979c027b67526786b06167e6d inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a98e95b1b10f44b80f9b29a03ab09a879 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a98e95b1b10f44b80f9b29a03ab09a879">SetRightMenu</a> (int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;label=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_menu.html">wxMenu</a> *subMenu=NULL)</td></tr>
<tr class="memdesc:a98e95b1b10f44b80f9b29a03ab09a879 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets action or menu activated by pressing right hardware button on the smart phones.  <a href="#a98e95b1b10f44b80f9b29a03ab09a879"></a><br/></td></tr>
<tr class="separator:a98e95b1b10f44b80f9b29a03ab09a879 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac01a45e5d82e4e3be22a4841c1217e11 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#ac01a45e5d82e4e3be22a4841c1217e11">SetSizeHints</a> (int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1)</td></tr>
<tr class="memdesc:ac01a45e5d82e4e3be22a4841c1217e11 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Allows specification of minimum and maximum window sizes, and window size increments.  <a href="#ac01a45e5d82e4e3be22a4841c1217e11"></a><br/></td></tr>
<tr class="separator:ac01a45e5d82e4e3be22a4841c1217e11 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ddaae1bebf05a2bc474a192a5b30e42 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a4ddaae1bebf05a2bc474a192a5b30e42">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:a4ddaae1bebf05a2bc474a192a5b30e42 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Allows specification of minimum and maximum window sizes, and window size increments.  <a href="#a4ddaae1bebf05a2bc474a192a5b30e42"></a><br/></td></tr>
<tr class="separator:a4ddaae1bebf05a2bc474a192a5b30e42 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb944376c19d735a8251654ee4ac276f inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#afb944376c19d735a8251654ee4ac276f">SetTitle</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;title)</td></tr>
<tr class="memdesc:afb944376c19d735a8251654ee4ac276f inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window title.  <a href="#afb944376c19d735a8251654ee4ac276f"></a><br/></td></tr>
<tr class="separator:afb944376c19d735a8251654ee4ac276f inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8e37aff45a001a83ff49745298a6978e inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a8e37aff45a001a83ff49745298a6978e">SetTransparent</a> (<a class="el" href="defs_8h.html#a02052a0390b909998c03fe2371d8e83e">wxByte</a> alpha)</td></tr>
<tr class="memdesc:a8e37aff45a001a83ff49745298a6978e inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">If the platform supports it will set the window to be translucent.  <a href="#a8e37aff45a001a83ff49745298a6978e"></a><br/></td></tr>
<tr class="separator:a8e37aff45a001a83ff49745298a6978e inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8a0024cce99199bc3ba70bbfb10ec620 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a8a0024cce99199bc3ba70bbfb10ec620">ShouldPreventAppExit</a> () const </td></tr>
<tr class="memdesc:a8a0024cce99199bc3ba70bbfb10ec620 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is not meant to be called directly but can be overridden to return <span class="literal">false</span> (it returns <span class="literal">true</span> by default) to allow the application to close even if this, presumably not very important, window is still opened.  <a href="#a8a0024cce99199bc3ba70bbfb10ec620"></a><br/></td></tr>
<tr class="separator:a8a0024cce99199bc3ba70bbfb10ec620 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d102c9180b115a7a72b2e21f56cbc3e inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a6d102c9180b115a7a72b2e21f56cbc3e">OSXSetModified</a> (bool modified)</td></tr>
<tr class="memdesc:a6d102c9180b115a7a72b2e21f56cbc3e inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sets the <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a>'s modified state on OS X, which currently draws a black dot in the <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a>'s close button.  <a href="#a6d102c9180b115a7a72b2e21f56cbc3e"></a><br/></td></tr>
<tr class="separator:a6d102c9180b115a7a72b2e21f56cbc3e inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5890684b71321e27e8f3a223ad3c2445 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a5890684b71321e27e8f3a223ad3c2445">OSXIsModified</a> () const </td></tr>
<tr class="memdesc:a5890684b71321e27e8f3a223ad3c2445 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current modified state of the <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a> on OS X.  <a href="#a5890684b71321e27e8f3a223ad3c2445"></a><br/></td></tr>
<tr class="separator:a5890684b71321e27e8f3a223ad3c2445 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a82afa6f09dd5faef6330807ef59374e8 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a82afa6f09dd5faef6330807ef59374e8">SetRepresentedFilename</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;filename)</td></tr>
<tr class="memdesc:a82afa6f09dd5faef6330807ef59374e8 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the file name represented by this <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a>.  <a href="#a82afa6f09dd5faef6330807ef59374e8"></a><br/></td></tr>
<tr class="separator:a82afa6f09dd5faef6330807ef59374e8 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03e526f505716568318d601318527bd0 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a03e526f505716568318d601318527bd0">ShowWithoutActivating</a> ()</td></tr>
<tr class="memdesc:a03e526f505716568318d601318527bd0 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Show the <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a>, but do not give it keyboard focus.  <a href="#a03e526f505716568318d601318527bd0"></a><br/></td></tr>
<tr class="separator:a03e526f505716568318d601318527bd0 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab4089f1274bcb74e5f7763d1fb84ee28 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#ab4089f1274bcb74e5f7763d1fb84ee28">ShowFullScreen</a> (bool show, long style=<a class="el" href="toplevel_8h.html#afb730582952b7ceec73d7dc9bf7bef39a72ce60840ea903bc619581af981dab15">wxFULLSCREEN_ALL</a>)</td></tr>
<tr class="memdesc:ab4089f1274bcb74e5f7763d1fb84ee28 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Depending on the value of <em>show</em> parameter the window is either shown full screen or restored to its normal state.  <a href="#ab4089f1274bcb74e5f7763d1fb84ee28"></a><br/></td></tr>
<tr class="separator:ab4089f1274bcb74e5f7763d1fb84ee28 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4d13f215c9b4fbad26fced00eff20d90 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#a4d13f215c9b4fbad26fced00eff20d90">UseNativeDecorations</a> (bool native=true)</td></tr>
<tr class="memdesc:a4d13f215c9b4fbad26fced00eff20d90 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is specific to wxUniversal port.  <a href="#a4d13f215c9b4fbad26fced00eff20d90"></a><br/></td></tr>
<tr class="separator:a4d13f215c9b4fbad26fced00eff20d90 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd809e099fdd7cef3d9892167a477531 inherit pub_methods_classwx_top_level_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_top_level_window.html#afd809e099fdd7cef3d9892167a477531">UseNativeDecorationsByDefault</a> (bool native=true)</td></tr>
<tr class="memdesc:afd809e099fdd7cef3d9892167a477531 inherit pub_methods_classwx_top_level_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is specific to wxUniversal port.  <a href="#afd809e099fdd7cef3d9892167a477531"></a><br/></td></tr>
<tr class="separator:afd809e099fdd7cef3d9892167a477531 inherit pub_methods_classwx_top_level_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_non_owned_window"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_non_owned_window')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_non_owned_window.html">wxNonOwnedWindow</a></td></tr>
<tr class="memitem:a7f223eadbd72caea66efcb0b55e89613 inherit pub_methods_classwx_non_owned_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_non_owned_window.html#a7f223eadbd72caea66efcb0b55e89613">SetShape</a> (const <a class="el" href="classwx_region.html">wxRegion</a> &amp;region)</td></tr>
<tr class="memdesc:a7f223eadbd72caea66efcb0b55e89613 inherit pub_methods_classwx_non_owned_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">If the platform supports it, sets the shape of the window to that depicted by <em>region</em>.  <a href="#a7f223eadbd72caea66efcb0b55e89613"></a><br/></td></tr>
<tr class="separator:a7f223eadbd72caea66efcb0b55e89613 inherit pub_methods_classwx_non_owned_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa3c3e3fe90bd1b20407262157a593de7 inherit pub_methods_classwx_non_owned_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_non_owned_window.html#aa3c3e3fe90bd1b20407262157a593de7">SetShape</a> (const <a class="el" href="classwx_graphics_path.html">wxGraphicsPath</a> &amp;path)</td></tr>
<tr class="memdesc:aa3c3e3fe90bd1b20407262157a593de7 inherit pub_methods_classwx_non_owned_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the window shape to the given path.  <a href="#aa3c3e3fe90bd1b20407262157a593de7"></a><br/></td></tr>
<tr class="separator:aa3c3e3fe90bd1b20407262157a593de7 inherit pub_methods_classwx_non_owned_window"><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: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: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: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: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:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a596b1715edfc7609f352b2e000ecbaec">ShowWithEffect</a> (<a class="el" href="window_8h.html#a49efebddb5cf706e0eb819b434bdf918">wxShowEffect</a> effect, unsigned int timeout=0)</td></tr>
<tr class="memdesc:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a window, like <a class="el" href="classwx_window.html#a7fbc92ce240a8d4f6956b6e0276ef07f" title="Shows or hides the window.">Show()</a>, but using a special visual effect if possible.  <a href="#a596b1715edfc7609f352b2e000ecbaec"></a><br/></td></tr>
<tr class="separator:a596b1715edfc7609f352b2e000ecbaec inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a77f8a4bbee228ed333af2e6a06509cff">GetHelpText</a> () const </td></tr>
<tr class="memdesc:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#a77f8a4bbee228ed333af2e6a06509cff"></a><br/></td></tr>
<tr class="separator:a77f8a4bbee228ed333af2e6a06509cff inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4c1a2cbc7363237b3a7c70af4e702c72">SetHelpText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;helpText)</td></tr>
<tr class="memdesc:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the help text to be used as context-sensitive help for this window.  <a href="#a4c1a2cbc7363237b3a7c70af4e702c72"></a><br/></td></tr>
<tr class="separator:a4c1a2cbc7363237b3a7c70af4e702c72 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa448f4e01bedc4a5e3d4324929e5d5d">GetHelpTextAtPoint</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;point, <a class="el" href="classwx_help_event.html#a29fe3ca1a548472f0abd0ae94b5def0c">wxHelpEvent::Origin</a> origin) const </td></tr>
<tr class="memdesc:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the help text to be used as context-sensitive help for this window.  <a href="#afa448f4e01bedc4a5e3d4324929e5d5d"></a><br/></td></tr>
<tr class="separator:afa448f4e01bedc4a5e3d4324929e5d5d inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tool_tip.html">wxToolTip</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aae94155ccf8a6e4e72ad08527c89ba89">GetToolTip</a> () const </td></tr>
<tr class="memdesc:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the associated tooltip or <span class="literal">NULL</span> if none.  <a href="#aae94155ccf8a6e4e72ad08527c89ba89"></a><br/></td></tr>
<tr class="separator:aae94155ccf8a6e4e72ad08527c89ba89 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad1a9c53c8e7e5010874f15b8ff4a6568">GetToolTipText</a> () const </td></tr>
<tr class="memdesc:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the text of the associated tooltip or empty string if none.  <a href="#ad1a9c53c8e7e5010874f15b8ff4a6568"></a><br/></td></tr>
<tr class="separator:ad1a9c53c8e7e5010874f15b8ff4a6568 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a81a9fb74e3c6c7f4416e882f5e589b8c">SetToolTip</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;tipString)</td></tr>
<tr class="memdesc:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Attach a tooltip to the window.  <a href="#a81a9fb74e3c6c7f4416e882f5e589b8c"></a><br/></td></tr>
<tr class="separator:a81a9fb74e3c6c7f4416e882f5e589b8c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a494e0b7cfca9299caa40e847767e7357">SetToolTip</a> (<a class="el" href="classwx_tool_tip.html">wxToolTip</a> *tip)</td></tr>
<tr class="memdesc:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a494e0b7cfca9299caa40e847767e7357"></a><br/></td></tr>
<tr class="separator:a494e0b7cfca9299caa40e847767e7357 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae75712451673658b0a533480bf5eeaa4">UnsetToolTip</a> ()</td></tr>
<tr class="memdesc:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unset any existing tooltip.  <a href="#ae75712451673658b0a533480bf5eeaa4"></a><br/></td></tr>
<tr class="separator:ae75712451673658b0a533480bf5eeaa4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b7de6ea85ca926b668ba0682a61a93e">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a popup menu at the given position in this window and returns the selected id.  <a href="#a9b7de6ea85ca926b668ba0682a61a93e"></a><br/></td></tr>
<tr class="separator:a9b7de6ea85ca926b668ba0682a61a93e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00f5cb3cac003205317a565a33d4bb27">GetPopupMenuSelectionFromUser</a> (<a class="el" href="classwx_menu.html">wxMenu</a> &amp;menu, int x, int y)</td></tr>
<tr class="memdesc:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a00f5cb3cac003205317a565a33d4bb27"></a><br/></td></tr>
<tr class="separator:a00f5cb3cac003205317a565a33d4bb27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a8f715d238cf74a845488b0e2645e98df">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>)</td></tr>
<tr class="memdesc:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up the given menu at the specified coordinates, relative to this window, and returns control when the user has dismissed the menu.  <a href="#a8f715d238cf74a845488b0e2645e98df"></a><br/></td></tr>
<tr class="separator:a8f715d238cf74a845488b0e2645e98df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a834bcdfd41f5e5370ebd9ea401c92900">PopupMenu</a> (<a class="el" href="classwx_menu.html">wxMenu</a> *menu, int x, int y)</td></tr>
<tr class="memdesc:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.  <a href="#a834bcdfd41f5e5370ebd9ea401c92900"></a><br/></td></tr>
<tr class="separator:a834bcdfd41f5e5370ebd9ea401c92900 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_validator.html">wxValidator</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a332586346cb9ece4a8fe058a7b88c4">GetValidator</a> ()</td></tr>
<tr class="memdesc:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validator functions.  <a href="#a6a332586346cb9ece4a8fe058a7b88c4"></a><br/></td></tr>
<tr class="separator:a6a332586346cb9ece4a8fe058a7b88c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a00066c70049a7be3ce6b648d206e6432">SetValidator</a> (const <a class="el" href="classwx_validator.html">wxValidator</a> &amp;validator)</td></tr>
<tr class="memdesc:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes the current validator (if any) and sets the window validator, having called <a class="el" href="classwx_validator.html#a25a4e0250afe9451059fd7a967c4883f" title="All validator classes must implement the Clone() function, which returns an identical copy of itself...">wxValidator::Clone</a> to create a new validator of this type.  <a href="#a00066c70049a7be3ce6b648d206e6432"></a><br/></td></tr>
<tr class="separator:a00066c70049a7be3ce6b648d206e6432 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ab8e51f36e7d8790b361c8d8c6f37b1ad">TransferDataFromWindow</a> ()</td></tr>
<tr class="memdesc:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values from child controls to data areas specified by their validators.  <a href="#ab8e51f36e7d8790b361c8d8c6f37b1ad"></a><br/></td></tr>
<tr class="separator:ab8e51f36e7d8790b361c8d8c6f37b1ad inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a88cc65e424a129d9b0057756cdb67ec9">TransferDataToWindow</a> ()</td></tr>
<tr class="memdesc:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Transfers values to child controls from data areas specified by their validators.  <a href="#a88cc65e424a129d9b0057756cdb67ec9"></a><br/></td></tr>
<tr class="separator:a88cc65e424a129d9b0057756cdb67ec9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac87f253253a0c5eb498871c83afa40fd">Validate</a> ()</td></tr>
<tr class="memdesc:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Validates the current values of the child controls using their validators.  <a href="#ac87f253253a0c5eb498871c83afa40fd"></a><br/></td></tr>
<tr class="separator:ac87f253253a0c5eb498871c83afa40fd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4633b6ad527c921598f55af5274156f0">GetId</a> () const </td></tr>
<tr class="memdesc:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the identifier of the window.  <a href="#a4633b6ad527c921598f55af5274156f0"></a><br/></td></tr>
<tr class="separator:a4633b6ad527c921598f55af5274156f0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87fc676546f2ab837342b2e164dd52f0 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a87fc676546f2ab837342b2e164dd52f0">GetLabel</a> () const </td></tr>
<tr class="memdesc:a87fc676546f2ab837342b2e164dd52f0 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generic way of getting a label from any window, for identification purposes.  <a href="#a87fc676546f2ab837342b2e164dd52f0"></a><br/></td></tr>
<tr class="separator:a87fc676546f2ab837342b2e164dd52f0 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0a624f5fad4a603d58ffe94b058d4dda">GetLayoutDirection</a> () const </td></tr>
<tr class="memdesc:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the layout direction for this window, Note that <code>wxLayout_Default</code> is returned if layout direction is not supported.  <a href="#a0a624f5fad4a603d58ffe94b058d4dda"></a><br/></td></tr>
<tr class="separator:a0a624f5fad4a603d58ffe94b058d4dda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa48188539f128689a3286a058f0394a8">AdjustForLayoutDirection</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> width, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> widthTotal) const </td></tr>
<tr class="memdesc:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mirror coordinates for RTL layout if this window uses it and if the mirroring is not done automatically like Win32.  <a href="#aa48188539f128689a3286a058f0394a8"></a><br/></td></tr>
<tr class="separator:aa48188539f128689a3286a058f0394a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aab1b302c4bdabd134ce8d401dbaaf990">GetName</a> () const </td></tr>
<tr class="memdesc:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window's name.  <a href="#aab1b302c4bdabd134ce8d401dbaaf990"></a><br/></td></tr>
<tr class="separator:aab1b302c4bdabd134ce8d401dbaaf990 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aafcccd0d5d31651484df02453c53361c">GetWindowVariant</a> () const </td></tr>
<tr class="memdesc:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the value previously passed to <a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29" title="Chooses a different variant of the window display to use.">SetWindowVariant()</a>.  <a href="#aafcccd0d5d31651484df02453c53361c"></a><br/></td></tr>
<tr class="separator:aafcccd0d5d31651484df02453c53361c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7f27d0faed14effa013381bdc40e1bcd">SetId</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> winid)</td></tr>
<tr class="memdesc:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier of the window.  <a href="#a7f27d0faed14effa013381bdc40e1bcd"></a><br/></td></tr>
<tr class="separator:a7f27d0faed14effa013381bdc40e1bcd inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa00ffea9f53587f29ae343adde033b8e inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa00ffea9f53587f29ae343adde033b8e">SetLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label)</td></tr>
<tr class="memdesc:aa00ffea9f53587f29ae343adde033b8e inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's label.  <a href="#aa00ffea9f53587f29ae343adde033b8e"></a><br/></td></tr>
<tr class="separator:aa00ffea9f53587f29ae343adde033b8e inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9">SetLayoutDirection</a> (<a class="el" href="intl_8h.html#a7e30efec05ef9b40b1750ac046400c81">wxLayoutDirection</a> dir)</td></tr>
<tr class="memdesc:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the layout direction for this window.  <a href="#a7d494549f7fcfed44af95f8ee364c1f9"></a><br/></td></tr>
<tr class="separator:a7d494549f7fcfed44af95f8ee364c1f9 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af80875cda5e1af98dcd7c8e712e3c800">SetName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name)</td></tr>
<tr class="memdesc:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's name.  <a href="#af80875cda5e1af98dcd7c8e712e3c800"></a><br/></td></tr>
<tr class="separator:af80875cda5e1af98dcd7c8e712e3c800 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acd955418c336e73b3e32cadf1ca46e29">SetWindowVariant</a> (<a class="el" href="window_8h.html#a879bccd2c987fedf06030a8abcbba8ac">wxWindowVariant</a> variant)</td></tr>
<tr class="memdesc:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Chooses a different variant of the window display to use.  <a href="#acd955418c336e73b3e32cadf1ca46e29"></a><br/></td></tr>
<tr class="separator:acd955418c336e73b3e32cadf1ca46e29 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aefc02d7275010ebb8d5b66569e7287c4">GetAcceleratorTable</a> ()</td></tr>
<tr class="memdesc:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the accelerator table for this window.  <a href="#aefc02d7275010ebb8d5b66569e7287c4"></a><br/></td></tr>
<tr class="separator:aefc02d7275010ebb8d5b66569e7287c4 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_accessible.html">wxAccessible</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae0469b554e9c501b356b3ed4b6d8a3af">GetAccessible</a> ()</td></tr>
<tr class="memdesc:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the accessible object for this window, if any.  <a href="#ae0469b554e9c501b356b3ed4b6d8a3af"></a><br/></td></tr>
<tr class="separator:ae0469b554e9c501b356b3ed4b6d8a3af inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0af5e9aa4dee6a4e92c0700f92605642">SetAcceleratorTable</a> (const <a class="el" href="classwx_accelerator_table.html">wxAcceleratorTable</a> &amp;accel)</td></tr>
<tr class="memdesc:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accelerator table for this window.  <a href="#a0af5e9aa4dee6a4e92c0700f92605642"></a><br/></td></tr>
<tr class="separator:a0af5e9aa4dee6a4e92c0700f92605642 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a413220ead41f05a2ec2cfe10b3d573df">SetAccessible</a> (<a class="el" href="classwx_accessible.html">wxAccessible</a> *accessible)</td></tr>
<tr class="memdesc:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accessible for this window.  <a href="#a413220ead41f05a2ec2cfe10b3d573df"></a><br/></td></tr>
<tr class="separator:a413220ead41f05a2ec2cfe10b3d573df inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a3e44f4a494fc9ef4346c4fba70c8de0c">Close</a> (bool force=false)</td></tr>
<tr class="memdesc:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function simply generates a <a class="el" href="classwx_close_event.html" title="This event class contains information about window and session close events.">wxCloseEvent</a> whose handler usually tries to close the window.  <a href="#a3e44f4a494fc9ef4346c4fba70c8de0c"></a><br/></td></tr>
<tr class="separator:a3e44f4a494fc9ef4346c4fba70c8de0c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6bf0c5be864544d9ce0560087667b7fc">Destroy</a> ()</td></tr>
<tr class="memdesc:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroys the window safely.  <a href="#a6bf0c5be864544d9ce0560087667b7fc"></a><br/></td></tr>
<tr class="separator:a6bf0c5be864544d9ce0560087667b7fc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#af918e6fe8565c2d5235973cc3de84a43">IsBeingDeleted</a> () const </td></tr>
<tr class="memdesc:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns true if this window is in process of being destroyed.  <a href="#af918e6fe8565c2d5235973cc3de84a43"></a><br/></td></tr>
<tr class="separator:af918e6fe8565c2d5235973cc3de84a43 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_drop_target.html">wxDropTarget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4511e71affd926a47c5c320563ca2df5">GetDropTarget</a> () const </td></tr>
<tr class="memdesc:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the associated drop target, which may be <span class="literal">NULL</span>.  <a href="#a4511e71affd926a47c5c320563ca2df5"></a><br/></td></tr>
<tr class="separator:a4511e71affd926a47c5c320563ca2df5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae34b4d45433ca8287df0e47d46411e58">SetDropTarget</a> (<a class="el" href="classwx_drop_target.html">wxDropTarget</a> *target)</td></tr>
<tr class="memdesc:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Associates a drop target with this window.  <a href="#ae34b4d45433ca8287df0e47d46411e58"></a><br/></td></tr>
<tr class="separator:ae34b4d45433ca8287df0e47d46411e58 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e7015bc61bd79b6821d2dccaecf9eda">DragAcceptFiles</a> (bool accept)</td></tr>
<tr class="memdesc:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables eligibility for drop file events (OnDropFiles).  <a href="#a7e7015bc61bd79b6821d2dccaecf9eda"></a><br/></td></tr>
<tr class="separator:a7e7015bc61bd79b6821d2dccaecf9eda inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ade8de9a91bb5bf49c3a52e5262a5ffea">GetContainingSizer</a> () const </td></tr>
<tr class="memdesc:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ade8de9a91bb5bf49c3a52e5262a5ffea"></a><br/></td></tr>
<tr class="separator:ade8de9a91bb5bf49c3a52e5262a5ffea inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_sizer.html">wxSizer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad8284cce1a2afe57724b52a89d7fac2f">GetSizer</a> () const </td></tr>
<tr class="memdesc:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer associated with the window by a previous call to <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a>, or <span class="literal">NULL</span>.  <a href="#ad8284cce1a2afe57724b52a89d7fac2f"></a><br/></td></tr>
<tr class="separator:ad8284cce1a2afe57724b52a89d7fac2f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1">SetSizer</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout sizer.  <a href="#abc95691b45e29a52c24aa9d33d46dec1"></a><br/></td></tr>
<tr class="separator:abc95691b45e29a52c24aa9d33d46dec1 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a29938af9828fd35da666536cdfb6b73c">SetSizerAndFit</a> (<a class="el" href="classwx_sizer.html">wxSizer</a> *sizer, bool deleteOld=true)</td></tr>
<tr class="memdesc:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method calls <a class="el" href="classwx_window.html#abc95691b45e29a52c24aa9d33d46dec1" title="Sets the window to have the given layout sizer.">SetSizer()</a> and then <a class="el" href="classwx_sizer.html#abc460cd0e2bb3bde72142fdb434bc546" title="This method first calls Fit() and then wxTopLevelWindow::SetSizeHints() on the window passed to it...">wxSizer::SetSizeHints</a> which sets the initial window size to the size needed to accommodate all sizer elements and sets the size hints which, if this window is a top level one, prevent the user from resizing it to be less than this minimal size.  <a href="#a29938af9828fd35da666536cdfb6b73c"></a><br/></td></tr>
<tr class="separator:a29938af9828fd35da666536cdfb6b73c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac5664c7cd26848b5eebfaded2ecde7be">GetConstraints</a> () const </td></tr>
<tr class="memdesc:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the window's layout constraints, or <span class="literal">NULL</span> if there are none.  <a href="#ac5664c7cd26848b5eebfaded2ecde7be"></a><br/></td></tr>
<tr class="separator:ac5664c7cd26848b5eebfaded2ecde7be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afa75d111bbd9a68f837101a5fbed60a7">SetConstraints</a> (<a class="el" href="classwx_layout_constraints.html">wxLayoutConstraints</a> *constraints)</td></tr>
<tr class="memdesc:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window to have the given layout constraints.  <a href="#afa75d111bbd9a68f837101a5fbed60a7"></a><br/></td></tr>
<tr class="separator:afa75d111bbd9a68f837101a5fbed60a7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad369fe1db5c20f9d9edff7b5eb1f7226">SetAutoLayout</a> (bool autoLayout)</td></tr>
<tr class="memdesc:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether the <a class="el" href="classwx_window.html#a1b143c3e72bd0af533b76db4830a6113" title="Invokes the constraint-based layout algorithm or the sizer-based algorithm for this window...">Layout()</a> function will be called automatically when the window is resized.  <a href="#ad369fe1db5c20f9d9edff7b5eb1f7226"></a><br/></td></tr>
<tr class="separator:ad369fe1db5c20f9d9edff7b5eb1f7226 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7a9d7fca325112fae493a00d253b3be">GetAutoLayout</a> () const </td></tr>
<tr class="memdesc:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the sizer of which this window is a member, if any, otherwise <span class="literal">NULL</span>.  <a href="#ad7a9d7fca325112fae493a00d253b3be"></a><br/></td></tr>
<tr class="separator:ad7a9d7fca325112fae493a00d253b3be inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef">CaptureMouse</a> ()</td></tr>
<tr class="memdesc:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Directs all mouse input to this window.  <a href="#a5c72c6260a73ef77bb0b1f7ec85fcfef"></a><br/></td></tr>
<tr class="separator:a5c72c6260a73ef77bb0b1f7ec85fcfef inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_caret.html">wxCaret</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a83ed7c9d9252b912eebc753d6132245b">GetCaret</a> () const </td></tr>
<tr class="memdesc:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the caret() associated with the window.  <a href="#a83ed7c9d9252b912eebc753d6132245b"></a><br/></td></tr>
<tr class="separator:a83ed7c9d9252b912eebc753d6132245b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad7ce1e9af33e6be0b608813eff2d349c">GetCursor</a> () const </td></tr>
<tr class="memdesc:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the cursor associated with this window.  <a href="#ad7ce1e9af33e6be0b608813eff2d349c"></a><br/></td></tr>
<tr class="separator:ad7ce1e9af33e6be0b608813eff2d349c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9b44f61543b77317f9820e06856c5514">HasCapture</a> () const </td></tr>
<tr class="memdesc:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window has the current mouse capture.  <a href="#a9b44f61543b77317f9820e06856c5514"></a><br/></td></tr>
<tr class="separator:a9b44f61543b77317f9820e06856c5514 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adcc538819c11ecb3bd3e4e5d13c5ba7a">ReleaseMouse</a> ()</td></tr>
<tr class="memdesc:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Releases mouse input captured with <a class="el" href="classwx_window.html#a5c72c6260a73ef77bb0b1f7ec85fcfef" title="Directs all mouse input to this window.">CaptureMouse()</a>.  <a href="#adcc538819c11ecb3bd3e4e5d13c5ba7a"></a><br/></td></tr>
<tr class="separator:adcc538819c11ecb3bd3e4e5d13c5ba7a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#acfef5e1cada92c73e2937b84ff57ff57">SetCaret</a> (<a class="el" href="classwx_caret.html">wxCaret</a> *caret)</td></tr>
<tr class="memdesc:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the caret() associated with the window.  <a href="#acfef5e1cada92c73e2937b84ff57ff57"></a><br/></td></tr>
<tr class="separator:acfef5e1cada92c73e2937b84ff57ff57 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad83f9c51c6f31e0e05f598b47a19ed98">SetCursor</a> (const <a class="el" href="classwx_cursor.html">wxCursor</a> &amp;cursor)</td></tr>
<tr class="memdesc:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the window's cursor.  <a href="#ad83f9c51c6f31e0e05f598b47a19ed98"></a><br/></td></tr>
<tr class="separator:ad83f9c51c6f31e0e05f598b47a19ed98 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ac500152d1eca3a2ee98a68e7ea7372b5">WarpPointer</a> (int x, int y)</td></tr>
<tr class="memdesc:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves the pointer to the given position on the window.  <a href="#ac500152d1eca3a2ee98a68e7ea7372b5"></a><br/></td></tr>
<tr class="separator:ac500152d1eca3a2ee98a68e7ea7372b5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6a026b2a16a9f050deddd44e5586762c">HitTest</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y) const </td></tr>
<tr class="memdesc:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a6a026b2a16a9f050deddd44e5586762c"></a><br/></td></tr>
<tr class="separator:a6a026b2a16a9f050deddd44e5586762c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a9b85a92dd590efbbe1248e0a9fc90024">wxHitTest</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a44f4d85f42fac6090a42cafd40f24ff5">HitTest</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="memdesc:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#a44f4d85f42fac6090a42cafd40f24ff5"></a><br/></td></tr>
<tr class="separator:a44f4d85f42fac6090a42cafd40f24ff5 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ad95a95e683e57ac6365745b737571582">GetBorder</a> (long flags) const </td></tr>
<tr class="memdesc:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the window border style from the given flags: this is different from simply doing flags &amp; wxBORDER_MASK because it uses GetDefaultBorder() to translate wxBORDER_DEFAULT to something reasonable.  <a href="#ad95a95e683e57ac6365745b737571582"></a><br/></td></tr>
<tr class="separator:ad95a95e683e57ac6365745b737571582 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#af63c94dff4e3f25a3c5e9d2874456edf">wxBorder</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa53c8d1b5af17a8fbbe8845210e2032b">GetBorder</a> () const </td></tr>
<tr class="memdesc:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get border for the flags of this window.  <a href="#aa53c8d1b5af17a8fbbe8845210e2032b"></a><br/></td></tr>
<tr class="separator:aa53c8d1b5af17a8fbbe8845210e2032b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae8a84a80645e99f4d24a22e5c386f626">DoUpdateWindowUI</a> (<a class="el" href="classwx_update_u_i_event.html">wxUpdateUIEvent</a> &amp;event)</td></tr>
<tr class="memdesc:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Does the window-specific updating after processing the update event.  <a href="#ae8a84a80645e99f4d24a22e5c386f626"></a><br/></td></tr>
<tr class="separator:ae8a84a80645e99f4d24a22e5c386f626 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual WXWidget&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a185e6cd7065367b552748cb722651b27">GetHandle</a> () const </td></tr>
<tr class="memdesc:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the platform-specific handle of the physical window.  <a href="#a185e6cd7065367b552748cb722651b27"></a><br/></td></tr>
<tr class="separator:a185e6cd7065367b552748cb722651b27 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#abe1522483478b1f777ad8ef34fa7c44a">HasMultiplePages</a> () const </td></tr>
<tr class="memdesc:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method should be overridden to return <span class="literal">true</span> if this window has multiple pages.  <a href="#abe1522483478b1f777ad8ef34fa7c44a"></a><br/></td></tr>
<tr class="separator:abe1522483478b1f777ad8ef34fa7c44a inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b1bf9e099704e7a493b8c4666b1f7f7">InheritAttributes</a> ()</td></tr>
<tr class="memdesc:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is (or should be, in case of custom controls) called during window creation to intelligently set up the window visual attributes, that is the font and the foreground and background colours.  <a href="#a6b1bf9e099704e7a493b8c4666b1f7f7"></a><br/></td></tr>
<tr class="separator:a6b1bf9e099704e7a493b8c4666b1f7f7 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#aa90a260c0a835a133043460b7d0024a8">InitDialog</a> ()</td></tr>
<tr class="memdesc:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sends an <code>wxEVT_INIT_DIALOG</code> event, whose handler usually transfers data to the dialog via validators.  <a href="#aa90a260c0a835a133043460b7d0024a8"></a><br/></td></tr>
<tr class="separator:aa90a260c0a835a133043460b7d0024a8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9d1be1bbb625ebf87ad4ad47e49a0194">IsDoubleBuffered</a> () const </td></tr>
<tr class="memdesc:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window contents is double-buffered by the system, i.e. if any drawing done on the window is really done on a temporary backing surface and transferred to the screen all at once later.  <a href="#a9d1be1bbb625ebf87ad4ad47e49a0194"></a><br/></td></tr>
<tr class="separator:a9d1be1bbb625ebf87ad4ad47e49a0194 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5477a89c17fdcc3ec6c90274796eb1c3">SetDoubleBuffered</a> (bool on)</td></tr>
<tr class="memdesc:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turn on or off double buffering of the window if the system supports it.  <a href="#a5477a89c17fdcc3ec6c90274796eb1c3"></a><br/></td></tr>
<tr class="separator:a5477a89c17fdcc3ec6c90274796eb1c3 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae9b31dec54256b68574a4bba8cca94ab">IsRetained</a> () const </td></tr>
<tr class="memdesc:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the window is retained, <span class="literal">false</span> otherwise.  <a href="#ae9b31dec54256b68574a4bba8cca94ab"></a><br/></td></tr>
<tr class="separator:ae9b31dec54256b68574a4bba8cca94ab inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a657ef8b6055eb06df894ac5e6ddfecf8">IsThisEnabled</a> () const </td></tr>
<tr class="memdesc:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this window is intrinsically enabled, <span class="literal">false</span> otherwise, i.e. if <a class="el" href="classwx_window.html#a4e933aa891f42fbb3b87438057c573af">Enable()</a> Enable(<span class="literal">false</span>) had been called.  <a href="#a657ef8b6055eb06df894ac5e6ddfecf8"></a><br/></td></tr>
<tr class="separator:a657ef8b6055eb06df894ac5e6ddfecf8 inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0002826ad05f2a5661b4c8995713f37f">IsTopLevel</a> () const </td></tr>
<tr class="memdesc:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the given window is a top-level one.  <a href="#a0002826ad05f2a5661b4c8995713f37f"></a><br/></td></tr>
<tr class="separator:a0002826ad05f2a5661b4c8995713f37f inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a6b5654c0c6c6245d592c279521f7099c">OnInternalIdle</a> ()</td></tr>
<tr class="memdesc:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is normally only used internally, but sometimes an application may need it to implement functionality that should not be disabled by an application defining an OnIdle handler in a derived class.  <a href="#a6b5654c0c6c6245d592c279521f7099c"></a><br/></td></tr>
<tr class="separator:a6b5654c0c6c6245d592c279521f7099c inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a1afc1653413957537073c074dcc3eade">SendIdleEvents</a> (<a class="el" href="classwx_idle_event.html">wxIdleEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Send idle event to window and all subwindows.  <a href="#a1afc1653413957537073c074dcc3eade"></a><br/></td></tr>
<tr class="separator:a1afc1653413957537073c074dcc3eade inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a53ca57872dac5851ea6ba55a494b899b">RegisterHotKey</a> (int hotkeyId, int modifiers, int virtualKeyCode)</td></tr>
<tr class="memdesc:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Registers a system wide hotkey.  <a href="#a53ca57872dac5851ea6ba55a494b899b"></a><br/></td></tr>
<tr class="separator:a53ca57872dac5851ea6ba55a494b899b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a695f60d65f8f6c12e3c3645ad9c0c35b">UnregisterHotKey</a> (int hotkeyId)</td></tr>
<tr class="memdesc:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unregisters a system wide hotkey.  <a href="#a695f60d65f8f6c12e3c3645ad9c0c35b"></a><br/></td></tr>
<tr class="separator:a695f60d65f8f6c12e3c3645ad9c0c35b inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#adf0a4987728bd0bf69f922641b3efbfc">UpdateWindowUI</a> (long flags=<a class="el" href="defs_8h.html#a125d733e58da75b9609114a226e4d81ca9edfae857d615d2de32b407a750a4af4">wxUPDATE_UI_NONE</a>)</td></tr>
<tr class="memdesc:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sends one or more <a class="el" href="classwx_update_u_i_event.html" title="This class is used for pseudo-events which are called by wxWidgets to give an application the chance ...">wxUpdateUIEvent</a> to the window.  <a href="#adf0a4987728bd0bf69f922641b3efbfc"></a><br/></td></tr>
<tr class="separator:adf0a4987728bd0bf69f922641b3efbfc inherit pub_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_evt_handler"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_evt_handler')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a></td></tr>
<tr class="memitem:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3f0166c4154227d05575b01eb2c8d4be">wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a3f0166c4154227d05575b01eb2c8d4be"></a><br/></td></tr>
<tr class="separator:a3f0166c4154227d05575b01eb2c8d4be inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a372d2239d91521eddc8fd2715fcab584">~wxEvtHandler</a> ()</td></tr>
<tr class="memdesc:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a372d2239d91521eddc8fd2715fcab584"></a><br/></td></tr>
<tr class="separator:a372d2239d91521eddc8fd2715fcab584 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T , typename T1 , ... &gt; </td></tr>
<tr class="memitem:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a63c7351618fd77330d80a250b3719519">CallAfter</a> (void(T::*method)(T1,...), T1 x1,...)</td></tr>
<tr class="memdesc:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asynchronously call the given method.  <a href="#a63c7351618fd77330d80a250b3719519"></a><br/></td></tr>
<tr class="separator:a63c7351618fd77330d80a250b3719519 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a910416e4d0b1f38cec02213b8a0c6a12">CallAfter</a> (const T &amp;functor)</td></tr>
<tr class="memdesc:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Asynchronously call the given functor.  <a href="#a910416e4d0b1f38cec02213b8a0c6a12"></a><br/></td></tr>
<tr class="separator:a910416e4d0b1f38cec02213b8a0c6a12 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ac0f5d2cb29a04c1f7f82eb6b351f79fb">ProcessEventLocally</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Try to process the event in this handler and all those chained to it.  <a href="#ac0f5d2cb29a04c1f7f82eb6b351f79fb"></a><br/></td></tr>
<tr class="separator:ac0f5d2cb29a04c1f7f82eb6b351f79fb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a8205cb1a5a00d8b550b3ead22266b16b">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Processes an event by calling <a class="el" href="classwx_evt_handler.html#a65968dd27f3aac7718f2dd6b2ddd5a08" title="Processes an event, searching event tables and calling zero or more suitable event handler function(s...">ProcessEvent()</a> and handles any exceptions that occur in the process.  <a href="#a8205cb1a5a00d8b550b3ead22266b16b"></a><br/></td></tr>
<tr class="separator:a8205cb1a5a00d8b550b3ead22266b16b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6f643dbdcf8e914ae1c8b70dd305e6f2">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Processes the pending events previously queued using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>; you must call this function only if you are sure there are pending events for this handler, otherwise a <code>wxCHECK</code> will fail.  <a href="#a6f643dbdcf8e914ae1c8b70dd305e6f2"></a><br/></td></tr>
<tr class="separator:a6f643dbdcf8e914ae1c8b70dd305e6f2 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a6e7f9cf4ebd0623c1d94979855d096f8">DeletePendingEvents</a> ()</td></tr>
<tr class="memdesc:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Deletes all events queued on this event handler using <a class="el" href="classwx_evt_handler.html#acffd03bf407a856166ea71ef0318b59a" title="Queue event for a later processing.">QueueEvent()</a> or <a class="el" href="classwx_evt_handler.html#a0737c6d2cbcd5ded4b1ecdd53ed0def3" title="Post an event to be processed later.">AddPendingEvent()</a>.  <a href="#a6e7f9cf4ebd0623c1d94979855d096f8"></a><br/></td></tr>
<tr class="separator:a6e7f9cf4ebd0623c1d94979855d096f8 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a3c07426130d2868a5ae7fa918a251f49">SearchEventTable</a> (wxEventTable &amp;table, <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Searches the event table, executing an event handler function if an appropriate one is found.  <a href="#a3c07426130d2868a5ae7fa918a251f49"></a><br/></td></tr>
<tr class="separator:a3c07426130d2868a5ae7fa918a251f49 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943">Connect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Connects the given function dynamically with the event handler, id and event type.  <a href="#a78719e8b82c9f9c6e4056b3449df1943"></a><br/></td></tr>
<tr class="separator:a78719e8b82c9f9c6e4056b3449df1943 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a1e8b5fc4c7e7f6d32d40bc00d4108ba4">Connect</a> (int id, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a1e8b5fc4c7e7f6d32d40bc00d4108ba4"></a><br/></td></tr>
<tr class="separator:a1e8b5fc4c7e7f6d32d40bc00d4108ba4 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa290d9b67348e74c1da8497955a4e35c">Connect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a78719e8b82c9f9c6e4056b3449df1943" title="Connects the given function dynamically with the event handler, id and event type.">Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#aa290d9b67348e74c1da8497955a4e35c"></a><br/></td></tr>
<tr class="separator:aa290d9b67348e74c1da8497955a4e35c inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc">Disconnect</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disconnects the given function dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed.  <a href="#a13061cf0ed01ac10a804ac057ef4bdbc"></a><br/></td></tr>
<tr class="separator:a13061cf0ed01ac10a804ac057ef4bdbc inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2f171e19444b9c4034c5e11f24fa9c91">Disconnect</a> (int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType=<a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a>, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a2f171e19444b9c4034c5e11f24fa9c91"></a><br/></td></tr>
<tr class="separator:a2f171e19444b9c4034c5e11f24fa9c91 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a16a6f823853e4b74b43dd9a2cf3abee6">Disconnect</a> (int id, int lastId, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType, wxObjectEventFunction function=NULL, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL, <a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *eventSink=NULL)</td></tr>
<tr class="memdesc:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a13061cf0ed01ac10a804ac057ef4bdbc" title="Disconnects the given function dynamically from the event handler, using the specified parameters as ...">Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)</a> overload for more info.  <a href="#a16a6f823853e4b74b43dd9a2cf3abee6"></a><br/></td></tr>
<tr class="separator:a16a6f823853e4b74b43dd9a2cf3abee6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62">Bind</a> (const EventTag &amp;eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Binds the given function, functor or method dynamically with the event.  <a href="#a0f30c8fa5583b4a5f661897d63de3b62"></a><br/></td></tr>
<tr class="separator:a0f30c8fa5583b4a5f661897d63de3b62 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">void&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a03cc68ca201fb79c7e837919025be71a">Bind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a0f30c8fa5583b4a5f661897d63de3b62" title="Binds the given function, functor or method dynamically with the event.">Bind&lt;&gt;(const EventTag&amp;, Functor, int, int, wxObject*)</a> overload for more info.  <a href="#a03cc68ca201fb79c7e837919025be71a"></a><br/></td></tr>
<tr class="separator:a03cc68ca201fb79c7e837919025be71a inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Functor &gt; </td></tr>
<tr class="memitem:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da">Unbind</a> (const EventTag &amp;eventType, Functor functor, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unbinds the given function, functor or method dynamically from the event handler, using the specified parameters as search criteria and returning <span class="literal">true</span> if a matching function has been found and removed.  <a href="#a2b7df8272075a96daea78cdd799c00da"></a><br/></td></tr>
<tr class="separator:a2b7df8272075a96daea78cdd799c00da inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplParams" colspan="2">template&lt;typename EventTag , typename Class , typename EventArg , typename EventHandler &gt; </td></tr>
<tr class="memitem:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aa49f9c4ad4462456b4fe4bd1ab53533d">Unbind</a> (const EventTag &amp;eventType, void(Class::*method)(EventArg &amp;), EventHandler *handler, int id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, int lastId=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, <a class="el" href="classwx_object.html">wxObject</a> *userData=NULL)</td></tr>
<tr class="memdesc:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">See the <a class="el" href="classwx_evt_handler.html#a2b7df8272075a96daea78cdd799c00da" title="Unbinds the given function, functor or method dynamically from the event handler, using the specified...">Unbind&lt;&gt;(const EventTag&amp;, Functor, int, int, wxObject*)</a> overload for more info.  <a href="#aa49f9c4ad4462456b4fe4bd1ab53533d"></a><br/></td></tr>
<tr class="separator:aa49f9c4ad4462456b4fe4bd1ab53533d inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#ad6e543115a9405962152630138645588">GetClientData</a> () const </td></tr>
<tr class="memdesc:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns user-supplied client data.  <a href="#ad6e543115a9405962152630138645588"></a><br/></td></tr>
<tr class="separator:ad6e543115a9405962152630138645588 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_client_data.html">wxClientData</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a2b3949eaba1f25cb48618163a7c0583b">GetClientObject</a> () const </td></tr>
<tr class="memdesc:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a pointer to the user-supplied client data object.  <a href="#a2b3949eaba1f25cb48618163a7c0583b"></a><br/></td></tr>
<tr class="separator:a2b3949eaba1f25cb48618163a7c0583b inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a82c74f2cebfa02cb3c1563d459c872bf">SetClientData</a> (void *data)</td></tr>
<tr class="memdesc:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets user-supplied client data.  <a href="#a82c74f2cebfa02cb3c1563d459c872bf"></a><br/></td></tr>
<tr class="separator:a82c74f2cebfa02cb3c1563d459c872bf inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#af1e33a06087b8b2ddc43c7d15a91b326">SetClientObject</a> (<a class="el" href="classwx_client_data.html">wxClientData</a> *data)</td></tr>
<tr class="memdesc:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the client data object.  <a href="#af1e33a06087b8b2ddc43c7d15a91b326"></a><br/></td></tr>
<tr class="separator:af1e33a06087b8b2ddc43c7d15a91b326 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a533e62afcb125abf1fcc8bb53fbc2e81">GetEvtHandlerEnabled</a> () const </td></tr>
<tr class="memdesc:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the event handler is enabled, <span class="literal">false</span> otherwise.  <a href="#a533e62afcb125abf1fcc8bb53fbc2e81"></a><br/></td></tr>
<tr class="separator:a533e62afcb125abf1fcc8bb53fbc2e81 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a4b2f853f5c7a64432ae72f9b606698f9">GetNextHandler</a> () const </td></tr>
<tr class="memdesc:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the pointer to the next handler in the chain.  <a href="#a4b2f853f5c7a64432ae72f9b606698f9"></a><br/></td></tr>
<tr class="separator:a4b2f853f5c7a64432ae72f9b606698f9 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_evt_handler.html">wxEvtHandler</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#aad1ba7fa9ccbf12ee2d80f5f12350adb">GetPreviousHandler</a> () const </td></tr>
<tr class="memdesc:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the pointer to the previous handler in the chain.  <a href="#aad1ba7fa9ccbf12ee2d80f5f12350adb"></a><br/></td></tr>
<tr class="separator:aad1ba7fa9ccbf12ee2d80f5f12350adb inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a7388ae19c8657e5656471b658c320036">SetEvtHandlerEnabled</a> (bool enabled)</td></tr>
<tr class="memdesc:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables or disables the event handler.  <a href="#a7388ae19c8657e5656471b658c320036"></a><br/></td></tr>
<tr class="separator:a7388ae19c8657e5656471b658c320036 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a22e5db2ec1d19c8252c056fd116975d7">Unlink</a> ()</td></tr>
<tr class="memdesc:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unlinks this event handler from the chain it's part of (if any); then links the "previous" event handler to the "next" one (so that the chain won't be interrupted).  <a href="#a22e5db2ec1d19c8252c056fd116975d7"></a><br/></td></tr>
<tr class="separator:a22e5db2ec1d19c8252c056fd116975d7 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_evt_handler.html#a360fdeefcf53b62fb49fb828406bb8a6">IsUnlinked</a> () const </td></tr>
<tr class="memdesc:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if the next and the previous handler pointers of this event handler instance are <span class="literal">NULL</span>.  <a href="#a360fdeefcf53b62fb49fb828406bb8a6"></a><br/></td></tr>
<tr class="separator:a360fdeefcf53b62fb49fb828406bb8a6 inherit pub_methods_classwx_evt_handler"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#acaa378363a28af421ab56ad7b46eadf0">wxObject</a> ()</td></tr>
<tr class="memdesc:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default ctor; initializes to <span class="literal">NULL</span> the internal reference data.  <a href="#acaa378363a28af421ab56ad7b46eadf0"></a><br/></td></tr>
<tr class="separator:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a4721b4dc9b7aff0f30904ba2ea3954cf">wxObject</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy ctor.  <a href="#a4721b4dc9b7aff0f30904ba2ea3954cf"></a><br/></td></tr>
<tr class="separator:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2a51aa8bfbab47ca2f051bcf84b3f35b">~wxObject</a> ()</td></tr>
<tr class="memdesc:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor.  <a href="#a2a51aa8bfbab47ca2f051bcf84b3f35b"></a><br/></td></tr>
<tr class="separator:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_class_info.html">wxClassInfo</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#ab3a0c6f723cbaddb47be4e8dd98cc8e2">GetClassInfo</a> () const </td></tr>
<tr class="memdesc:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">This virtual function is redefined for every class that requires run-time type information, when using the <a class="el" href="group__group__funcmacro__rtti.html#ga20465fc7e022e29a5dacfad46e152e75" title="Used inside a class declaration to declare that the class should be made known to the class hierarchy...">wxDECLARE_CLASS</a> macro (or similar).  <a href="#ab3a0c6f723cbaddb47be4e8dd98cc8e2"></a><br/></td></tr>
<tr class="separator:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#aabdb4fc957226544a8408167844e4f42">GetRefData</a> () const </td></tr>
<tr class="memdesc:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;s reference-counted data.">wxObject::m_refData</a> pointer, i.e. the data referenced by this object.  <a href="#aabdb4fc957226544a8408167844e4f42"></a><br/></td></tr>
<tr class="separator:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af40d580385cf4f8112fae7713404b01e">IsKindOf</a> (const <a class="el" href="classwx_class_info.html">wxClassInfo</a> *info) const </td></tr>
<tr class="memdesc:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether this class is a subclass of (or the same class as) the given class.  <a href="#af40d580385cf4f8112fae7713404b01e"></a><br/></td></tr>
<tr class="separator:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a80a1a3fda7b14396a9ddd3d7a46a88bd">IsSameAs</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if this object has the same data pointer as <em>obj</em>.  <a href="#a80a1a3fda7b14396a9ddd3d7a46a88bd"></a><br/></td></tr>
<tr class="separator:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2f6f1aa51fe9fc2b1415ca4211a90e9e">Ref</a> (const <a class="el" href="classwx_object.html">wxObject</a> &amp;clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes this object refer to the data in <em>clone</em>.  <a href="#a2f6f1aa51fe9fc2b1415ca4211a90e9e"></a><br/></td></tr>
<tr class="separator:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#afab780710f2adc1bb33310e27590140b">SetRefData</a> (<a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data)</td></tr>
<tr class="memdesc:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object&#39;s reference-counted data.">wxObject::m_refData</a> pointer.  <a href="#afab780710f2adc1bb33310e27590140b"></a><br/></td></tr>
<tr class="separator:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af51efc6b1ae632fc7f0cd7ebbce9fa36">UnRef</a> ()</td></tr>
<tr class="memdesc:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decrements the reference count in the associated data, and if it is zero, deletes the data.  <a href="#af51efc6b1ae632fc7f0cd7ebbce9fa36"></a><br/></td></tr>
<tr class="separator:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a74b40e42d19a4b9e9bec0b57d62a5725">UnShare</a> ()</td></tr>
<tr class="memdesc:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object&#39;s data is not shared with any other object.">AllocExclusive()</a> but this method is public.  <a href="#a74b40e42d19a4b9e9bec0b57d62a5725"></a><br/></td></tr>
<tr class="separator:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a07b8f34f5afc5743195c5fed052f55d3">operator delete</a> (void *buf)</td></tr>
<tr class="memdesc:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">The <em>delete</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined.  <a href="#a07b8f34f5afc5743195c5fed052f55d3"></a><br/></td></tr>
<tr class="separator:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a96fa423a1dbc212c8227a5d83825971f">operator new</a> (size_t size, const <a class="el" href="classwx_string.html">wxString</a> &amp;filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">The <em>new</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined.  <a href="#a96fa423a1dbc212c8227a5d83825971f"></a><br/></td></tr>
<tr class="separator:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classwx_dialog"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_dialog')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classwx_dialog.html">wxDialog</a></td></tr>
<tr class="memitem:a016cfd686f75bcfc5f7b6f127be74c7c inherit pub_static_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a016cfd686f75bcfc5f7b6f127be74c7c">EnableLayoutAdaptation</a> (bool enable)</td></tr>
<tr class="memdesc:a016cfd686f75bcfc5f7b6f127be74c7c inherit pub_static_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">A static function enabling or disabling layout adaptation for all dialogs.  <a href="#a016cfd686f75bcfc5f7b6f127be74c7c"></a><br/></td></tr>
<tr class="separator:a016cfd686f75bcfc5f7b6f127be74c7c inherit pub_static_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6689e06106c3005c86bf73ac0718f6b6 inherit pub_static_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_dialog_layout_adapter.html">wxDialogLayoutAdapter</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a6689e06106c3005c86bf73ac0718f6b6">GetLayoutAdapter</a> ()</td></tr>
<tr class="memdesc:a6689e06106c3005c86bf73ac0718f6b6 inherit pub_static_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">A static function getting the current layout adapter object.  <a href="#a6689e06106c3005c86bf73ac0718f6b6"></a><br/></td></tr>
<tr class="separator:a6689e06106c3005c86bf73ac0718f6b6 inherit pub_static_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae74a22f52a5978f9a8a2b4853c60c376 inherit pub_static_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#ae74a22f52a5978f9a8a2b4853c60c376">IsLayoutAdaptationEnabled</a> ()</td></tr>
<tr class="memdesc:ae74a22f52a5978f9a8a2b4853c60c376 inherit pub_static_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">A static function returning <span class="literal">true</span> if layout adaptation is enabled for all dialogs.  <a href="#ae74a22f52a5978f9a8a2b4853c60c376"></a><br/></td></tr>
<tr class="separator:ae74a22f52a5978f9a8a2b4853c60c376 inherit pub_static_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a371e3d760ea9beb49b74c5ffee52a0ee inherit pub_static_methods_classwx_dialog"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_dialog_layout_adapter.html">wxDialogLayoutAdapter</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_dialog.html#a371e3d760ea9beb49b74c5ffee52a0ee">SetLayoutAdapter</a> (<a class="el" href="classwx_dialog_layout_adapter.html">wxDialogLayoutAdapter</a> *adapter)</td></tr>
<tr class="memdesc:a371e3d760ea9beb49b74c5ffee52a0ee inherit pub_static_methods_classwx_dialog"><td class="mdescLeft">&#160;</td><td class="mdescRight">A static function for setting the current layout adapter object, returning the old adapter.  <a href="#a371e3d760ea9beb49b74c5ffee52a0ee"></a><br/></td></tr>
<tr class="separator:a371e3d760ea9beb49b74c5ffee52a0ee inherit pub_static_methods_classwx_dialog"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classwx_window"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_window')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classwx_window.html">wxWindow</a></td></tr>
<tr class="memitem:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a2d10b472a4962d1c852c83d55252c44b">DoCentre</a> (int direction)</td></tr>
<tr class="memdesc:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Centres the window.  <a href="#a2d10b472a4962d1c852c83d55252c44b"></a><br/></td></tr>
<tr class="separator:a2d10b472a4962d1c852c83d55252c44b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a01e7604ab0f0b2b1a8e322a630a4669e">DoGetBestSize</a> () const </td></tr>
<tr class="memdesc:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implementation of <a class="el" href="classwx_window.html#a7e64b9380374e5681f146e9e319e35e3" title="This functions returns the best acceptable minimal size for the window.">GetBestSize()</a> that can be overridden.  <a href="#a01e7604ab0f0b2b1a8e322a630a4669e"></a><br/></td></tr>
<tr class="separator:a01e7604ab0f0b2b1a8e322a630a4669e inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#afe8447cb5975584ee3d4a03e3d02ee89">DoGetBestClientSize</a> () const </td></tr>
<tr class="memdesc:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to return the best size for a custom control.  <a href="#afe8447cb5975584ee3d4a03e3d02ee89"></a><br/></td></tr>
<tr class="separator:afe8447cb5975584ee3d4a03e3d02ee89 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a4a7af6aa217c9aa41d7ba3def3564520">DoGetBestClientHeight</a> (int width) const </td></tr>
<tr class="memdesc:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement height-for-width best size calculation.  <a href="#a4a7af6aa217c9aa41d7ba3def3564520"></a><br/></td></tr>
<tr class="separator:a4a7af6aa217c9aa41d7ba3def3564520 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9325f81776ce7167a42b6dd72aa0bd5c">DoGetBestClientWidth</a> (int height) const </td></tr>
<tr class="memdesc:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Override this method to implement width-for-height best size calculation.  <a href="#a9325f81776ce7167a42b6dd72aa0bd5c"></a><br/></td></tr>
<tr class="separator:a9325f81776ce7167a42b6dd72aa0bd5c inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#ae6dfe0b0d4a8c666b21ce8df8d96727b">SetInitialBestSize</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the initial window size if none is given (i.e. at least one of the components of the size passed to ctor/Create() is wxDefaultCoord).  <a href="#ae6dfe0b0d4a8c666b21ce8df8d96727b"></a><br/></td></tr>
<tr class="separator:ae6dfe0b0d4a8c666b21ce8df8d96727b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7e21eb6a0819281b29134a6432d064fe">SendDestroyEvent</a> ()</td></tr>
<tr class="memdesc:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generate <a class="el" href="classwx_window_destroy_event.html" title="This event is sent as early as possible during the window destruction process.">wxWindowDestroyEvent</a> for this window.  <a href="#a7e21eb6a0819281b29134a6432d064fe"></a><br/></td></tr>
<tr class="separator:a7e21eb6a0819281b29134a6432d064fe inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96">ProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is public in <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a> but protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> because for wxWindows you should always call <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> on the pointer returned by <a class="el" href="classwx_window.html#a72c2454cf309f30109da3cbfe237c760" title="Returns the event handler for this window.">GetEventHandler()</a> and not on the <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> object itself.  <a href="#a5ebdbd87c28644149a07f1742996df96"></a><br/></td></tr>
<tr class="separator:a5ebdbd87c28644149a07f1742996df96 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a0f9814efc50316b4c57b7ec2bf78b716">SafelyProcessEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a0f9814efc50316b4c57b7ec2bf78b716"></a><br/></td></tr>
<tr class="separator:a0f9814efc50316b4c57b7ec2bf78b716 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a69e450f21b0d7013269ec1a4771f043b">QueueEvent</a> (<a class="el" href="classwx_event.html">wxEvent</a> *event)</td></tr>
<tr class="memdesc:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a69e450f21b0d7013269ec1a4771f043b"></a><br/></td></tr>
<tr class="separator:a69e450f21b0d7013269ec1a4771f043b inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a774b5b5548a6258727b5e2099e63ae9a">AddPendingEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a774b5b5548a6258727b5e2099e63ae9a"></a><br/></td></tr>
<tr class="separator:a774b5b5548a6258727b5e2099e63ae9a inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a7cbee38944dab02d753a4dba74230443">ProcessPendingEvents</a> ()</td></tr>
<tr class="memdesc:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a7cbee38944dab02d753a4dba74230443"></a><br/></td></tr>
<tr class="separator:a7cbee38944dab02d753a4dba74230443 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_window.html#a9350b3a9c2e380707eaea92cedad12a5">ProcessThreadEvent</a> (const <a class="el" href="classwx_event.html">wxEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="classwx_window.html#a5ebdbd87c28644149a07f1742996df96" title="This function is public in wxEvtHandler but protected in wxWindow because for wxWindows you should al...">ProcessEvent()</a> for more info about why you shouldn't use this function and the reason for making this function protected in <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>.  <a href="#a9350b3a9c2e380707eaea92cedad12a5"></a><br/></td></tr>
<tr class="separator:a9350b3a9c2e380707eaea92cedad12a5 inherit pro_methods_classwx_window"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classwx_object')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8">m_refData</a></td></tr>
<tr class="memdesc:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pointer to an object which is the object's reference-counted data.  <a href="#a9e31954530a0abd54982effc443ed2b8"></a><br/></td></tr>
<tr class="separator:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="acd2a68189872e03e82e22ba4e158e48b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxPrintAbortDialog::wxPrintAbortDialog </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">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>documentTitle</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_2dialog_8h.html#a05926442fcb63ec70f4389a62729027a">wxDEFAULT_DIALOG_STYLE</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>&quot;dialog&quot;</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aed4ba13c34a8a256eec1ff139b11a6f2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxPrintAbortDialog::SetProgress </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>currentPage</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>totalPages</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>currentCopy</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>totalCopies</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

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

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