File: group__group__funcmacro__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 (2007 lines) | stat: -rw-r--r-- 129,569 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
<!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: Dialogs</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><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#func-members">Functions</a>  </div>
  <div class="headertitle">
<div class="title">Dialogs</div>  </div>
<div class="ingroups"><a class="el" href="group__group__funcmacro.html">Functions and Macros by Category</a></div></div><!--header-->
<div class="contents">
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<p>Below are a number of convenience functions for getting input from the user or displaying messages. </p>
<p>Note that in these functions the last three parameters are optional. However, it is recommended to pass a parent frame parameter, or (in MS Windows or Motif) the wrong window frame may be brought to the front when the dialog box is popped up. </p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ga6d8198c95b97786f206abfde010a4d8f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga6d8198c95b97786f206abfde010a4d8f">wxAboutBox</a> (const <a class="el" href="classwx_about_dialog_info.html">wxAboutDialogInfo</a> &amp;info, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="memdesc:ga6d8198c95b97786f206abfde010a4d8f"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows the standard about dialog containing the information specified in <em>info</em>.  <a href="#ga6d8198c95b97786f206abfde010a4d8f"></a><br/></td></tr>
<tr class="separator:ga6d8198c95b97786f206abfde010a4d8f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2e27fd9a2a2c11e73030deb83a065d23"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga2e27fd9a2a2c11e73030deb83a065d23">wxGenericAboutBox</a> (const <a class="el" href="classwx_about_dialog_info.html">wxAboutDialogInfo</a> &amp;info, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="memdesc:ga2e27fd9a2a2c11e73030deb83a065d23"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function does the same thing as <a class="el" href="group__group__funcmacro__dialog.html#ga6d8198c95b97786f206abfde010a4d8f" title="This function shows the standard about dialog containing the information specified in info...">wxAboutBox()</a> except that it always uses the generic wxWidgets version of the dialog instead of the native one.  <a href="#ga2e27fd9a2a2c11e73030deb83a065d23"></a><br/></td></tr>
<tr class="separator:ga2e27fd9a2a2c11e73030deb83a065d23"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2873f797756a0286b1c1058cb4f94afb"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga2873f797756a0286b1c1058cb4f94afb">wxGetSingleChoiceIndex</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;aChoices, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="memdesc:ga2873f797756a0286b1c1058cb4f94afb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as <a class="el" href="group__group__funcmacro__dialog.html#ga3c76942844a0d029108d0e9c4110fcf3" title="Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection listbox...">wxGetSingleChoice()</a> but returns the index representing the selected string.  <a href="#ga2873f797756a0286b1c1058cb4f94afb"></a><br/></td></tr>
<tr class="separator:ga2873f797756a0286b1c1058cb4f94afb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga137f74c4527d4fcbb4488e67967ee118"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga137f74c4527d4fcbb4488e67967ee118">wxGetSingleChoiceIndex</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> &amp;choices[], <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="separator:ga137f74c4527d4fcbb4488e67967ee118"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6168fd891e0096c12f9d836d7bcd3dc8"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga6168fd891e0096c12f9d836d7bcd3dc8">wxGetSingleChoiceIndex</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;choices, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga6168fd891e0096c12f9d836d7bcd3dc8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9cee9b87475af5ba9df08e21296ecaba"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga9cee9b87475af5ba9df08e21296ecaba">wxGetSingleChoiceIndex</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> *choices, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga9cee9b87475af5ba9df08e21296ecaba"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3c76942844a0d029108d0e9c4110fcf3"><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="group__group__funcmacro__dialog.html#ga3c76942844a0d029108d0e9c4110fcf3">wxGetSingleChoice</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;aChoices, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="memdesc:ga3c76942844a0d029108d0e9c4110fcf3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection listbox.  <a href="#ga3c76942844a0d029108d0e9c4110fcf3"></a><br/></td></tr>
<tr class="separator:ga3c76942844a0d029108d0e9c4110fcf3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga851e4f829c4f4b0ebd66c63d521957ab"><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="group__group__funcmacro__dialog.html#ga851e4f829c4f4b0ebd66c63d521957ab">wxGetSingleChoice</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> &amp;choices[], <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="separator:ga851e4f829c4f4b0ebd66c63d521957ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga089d612e86a041ce12cc246f0eea90d8"><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="group__group__funcmacro__dialog.html#ga089d612e86a041ce12cc246f0eea90d8">wxGetSingleChoice</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;choices, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga089d612e86a041ce12cc246f0eea90d8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae7a68e907b8b755a871fce09e726945c"><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="group__group__funcmacro__dialog.html#gae7a68e907b8b755a871fce09e726945c">wxGetSingleChoice</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> *choices, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:gae7a68e907b8b755a871fce09e726945c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf3d7e74f63027967c6afc876179bbfc5"><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="group__group__funcmacro__dialog.html#gaf3d7e74f63027967c6afc876179bbfc5">wxGetSingleChoiceData</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;aChoices, const <a class="el" href="classwx_string.html">wxString</a> &amp;client_data[], <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="memdesc:gaf3d7e74f63027967c6afc876179bbfc5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Same as wxGetSingleChoice but takes an array of client data pointers corresponding to the strings, and returns one of these pointers or <span class="literal">NULL</span> if Cancel was pressed.  <a href="#gaf3d7e74f63027967c6afc876179bbfc5"></a><br/></td></tr>
<tr class="separator:gaf3d7e74f63027967c6afc876179bbfc5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae7a8242edcb5da0021c7548a267e4549"><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="group__group__funcmacro__dialog.html#gae7a8242edcb5da0021c7548a267e4549">wxGetSingleChoiceData</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> &amp;choices[], const <a class="el" href="classwx_string.html">wxString</a> &amp;client_data[], <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>, int initialSelection=0)</td></tr>
<tr class="separator:gae7a8242edcb5da0021c7548a267e4549"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae442fee25a67b67a80a9bdf35ffb5646"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#gae442fee25a67b67a80a9bdf35ffb5646">wxGetSingleChoiceData</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;choices, void **client_data, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:gae442fee25a67b67a80a9bdf35ffb5646"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga37248dbdce791be397ff1a2d100a6ef5"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga37248dbdce791be397ff1a2d100a6ef5">wxGetSingleChoiceData</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> *choices, void **client_data, int initialSelection, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga37248dbdce791be397ff1a2d100a6ef5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9a25af55ee668b4cdad6f667ac4dc76e"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga9a25af55ee668b4cdad6f667ac4dc76e">wxGetSelectedChoices</a> (<a class="el" href="dynarray_8h.html#add87f199292e36ee87efd6d7f0d4ee66">wxArrayInt</a> &amp;selections, const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;aChoices, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>)</td></tr>
<tr class="memdesc:ga9a25af55ee668b4cdad6f667ac4dc76e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection listbox.  <a href="#ga9a25af55ee668b4cdad6f667ac4dc76e"></a><br/></td></tr>
<tr class="separator:ga9a25af55ee668b4cdad6f667ac4dc76e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3fccc81eb93e1650147d6e36889d9d94"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga3fccc81eb93e1650147d6e36889d9d94">wxGetSelectedChoices</a> (<a class="el" href="dynarray_8h.html#add87f199292e36ee87efd6d7f0d4ee66">wxArrayInt</a> &amp;selections, const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, int n, const <a class="el" href="classwx_string.html">wxString</a> &amp;choices[], <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true, int width=<a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a>, int height=<a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a>)</td></tr>
<tr class="separator:ga3fccc81eb93e1650147d6e36889d9d94"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae21ee60a8c039d8b78aeeca9f27bac2b"><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="group__group__funcmacro__dialog.html#gae21ee60a8c039d8b78aeeca9f27bac2b">wxGetColourFromUser</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colInit, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_colour_data.html">wxColourData</a> *data=NULL)</td></tr>
<tr class="memdesc:gae21ee60a8c039d8b78aeeca9f27bac2b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows the colour selection dialog and returns the colour selected by user or invalid colour (use <a class="el" href="classwx_colour.html#a5616c16dbc5f312421adb50a49720320" title="Returns true if the colour object is valid (the colour has been initialised with RGB values)...">wxColour::IsOk()</a> to test whether a colour is valid) if the dialog was cancelled.  <a href="#gae21ee60a8c039d8b78aeeca9f27bac2b"></a><br/></td></tr>
<tr class="separator:gae21ee60a8c039d8b78aeeca9f27bac2b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0be8769b6d082b6f11102429f879dfd3"><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="group__group__funcmacro__dialog.html#ga0be8769b6d082b6f11102429f879dfd3">wxDirSelector</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message=<a class="el" href="dirdlg_8h.html#a6f17a504b82b31c8d81672581bf26a8d">wxDirSelectorPromptStr</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_path=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, long style=0, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="memdesc:ga0be8769b6d082b6f11102429f879dfd3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up a directory selector dialog.  <a href="#ga0be8769b6d082b6f11102429f879dfd3"></a><br/></td></tr>
<tr class="separator:ga0be8769b6d082b6f11102429f879dfd3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac92fd90e0f898095ef0c9f86b01928bf"><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="group__group__funcmacro__dialog.html#gac92fd90e0f898095ef0c9f86b01928bf">wxFileSelector</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_path=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_filename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_extension=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;wildcard=<a class="el" href="filedlg_8h.html#a3a48d9b7ad35e6c332acb146f78c1b5d">wxFileSelectorDefaultWildcardStr</a>, int flags=0, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>)</td></tr>
<tr class="memdesc:gac92fd90e0f898095ef0c9f86b01928bf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pops up a file selector box.  <a href="#gac92fd90e0f898095ef0c9f86b01928bf"></a><br/></td></tr>
<tr class="separator:gac92fd90e0f898095ef0c9f86b01928bf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga7d1d5dfa232d5d8fc325ab01d0a1fd86"><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="group__group__funcmacro__dialog.html#ga7d1d5dfa232d5d8fc325ab01d0a1fd86">wxFileSelectorEx</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message=wxFileSelectorPromptStr, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_path=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_filename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, int *indexDefaultExtension=NULL, const <a class="el" href="classwx_string.html">wxString</a> &amp;wildcard=<a class="el" href="filedlg_8h.html#a3a48d9b7ad35e6c332acb146f78c1b5d">wxFileSelectorDefaultWildcardStr</a>, int flags=0, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>)</td></tr>
<tr class="memdesc:ga7d1d5dfa232d5d8fc325ab01d0a1fd86"><td class="mdescLeft">&#160;</td><td class="mdescRight">An extended version of wxFileSelector.  <a href="#ga7d1d5dfa232d5d8fc325ab01d0a1fd86"></a><br/></td></tr>
<tr class="separator:ga7d1d5dfa232d5d8fc325ab01d0a1fd86"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8d71c14962d9d93d2c251c43759f4783"><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="group__group__funcmacro__dialog.html#ga8d71c14962d9d93d2c251c43759f4783">wxLoadFileSelector</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;what, const <a class="el" href="classwx_string.html">wxString</a> &amp;extension, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_name=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="memdesc:ga8d71c14962d9d93d2c251c43759f4783"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ask for filename to load.  <a href="#ga8d71c14962d9d93d2c251c43759f4783"></a><br/></td></tr>
<tr class="separator:ga8d71c14962d9d93d2c251c43759f4783"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaef939cd02a41730546513302b3adebdf"><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="group__group__funcmacro__dialog.html#gaef939cd02a41730546513302b3adebdf">wxSaveFileSelector</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;what, const <a class="el" href="classwx_string.html">wxString</a> &amp;extension, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_name=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="memdesc:gaef939cd02a41730546513302b3adebdf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ask for filename to save.  <a href="#gaef939cd02a41730546513302b3adebdf"></a><br/></td></tr>
<tr class="separator:gaef939cd02a41730546513302b3adebdf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0155cfe569b5e6359b4b78c7b2312b1d"><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="group__group__funcmacro__dialog.html#ga0155cfe569b5e6359b4b78c7b2312b1d">wxGetFontFromUser</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, const <a class="el" href="classwx_font.html">wxFont</a> &amp;fontInit, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:ga0155cfe569b5e6359b4b78c7b2312b1d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows the font selection dialog and returns the font selected by user or invalid font (use <a class="el" href="classwx_font.html#a3ea0ba08b44ea25a2c52cf18efb6856e" title="Returns true if this object is a valid font, false otherwise.">wxFont::IsOk()</a> to test whether a font is valid) if the dialog was cancelled.  <a href="#ga0155cfe569b5e6359b4b78c7b2312b1d"></a><br/></td></tr>
<tr class="separator:ga0155cfe569b5e6359b4b78c7b2312b1d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga193c64ed4802e379799cdb42de252647"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga193c64ed4802e379799cdb42de252647">wxMessageBox</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption=<a class="el" href="msgdlg_8h.html#a5f93cd31111d1a0f2c65a4b4235035da">wxMessageBoxCaptionStr</a>, int style=<a class="el" href="defs_8h.html#a9c40266b61a27f0124a69a699753889a">wxOK</a>|<a class="el" href="defs_8h.html#ae160ea382a8f7921484db9d499516dafaa9f0378dc2d52d0a96553e30d05a57ff">wxCENTRE</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>)</td></tr>
<tr class="memdesc:ga193c64ed4802e379799cdb42de252647"><td class="mdescLeft">&#160;</td><td class="mdescRight">Show a general purpose message dialog.  <a href="#ga193c64ed4802e379799cdb42de252647"></a><br/></td></tr>
<tr class="separator:ga193c64ed4802e379799cdb42de252647"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga358252ede396f8eb59553d7a3efadfd3"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga358252ede396f8eb59553d7a3efadfd3">wxGetNumberFromUser</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;prompt, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption, long value, long min=0, long max=100, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, 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:ga358252ede396f8eb59553d7a3efadfd3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a dialog asking the user for numeric input.  <a href="#ga358252ede396f8eb59553d7a3efadfd3"></a><br/></td></tr>
<tr class="separator:ga358252ede396f8eb59553d7a3efadfd3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5a6a376f69f87e48e618f6f79e2c4a1b"><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="group__group__funcmacro__dialog.html#ga5a6a376f69f87e48e618f6f79e2c4a1b">wxGetTextFromUser</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption=<a class="el" href="textdlg_8h.html#a8faefe197032156063a3ea71fdf4eb8a">wxGetTextFromUserPromptStr</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_value=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true)</td></tr>
<tr class="memdesc:ga5a6a376f69f87e48e618f6f79e2c4a1b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Pop up a dialog box with title set to <em>caption</em>, <code>message</code>, and a <code>default_value</code>.  <a href="#ga5a6a376f69f87e48e618f6f79e2c4a1b"></a><br/></td></tr>
<tr class="separator:ga5a6a376f69f87e48e618f6f79e2c4a1b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga717976ecb9537ac00d0c3e79e054e7c8"><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="group__group__funcmacro__dialog.html#ga717976ecb9537ac00d0c3e79e054e7c8">wxGetPasswordFromUser</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;message, const <a class="el" href="classwx_string.html">wxString</a> &amp;caption=<a class="el" href="textdlg_8h.html#a95d09b2377556bb3c7e60ef408c50d34">wxGetPasswordFromUserPromptStr</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;default_value=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL, int x=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, int y=<a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a>, bool centre=true)</td></tr>
<tr class="memdesc:ga717976ecb9537ac00d0c3e79e054e7c8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Similar to <a class="el" href="group__group__funcmacro__dialog.html#ga5a6a376f69f87e48e618f6f79e2c4a1b" title="Pop up a dialog box with title set to caption, message, and a default_value.">wxGetTextFromUser()</a> but the text entered in the dialog is not shown on screen but replaced with stars.  <a href="#ga717976ecb9537ac00d0c3e79e054e7c8"></a><br/></td></tr>
<tr class="separator:ga717976ecb9537ac00d0c3e79e054e7c8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9cc492bddff104d3afceca94ae945f38"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_tip_provider.html">wxTipProvider</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga9cc492bddff104d3afceca94ae945f38">wxCreateFileTipProvider</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;filename, size_t currentTip)</td></tr>
<tr class="memdesc:ga9cc492bddff104d3afceca94ae945f38"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function creates a <a class="el" href="classwx_tip_provider.html" title="This is the class used together with wxShowTip() function.">wxTipProvider</a> which may be used with <a class="el" href="group__group__funcmacro__dialog.html#ga71723a35f5e98349f5a79d7a025dac07" title="This function shows a &quot;startup tip&quot; to the user.">wxShowTip()</a>.  <a href="#ga9cc492bddff104d3afceca94ae945f38"></a><br/></td></tr>
<tr class="separator:ga9cc492bddff104d3afceca94ae945f38"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga71723a35f5e98349f5a79d7a025dac07"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga71723a35f5e98349f5a79d7a025dac07">wxShowTip</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="classwx_tip_provider.html">wxTipProvider</a> *tipProvider, bool showAtStartup=true)</td></tr>
<tr class="memdesc:ga71723a35f5e98349f5a79d7a025dac07"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function shows a "startup tip" to the user.  <a href="#ga71723a35f5e98349f5a79d7a025dac07"></a><br/></td></tr>
<tr class="separator:ga71723a35f5e98349f5a79d7a025dac07"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga1a9c984ef97d76e45b6dad72219e758b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga1a9c984ef97d76e45b6dad72219e758b">wxBeginBusyCursor</a> (const <a class="el" href="classwx_cursor.html">wxCursor</a> *cursor=<a class="el" href="cursor_8h.html#aedcab46c717d02f9b5deb151d1fe85f8">wxHOURGLASS_CURSOR</a>)</td></tr>
<tr class="memdesc:ga1a9c984ef97d76e45b6dad72219e758b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the cursor to the given cursor for all windows in the application.  <a href="#ga1a9c984ef97d76e45b6dad72219e758b"></a><br/></td></tr>
<tr class="separator:ga1a9c984ef97d76e45b6dad72219e758b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf2331f353059e79d45700a04793a7dd3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#gaf2331f353059e79d45700a04793a7dd3">wxEndBusyCursor</a> ()</td></tr>
<tr class="memdesc:gaf2331f353059e79d45700a04793a7dd3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the cursor back to the original cursor, for all windows in the application.  <a href="#gaf2331f353059e79d45700a04793a7dd3"></a><br/></td></tr>
<tr class="separator:gaf2331f353059e79d45700a04793a7dd3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac66e5849170bf4b1f816e0a8c5912e9e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#gac66e5849170bf4b1f816e0a8c5912e9e">wxIsBusy</a> ()</td></tr>
<tr class="memdesc:gac66e5849170bf4b1f816e0a8c5912e9e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if between two <a class="el" href="group__group__funcmacro__dialog.html#ga1a9c984ef97d76e45b6dad72219e758b" title="Changes the cursor to the given cursor for all windows in the application.">wxBeginBusyCursor()</a> and <a class="el" href="group__group__funcmacro__dialog.html#gaf2331f353059e79d45700a04793a7dd3" title="Changes the cursor back to the original cursor, for all windows in the application.">wxEndBusyCursor()</a> calls.  <a href="#gac66e5849170bf4b1f816e0a8c5912e9e"></a><br/></td></tr>
<tr class="separator:gac66e5849170bf4b1f816e0a8c5912e9e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3267f33060d2ae403862427acb758bab"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga3267f33060d2ae403862427acb758bab">wxBell</a> ()</td></tr>
<tr class="memdesc:ga3267f33060d2ae403862427acb758bab"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ring the system bell.  <a href="#ga3267f33060d2ae403862427acb758bab"></a><br/></td></tr>
<tr class="separator:ga3267f33060d2ae403862427acb758bab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga10cbf79d51b2467289d1f6c11a7d0beb"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__dialog.html#ga10cbf79d51b2467289d1f6c11a7d0beb">wxInfoMessageBox</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent)</td></tr>
<tr class="memdesc:ga10cbf79d51b2467289d1f6c11a7d0beb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Shows a message box with the information about the wxWidgets build used, including its version, most important build parameters and the version of the underlying GUI toolkit.  <a href="#ga10cbf79d51b2467289d1f6c11a7d0beb"></a><br/></td></tr>
<tr class="separator:ga10cbf79d51b2467289d1f6c11a7d0beb"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Function Documentation</h2>
<a class="anchor" id="ga6d8198c95b97786f206abfde010a4d8f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxAboutBox </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_about_dialog_info.html">wxAboutDialogInfo</a> &amp;&#160;</td>
          <td class="paramname"><em>info</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function shows the standard about dialog containing the information specified in <em>info</em>. </p>
<p>If the current platform has a native about dialog which is capable of showing all the fields in <em>info</em>, the native dialog is used, otherwise the function falls back to the generic wxWidgets version of the dialog, i.e. does the same thing as wxGenericAboutBox.</p>
<p>Here is an example of how this function may be used:</p>
<div class="fragment"><div class="line"><span class="keywordtype">void</span> MyFrame::ShowSimpleAboutDialog(<a class="code" href="classwx_command_event.html" title="This event class contains information about command events, which originate from a variety of simple ...">wxCommandEvent</a>&amp; WXUNUSED(event))</div>
<div class="line">{</div>
<div class="line">    <a class="code" href="classwx_about_dialog_info.html" title="wxAboutDialogInfo contains information shown in the standard About dialog displayed by the wxAboutBox...">wxAboutDialogInfo</a> info;</div>
<div class="line">    info.<a class="code" href="classwx_about_dialog_info.html#a5fef05c5e61acb59d9554bda8de26eef" title="Set the name of the program.">SetName</a>(<a class="code" href="group__group__funcmacro__string.html#ga8a02b8875a521df57263a9e6f090f2d0" title="Macro to be used around all literal strings that should be translated.">_</a>(<span class="stringliteral">&quot;My Program&quot;</span>));</div>
<div class="line">    info.<a class="code" href="classwx_about_dialog_info.html#aac5029cab6b04b34dbf8cd6b66fff251" title="Set the version of the program.">SetVersion</a>(<a class="code" href="group__group__funcmacro__string.html#ga8a02b8875a521df57263a9e6f090f2d0" title="Macro to be used around all literal strings that should be translated.">_</a>(<span class="stringliteral">&quot;1.2.3 Beta&quot;</span>));</div>
<div class="line">    info.<a class="code" href="classwx_about_dialog_info.html#a47bd84aa96af70cb304a76c6cf3428e3" title="Set brief, but possibly multiline, description of the program.">SetDescription</a>(<a class="code" href="group__group__funcmacro__string.html#ga8a02b8875a521df57263a9e6f090f2d0" title="Macro to be used around all literal strings that should be translated.">_</a>(<span class="stringliteral">&quot;This program does something great.&quot;</span>));</div>
<div class="line">    info.<a class="code" href="classwx_about_dialog_info.html#a10f5d9b8ca9ed69754e54fd2e03c4538" title="Set the short string containing the program copyright information.">SetCopyright</a>(<a class="code" href="group__group__funcmacro__string.html#ga437ea6ba615b75dac8603e96ec864160" title="This macro can be used with character and string literals (in other words, &#39;x&#39; or &quot;foo&quot;) to automatic...">wxT</a>(<span class="stringliteral">&quot;(C) 2007 Me &lt;my@email.addre.ss&gt;&quot;</span>));</div>
<div class="line"></div>
<div class="line">    <a class="code" href="group__group__funcmacro__dialog.html#ga6d8198c95b97786f206abfde010a4d8f" title="This function shows the standard about dialog containing the information specified in info...">wxAboutBox</a>(info);</div>
<div class="line">}</div>
</div><!-- fragment --><p>Please see the <a class="el" href="page_samples.html#page_samples_dialogs">Dialogs Sample</a> for more examples of using this function and <a class="el" href="classwx_about_dialog_info.html" title="wxAboutDialogInfo contains information shown in the standard About dialog displayed by the wxAboutBox...">wxAboutDialogInfo</a> for the description of the information which can be shown in the about dialog.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/aboutdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga1a9c984ef97d76e45b6dad72219e758b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxBeginBusyCursor </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_cursor.html">wxCursor</a> *&#160;</td>
          <td class="paramname"><em>cursor</em> = <code><a class="el" href="cursor_8h.html#aedcab46c717d02f9b5deb151d1fe85f8">wxHOURGLASS_CURSOR</a></code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the cursor to the given cursor for all windows in the application. </p>
<p>Use <a class="el" href="group__group__funcmacro__dialog.html#gaf2331f353059e79d45700a04793a7dd3" title="Changes the cursor back to the original cursor, for all windows in the application.">wxEndBusyCursor()</a> to revert the cursor back to its previous state. These two calls can be nested, and a counter ensures that only the outer calls take effect.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__dialog.html#gac66e5849170bf4b1f816e0a8c5912e9e" title="Returns true if between two wxBeginBusyCursor() and wxEndBusyCursor() calls.">wxIsBusy()</a>, <a class="el" href="classwx_busy_cursor.html" title="This class makes it easy to tell your user that the program is temporarily busy.">wxBusyCursor</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga3267f33060d2ae403862427acb758bab"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxBell </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Ring the system bell. </p>
<dl class="section note"><dt>Note</dt><dd>This function is categorized as a GUI one and so is not thread-safe.</dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre><h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxcore">wxCore</a></span></div> 
</div>
</div>
<a class="anchor" id="ga9cc492bddff104d3afceca94ae945f38"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_tip_provider.html">wxTipProvider</a>* wxCreateFileTipProvider </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>filename</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>currentTip</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function creates a <a class="el" href="classwx_tip_provider.html" title="This is the class used together with wxShowTip() function.">wxTipProvider</a> which may be used with <a class="el" href="group__group__funcmacro__dialog.html#ga71723a35f5e98349f5a79d7a025dac07" title="This function shows a &quot;startup tip&quot; to the user.">wxShowTip()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">filename</td><td>The name of the file containing the tips, one per line. </td></tr>
    <tr><td class="paramname">currentTip</td><td>The index of the first tip to show. Normally this index is remembered between the 2 program runs.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="overview_tips.html">wxTipProvider Overview</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/tipdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga0be8769b6d082b6f11102429f879dfd3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxDirSelector </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em> = <code><a class="el" href="dirdlg_8h.html#a6f17a504b82b31c8d81672581bf26a8d">wxDirSelectorPromptStr</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>default_path</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>style</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_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"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Pops up a directory selector dialog. </p>
<p>The arguments have the same meaning as those of <a class="el" href="classwx_dir_dialog.html#a72322832d7830dd637fb4daa541c267a" title="Constructor.">wxDirDialog::wxDirDialog()</a>. The message is displayed at the top, and the default_path, if specified, is set as the initial selection.</p>
<p>The application must check for an empty return value (if the user pressed Cancel). For example:</p>
<div class="fragment"><div class="line"><span class="keyword">const</span> <a class="code" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>&amp; dir = <a class="code" href="group__group__funcmacro__dialog.html#ga0be8769b6d082b6f11102429f879dfd3" title="Pops up a directory selector dialog.">wxDirSelector</a>(<span class="stringliteral">&quot;Choose a folder&quot;</span>);</div>
<div class="line"><span class="keywordflow">if</span> ( !dir.<a class="code" href="classwx_string.html#ac6ae24a8ccc6e4e671f972948fca437c">empty</a>() )</div>
<div class="line">{</div>
<div class="line">    ...</div>
<div class="line">}</div>
</div><!-- fragment --><p>Include file: </p>
<pre class="fragment">#include &lt;wx/dirdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaf2331f353059e79d45700a04793a7dd3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxEndBusyCursor </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Changes the cursor back to the original cursor, for all windows in the application. </p>
<p>Use with <a class="el" href="group__group__funcmacro__dialog.html#ga1a9c984ef97d76e45b6dad72219e758b" title="Changes the cursor to the given cursor for all windows in the application.">wxBeginBusyCursor()</a>.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__dialog.html#gac66e5849170bf4b1f816e0a8c5912e9e" title="Returns true if between two wxBeginBusyCursor() and wxEndBusyCursor() calls.">wxIsBusy()</a>, <a class="el" href="classwx_busy_cursor.html" title="This class makes it easy to tell your user that the program is temporarily busy.">wxBusyCursor</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gac92fd90e0f898095ef0c9f86b01928bf"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxFileSelector </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>default_path</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>default_filename</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>default_extension</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>wildcard</em> = <code><a class="el" href="filedlg_8h.html#a3a48d9b7ad35e6c332acb146f78c1b5d">wxFileSelectorDefaultWildcardStr</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>flags</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Pops up a file selector box. </p>
<p>In Windows, this is the common file selector dialog. In X, this is a file selector box with the same functionality. The path and filename are distinct elements of a full file pathname. If path is empty, the current directory will be used. If filename is empty, no default filename will be supplied. The wildcard determines what files are displayed in the file selector, and file extension supplies a type extension for the required filename. Flags may be a combination of wxFD_OPEN, wxFD_SAVE, wxFD_OVERWRITE_PROMPT or wxFD_FILE_MUST_EXIST.</p>
<dl class="section note"><dt>Note</dt><dd>wxFD_MULTIPLE can only be used with <a class="el" href="classwx_file_dialog.html" title="This class represents the file chooser dialog.">wxFileDialog</a> and not here since this function only returns a single file name.</dd></dl>
<p>Both the Unix and Windows versions implement a wildcard filter. Typing a filename containing wildcards (*, ?) in the filename text item, and clicking on Ok, will result in only those files matching the pattern being displayed.</p>
<p>The wildcard may be a specification for multiple types of file with a description for each, such as:</p>
<div class="fragment"><div class="line"><span class="stringliteral">&quot;BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif&quot;</span></div>
</div><!-- fragment --><p>The application must check for an empty return value (the user pressed Cancel). For example:</p>
<div class="fragment"><div class="line"><a class="code" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> filename = <a class="code" href="group__group__funcmacro__dialog.html#gac92fd90e0f898095ef0c9f86b01928bf" title="Pops up a file selector box.">wxFileSelector</a>(<span class="stringliteral">&quot;Choose a file to open&quot;</span>);</div>
<div class="line"><span class="keywordflow">if</span> ( !filename.<a class="code" href="classwx_string.html#ac6ae24a8ccc6e4e671f972948fca437c">empty</a>() )</div>
<div class="line">{</div>
<div class="line">    <span class="comment">// work with the file</span></div>
<div class="line">    ...</div>
<div class="line">}</div>
<div class="line"><span class="comment">//else: cancelled by user</span></div>
</div><!-- fragment --><p>Include file: </p>
<pre class="fragment">#include &lt;wx/filedlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga7d1d5dfa232d5d8fc325ab01d0a1fd86"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxFileSelectorEx </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</em> = <code>wxFileSelectorPromptStr</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>default_path</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>default_filename</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int *&#160;</td>
          <td class="paramname"><em>indexDefaultExtension</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>wildcard</em> = <code><a class="el" href="filedlg_8h.html#a3a48d9b7ad35e6c332acb146f78c1b5d">wxFileSelectorDefaultWildcardStr</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>flags</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>An extended version of wxFileSelector. </p>

</div>
</div>
<a class="anchor" id="ga2e27fd9a2a2c11e73030deb83a065d23"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxGenericAboutBox </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_about_dialog_info.html">wxAboutDialogInfo</a> &amp;&#160;</td>
          <td class="paramname"><em>info</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function does the same thing as <a class="el" href="group__group__funcmacro__dialog.html#ga6d8198c95b97786f206abfde010a4d8f" title="This function shows the standard about dialog containing the information specified in info...">wxAboutBox()</a> except that it always uses the generic wxWidgets version of the dialog instead of the native one. </p>
<p>This is mainly useful if you need to customize the dialog by e.g. adding custom controls to it (customizing the native dialog is not currently supported).</p>
<p>See the <a class="el" href="page_samples.html#page_samples_dialogs">Dialogs Sample</a> for an example of about dialog customization.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_about_dialog_info.html" title="wxAboutDialogInfo contains information shown in the standard About dialog displayed by the wxAboutBox...">wxAboutDialogInfo</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/aboutdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gae21ee60a8c039d8b78aeeca9f27bac2b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_colour.html">wxColour</a> wxGetColourFromUser </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_colour.html">wxColour</a> &amp;&#160;</td>
          <td class="paramname"><em>colInit</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>caption</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_colour_data.html">wxColourData</a> *&#160;</td>
          <td class="paramname"><em>data</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Shows the colour selection dialog and returns the colour selected by user or invalid colour (use <a class="el" href="classwx_colour.html#a5616c16dbc5f312421adb50a49720320" title="Returns true if the colour object is valid (the colour has been initialised with RGB values)...">wxColour::IsOk()</a> to test whether a colour is valid) if the dialog was cancelled. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>The parent window for the colour selection dialog. </td></tr>
    <tr><td class="paramname">colInit</td><td>If given, this will be the colour initially selected in the dialog. </td></tr>
    <tr><td class="paramname">caption</td><td>If given, this will be used for the dialog caption. </td></tr>
    <tr><td class="paramname">data</td><td>Optional object storing additional colour dialog settings, such as custom colours. If none is provided the same settings as the last time are used.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/colordlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga0155cfe569b5e6359b4b78c7b2312b1d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_font.html">wxFont</a> wxGetFontFromUser </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_font.html">wxFont</a> &amp;&#160;</td>
          <td class="paramname"><em>fontInit</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>caption</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Shows the font selection dialog and returns the font selected by user or invalid font (use <a class="el" href="classwx_font.html#a3ea0ba08b44ea25a2c52cf18efb6856e" title="Returns true if this object is a valid font, false otherwise.">wxFont::IsOk()</a> to test whether a font is valid) if the dialog was cancelled. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>The parent window for the font selection dialog. </td></tr>
    <tr><td class="paramname">fontInit</td><td>If given, this will be the font initially selected in the dialog. </td></tr>
    <tr><td class="paramname">caption</td><td>If given, this will be used for the dialog caption.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/fontdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga358252ede396f8eb59553d7a3efadfd3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">long wxGetNumberFromUser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>prompt</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>value</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>min</em> = <code>0</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>max</em> = <code>100</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em> = <code><a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Shows a dialog asking the user for numeric input. </p>
<p>The dialogs title is set to <code>caption</code>, it contains a (possibly) multiline <code>message</code> above the single line <code>prompt</code> and the zone for entering the number.</p>
<p>The number entered must be in the range <code>min</code> to <code>max</code> (both of which should be positive) and <code>value</code> is the initial value of it. If the user enters an invalid value, it is forced to fall into the specified range. If the user cancels the dialog, the function returns -1.</p>
<p>Dialog is centered on its <code>parent</code> unless an explicit position is given in <code>pos</code>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/numdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga717976ecb9537ac00d0c3e79e054e7c8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetPasswordFromUser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em> = <code><a class="el" href="textdlg_8h.html#a95d09b2377556bb3c7e60ef408c50d34">wxGetPasswordFromUserPromptStr</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>default_value</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Similar to <a class="el" href="group__group__funcmacro__dialog.html#ga5a6a376f69f87e48e618f6f79e2c4a1b" title="Pop up a dialog box with title set to caption, message, and a default_value.">wxGetTextFromUser()</a> but the text entered in the dialog is not shown on screen but replaced with stars. </p>
<p>This is intended to be used for entering passwords as the function name implies.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/textdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga9a25af55ee668b4cdad6f667ac4dc76e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSelectedChoices </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="dynarray_8h.html#add87f199292e36ee87efd6d7f0d4ee66">wxArrayInt</a> &amp;&#160;</td>
          <td class="paramname"><em>selections</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>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>aChoices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Pops up a dialog box containing a message, OK/Cancel buttons and a multiple-selection listbox. </p>
<p>The user may choose an arbitrary (including 0) number of items in the listbox whose indices will be returned in <code>selections</code> array. The initial contents of this array will be used to select the items when the dialog is shown. If the user cancels the dialog, the function returns -1 and <code>selections</code> array is left unchanged.</p>
<p>You may pass the list of strings to choose from either using <code>choices</code> which is an array of <em>n</em> strings for the listbox or by using a single <code>aChoices</code> parameter of type <a class="el" href="classwx_array_string.html" title="wxArrayString is an efficient container for storing wxString objects.">wxArrayString</a>.</p>
<p>If <code>centre</code> is <span class="literal">true</span>, the message text (which may include new line characters) is centred; if <span class="literal">false</span>, the message is left-justified.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/choicdlg.h&gt; </pre><p><b>wxPerl Note:</b> Use an array reference for the <em>choices</em> parameter. In wxPerl there is no <em>selections</em> parameter; the function returns an array containing the user selections. </p>

</div>
</div>
<a class="anchor" id="ga3fccc81eb93e1650147d6e36889d9d94"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSelectedChoices </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="dynarray_8h.html#add87f199292e36ee87efd6d7f0d4ee66">wxArrayInt</a> &amp;&#160;</td>
          <td class="paramname"><em>selections</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>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</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>choices</em>[], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga3c76942844a0d029108d0e9c4110fcf3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoice </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>aChoices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection listbox. </p>
<p>The user may choose an item and press OK to return a string or Cancel to return the empty string. Use <a class="el" href="group__group__funcmacro__dialog.html#ga2873f797756a0286b1c1058cb4f94afb" title="Same as wxGetSingleChoice() but returns the index representing the selected string.">wxGetSingleChoiceIndex()</a> if empty string is a valid choice and if you want to be able to detect pressing Cancel reliably.</p>
<p>You may pass the list of strings to choose from either using <code>choices</code> which is an array of <em>n</em> strings for the listbox or by using a single <code>aChoices</code> parameter of type <a class="el" href="classwx_array_string.html" title="wxArrayString is an efficient container for storing wxString objects.">wxArrayString</a>.</p>
<p>If <code>centre</code> is <span class="literal">true</span>, the message text (which may include new line characters) is centred; if <span class="literal">false</span>, the message is left-justified.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/choicdlg.h&gt; </pre><p><b>wxPerl Note:</b> Use an array reference for the <em>choices</em> parameter. </p>

</div>
</div>
<a class="anchor" id="ga851e4f829c4f4b0ebd66c63d521957ab"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoice </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</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>choices</em>[], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga089d612e86a041ce12cc246f0eea90d8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoice </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gae7a68e907b8b755a871fce09e726945c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoice </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gaf3d7e74f63027967c6afc876179bbfc5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoiceData </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>aChoices</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>client_data</em>[], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as wxGetSingleChoice but takes an array of client data pointers corresponding to the strings, and returns one of these pointers or <span class="literal">NULL</span> if Cancel was pressed. </p>
<p>The <code>client_data</code> array must have the same number of elements as <code>choices</code> or <code>aChoices!</code> </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/choicdlg.h&gt; </pre><p><b>wxPerl Note:</b> Use an array reference for the <em>aChoices</em> and <em>client_data</em> parameters. </p>

</div>
</div>
<a class="anchor" id="gae7a8242edcb5da0021c7548a267e4549"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetSingleChoiceData </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</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>choices</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>client_data</em>[], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gae442fee25a67b67a80a9bdf35ffb5646"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void* wxGetSingleChoiceData </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **&#160;</td>
          <td class="paramname"><em>client_data</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga37248dbdce791be397ff1a2d100a6ef5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void* wxGetSingleChoiceData </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **&#160;</td>
          <td class="paramname"><em>client_data</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga2873f797756a0286b1c1058cb4f94afb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSingleChoiceIndex </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>aChoices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Same as <a class="el" href="group__group__funcmacro__dialog.html#ga3c76942844a0d029108d0e9c4110fcf3" title="Pops up a dialog box containing a message, OK/Cancel buttons and a single-selection listbox...">wxGetSingleChoice()</a> but returns the index representing the selected string. </p>
<p>If the user pressed cancel, -1 is returned.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/choicdlg.h&gt; </pre><p><b>wxPerl Note:</b> Use an array reference for the <em>aChoices</em> parameter. </p>

</div>
</div>
<a class="anchor" id="ga137f74c4527d4fcbb4488e67967ee118"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSingleChoiceIndex </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</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>choices</em>[], </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>width</em> = <code><a class="el" href="choicdlg_8h.html#ad0de55bbec7ccee2cbf1ec9776537972">wxCHOICE_WIDTH</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>height</em> = <code><a class="el" href="choicdlg_8h.html#abbbc385d3ea040c504aef9ce016b4de8">wxCHOICE_HEIGHT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga6168fd891e0096c12f9d836d7bcd3dc8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSingleChoiceIndex </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_array_string.html">wxArrayString</a> &amp;&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga9cee9b87475af5ba9df08e21296ecaba"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxGetSingleChoiceIndex </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>n</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>choices</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>initialSelection</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga5a6a376f69f87e48e618f6f79e2c4a1b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetTextFromUser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em> = <code><a class="el" href="textdlg_8h.html#a8faefe197032156063a3ea71fdf4eb8a">wxGetTextFromUserPromptStr</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>default_value</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>centre</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Pop up a dialog box with title set to <em>caption</em>, <code>message</code>, and a <code>default_value</code>. </p>
<p>The user may type in text and press OK to return this text, or press Cancel to return the empty string.</p>
<p>If <code>centre</code> is <span class="literal">true</span>, the message text (which may include new line characters) is centred; if <span class="literal">false</span>, the message is left-justified.</p>
<p>This function is a wrapper around <a class="el" href="classwx_text_entry_dialog.html" title="This class represents a dialog that requests a one-line text string from the user.">wxTextEntryDialog</a> and while it is usually more convenient to use, using the dialog directly is more flexible, e.g. it allows you to specify the <code>wxTE_MULTILINE</code> to allow the user enter multiple lines of text while this function is limited to single line entry only.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/textdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga10cbf79d51b2467289d1f6c11a7d0beb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxInfoMessageBox </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Shows a message box with the information about the wxWidgets build used, including its version, most important build parameters and the version of the underlying GUI toolkit. </p>
<p>This is mainly used for diagnostic purposes and can be invoked by Ctrl-Alt-middle clicking on any <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> which doesn't otherwise handle this event.</p>
<dl class="section since"><dt>Since</dt><dd>2.9.0</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__version.html#ga362595d425b3ff956744bcea8e72b374" title="Get wxWidgets version information.">wxGetLibraryVersionInfo()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gac66e5849170bf4b1f816e0a8c5912e9e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxIsBusy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if between two <a class="el" href="group__group__funcmacro__dialog.html#ga1a9c984ef97d76e45b6dad72219e758b" title="Changes the cursor to the given cursor for all windows in the application.">wxBeginBusyCursor()</a> and <a class="el" href="group__group__funcmacro__dialog.html#gaf2331f353059e79d45700a04793a7dd3" title="Changes the cursor back to the original cursor, for all windows in the application.">wxEndBusyCursor()</a> calls. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_busy_cursor.html" title="This class makes it easy to tell your user that the program is temporarily busy.">wxBusyCursor</a>.</dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga8d71c14962d9d93d2c251c43759f4783"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxLoadFileSelector </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>what</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>extension</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>default_name</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Ask for filename to load. </p>

</div>
</div>
<a class="anchor" id="ga193c64ed4802e379799cdb42de252647"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxMessageBox </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>message</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>caption</em> = <code><a class="el" href="msgdlg_8h.html#a5f93cd31111d1a0f2c65a4b4235035da">wxMessageBoxCaptionStr</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>style</em> = <code><a class="el" href="defs_8h.html#a9c40266b61a27f0124a69a699753889a">wxOK</a>|<a class="el" href="defs_8h.html#ae160ea382a8f7921484db9d499516dafaa9f0378dc2d52d0a96553e30d05a57ff">wxCENTRE</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>x</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>y</em> = <code><a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1">wxDefaultCoord</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Show a general purpose message dialog. </p>
<p>This is a convenient function which is usually used instead of using <a class="el" href="classwx_message_dialog.html" title="This class represents a dialog that shows a single or multi-line message, with a choice of OK...">wxMessageDialog</a> directly. Notice however that some of the features, such as extended text and custom labels for the message box buttons, are not provided by this function but only by <a class="el" href="classwx_message_dialog.html" title="This class represents a dialog that shows a single or multi-line message, with a choice of OK...">wxMessageDialog</a>.</p>
<p>The return value is one of: <code>wxYES</code>, <code>wxNO</code>, <code>wxCANCEL</code>, <code>wxOK</code> or <code>wxHELP</code> (notice that this return value is <b>different</b> from the return value of <a class="el" href="classwx_message_dialog.html#a28e6cea6fb3857df6cc9b103e06dbadf" title="Shows the dialog, returning one of wxID_OK, wxID_CANCEL, wxID_YES, wxID_NO or wxID_HELP.">wxMessageDialog::ShowModal()</a>).</p>
<p>For example: </p>
<div class="fragment"><div class="line"><span class="keywordtype">int</span> answer = <a class="code" href="group__group__funcmacro__dialog.html#ga193c64ed4802e379799cdb42de252647" title="Show a general purpose message dialog.">wxMessageBox</a>(<span class="stringliteral">&quot;Quit program?&quot;</span>, <span class="stringliteral">&quot;Confirm&quot;</span>,</div>
<div class="line">                          <a class="code" href="defs_8h.html#a5ba00a09cea0417a2ef7c4a4c2b0012c">wxYES_NO</a> | <a class="code" href="defs_8h.html#a5580412e224117ac127aacaafd49dc2e">wxCANCEL</a>, main_frame);</div>
<div class="line"><span class="keywordflow">if</span> (answer == <a class="code" href="defs_8h.html#ab38ccd9aa8aa47f9df32a75c96bb3000">wxYES</a>)</div>
<div class="line">    main_frame-&gt;Close();</div>
</div><!-- fragment --><p><em>message</em> may contain newline characters, in which case the message will be split into separate lines, to cater for large messages.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">message</td><td>Message to show in the dialog. </td></tr>
    <tr><td class="paramname">caption</td><td>The dialog title. </td></tr>
    <tr><td class="paramname">parent</td><td>Parent window. </td></tr>
    <tr><td class="paramname">style</td><td>Combination of style flags described in <a class="el" href="classwx_message_dialog.html" title="This class represents a dialog that shows a single or multi-line message, with a choice of OK...">wxMessageDialog</a> documentation. </td></tr>
    <tr><td class="paramname">x</td><td>Horizontal dialog position (ignored under MSW). Use <a class="el" href="defs_8h.html#ae297119c813ec5d3328ce3f43f9ac6c1" title="A special value meaning &quot;use default coordinate&quot;.">wxDefaultCoord</a> for <em>x</em> and <em>y</em> to let the system position the window. </td></tr>
    <tr><td class="paramname">y</td><td>Vertical dialog position (ignored under MSW).</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/msgdlg.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaef939cd02a41730546513302b3adebdf"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxSaveFileSelector </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>what</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>extension</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>default_name</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Ask for filename to save. </p>

</div>
</div>
<a class="anchor" id="ga71723a35f5e98349f5a79d7a025dac07"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxShowTip </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_tip_provider.html">wxTipProvider</a> *&#160;</td>
          <td class="paramname"><em>tipProvider</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>showAtStartup</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function shows a "startup tip" to the user. </p>
<p>The return value is the state of the "Show tips at startup" checkbox.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">parent</td><td>The parent window for the modal dialog. </td></tr>
    <tr><td class="paramname">tipProvider</td><td>An object which is used to get the text of the tips. It may be created with the <a class="el" href="group__group__funcmacro__dialog.html#ga9cc492bddff104d3afceca94ae945f38" title="This function creates a wxTipProvider which may be used with wxShowTip().">wxCreateFileTipProvider()</a> function. </td></tr>
    <tr><td class="paramname">showAtStartup</td><td>Should be true if startup tips are shown, false otherwise. This is used as the initial value for "Show tips at startup" checkbox which is shown in the tips dialog.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="overview_tips.html">wxTipProvider Overview</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/tipdlg.h&gt; </pre> 
</div>
</div>
</div><!-- contents -->

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