File: group__group__funcmacro__misc.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 (2942 lines) | stat: -rw-r--r-- 187,792 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
<!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: Miscellaneous</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="#define-members">Macros</a> &#124;
<a href="#typedef-members">Typedefs</a> &#124;
<a href="#enum-members">Enumerations</a> &#124;
<a href="#func-members">Functions</a>  </div>
  <div class="headertitle">
<div class="title">Miscellaneous</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>Group of miscellaneous functions and macros. </p>
<p>Related class group: <a class="el" href="group__group__class__misc.html">Miscellaneous</a> </p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a>
Macros</h2></td></tr>
<tr class="memitem:ga97372bcd910fd2cb8939d02be14b5f53"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga97372bcd910fd2cb8939d02be14b5f53">wxCONCAT</a>(x1, x2)</td></tr>
<tr class="memdesc:ga97372bcd910fd2cb8939d02be14b5f53"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro returns the concatenation of the arguments passed.  <a href="#ga97372bcd910fd2cb8939d02be14b5f53"></a><br/></td></tr>
<tr class="separator:ga97372bcd910fd2cb8939d02be14b5f53"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga55a96ec0e75df9052a6d442732532425"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga55a96ec0e75df9052a6d442732532425">wxCONCAT3</a>(x1, x2, x3)</td></tr>
<tr class="separator:ga55a96ec0e75df9052a6d442732532425"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab617aaa91b86883c3fb4300bb6cc1ba6"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab617aaa91b86883c3fb4300bb6cc1ba6">wxCONCAT4</a>(x1, x2, x3, x4)</td></tr>
<tr class="separator:gab617aaa91b86883c3fb4300bb6cc1ba6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab462091b4d23f715085e187a2b458b52"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab462091b4d23f715085e187a2b458b52">wxCONCAT5</a>(x1, x2, x3, x4, x5)</td></tr>
<tr class="separator:gab462091b4d23f715085e187a2b458b52"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gadb6119d6bfa157ecd48f7c68dc147296"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gadb6119d6bfa157ecd48f7c68dc147296">wxSTRINGIZE</a>(x)</td></tr>
<tr class="memdesc:gadb6119d6bfa157ecd48f7c68dc147296"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the string representation of the given symbol which can be either a literal or a macro (hence the advantage of using this macro instead of the standard preprocessor <code>#</code> operator which doesn't work with macros).  <a href="#gadb6119d6bfa157ecd48f7c68dc147296"></a><br/></td></tr>
<tr class="separator:gadb6119d6bfa157ecd48f7c68dc147296"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8c83f0b99d9d4ba57f3b54a385765f8a"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga8c83f0b99d9d4ba57f3b54a385765f8a">wxSTRINGIZE_T</a>(x)</td></tr>
<tr class="memdesc:ga8c83f0b99d9d4ba57f3b54a385765f8a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the string representation of the given symbol as either an ASCII or Unicode string, depending on the current build.  <a href="#ga8c83f0b99d9d4ba57f3b54a385765f8a"></a><br/></td></tr>
<tr class="separator:ga8c83f0b99d9d4ba57f3b54a385765f8a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga86654cef89e57eebec1025ab73b4bcf3"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga86654cef89e57eebec1025ab73b4bcf3">__WXFUNCTION__</a></td></tr>
<tr class="memdesc:ga86654cef89e57eebec1025ab73b4bcf3"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro expands to the name of the current function if the compiler supports any of <code><b>FUNCTION</b></code>, <code><b>func</b></code> or equivalent variables or macros or to <span class="literal">NULL</span> if none of them is available.  <a href="#ga86654cef89e57eebec1025ab73b4bcf3"></a><br/></td></tr>
<tr class="separator:ga86654cef89e57eebec1025ab73b4bcf3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga235fb9f070237c2d1e6e275b12a313ee"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga235fb9f070237c2d1e6e275b12a313ee">wxDECLARE_NO_ASSIGN_CLASS</a>(classname)</td></tr>
<tr class="memdesc:ga235fb9f070237c2d1e6e275b12a313ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro can be used in a class declaration to disable the generation of default assignment operator.  <a href="#ga235fb9f070237c2d1e6e275b12a313ee"></a><br/></td></tr>
<tr class="separator:ga235fb9f070237c2d1e6e275b12a313ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9ed5b52d604f9eb46c775986ea7ed48c"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c">wxDECLARE_NO_COPY_CLASS</a>(classname)</td></tr>
<tr class="memdesc:ga9ed5b52d604f9eb46c775986ea7ed48c"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro can be used in a class declaration to disable the generation of default copy ctor and assignment operator.  <a href="#ga9ed5b52d604f9eb46c775986ea7ed48c"></a><br/></td></tr>
<tr class="separator:ga9ed5b52d604f9eb46c775986ea7ed48c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa12aaa924b3e1eb622d1b5fa920ab650"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaa12aaa924b3e1eb622d1b5fa920ab650">wxDECLARE_NO_COPY_TEMPLATE_CLASS</a>(classname, arg)</td></tr>
<tr class="memdesc:gaa12aaa924b3e1eb622d1b5fa920ab650"><td class="mdescLeft">&#160;</td><td class="mdescRight">Analog of <a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS()</a> for template classes.  <a href="#gaa12aaa924b3e1eb622d1b5fa920ab650"></a><br/></td></tr>
<tr class="separator:gaa12aaa924b3e1eb622d1b5fa920ab650"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab5479598285a610e4565c18d927ca299"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab5479598285a610e4565c18d927ca299">wxDECLARE_NO_COPY_TEMPLATE_CLASS_2</a>(classname, arg1, arg2)</td></tr>
<tr class="memdesc:gab5479598285a610e4565c18d927ca299"><td class="mdescLeft">&#160;</td><td class="mdescRight">Analog of <a class="el" href="group__group__funcmacro__misc.html#gaa12aaa924b3e1eb622d1b5fa920ab650" title="Analog of wxDECLARE_NO_COPY_CLASS() for template classes.">wxDECLARE_NO_COPY_TEMPLATE_CLASS()</a> for templates with 2 parameters.  <a href="#gab5479598285a610e4565c18d927ca299"></a><br/></td></tr>
<tr class="separator:gab5479598285a610e4565c18d927ca299"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae7670c39825278bd22677b42f1589daa"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa">wxDEPRECATED</a>(function)</td></tr>
<tr class="memdesc:gae7670c39825278bd22677b42f1589daa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generate deprecation warning with the given message when a function is used.  <a href="#gae7670c39825278bd22677b42f1589daa"></a><br/></td></tr>
<tr class="separator:gae7670c39825278bd22677b42f1589daa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga539e5db26516d824523d77ed599fa063"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga539e5db26516d824523d77ed599fa063">wxDEPRECATED_BUT_USED_INTERNALLY</a>(function)</td></tr>
<tr class="memdesc:ga539e5db26516d824523d77ed599fa063"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a special version of <a class="el" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa" title="Generate deprecation warning with the given message when a function is used.">wxDEPRECATED()</a> macro which only does something when the deprecated function is used from the code outside wxWidgets itself but doesn't generate warnings when it is used from wxWidgets.  <a href="#ga539e5db26516d824523d77ed599fa063"></a><br/></td></tr>
<tr class="separator:ga539e5db26516d824523d77ed599fa063"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga541c593a183ed38d6d132dd19fe7bad7"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga541c593a183ed38d6d132dd19fe7bad7">wxDEPRECATED_INLINE</a>(func, body)</td></tr>
<tr class="memdesc:ga541c593a183ed38d6d132dd19fe7bad7"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro is similar to <a class="el" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa" title="Generate deprecation warning with the given message when a function is used.">wxDEPRECATED()</a> but can be used to not only declare the function <em>function</em> as deprecated but to also provide its (inline) implementation <em>body</em>.  <a href="#ga541c593a183ed38d6d132dd19fe7bad7"></a><br/></td></tr>
<tr class="separator:ga541c593a183ed38d6d132dd19fe7bad7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga432cb09293293bc49f0b8fc96f2ca050"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga432cb09293293bc49f0b8fc96f2ca050">wxDEPRECATED_ACCESSOR</a>(func, what)</td></tr>
<tr class="memdesc:ga432cb09293293bc49f0b8fc96f2ca050"><td class="mdescLeft">&#160;</td><td class="mdescRight">A helper macro allowing to easily define a simple deprecated accessor.  <a href="#ga432cb09293293bc49f0b8fc96f2ca050"></a><br/></td></tr>
<tr class="separator:ga432cb09293293bc49f0b8fc96f2ca050"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga51a5d09e22172b45f6f26bdc5233bdd5"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga51a5d09e22172b45f6f26bdc5233bdd5">wxDEPRECATED_BUT_USED_INTERNALLY_INLINE</a>(func, body)</td></tr>
<tr class="memdesc:ga51a5d09e22172b45f6f26bdc5233bdd5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Combination of <a class="el" href="group__group__funcmacro__misc.html#ga539e5db26516d824523d77ed599fa063" title="This is a special version of wxDEPRECATED() macro which only does something when the deprecated funct...">wxDEPRECATED_BUT_USED_INTERNALLY()</a> and <a class="el" href="group__group__funcmacro__misc.html#ga541c593a183ed38d6d132dd19fe7bad7" title="This macro is similar to wxDEPRECATED() but can be used to not only declare the function function as ...">wxDEPRECATED_INLINE()</a>.  <a href="#ga51a5d09e22172b45f6f26bdc5233bdd5"></a><br/></td></tr>
<tr class="separator:ga51a5d09e22172b45f6f26bdc5233bdd5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8d9d8ac2fab72355f168e80b00d15908"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga8d9d8ac2fab72355f168e80b00d15908">wxEXPLICIT</a></td></tr>
<tr class="memdesc:ga8d9d8ac2fab72355f168e80b00d15908"><td class="mdescLeft">&#160;</td><td class="mdescRight"><code>wxEXPLICIT</code> is a macro which expands to the C++ <code>explicit</code> keyword if the compiler supports it or nothing otherwise.  <a href="#ga8d9d8ac2fab72355f168e80b00d15908"></a><br/></td></tr>
<tr class="separator:ga8d9d8ac2fab72355f168e80b00d15908"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga08cfc270b9a263fc5a46929d5f85a569"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga08cfc270b9a263fc5a46929d5f85a569">wxSUPPRESS_GCC_PRIVATE_DTOR_WARNING</a>(name)</td></tr>
<tr class="memdesc:ga08cfc270b9a263fc5a46929d5f85a569"><td class="mdescLeft">&#160;</td><td class="mdescRight">GNU C++ compiler gives a warning for any class whose destructor is private unless it has a friend.  <a href="#ga08cfc270b9a263fc5a46929d5f85a569"></a><br/></td></tr>
<tr class="separator:ga08cfc270b9a263fc5a46929d5f85a569"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac1474244729505912af04277f1351e28"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gac1474244729505912af04277f1351e28">wxDYNLIB_FUNCTION</a>(type, name, dynlib)</td></tr>
<tr class="memdesc:gac1474244729505912af04277f1351e28"><td class="mdescLeft">&#160;</td><td class="mdescRight">When loading a function from a DLL you always have to cast the returned <code>void *</code> pointer to the correct type and, even more annoyingly, you have to repeat this type twice if you want to declare and define a function pointer all in one line.  <a href="#gac1474244729505912af04277f1351e28"></a><br/></td></tr>
<tr class="separator:gac1474244729505912af04277f1351e28"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6203af2f81f7b2a3dd8aa384426631a8"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga6203af2f81f7b2a3dd8aa384426631a8">wxLongLongFmtSpec</a></td></tr>
<tr class="memdesc:ga6203af2f81f7b2a3dd8aa384426631a8"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro is defined to contain the <code>printf()</code> format specifier using which 64 bit integer numbers (i.e.  <a href="#ga6203af2f81f7b2a3dd8aa384426631a8"></a><br/></td></tr>
<tr class="separator:ga6203af2f81f7b2a3dd8aa384426631a8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac35c626f7edf136246256edd765dcb48"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gac35c626f7edf136246256edd765dcb48">wxON_BLOCK_EXIT</a>(function,...)</td></tr>
<tr class="memdesc:gac35c626f7edf136246256edd765dcb48"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ensure that the global <em>function</em> with a few (up to some implementation-defined limit) is executed on scope exit, whether due to a normal function return or because an exception has been thrown.  <a href="#gac35c626f7edf136246256edd765dcb48"></a><br/></td></tr>
<tr class="separator:gac35c626f7edf136246256edd765dcb48"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga39062f9f9053571c0cccc13d3b0f5069"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga39062f9f9053571c0cccc13d3b0f5069">wxON_BLOCK_EXIT0</a>(function)</td></tr>
<tr class="separator:ga39062f9f9053571c0cccc13d3b0f5069"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5afb56ecc6c60e4e9e59c5944297abe5"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga5afb56ecc6c60e4e9e59c5944297abe5">wxON_BLOCK_EXIT1</a>(function, p1)</td></tr>
<tr class="separator:ga5afb56ecc6c60e4e9e59c5944297abe5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga567d271a9fa3684cbbe3a163a60ed911"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga567d271a9fa3684cbbe3a163a60ed911">wxON_BLOCK_EXIT2</a>(function, p1, p2)</td></tr>
<tr class="separator:ga567d271a9fa3684cbbe3a163a60ed911"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gadd21bc55d59bbc2866bb6ff7f9c11467"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gadd21bc55d59bbc2866bb6ff7f9c11467">wxON_BLOCK_EXIT3</a>(function, p1, p2, p3)</td></tr>
<tr class="separator:gadd21bc55d59bbc2866bb6ff7f9c11467"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga540ef8a7d02d2eb817e930ac83f8963d"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga540ef8a7d02d2eb817e930ac83f8963d">wxON_BLOCK_EXIT_OBJ</a>(object, method,...)</td></tr>
<tr class="memdesc:ga540ef8a7d02d2eb817e930ac83f8963d"><td class="mdescLeft">&#160;</td><td class="mdescRight">This family of macros is similar to <a class="el" href="group__group__funcmacro__misc.html#gac35c626f7edf136246256edd765dcb48" title="Ensure that the global function with a few (up to some implementation-defined limit) is executed on s...">wxON_BLOCK_EXIT()</a>, but calls a method of the given object instead of a free function.  <a href="#ga540ef8a7d02d2eb817e930ac83f8963d"></a><br/></td></tr>
<tr class="separator:ga540ef8a7d02d2eb817e930ac83f8963d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaae97c094a796b8e1bc78efbc325a99cb"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaae97c094a796b8e1bc78efbc325a99cb">wxON_BLOCK_EXIT_OBJ0</a>(object, method)</td></tr>
<tr class="separator:gaae97c094a796b8e1bc78efbc325a99cb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga86ff0ebb48b26dc585e52830652c9ed1"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga86ff0ebb48b26dc585e52830652c9ed1">wxON_BLOCK_EXIT_OBJ1</a>(object, method, p1)</td></tr>
<tr class="separator:ga86ff0ebb48b26dc585e52830652c9ed1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga58dff6a81f9ecf96d9d7271401017f21"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga58dff6a81f9ecf96d9d7271401017f21">wxON_BLOCK_EXIT_OBJ2</a>(object, method, p1, p2)</td></tr>
<tr class="separator:ga58dff6a81f9ecf96d9d7271401017f21"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga762ab2b3f681de2a4a6ab5e5db4709ae"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga762ab2b3f681de2a4a6ab5e5db4709ae">wxON_BLOCK_EXIT_OBJ3</a>(object, method, p1, p2, p3)</td></tr>
<tr class="separator:ga762ab2b3f681de2a4a6ab5e5db4709ae"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab6e20c8cff9879e49a6b7580901ee1e0"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab6e20c8cff9879e49a6b7580901ee1e0">wxON_BLOCK_EXIT_THIS</a>(method,...)</td></tr>
<tr class="memdesc:gab6e20c8cff9879e49a6b7580901ee1e0"><td class="mdescLeft">&#160;</td><td class="mdescRight">This family of macros is similar to wxON_BLOCK_OBJ(), but calls a method of <code>this</code> object instead of a method of the specified object.  <a href="#gab6e20c8cff9879e49a6b7580901ee1e0"></a><br/></td></tr>
<tr class="separator:gab6e20c8cff9879e49a6b7580901ee1e0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5e3c89d3ac3eb12dd67858b24a85d7e8"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga5e3c89d3ac3eb12dd67858b24a85d7e8">wxON_BLOCK_EXIT_THIS0</a>(method)</td></tr>
<tr class="separator:ga5e3c89d3ac3eb12dd67858b24a85d7e8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga45f3a4d43346d93549d684903825f2ad"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga45f3a4d43346d93549d684903825f2ad">wxON_BLOCK_EXIT_THIS1</a>(method, p1)</td></tr>
<tr class="separator:ga45f3a4d43346d93549d684903825f2ad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaef79a24750acd4dfa1cb490236977930"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaef79a24750acd4dfa1cb490236977930">wxON_BLOCK_EXIT_THIS2</a>(method, p1, p2)</td></tr>
<tr class="separator:gaef79a24750acd4dfa1cb490236977930"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9c3d4e9192f82e082dfe9db562481dca"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga9c3d4e9192f82e082dfe9db562481dca">wxON_BLOCK_EXIT_THIS3</a>(method, p1, p2, p3)</td></tr>
<tr class="separator:ga9c3d4e9192f82e082dfe9db562481dca"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae42b17d61096fa9aad54dbf329d44372"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gae42b17d61096fa9aad54dbf329d44372">wxON_BLOCK_EXIT_SET</a>(var, value)</td></tr>
<tr class="memdesc:gae42b17d61096fa9aad54dbf329d44372"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro sets a variable to the specified value on scope exit.  <a href="#gae42b17d61096fa9aad54dbf329d44372"></a><br/></td></tr>
<tr class="separator:gae42b17d61096fa9aad54dbf329d44372"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gabe8231ac62cf9cf4486fe53eec49195a"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gabe8231ac62cf9cf4486fe53eec49195a">wxON_BLOCK_EXIT_NULL</a>(ptr)</td></tr>
<tr class="memdesc:gabe8231ac62cf9cf4486fe53eec49195a"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro sets the pointer passed to it as argument to NULL on scope exit.  <a href="#gabe8231ac62cf9cf4486fe53eec49195a"></a><br/></td></tr>
<tr class="separator:gabe8231ac62cf9cf4486fe53eec49195a"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="typedef-members"></a>
Typedefs</h2></td></tr>
<tr class="memitem:ga35fec5f8f6480a13c339ce6d0710962a"><td class="memItemLeft" align="right" valign="top">typedef int(*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga35fec5f8f6480a13c339ce6d0710962a">wxSortCallback</a> )(const void *pItem1, const void *pItem2, const void *user_data)</td></tr>
<tr class="memdesc:ga35fec5f8f6480a13c339ce6d0710962a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Compare function type for use with <a class="el" href="group__group__funcmacro__misc.html#gaaa680fc5a0eb13ed1f9ad56721e1171c" title="Function implementing quick sort algorithm.">wxQsort()</a>  <a href="#ga35fec5f8f6480a13c339ce6d0710962a"></a><br/></td></tr>
<tr class="separator:ga35fec5f8f6480a13c339ce6d0710962a"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="enum-members"></a>
Enumerations</h2></td></tr>
<tr class="memitem:ga65c7d67ac9578376267a006c85b5e724"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a> { <br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a>, 
<br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724ac4bc5d1011a934727c1521b6ad2a37ea">wxBase64DecodeMode_SkipWS</a>, 
<br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a771fbc3264d8c134581618dca7e81a1b">wxBase64DecodeMode_Relaxed</a>
<br/>
 }</td></tr>
<tr class="memdesc:ga65c7d67ac9578376267a006c85b5e724"><td class="mdescLeft">&#160;</td><td class="mdescRight">Elements of this enum specify the possible behaviours of wxBase64Decode when an invalid character is encountered.  <a href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">More...</a><br/></td></tr>
<tr class="separator:ga65c7d67ac9578376267a006c85b5e724"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga7cc2e4244ca368f68e5746185eda6c4a"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom">{ <br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga7cc2e4244ca368f68e5746185eda6c4aa14018aae4b122e62a6d1337084cd51c0">wxStrip_Mnemonics</a> = 1, 
<br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga7cc2e4244ca368f68e5746185eda6c4aaf190d8b16d9fa9cc9c57786be7531d2a">wxStrip_Accel</a> = 2, 
<br/>
&#160;&#160;<a class="el" href="group__group__funcmacro__misc.html#gga7cc2e4244ca368f68e5746185eda6c4aa498e6b6ab4541edee4df73d12913692e">wxStrip_All</a> = wxStrip_Mnemonics | wxStrip_Accel
<br/>
 }</td></tr>
<tr class="memdesc:ga7cc2e4244ca368f68e5746185eda6c4a"><td class="mdescLeft">&#160;</td><td class="mdescRight">flags for wxStripMenuCodes  <a href="group__group__funcmacro__misc.html#ga7cc2e4244ca368f68e5746185eda6c4a">More...</a><br/></td></tr>
<tr class="separator:ga7cc2e4244ca368f68e5746185eda6c4a"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:gae76ac8ba0136d28435a233108cc40bee"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gae76ac8ba0136d28435a233108cc40bee">wxBase64Encode</a> (char *dst, size_t dstLen, const void *src, size_t srcLen)</td></tr>
<tr class="memdesc:gae76ac8ba0136d28435a233108cc40bee"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function encodes the given data using base64.  <a href="#gae76ac8ba0136d28435a233108cc40bee"></a><br/></td></tr>
<tr class="separator:gae76ac8ba0136d28435a233108cc40bee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaafaeb4b7aef5c4f9795341938cb469ae"><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__misc.html#gaafaeb4b7aef5c4f9795341938cb469ae">wxBase64Encode</a> (const void *src, size_t srcLen)</td></tr>
<tr class="memdesc:gaafaeb4b7aef5c4f9795341938cb469ae"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function encodes the given data using base64 and returns the output as a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>.  <a href="#gaafaeb4b7aef5c4f9795341938cb469ae"></a><br/></td></tr>
<tr class="separator:gaafaeb4b7aef5c4f9795341938cb469ae"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga12895467dca7cafd2d3c776e580d4861"><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__misc.html#ga12895467dca7cafd2d3c776e580d4861">wxBase64Encode</a> (const <a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> &amp;buf)</td></tr>
<tr class="memdesc:ga12895467dca7cafd2d3c776e580d4861"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function encodes the given data using base64 and returns the output as a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>.  <a href="#ga12895467dca7cafd2d3c776e580d4861"></a><br/></td></tr>
<tr class="separator:ga12895467dca7cafd2d3c776e580d4861"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga2b4f508809484666dfc7f81cf9073523"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga2b4f508809484666dfc7f81cf9073523">wxBase64DecodedSize</a> (size_t srcLen)</td></tr>
<tr class="memdesc:ga2b4f508809484666dfc7f81cf9073523"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the size of the buffer necessary to contain the data encoded in a base64 string of length <em>srcLen</em>.  <a href="#ga2b4f508809484666dfc7f81cf9073523"></a><br/></td></tr>
<tr class="separator:ga2b4f508809484666dfc7f81cf9073523"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga84d7266622d43ce4793a8f0bce865117"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga84d7266622d43ce4793a8f0bce865117">wxBase64EncodedSize</a> (size_t len)</td></tr>
<tr class="memdesc:ga84d7266622d43ce4793a8f0bce865117"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the length of the string with base64 representation of a buffer of specified size <em>len</em>.  <a href="#ga84d7266622d43ce4793a8f0bce865117"></a><br/></td></tr>
<tr class="separator:ga84d7266622d43ce4793a8f0bce865117"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga97da529725f807059069449cdc0eb6e3"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga97da529725f807059069449cdc0eb6e3">wxBase64Decode</a> (void *dst, size_t dstLen, const char *src, size_t srcLen=wxNO_LEN, <a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a> mode=<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a>, size_t *posErr=NULL)</td></tr>
<tr class="memdesc:ga97da529725f807059069449cdc0eb6e3"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function decodes a Base64-encoded string.  <a href="#ga97da529725f807059069449cdc0eb6e3"></a><br/></td></tr>
<tr class="separator:ga97da529725f807059069449cdc0eb6e3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga093152150d5e353cbd9d5499b5d83c9a"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga093152150d5e353cbd9d5499b5d83c9a">wxBase64Decode</a> (void *dst, size_t dstLen, const <a class="el" href="classwx_string.html">wxString</a> &amp;str, <a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a> mode=<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a>, size_t *posErr=NULL)</td></tr>
<tr class="memdesc:ga093152150d5e353cbd9d5499b5d83c9a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decode a Base64-encoded <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>.  <a href="#ga093152150d5e353cbd9d5499b5d83c9a"></a><br/></td></tr>
<tr class="separator:ga093152150d5e353cbd9d5499b5d83c9a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga254a00deb9b405de6f11736937b032b0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga254a00deb9b405de6f11736937b032b0">wxBase64Decode</a> (const char *src, size_t srcLen=wxNO_LEN, <a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a> mode=<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a>, size_t *posErr=NULL)</td></tr>
<tr class="memdesc:ga254a00deb9b405de6f11736937b032b0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decode a Base64-encoded string and return decoded contents in a buffer.  <a href="#ga254a00deb9b405de6f11736937b032b0"></a><br/></td></tr>
<tr class="separator:ga254a00deb9b405de6f11736937b032b0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga57c3f3ee5b6ba0e9e2fcf5008634a32b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga57c3f3ee5b6ba0e9e2fcf5008634a32b">wxBase64Decode</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;src, <a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a> mode=<a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a>, size_t *posErr=NULL)</td></tr>
<tr class="memdesc:ga57c3f3ee5b6ba0e9e2fcf5008634a32b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decode a Base64-encoded <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> and return decoded contents in a buffer.  <a href="#ga57c3f3ee5b6ba0e9e2fcf5008634a32b"></a><br/></td></tr>
<tr class="separator:ga57c3f3ee5b6ba0e9e2fcf5008634a32b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga598ae7504c6436af325490b41f4b5e90"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga598ae7504c6436af325490b41f4b5e90">wxFromString</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string, <a class="el" href="classwx_colour.html">wxColour</a> *colour)</td></tr>
<tr class="memdesc:ga598ae7504c6436af325490b41f4b5e90"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts string to a <a class="el" href="classwx_colour.html" title="A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values...">wxColour</a> best represented by the given string.  <a href="#ga598ae7504c6436af325490b41f4b5e90"></a><br/></td></tr>
<tr class="separator:ga598ae7504c6436af325490b41f4b5e90"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0adf8026ea8ed126420a2e7ef9edc678"><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__misc.html#ga0adf8026ea8ed126420a2e7ef9edc678">wxToString</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;colour)</td></tr>
<tr class="memdesc:ga0adf8026ea8ed126420a2e7ef9edc678"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts the given <a class="el" href="classwx_colour.html" title="A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values...">wxColour</a> into a string.  <a href="#ga0adf8026ea8ed126420a2e7ef9edc678"></a><br/></td></tr>
<tr class="separator:ga0adf8026ea8ed126420a2e7ef9edc678"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab8eb5d04fa3c1c12ea4b134b91481772"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab8eb5d04fa3c1c12ea4b134b91481772">wxDDECleanUp</a> ()</td></tr>
<tr class="memdesc:gab8eb5d04fa3c1c12ea4b134b91481772"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when wxWidgets exits, to clean up the DDE system.  <a href="#gab8eb5d04fa3c1c12ea4b134b91481772"></a><br/></td></tr>
<tr class="separator:gab8eb5d04fa3c1c12ea4b134b91481772"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0327fbafa4fedceade1bd8d7faf015f1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga0327fbafa4fedceade1bd8d7faf015f1">wxDDEInitialize</a> ()</td></tr>
<tr class="memdesc:ga0327fbafa4fedceade1bd8d7faf015f1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Initializes the DDE system.  <a href="#ga0327fbafa4fedceade1bd8d7faf015f1"></a><br/></td></tr>
<tr class="separator:ga0327fbafa4fedceade1bd8d7faf015f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5eb2033234e6841e977e754940d4009a"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:ga5eb2033234e6841e977e754940d4009a"><td class="memTemplItemLeft" align="right" valign="top">&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga5eb2033234e6841e977e754940d4009a">wxDELETE</a> (T *&amp;ptr)</td></tr>
<tr class="memdesc:ga5eb2033234e6841e977e754940d4009a"><td class="mdescLeft">&#160;</td><td class="mdescRight">A function which deletes and nulls the pointer.  <a href="#ga5eb2033234e6841e977e754940d4009a"></a><br/></td></tr>
<tr class="separator:ga5eb2033234e6841e977e754940d4009a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga9fa4acb2118617932492cae2d799598c"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:ga9fa4acb2118617932492cae2d799598c"><td class="memTemplItemLeft" align="right" valign="top">&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga9fa4acb2118617932492cae2d799598c">wxDELETEA</a> (T *&amp;array)</td></tr>
<tr class="memdesc:ga9fa4acb2118617932492cae2d799598c"><td class="mdescLeft">&#160;</td><td class="mdescRight">A function which deletes and nulls the pointer.  <a href="#ga9fa4acb2118617932492cae2d799598c"></a><br/></td></tr>
<tr class="separator:ga9fa4acb2118617932492cae2d799598c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gad6617733bba3da2f929aea0f0560d2cf"><td class="memTemplParams" colspan="2">template&lt;typename T &gt; </td></tr>
<tr class="memitem:gad6617733bba3da2f929aea0f0560d2cf"><td class="memTemplItemLeft" align="right" valign="top">&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gad6617733bba3da2f929aea0f0560d2cf">wxSwap</a> (T &amp;first, T &amp;second)</td></tr>
<tr class="memdesc:gad6617733bba3da2f929aea0f0560d2cf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Swaps the contents of two variables.  <a href="#gad6617733bba3da2f929aea0f0560d2cf"></a><br/></td></tr>
<tr class="separator:gad6617733bba3da2f929aea0f0560d2cf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga14782857e2432e5836ceb510bc72211c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga14782857e2432e5836ceb510bc72211c">wxVaCopy</a> (va_list argptrDst, va_list argptrSrc)</td></tr>
<tr class="memdesc:ga14782857e2432e5836ceb510bc72211c"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro is the same as the standard C99 <code>va_copy</code> for the compilers which support it or its replacement for those that don't.  <a href="#ga14782857e2432e5836ceb510bc72211c"></a><br/></td></tr>
<tr class="separator:ga14782857e2432e5836ceb510bc72211c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa7f39827f935fb7ba342a35dc1fb45dd"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaa7f39827f935fb7ba342a35dc1fb45dd">wxFromString</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;string, <a class="el" href="classwx_font.html">wxFont</a> *font)</td></tr>
<tr class="memdesc:gaa7f39827f935fb7ba342a35dc1fb45dd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts string to a <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> best represented by the given string.  <a href="#gaa7f39827f935fb7ba342a35dc1fb45dd"></a><br/></td></tr>
<tr class="separator:gaa7f39827f935fb7ba342a35dc1fb45dd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga73a6a41930ee5544077c6dd4df77ea06"><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__misc.html#ga73a6a41930ee5544077c6dd4df77ea06">wxToString</a> (const <a class="el" href="classwx_font.html">wxFont</a> &amp;font)</td></tr>
<tr class="memdesc:ga73a6a41930ee5544077c6dd4df77ea06"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts the given <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> into a string.  <a href="#ga73a6a41930ee5544077c6dd4df77ea06"></a><br/></td></tr>
<tr class="separator:ga73a6a41930ee5544077c6dd4df77ea06"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga8d211f75f18b9dfa770f93a1518e78da"><td class="memItemLeft" align="right" valign="top">wxLongLong_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga8d211f75f18b9dfa770f93a1518e78da">wxLL</a> (number)</td></tr>
<tr class="memdesc:ga8d211f75f18b9dfa770f93a1518e78da"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants:  <a href="#ga8d211f75f18b9dfa770f93a1518e78da"></a><br/></td></tr>
<tr class="separator:ga8d211f75f18b9dfa770f93a1518e78da"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga61a8fc8ea56fd6333d804e789af35ad4"><td class="memItemLeft" align="right" valign="top">wxLongLong_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga61a8fc8ea56fd6333d804e789af35ad4">wxULL</a> (number)</td></tr>
<tr class="memdesc:ga61a8fc8ea56fd6333d804e789af35ad4"><td class="mdescLeft">&#160;</td><td class="mdescRight">This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants:  <a href="#ga61a8fc8ea56fd6333d804e789af35ad4"></a><br/></td></tr>
<tr class="separator:ga61a8fc8ea56fd6333d804e789af35ad4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gae3c4e71b9eb7d1bf7b7cf2eee1832796"><td class="memTemplParams" colspan="2">template&lt;typename F , typename P1 , ... , typename PN &gt; </td></tr>
<tr class="memitem:gae3c4e71b9eb7d1bf7b7cf2eee1832796"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="classwx_scope_guard.html">wxScopeGuard</a>&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gae3c4e71b9eb7d1bf7b7cf2eee1832796">wxMakeGuard</a> (F func, P1 p1,..., PN pN)</td></tr>
<tr class="memdesc:gae3c4e71b9eb7d1bf7b7cf2eee1832796"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a scope guard object which will call the specified function with the given parameters on scope exit.  <a href="#gae3c4e71b9eb7d1bf7b7cf2eee1832796"></a><br/></td></tr>
<tr class="separator:gae3c4e71b9eb7d1bf7b7cf2eee1832796"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gafe92f9f590110183182e5b65433ad2a2"><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__misc.html#gafe92f9f590110183182e5b65433ad2a2">wxGetStockLabel</a> (<a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id, long flags=<a class="el" href="stockitem_8h.html#af6371558f353ff89e5a64bc5d61ed694a6de9ba5f40896f0daf18e5bbb8086056">wxSTOCK_WITH_MNEMONIC</a>)</td></tr>
<tr class="memdesc:gafe92f9f590110183182e5b65433ad2a2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns label that should be used for given <em>id</em> element.  <a href="#gafe92f9f590110183182e5b65433ad2a2"></a><br/></td></tr>
<tr class="separator:gafe92f9f590110183182e5b65433ad2a2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaceace1c71d01adb27b30a068015836e9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="power_8h.html#a1222ff013d6af054701028e127405bbd">wxBatteryState</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaceace1c71d01adb27b30a068015836e9">wxGetBatteryState</a> ()</td></tr>
<tr class="memdesc:gaceace1c71d01adb27b30a068015836e9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns battery state as one of <code>wxBATTERY_NORMAL_STATE</code>, <code>wxBATTERY_LOW_STATE</code>, <code>wxBATTERY_CRITICAL_STATE</code>, <code>wxBATTERY_SHUTDOWN_STATE</code> or <code>wxBATTERY_UNKNOWN_STATE</code>.  <a href="#gaceace1c71d01adb27b30a068015836e9"></a><br/></td></tr>
<tr class="separator:gaceace1c71d01adb27b30a068015836e9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gac7a20e813e3d3259f98e9a54440cf633"><td class="memItemLeft" align="right" valign="top"><a class="el" href="power_8h.html#ae3f5c432e430cf701d4cef6abf893632">wxPowerType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gac7a20e813e3d3259f98e9a54440cf633">wxGetPowerType</a> ()</td></tr>
<tr class="memdesc:gac7a20e813e3d3259f98e9a54440cf633"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the type of power source as one of <code>wxPOWER_SOCKET</code>, <code>wxPOWER_BATTERY</code> or <code>wxPOWER_UNKNOWN</code>.  <a href="#gac7a20e813e3d3259f98e9a54440cf633"></a><br/></td></tr>
<tr class="separator:gac7a20e813e3d3259f98e9a54440cf633"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gabb98f8c6c7df627b3c4a5246b452a5b8"><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__misc.html#gabb98f8c6c7df627b3c4a5246b452a5b8">wxGetDisplayName</a> ()</td></tr>
<tr class="memdesc:gabb98f8c6c7df627b3c4a5246b452a5b8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Under X only, returns the current display name.  <a href="#gabb98f8c6c7df627b3c4a5246b452a5b8"></a><br/></td></tr>
<tr class="separator:gabb98f8c6c7df627b3c4a5246b452a5b8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga82a18ac43492bfb375604c41b71ce84f"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga82a18ac43492bfb375604c41b71ce84f">wxGetKeyState</a> (<a class="el" href="defs_8h.html#a41c4609211685cff198618963ec8f77d">wxKeyCode</a> key)</td></tr>
<tr class="memdesc:ga82a18ac43492bfb375604c41b71ce84f"><td class="mdescLeft">&#160;</td><td class="mdescRight">For normal keys, returns <span class="literal">true</span> if the specified key is currently down.  <a href="#ga82a18ac43492bfb375604c41b71ce84f"></a><br/></td></tr>
<tr class="separator:ga82a18ac43492bfb375604c41b71ce84f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga00fef3cd1a110189e737ad7bf948a3d0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga00fef3cd1a110189e737ad7bf948a3d0">wxGetMousePosition</a> ()</td></tr>
<tr class="memdesc:ga00fef3cd1a110189e737ad7bf948a3d0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the mouse position in screen coordinates.  <a href="#ga00fef3cd1a110189e737ad7bf948a3d0"></a><br/></td></tr>
<tr class="separator:ga00fef3cd1a110189e737ad7bf948a3d0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6fb42677c51d509690e7062b9dadaa25"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_mouse_state.html">wxMouseState</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga6fb42677c51d509690e7062b9dadaa25">wxGetMouseState</a> ()</td></tr>
<tr class="memdesc:ga6fb42677c51d509690e7062b9dadaa25"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current state of the mouse.  <a href="#ga6fb42677c51d509690e7062b9dadaa25"></a><br/></td></tr>
<tr class="separator:ga6fb42677c51d509690e7062b9dadaa25"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga26ae851bd6d2d8df09afedad1e8e5d6b"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga26ae851bd6d2d8df09afedad1e8e5d6b">wxEnableTopLevelWindows</a> (bool enable=true)</td></tr>
<tr class="memdesc:ga26ae851bd6d2d8df09afedad1e8e5d6b"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function enables or disables all top level windows.  <a href="#ga26ae851bd6d2d8df09afedad1e8e5d6b"></a><br/></td></tr>
<tr class="separator:ga26ae851bd6d2d8df09afedad1e8e5d6b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga13f5ea19998bb9fd38ce07d61a6a2e1a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga13f5ea19998bb9fd38ce07d61a6a2e1a">wxFindWindowAtPoint</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:ga13f5ea19998bb9fd38ce07d61a6a2e1a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the deepest window at the given mouse position in screen coordinates, returning the window if found, or <span class="literal">NULL</span> if not.  <a href="#ga13f5ea19998bb9fd38ce07d61a6a2e1a"></a><br/></td></tr>
<tr class="separator:ga13f5ea19998bb9fd38ce07d61a6a2e1a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga0736ab488cec8607a031567059dfe6f2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga0736ab488cec8607a031567059dfe6f2">wxFindWindowByLabel</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;label, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga0736ab488cec8607a031567059dfe6f2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3b60179234c123ea62e2a1a598397150"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga3b60179234c123ea62e2a1a598397150">wxFindWindowByName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;name, <a class="el" href="classwx_window.html">wxWindow</a> *parent=NULL)</td></tr>
<tr class="separator:ga3b60179234c123ea62e2a1a598397150"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga5c3705ca3d228c51155fcf22404b739c"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga5c3705ca3d228c51155fcf22404b739c">wxFindMenuItemId</a> (<a class="el" href="classwx_frame.html">wxFrame</a> *frame, const <a class="el" href="classwx_string.html">wxString</a> &amp;menuString, const <a class="el" href="classwx_string.html">wxString</a> &amp;itemString)</td></tr>
<tr class="memdesc:ga5c3705ca3d228c51155fcf22404b739c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find a menu item identifier associated with the given frame's menu bar.  <a href="#ga5c3705ca3d228c51155fcf22404b739c"></a><br/></td></tr>
<tr class="separator:ga5c3705ca3d228c51155fcf22404b739c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaa2d93c1680369b4227f7de9de58e5fcb"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaa2d93c1680369b4227f7de9de58e5fcb">wxNewId</a> ()</td></tr>
<tr class="separator:gaa2d93c1680369b4227f7de9de58e5fcb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga52e28963d56a4950a4c3036696954c04"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga52e28963d56a4950a4c3036696954c04">wxRegisterId</a> (int id)</td></tr>
<tr class="memdesc:ga52e28963d56a4950a4c3036696954c04"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ensures that Ids subsequently generated by <a class="el" href="group__group__funcmacro__misc.html#gaa2d93c1680369b4227f7de9de58e5fcb">wxNewId()</a> do not clash with the given <em>id</em>.  <a href="#ga52e28963d56a4950a4c3036696954c04"></a><br/></td></tr>
<tr class="separator:ga52e28963d56a4950a4c3036696954c04"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga04038d4c78e4c111d018b8f82b2d66c3"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga04038d4c78e4c111d018b8f82b2d66c3">wxLaunchDefaultApplication</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;document, int flags=0)</td></tr>
<tr class="memdesc:ga04038d4c78e4c111d018b8f82b2d66c3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the <em>document</em> in the application associated with the files of this type.  <a href="#ga04038d4c78e4c111d018b8f82b2d66c3"></a><br/></td></tr>
<tr class="separator:ga04038d4c78e4c111d018b8f82b2d66c3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3ff36fe489da2a779248b56f283615ca"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga3ff36fe489da2a779248b56f283615ca">wxLaunchDefaultBrowser</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;url, int flags=0)</td></tr>
<tr class="memdesc:ga3ff36fe489da2a779248b56f283615ca"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the <em>url</em> in user's default browser.  <a href="#ga3ff36fe489da2a779248b56f283615ca"></a><br/></td></tr>
<tr class="separator:ga3ff36fe489da2a779248b56f283615ca"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga02fa66144c1015ebe75a5b3a0c99986c"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga02fa66144c1015ebe75a5b3a0c99986c">wxLoadUserResource</a> (const void **outData, size_t *outLen, const <a class="el" href="classwx_string.html">wxString</a> &amp;resourceName, const <a class="el" href="group__group__funcmacro__string.html#gad42f64d8c82f1ce4ae58773a89b2d6a7">wxChar</a> *resourceType=&quot;TEXT&quot;, WXHINSTANCE module=0)</td></tr>
<tr class="memdesc:ga02fa66144c1015ebe75a5b3a0c99986c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Loads an object from Windows resource file.  <a href="#ga02fa66144c1015ebe75a5b3a0c99986c"></a><br/></td></tr>
<tr class="separator:ga02fa66144c1015ebe75a5b3a0c99986c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gab13968dd7381ce432203c560741476bb"><td class="memItemLeft" align="right" valign="top">char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gab13968dd7381ce432203c560741476bb">wxLoadUserResource</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;resourceName, const <a class="el" href="group__group__funcmacro__string.html#gad42f64d8c82f1ce4ae58773a89b2d6a7">wxChar</a> *resourceType=&quot;TEXT&quot;, int *pLen=NULL, WXHINSTANCE module=0)</td></tr>
<tr class="memdesc:gab13968dd7381ce432203c560741476bb"><td class="mdescLeft">&#160;</td><td class="mdescRight">Loads a user-defined Windows resource as a string.  <a href="#gab13968dd7381ce432203c560741476bb"></a><br/></td></tr>
<tr class="separator:gab13968dd7381ce432203c560741476bb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaf617bfe542c74d75f97adeab88fab2e6"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaf617bfe542c74d75f97adeab88fab2e6">wxPostDelete</a> (<a class="el" href="classwx_object.html">wxObject</a> *object)</td></tr>
<tr class="separator:gaf617bfe542c74d75f97adeab88fab2e6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:gaaa680fc5a0eb13ed1f9ad56721e1171c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#gaaa680fc5a0eb13ed1f9ad56721e1171c">wxQsort</a> (void *pbase, size_t total_elems, size_t size, <a class="el" href="group__group__funcmacro__misc.html#ga35fec5f8f6480a13c339ce6d0710962a">wxSortCallback</a> cmp, const void *user_data)</td></tr>
<tr class="memdesc:gaaa680fc5a0eb13ed1f9ad56721e1171c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Function implementing quick sort algorithm.  <a href="#gaaa680fc5a0eb13ed1f9ad56721e1171c"></a><br/></td></tr>
<tr class="separator:gaaa680fc5a0eb13ed1f9ad56721e1171c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga6a5c19411145daf20a1cc6d875dbfe45"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga6a5c19411145daf20a1cc6d875dbfe45">wxSetDisplayName</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;displayName)</td></tr>
<tr class="memdesc:ga6a5c19411145daf20a1cc6d875dbfe45"><td class="mdescLeft">&#160;</td><td class="mdescRight">Under X only, sets the current display name.  <a href="#ga6a5c19411145daf20a1cc6d875dbfe45"></a><br/></td></tr>
<tr class="separator:ga6a5c19411145daf20a1cc6d875dbfe45"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga1513748c5eb0df0de6103c5105a18d55"><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__misc.html#ga1513748c5eb0df0de6103c5105a18d55">wxStripMenuCodes</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;str, int flags=<a class="el" href="group__group__funcmacro__misc.html#gga7cc2e4244ca368f68e5746185eda6c4aa498e6b6ab4541edee4df73d12913692e">wxStrip_All</a>)</td></tr>
<tr class="memdesc:ga1513748c5eb0df0de6103c5105a18d55"><td class="mdescLeft">&#160;</td><td class="mdescRight">Strips any menu codes from <em>str</em> and returns the result.  <a href="#ga1513748c5eb0df0de6103c5105a18d55"></a><br/></td></tr>
<tr class="separator:ga1513748c5eb0df0de6103c5105a18d55"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga1e2c40f2735a91a6bb283ff3d3e406f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga1e2c40f2735a91a6bb283ff3d3e406f0">wxFindWindowAtPointer</a> (<a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:ga1e2c40f2735a91a6bb283ff3d3e406f0"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the deepest window at the mouse pointer position, returning the window and current pointer position in screen coordinates.  <a href="#ga1e2c40f2735a91a6bb283ff3d3e406f0"></a><br/></td></tr>
<tr class="separator:ga1e2c40f2735a91a6bb283ff3d3e406f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga01b527f25e52ae16d2c9ee06458b10f1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga01b527f25e52ae16d2c9ee06458b10f1">wxGetActiveWindow</a> ()</td></tr>
<tr class="memdesc:ga01b527f25e52ae16d2c9ee06458b10f1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the currently active window (implemented for MSW and GTK only currently, always returns <span class="literal">NULL</span> in the other ports).  <a href="#ga01b527f25e52ae16d2c9ee06458b10f1"></a><br/></td></tr>
<tr class="separator:ga01b527f25e52ae16d2c9ee06458b10f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ga3a5f33038df32c170c234a0161cfd702"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__group__funcmacro__misc.html#ga3a5f33038df32c170c234a0161cfd702">wxGetTopLevelParent</a> (<a class="el" href="classwx_window.html">wxWindow</a> *window)</td></tr>
<tr class="memdesc:ga3a5f33038df32c170c234a0161cfd702"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the first top level parent of the given window, or in other words, the frame or dialog containing it, or <span class="literal">NULL</span>.  <a href="#ga3a5f33038df32c170c234a0161cfd702"></a><br/></td></tr>
<tr class="separator:ga3a5f33038df32c170c234a0161cfd702"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Macro Definition Documentation</h2>
<a class="anchor" id="ga86654cef89e57eebec1025ab73b4bcf3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define __WXFUNCTION__</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro expands to the name of the current function if the compiler supports any of <code><b>FUNCTION</b></code>, <code><b>func</b></code> or equivalent variables or macros or to <span class="literal">NULL</span> if none of them is available. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/cpp.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga97372bcd910fd2cb8939d02be14b5f53"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxCONCAT</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x2&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro returns the concatenation of the arguments passed. </p>
<p>Unlike when using the preprocessor operator, the arguments undergo macro expansion before being concatenated.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/cpp.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga55a96ec0e75df9052a6d442732532425"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxCONCAT3</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x3&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gab617aaa91b86883c3fb4300bb6cc1ba6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxCONCAT4</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x3, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x4&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gab462091b4d23f715085e187a2b458b52"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxCONCAT5</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x3, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x4, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x5&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga235fb9f070237c2d1e6e275b12a313ee"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDECLARE_NO_ASSIGN_CLASS</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">classname</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro can be used in a class declaration to disable the generation of default assignment operator. </p>
<p>Some classes have a well-defined copy constructor but cannot have an assignment operator, typically because they can't be modified once created. In such case, this macro can be used to disable the automatic assignment operator generation.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ga9ed5b52d604f9eb46c775986ea7ed48c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDECLARE_NO_COPY_CLASS</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">classname</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro can be used in a class declaration to disable the generation of default copy ctor and assignment operator. </p>
<p>Some classes don't have a well-defined copying semantics. In this case the standard C++ convention is to not allow copying them. One way of achieving it is to use this macro which simply defines a private copy constructor and assignment operator.</p>
<p>Beware that simply not defining copy constructor and assignment operator is <em>not</em> enough as the compiler would provide its own automatically-generated versions of them &ndash; hence the usefulness of this macro.</p>
<p>Example of use: </p>
<div class="fragment"><div class="line"><span class="keyword">class </span>FooWidget</div>
<div class="line">{</div>
<div class="line"><span class="keyword">public</span>:</div>
<div class="line">    FooWidget();</div>
<div class="line">    ...</div>
<div class="line"></div>
<div class="line">private:</div>
<div class="line">    <span class="comment">// widgets can&#39;t be copied</span></div>
<div class="line">    <a class="code" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS</a>(FooWidget);</div>
<div class="line">};</div>
</div><!-- fragment --><p>Notice that a semicolon must be used after this macro and that it changes the access specifier to private internally so it is better to use it at the end of the class declaration.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga235fb9f070237c2d1e6e275b12a313ee" title="This macro can be used in a class declaration to disable the generation of default assignment operato...">wxDECLARE_NO_ASSIGN_CLASS()</a>, <a class="el" href="group__group__funcmacro__misc.html#gaa12aaa924b3e1eb622d1b5fa920ab650" title="Analog of wxDECLARE_NO_COPY_CLASS() for template classes.">wxDECLARE_NO_COPY_TEMPLATE_CLASS()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="gaa12aaa924b3e1eb622d1b5fa920ab650"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDECLARE_NO_COPY_TEMPLATE_CLASS</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">classname, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">arg&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Analog of <a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS()</a> for template classes. </p>
<p>This macro can be used for template classes (with a single template parameter) for the same purpose as <a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS()</a> is used with the non-template classes.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">classname</td><td>The name of the template class. </td></tr>
    <tr><td class="paramname">arg</td><td>The name of the template parameter.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gab5479598285a610e4565c18d927ca299" title="Analog of wxDECLARE_NO_COPY_TEMPLATE_CLASS() for templates with 2 parameters.">wxDECLARE_NO_COPY_TEMPLATE_CLASS_2</a> </dd></dl>

</div>
</div>
<a class="anchor" id="gab5479598285a610e4565c18d927ca299"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDECLARE_NO_COPY_TEMPLATE_CLASS_2</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">classname, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">arg1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">arg2&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Analog of <a class="el" href="group__group__funcmacro__misc.html#gaa12aaa924b3e1eb622d1b5fa920ab650" title="Analog of wxDECLARE_NO_COPY_CLASS() for template classes.">wxDECLARE_NO_COPY_TEMPLATE_CLASS()</a> for templates with 2 parameters. </p>
<p>This macro can be used for template classes with two template parameters for the same purpose as <a class="el" href="group__group__funcmacro__misc.html#ga9ed5b52d604f9eb46c775986ea7ed48c" title="This macro can be used in a class declaration to disable the generation of default copy ctor and assi...">wxDECLARE_NO_COPY_CLASS()</a> is used with the non-template classes.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">classname</td><td>The name of the template class. </td></tr>
    <tr><td class="paramname">arg1</td><td>The name of the first template parameter. </td></tr>
    <tr><td class="paramname">arg2</td><td>The name of the second template parameter.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gaa12aaa924b3e1eb622d1b5fa920ab650" title="Analog of wxDECLARE_NO_COPY_CLASS() for template classes.">wxDECLARE_NO_COPY_TEMPLATE_CLASS</a> </dd></dl>

</div>
</div>
<a class="anchor" id="gae7670c39825278bd22677b42f1589daa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDEPRECATED</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Generate deprecation warning with the given message when a function is used. </p>
<p>This macro can be used to generate a warning indicating that a function is deprecated (i.e. scheduled for removal in the future) and explaining why is it so and/or what should it be replaced with. It applies to the declaration following it, for example: </p>
<div class="fragment"><div class="line">wxDEPRECATED_MSG(<span class="stringliteral">&quot;use safer overload returning wxString instead&quot;</span>)</div>
<div class="line">void wxGetSomething(<span class="keywordtype">char</span>* buf, <span class="keywordtype">size_t</span> len);</div>
<div class="line"></div>
<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> wxGetSomething();</div>
</div><!-- fragment --><p>For compilers other than clang, g++ 4.5 or later and MSVC 8 (MSVS 2005) or later, the message is ignored and a generic deprecation warning is given if possible, i.e. if the compiler is g++ (any supported version) or MSVC 7 (MSVS 2003) or later.</p>
<dl class="section since"><dt>Since</dt><dd>3.0</dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre><p> This macro can be used around a function declaration to generate warnings indicating that this function is deprecated (i.e. obsolete and planned to be removed in the future) when it is used.</p>
<p>Notice that this macro itself is deprecated in favour of wxDEPRECATED_MSG()!</p>
<p>Only Visual C++ 7 and higher and g++ compilers currently support this functionality.</p>
<p>Example of use:</p>
<div class="fragment"><div class="line"><span class="comment">// old function, use wxString version instead</span></div>
<div class="line"><a class="code" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa" title="Generate deprecation warning with the given message when a function is used.">wxDEPRECATED</a>( <span class="keywordtype">void</span> wxGetSomething(<span class="keywordtype">char</span> *buf, <span class="keywordtype">size_t</span> len) );</div>
<div class="line"></div>
<div class="line"><span class="comment">// ...</span></div>
<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> wxGetSomething();</div>
</div><!-- fragment --><p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga432cb09293293bc49f0b8fc96f2ca050"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDEPRECATED_ACCESSOR</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">func, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">what&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A helper macro allowing to easily define a simple deprecated accessor. </p>
<p>Compared to <a class="el" href="group__group__funcmacro__misc.html#ga541c593a183ed38d6d132dd19fe7bad7" title="This macro is similar to wxDEPRECATED() but can be used to not only declare the function function as ...">wxDEPRECATED_INLINE()</a> it saves a <code>return</code> statement and, especially, a strangely looking semicolon inside a macro.</p>
<p>Example of use </p>
<div class="fragment"><div class="line"><span class="keyword">class </span>wxFoo</div>
<div class="line">{</div>
<div class="line"><span class="keyword">public</span>:</div>
<div class="line">    <span class="keywordtype">int</span> GetValue()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> m_value; }</div>
<div class="line"></div>
<div class="line">    <span class="comment">// this one is deprecated because it was erroneously non-const</span></div>
<div class="line">    <a class="code" href="group__group__funcmacro__misc.html#ga432cb09293293bc49f0b8fc96f2ca050" title="A helper macro allowing to easily define a simple deprecated accessor.">wxDEPRECATED_ACCESSOR</a>( <span class="keywordtype">int</span> GetValue(), m_value )</div>
<div class="line"></div>
<div class="line">private:</div>
<div class="line">    <span class="keywordtype">int</span> m_value;</div>
<div class="line">};</div>
</div><!-- fragment --> 
</div>
</div>
<a class="anchor" id="ga539e5db26516d824523d77ed599fa063"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDEPRECATED_BUT_USED_INTERNALLY</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This is a special version of <a class="el" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa" title="Generate deprecation warning with the given message when a function is used.">wxDEPRECATED()</a> macro which only does something when the deprecated function is used from the code outside wxWidgets itself but doesn't generate warnings when it is used from wxWidgets. </p>
<p>It is used with the virtual functions which are called by the library itself &ndash; even if such function is deprecated the library still has to call it to ensure that the existing code overriding it continues to work, but the use of this macro ensures that a deprecation warning will be generated if this function is used from the user code or, in case of Visual C++, even when it is simply overridden.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga51a5d09e22172b45f6f26bdc5233bdd5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDEPRECATED_BUT_USED_INTERNALLY_INLINE</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">func, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">body&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Combination of <a class="el" href="group__group__funcmacro__misc.html#ga539e5db26516d824523d77ed599fa063" title="This is a special version of wxDEPRECATED() macro which only does something when the deprecated funct...">wxDEPRECATED_BUT_USED_INTERNALLY()</a> and <a class="el" href="group__group__funcmacro__misc.html#ga541c593a183ed38d6d132dd19fe7bad7" title="This macro is similar to wxDEPRECATED() but can be used to not only declare the function function as ...">wxDEPRECATED_INLINE()</a>. </p>
<p>This macro should be used for deprecated functions called by the library itself (usually for backwards compatibility reasons) and which are defined inline.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga541c593a183ed38d6d132dd19fe7bad7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDEPRECATED_INLINE</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">func, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">body&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro is similar to <a class="el" href="group__group__funcmacro__misc.html#gae7670c39825278bd22677b42f1589daa" title="Generate deprecation warning with the given message when a function is used.">wxDEPRECATED()</a> but can be used to not only declare the function <em>function</em> as deprecated but to also provide its (inline) implementation <em>body</em>. </p>
<p>It can be used as following:</p>
<div class="fragment"><div class="line"><span class="keyword">class </span>wxFoo</div>
<div class="line">{</div>
<div class="line"><span class="keyword">public</span>:</div>
<div class="line">    <span class="comment">// OldMethod() is deprecated, use NewMethod() instead</span></div>
<div class="line">    <span class="keywordtype">void</span> NewMethod();</div>
<div class="line">    <a class="code" href="group__group__funcmacro__misc.html#ga541c593a183ed38d6d132dd19fe7bad7" title="This macro is similar to wxDEPRECATED() but can be used to not only declare the function function as ...">wxDEPRECATED_INLINE</a>( <span class="keywordtype">void</span> OldMethod(), NewMethod(); )</div>
<div class="line">};</div>
</div><!-- fragment --><p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gac1474244729505912af04277f1351e28"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxDYNLIB_FUNCTION</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">type, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">name, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">dynlib&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>When loading a function from a DLL you always have to cast the returned <code>void *</code> pointer to the correct type and, even more annoyingly, you have to repeat this type twice if you want to declare and define a function pointer all in one line. </p>
<p>This macro makes this slightly less painful by allowing you to specify the type only once, as the first parameter, and creating a variable of this type named after the function but with <code>pfn</code> prefix and initialized with the function <em>name</em> from the <a class="el" href="classwx_dynamic_library.html" title="wxDynamicLibrary is a class representing dynamically loadable library (Windows DLL, shared library under Unix etc).">wxDynamicLibrary</a> <em>dynlib</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>The type of the function. </td></tr>
    <tr><td class="paramname">name</td><td>The name of the function to load, not a string (without quotes, it is quoted automatically by the macro). </td></tr>
    <tr><td class="paramname">dynlib</td><td>The library to load the function from.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/dynlib.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga8d9d8ac2fab72355f168e80b00d15908"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxEXPLICIT</td>
        </tr>
      </table>
</div><div class="memdoc">

<p><code>wxEXPLICIT</code> is a macro which expands to the C++ <code>explicit</code> keyword if the compiler supports it or nothing otherwise. </p>
<p>Thus, it can be used even in the code which might have to be compiled with an old compiler without support for this language feature but still take advantage of it when it is available.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga6203af2f81f7b2a3dd8aa384426631a8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxLongLongFmtSpec</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro is defined to contain the <code>printf()</code> format specifier using which 64 bit integer numbers (i.e. </p>
<p>those of type <code>wxLongLong_t</code>) can be printed. Example of using it:</p>
<div class="fragment"><div class="line"><span class="preprocessor">#ifdef wxLongLong_t</span></div>
<div class="line"><span class="preprocessor"></span>    wxLongLong_t ll = <a class="code" href="group__group__funcmacro__misc.html#ga8d211f75f18b9dfa770f93a1518e78da" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxLL</a>(0x1234567890abcdef);</div>
<div class="line">    printf(<span class="stringliteral">&quot;Long long = %&quot;</span> <a class="code" href="group__group__funcmacro__misc.html#ga6203af2f81f7b2a3dd8aa384426631a8" title="This macro is defined to contain the printf() format specifier using which 64 bit integer numbers (i...">wxLongLongFmtSpec</a> <span class="stringliteral">&quot;x\n&quot;</span>, ll);</div>
<div class="line"><span class="preprocessor">#endif</span></div>
</div><!-- fragment --><dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga8d211f75f18b9dfa770f93a1518e78da" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxLL()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/longlong.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gac35c626f7edf136246256edd765dcb48"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname"><em>...</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Ensure that the global <em>function</em> with a few (up to some implementation-defined limit) is executed on scope exit, whether due to a normal function return or because an exception has been thrown. </p>
<p>A typical example of its usage:</p>
<div class="fragment"><div class="line"><span class="keywordtype">void</span> *buf = malloc(size);</div>
<div class="line"><a class="code" href="group__group__funcmacro__misc.html#ga5afb56ecc6c60e4e9e59c5944297abe5">wxON_BLOCK_EXIT1</a>(free, buf);</div>
</div><!-- fragment --><p>Please see the original article by Andrei Alexandrescu and Petru Marginean published in December 2000 issue of C/C++ Users Journal for more details.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gaae97c094a796b8e1bc78efbc325a99cb">wxON_BLOCK_EXIT_OBJ0()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/scopeguard.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga39062f9f9053571c0cccc13d3b0f5069"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT0</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga5afb56ecc6c60e4e9e59c5944297abe5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT1</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga567d271a9fa3684cbbe3a163a60ed911"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT2</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gadd21bc55d59bbc2866bb6ff7f9c11467"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT3</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">function, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p3&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gabe8231ac62cf9cf4486fe53eec49195a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_NULL</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">ptr</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro sets the pointer passed to it as argument to NULL on scope exit. </p>
<p>It must be used instead of <a class="el" href="group__group__funcmacro__misc.html#gae42b17d61096fa9aad54dbf329d44372" title="This macro sets a variable to the specified value on scope exit.">wxON_BLOCK_EXIT_SET()</a> when the value being set is <code>NULL</code>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/scopeguard.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga540ef8a7d02d2eb817e930ac83f8963d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_OBJ</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">object, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname"><em>...</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This family of macros is similar to <a class="el" href="group__group__funcmacro__misc.html#gac35c626f7edf136246256edd765dcb48" title="Ensure that the global function with a few (up to some implementation-defined limit) is executed on s...">wxON_BLOCK_EXIT()</a>, but calls a method of the given object instead of a free function. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/scopeguard.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaae97c094a796b8e1bc78efbc325a99cb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_OBJ0</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">object, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga86ff0ebb48b26dc585e52830652c9ed1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_OBJ1</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">object, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga58dff6a81f9ecf96d9d7271401017f21"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_OBJ2</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">object, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga762ab2b3f681de2a4a6ab5e5db4709ae"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_OBJ3</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">object, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p3&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gae42b17d61096fa9aad54dbf329d44372"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_SET</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">var, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">value&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro sets a variable to the specified value on scope exit. </p>
<p>Example of usage: </p>
<div class="fragment"><div class="line"><span class="keywordtype">void</span> foo()</div>
<div class="line">{</div>
<div class="line">    <span class="keywordtype">bool</span> isDoingSomething = <span class="keyword">true</span>;</div>
<div class="line">    {</div>
<div class="line">        <a class="code" href="group__group__funcmacro__misc.html#gae42b17d61096fa9aad54dbf329d44372" title="This macro sets a variable to the specified value on scope exit.">wxON_BLOCK_EXIT_SET</a>(isDoingSomething, <span class="keyword">false</span>);</div>
<div class="line">        ... <span class="keywordflow">do</span> something ...</div>
<div class="line">    }</div>
<div class="line">    ... isDoingSomething is <span class="keyword">false</span> now ...</div>
<div class="line">}</div>
</div><!-- fragment --><p>Notice that <em>value</em> is copied, i.e. stored by value, so it can be a temporary object returned by a function call, for example.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gaae97c094a796b8e1bc78efbc325a99cb">wxON_BLOCK_EXIT_OBJ0()</a>, <a class="el" href="group__group__funcmacro__misc.html#gabe8231ac62cf9cf4486fe53eec49195a" title="This macro sets the pointer passed to it as argument to NULL on scope exit.">wxON_BLOCK_EXIT_NULL()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/scopeguard.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gab6e20c8cff9879e49a6b7580901ee1e0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_THIS</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname"><em>...</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This family of macros is similar to wxON_BLOCK_OBJ(), but calls a method of <code>this</code> object instead of a method of the specified object. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/scopeguard.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga5e3c89d3ac3eb12dd67858b24a85d7e8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_THIS0</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga45f3a4d43346d93549d684903825f2ad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_THIS1</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gaef79a24750acd4dfa1cb490236977930"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_THIS2</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ga9c3d4e9192f82e082dfe9db562481dca"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxON_BLOCK_EXIT_THIS3</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">method, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p1, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p2, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">p3&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="gadb6119d6bfa157ecd48f7c68dc147296"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxSTRINGIZE</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the string representation of the given symbol which can be either a literal or a macro (hence the advantage of using this macro instead of the standard preprocessor <code>#</code> operator which doesn't work with macros). </p>
<p>Notice that this macro always produces a <code>char</code> string, use <a class="el" href="group__group__funcmacro__misc.html#ga8c83f0b99d9d4ba57f3b54a385765f8a" title="Returns the string representation of the given symbol as either an ASCII or Unicode string...">wxSTRINGIZE_T()</a> to build a wide string Unicode build.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga97372bcd910fd2cb8939d02be14b5f53" title="This macro returns the concatenation of the arguments passed.">wxCONCAT()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/cpp.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga8c83f0b99d9d4ba57f3b54a385765f8a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxSTRINGIZE_T</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">x</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the string representation of the given symbol as either an ASCII or Unicode string, depending on the current build. </p>
<p>This is the Unicode-friendly equivalent of <a class="el" href="group__group__funcmacro__misc.html#gadb6119d6bfa157ecd48f7c68dc147296" title="Returns the string representation of the given symbol which can be either a literal or a macro (hence...">wxSTRINGIZE()</a>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/cpp.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga08cfc270b9a263fc5a46929d5f85a569"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">#define wxSUPPRESS_GCC_PRIVATE_DTOR_WARNING</td>
          <td>(</td>
          <td class="paramtype">&#160;</td>
          <td class="paramname">name</td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>GNU C++ compiler gives a warning for any class whose destructor is private unless it has a friend. </p>
<p>This warning may sometimes be useful but it doesn't make sense for reference counted class which always delete themselves (hence destructor should be private) but don't necessarily have any friends, so this macro is provided to disable the warning in such case. The <em>name</em> parameter should be the name of the class but is only used to construct a unique friend class name internally.</p>
<p>Example of using the macro:</p>
<div class="fragment"><div class="line"><span class="keyword">class </span>RefCounted</div>
<div class="line">{</div>
<div class="line"><span class="keyword">public</span>:</div>
<div class="line">    RefCounted() { m_nRef = 1; }</div>
<div class="line">    <span class="keywordtype">void</span> IncRef() { m_nRef++ ; }</div>
<div class="line">    <span class="keywordtype">void</span> DecRef() { <span class="keywordflow">if</span> ( !--m_nRef ) <span class="keyword">delete</span> <span class="keyword">this</span>; }</div>
<div class="line"></div>
<div class="line"><span class="keyword">private</span>:</div>
<div class="line">    ~RefCounted() { }</div>
<div class="line"></div>
<div class="line">    wxSUPPRESS_GCC_PRIVATE_DTOR(RefCounted)</div>
<div class="line">};</div>
</div><!-- fragment --><p>Notice that there should be no semicolon after this macro.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<h2 class="groupheader">Typedef Documentation</h2>
<a class="anchor" id="ga35fec5f8f6480a13c339ce6d0710962a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef int(* wxSortCallback)(const void *pItem1, const void *pItem2, const void *user_data)</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Compare function type for use with <a class="el" href="group__group__funcmacro__misc.html#gaaa680fc5a0eb13ed1f9ad56721e1171c" title="Function implementing quick sort algorithm.">wxQsort()</a> </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<h2 class="groupheader">Enumeration Type Documentation</h2>
<a class="anchor" id="ga7cc2e4244ca368f68e5746185eda6c4a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">anonymous enum</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>flags for wxStripMenuCodes </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="gga7cc2e4244ca368f68e5746185eda6c4aa14018aae4b122e62a6d1337084cd51c0"></a>wxStrip_Mnemonics</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="gga7cc2e4244ca368f68e5746185eda6c4aaf190d8b16d9fa9cc9c57786be7531d2a"></a>wxStrip_Accel</em>&nbsp;</td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="gga7cc2e4244ca368f68e5746185eda6c4aa498e6b6ab4541edee4df73d12913692e"></a>wxStrip_All</em>&nbsp;</td><td>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<a class="anchor" id="ga65c7d67ac9578376267a006c85b5e724"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">enum <a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Elements of this enum specify the possible behaviours of wxBase64Decode when an invalid character is encountered. </p>
<dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" id="gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044"></a>wxBase64DecodeMode_Strict</em>&nbsp;</td><td>
<p>Normal behaviour: stop at any invalid characters. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="gga65c7d67ac9578376267a006c85b5e724ac4bc5d1011a934727c1521b6ad2a37ea"></a>wxBase64DecodeMode_SkipWS</em>&nbsp;</td><td>
<p>Skip whitespace characters. </p>
</td></tr>
<tr><td valign="top"><em><a class="anchor" id="gga65c7d67ac9578376267a006c85b5e724a771fbc3264d8c134581618dca7e81a1b"></a>wxBase64DecodeMode_Relaxed</em>&nbsp;</td><td>
<p>The most lenient behaviour: simply ignore all invalid characters. </p>
</td></tr>
</table>
</dd>
</dl>

</div>
</div>
<h2 class="groupheader">Function Documentation</h2>
<a class="anchor" id="ga97da529725f807059069449cdc0eb6e3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxBase64Decode </td>
          <td>(</td>
          <td class="paramtype">void *&#160;</td>
          <td class="paramname"><em>dst</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>dstLen</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>srcLen</em> = <code>wxNO_LEN</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a>&#160;</td>
          <td class="paramname"><em>mode</em> = <code><a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *&#160;</td>
          <td class="paramname"><em>posErr</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 decodes a Base64-encoded string. </p>
<p>This overload is a raw decoding function and decodes the data into the provided buffer <em>dst</em> of the given size <em>dstLen</em>. An error is returned if the buffer is not large enough &ndash; that is not at least wxBase64DecodedSize(srcLen) bytes. Notice that the buffer will <em>not</em> be <span class="literal">NULL</span>-terminated.</p>
<p>This overload returns the number of bytes written to the buffer or the necessary buffer size if <em>dst</em> was <span class="literal">NULL</span> or <code>wxCONV_FAILED</code> on error, e.g. if the output buffer is too small or invalid characters were encountered in the input string.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dst</td><td>Pointer to output buffer, may be <span class="literal">NULL</span> to just compute the necessary buffer size. </td></tr>
    <tr><td class="paramname">dstLen</td><td>The size of the output buffer, ignored if dst is <span class="literal">NULL</span>. </td></tr>
    <tr><td class="paramname">src</td><td>The input string, must not be <span class="literal">NULL</span>. For the version using <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>, the input string should contain only ASCII characters. </td></tr>
    <tr><td class="paramname">srcLen</td><td>The length of the input string or special value wxNO_LEN if the string is <span class="literal">NULL</span>-terminated and the length should be computed by this function itself. </td></tr>
    <tr><td class="paramname">mode</td><td>This parameter specifies the function behaviour when invalid characters are encountered in input. By default, any such character stops the decoding with error. If the mode is wxBase64DecodeMode_SkipWS, then the white space characters are silently skipped instead. And if it is wxBase64DecodeMode_Relaxed, then all invalid characters are skipped. </td></tr>
    <tr><td class="paramname">posErr</td><td>If this pointer is non-<span class="literal">NULL</span> and an error occurs during decoding, it is filled with the index of the invalid character.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga093152150d5e353cbd9d5499b5d83c9a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxBase64Decode </td>
          <td>(</td>
          <td class="paramtype">void *&#160;</td>
          <td class="paramname"><em>dst</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>dstLen</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>str</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a>&#160;</td>
          <td class="paramname"><em>mode</em> = <code><a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *&#160;</td>
          <td class="paramname"><em>posErr</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Decode a Base64-encoded <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>. </p>
<p>See the <a class="el" href="group__group__funcmacro__misc.html#ga97da529725f807059069449cdc0eb6e3" title="This function decodes a Base64-encoded string.">wxBase64Decode(void*,size_t,const char*,size_t,wxBase64DecodeMode,size_t*)</a> overload for more information about the parameters of this function, the only difference between it and this one is that a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> is used instead of a <code>char*</code> pointer and its length.</p>
<dl class="section since"><dt>Since</dt><dd>2.9.1</dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga254a00deb9b405de6f11736937b032b0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> wxBase64Decode </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>srcLen</em> = <code>wxNO_LEN</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a>&#160;</td>
          <td class="paramname"><em>mode</em> = <code><a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *&#160;</td>
          <td class="paramname"><em>posErr</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Decode a Base64-encoded string and return decoded contents in a buffer. </p>
<p>See the <a class="el" href="group__group__funcmacro__misc.html#ga97da529725f807059069449cdc0eb6e3" title="This function decodes a Base64-encoded string.">wxBase64Decode(void*,size_t,const char*,size_t,wxBase64DecodeMode,size_t*)</a> overload for more information about the parameters of this function. The difference of this overload is that it allocates a buffer of necessary size on its own and returns it, freeing you from the need to do it manually. Because of this, it is simpler to use and is recommended for normal use.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga57c3f3ee5b6ba0e9e2fcf5008634a32b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> wxBase64Decode </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__group__funcmacro__misc.html#ga65c7d67ac9578376267a006c85b5e724">wxBase64DecodeMode</a>&#160;</td>
          <td class="paramname"><em>mode</em> = <code><a class="el" href="group__group__funcmacro__misc.html#gga65c7d67ac9578376267a006c85b5e724a3426a63a24c350c0562eb527281f6044">wxBase64DecodeMode_Strict</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *&#160;</td>
          <td class="paramname"><em>posErr</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Decode a Base64-encoded <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> and return decoded contents in a buffer. </p>
<p>See the <a class="el" href="group__group__funcmacro__misc.html#ga97da529725f807059069449cdc0eb6e3" title="This function decodes a Base64-encoded string.">wxBase64Decode(void*,size_t,const char*,size_t,wxBase64DecodeMode,size_t*)</a> overload for more information about the parameters of this function.</p>
<p>This overload takes as input a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> and returns the internally-allocated memory as a <a class="el" href="classwx_memory_buffer.html" title="A wxMemoryBuffer is a useful data structure for storing arbitrary sized blocks of memory...">wxMemoryBuffer</a>, containing the Base64-decoded data.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga2b4f508809484666dfc7f81cf9073523"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxBase64DecodedSize </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>srcLen</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the size of the buffer necessary to contain the data encoded in a base64 string of length <em>srcLen</em>. </p>
<p>This can be useful for allocating a buffer to be passed to <a class="el" href="group__group__funcmacro__misc.html#ga97da529725f807059069449cdc0eb6e3" title="This function decodes a Base64-encoded string.">wxBase64Decode()</a>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gae76ac8ba0136d28435a233108cc40bee"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxBase64Encode </td>
          <td>(</td>
          <td class="paramtype">char *&#160;</td>
          <td class="paramname"><em>dst</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>dstLen</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const void *&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>srcLen</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function encodes the given data using base64. </p>
<p>To allocate the buffer of the correct size, use <a class="el" href="group__group__funcmacro__misc.html#ga84d7266622d43ce4793a8f0bce865117" title="Returns the length of the string with base64 representation of a buffer of specified size len...">wxBase64EncodedSize()</a> or call this function with <em>dst</em> set to <span class="literal">NULL</span> &ndash; it will then return the necessary buffer size.</p>
<p>This raw encoding function overload writes the output string into the provided buffer; the other overloads return it as a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dst</td><td>The output buffer, may be <span class="literal">NULL</span> to retrieve the needed buffer size. </td></tr>
    <tr><td class="paramname">dstLen</td><td>The output buffer size, ignored if dst is <span class="literal">NULL</span>. </td></tr>
    <tr><td class="paramname">src</td><td>The input buffer, must not be <span class="literal">NULL</span>. </td></tr>
    <tr><td class="paramname">srcLen</td><td>The length of the input data.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>wxCONV_FAILED</code> if the output buffer is too small.</dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaafaeb4b7aef5c4f9795341938cb469ae"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxBase64Encode </td>
          <td>(</td>
          <td class="paramtype">const void *&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>srcLen</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function encodes the given data using base64 and returns the output as a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>. </p>
<p>There is no error return.</p>
<p>To allocate the buffer of the correct size, use <a class="el" href="group__group__funcmacro__misc.html#ga84d7266622d43ce4793a8f0bce865117" title="Returns the length of the string with base64 representation of a buffer of specified size len...">wxBase64EncodedSize()</a> or call this function with <em>dst</em> set to <span class="literal">NULL</span> &ndash; it will then return the necessary buffer size.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">src</td><td>The input buffer, must not be <span class="literal">NULL</span>. </td></tr>
    <tr><td class="paramname">srcLen</td><td>The length of the input data.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga12895467dca7cafd2d3c776e580d4861"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxBase64Encode </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> &amp;&#160;</td>
          <td class="paramname"><em>buf</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function encodes the given data using base64 and returns the output as a <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>. </p>
<p>There is no error return.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga84d7266622d43ce4793a8f0bce865117"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t wxBase64EncodedSize </td>
          <td>(</td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>len</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the length of the string with base64 representation of a buffer of specified size <em>len</em>. </p>
<p>This can be useful for allocating the buffer passed to <a class="el" href="group__group__funcmacro__misc.html#gae76ac8ba0136d28435a233108cc40bee" title="This function encodes the given data using base64.">wxBase64Encode()</a>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/base64.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gab8eb5d04fa3c1c12ea4b134b91481772"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxDDECleanUp </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Called when wxWidgets exits, to clean up the DDE system. </p>
<p>This no longer needs to be called by the application.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga0327fbafa4fedceade1bd8d7faf015f1" title="Initializes the DDE system.">wxDDEInitialize()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/dde.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga0327fbafa4fedceade1bd8d7faf015f1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxDDEInitialize </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Initializes the DDE system. </p>
<p>May be called multiple times without harm.</p>
<p>This no longer needs to be called by the application: it will be called by wxWidgets if necessary.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_d_d_e_server.html" title="A wxDDEServer object represents the server part of a client-server DDE (Dynamic Data Exchange) conver...">wxDDEServer</a>, <a class="el" href="classwx_d_d_e_client.html" title="A wxDDEClient object represents the client part of a client-server DDE (Dynamic Data Exchange) conver...">wxDDEClient</a>, <a class="el" href="classwx_d_d_e_connection.html" title="A wxDDEConnection object represents the connection between a client and a server.">wxDDEConnection</a>, <a class="el" href="group__group__funcmacro__misc.html#gab8eb5d04fa3c1c12ea4b134b91481772" title="Called when wxWidgets exits, to clean up the DDE system.">wxDDECleanUp()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/dde.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga5eb2033234e6841e977e754940d4009a"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template&lt;typename T &gt; </div>
      <table class="memname">
        <tr>
          <td class="memname">wxDELETE </td>
          <td>(</td>
          <td class="paramtype">T *&amp;&#160;</td>
          <td class="paramname"><em>ptr</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A function which deletes and nulls the pointer. </p>
<p>This function uses operator delete to free the pointer and also sets it to <span class="literal">NULL</span>. Notice that this does <em>not</em> work for arrays, use <a class="el" href="group__group__funcmacro__misc.html#ga9fa4acb2118617932492cae2d799598c" title="A function which deletes and nulls the pointer.">wxDELETEA()</a> for them.</p>
<div class="fragment"><div class="line">MyClass *ptr = <span class="keyword">new</span> MyClass;</div>
<div class="line">...</div>
<div class="line">wxDELETE(ptr);</div>
<div class="line"><a class="code" href="group__group__funcmacro__debug.html#ga204cc264ee560b67e6c6467ba8ffee5f" title="Assert macro.">wxASSERT</a>(!ptr);</div>
</div><!-- fragment --><p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga9fa4acb2118617932492cae2d799598c"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template&lt;typename T &gt; </div>
      <table class="memname">
        <tr>
          <td class="memname">wxDELETEA </td>
          <td>(</td>
          <td class="paramtype">T *&amp;&#160;</td>
          <td class="paramname"><em>array</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>A function which deletes and nulls the pointer. </p>
<p>This function uses vector operator delete (<code>delete</code>[]) to free the array pointer and also sets it to <span class="literal">NULL</span>. Notice that this does <em>not</em> work for non-array pointers, use <a class="el" href="group__group__funcmacro__misc.html#ga5eb2033234e6841e977e754940d4009a" title="A function which deletes and nulls the pointer.">wxDELETE()</a> for them.</p>
<div class="fragment"><div class="line">MyClass *array = <span class="keyword">new</span> MyClass[17];</div>
<div class="line">...</div>
<div class="line">wxDELETEA(array);</div>
<div class="line"><a class="code" href="group__group__funcmacro__debug.html#ga204cc264ee560b67e6c6467ba8ffee5f" title="Assert macro.">wxASSERT</a>(!array);</div>
</div><!-- fragment --><dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga5eb2033234e6841e977e754940d4009a" title="A function which deletes and nulls the pointer.">wxDELETE()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga26ae851bd6d2d8df09afedad1e8e5d6b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxEnableTopLevelWindows </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>enable</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function enables or disables all top level windows. </p>
<p>It is used by <a class="el" href="group__group__funcmacro__appinitterm.html#ga25abb4004fac0bcc0b937d93657c8cba" title="Calls wxApp::SafeYield.">wxSafeYield()</a>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga5c3705ca3d228c51155fcf22404b739c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxFindMenuItemId </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_frame.html">wxFrame</a> *&#160;</td>
          <td class="paramname"><em>frame</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>menuString</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>itemString</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Find a menu item identifier associated with the given frame's menu bar. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga13f5ea19998bb9fd38ce07d61a6a2e1a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxFindWindowAtPoint </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pt</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Find the deepest window at the given mouse position in screen coordinates, returning the window if found, or <span class="literal">NULL</span> if not. </p>
<p>This function takes child windows at the given position into account even if they are disabled. The hidden children are however skipped by it.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga1e2c40f2735a91a6bb283ff3d3e406f0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxFindWindowAtPointer </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pt</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Find the deepest window at the mouse pointer position, returning the window and current pointer position in screen coordinates. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/window.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga0736ab488cec8607a031567059dfe6f2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxFindWindowByLabel </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><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">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000057">Deprecated:</a></b></dt><dd>Replaced by <a class="el" href="classwx_window.html#ab8eb148fffae109e0fac86e88d569670" title="Find a window by its label.">wxWindow::FindWindowByLabel()</a>.</dd></dl>
<p>Find a window by its label. Depending on the type of window, the label may be a window title or panel item label. If <em>parent</em> is <span class="literal">NULL</span>, the search will start from all top-level frames and dialog boxes; if non-<span class="literal">NULL</span>, the search will be limited to the given window hierarchy. The search is recursive in both cases.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga3b60179234c123ea62e2a1a598397150"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxFindWindowByName </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </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">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000058">Deprecated:</a></b></dt><dd>Replaced by <a class="el" href="classwx_window.html#adbe4eea02f615313c12a2c00557a44c3" title="Find a window by its name (as given in a window constructor or Create() function call).">wxWindow::FindWindowByName()</a>.</dd></dl>
<p>Find a window by its name (as given in a window constructor or <em>Create</em> function call). If <em>parent</em> is <span class="literal">NULL</span>, the search will start from all top-level frames and dialog boxes; if non-<span class="literal">NULL</span>, the search will be limited to the given window hierarchy. The search is recursive in both cases.</p>
<p>If no such named window is found, <a class="el" href="group__group__funcmacro__misc.html#ga0736ab488cec8607a031567059dfe6f2">wxFindWindowByLabel()</a> is called.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga598ae7504c6436af325490b41f4b5e90"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxFromString </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>string</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_colour.html">wxColour</a> *&#160;</td>
          <td class="paramname"><em>colour</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Converts string to a <a class="el" href="classwx_colour.html" title="A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values...">wxColour</a> best represented by the given string. </p>
<p>Returns <span class="literal">true</span> on success.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga0adf8026ea8ed126420a2e7ef9edc678" title="Converts the given wxColour into a string.">wxToString(const wxColour&amp;)</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/colour.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaa7f39827f935fb7ba342a35dc1fb45dd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxFromString </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>string</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_font.html">wxFont</a> *&#160;</td>
          <td class="paramname"><em>font</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Converts string to a <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> best represented by the given string. </p>
<p>Returns <span class="literal">true</span> on success.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga73a6a41930ee5544077c6dd4df77ea06" title="Converts the given wxFont into a string.">wxToString(const wxFont&amp;)</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/font.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga01b527f25e52ae16d2c9ee06458b10f1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxGetActiveWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Gets the currently active window (implemented for MSW and GTK only currently, always returns <span class="literal">NULL</span> in the other ports). </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/window.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaceace1c71d01adb27b30a068015836e9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="power_8h.html#a1222ff013d6af054701028e127405bbd">wxBatteryState</a> wxGetBatteryState </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns battery state as one of <code>wxBATTERY_NORMAL_STATE</code>, <code>wxBATTERY_LOW_STATE</code>, <code>wxBATTERY_CRITICAL_STATE</code>, <code>wxBATTERY_SHUTDOWN_STATE</code> or <code>wxBATTERY_UNKNOWN_STATE</code>. </p>
<p><code>wxBATTERY_UNKNOWN_STATE</code> is also the default on platforms where this feature is not implemented (currently everywhere but MS Windows).</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gabb98f8c6c7df627b3c4a5246b452a5b8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetDisplayName </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Under X only, returns the current display name. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga6a5c19411145daf20a1cc6d875dbfe45" title="Under X only, sets the current display name.">wxSetDisplayName()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga82a18ac43492bfb375604c41b71ce84f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxGetKeyState </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a41c4609211685cff198618963ec8f77d">wxKeyCode</a>&#160;</td>
          <td class="paramname"><em>key</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>For normal keys, returns <span class="literal">true</span> if the specified key is currently down. </p>
<p>For togglable keys (Caps Lock, Num Lock and Scroll Lock), returns <span class="literal">true</span> if the key is toggled such that its LED indicator is lit. There is currently no way to test whether togglable keys are up or down.</p>
<p>Even though there are virtual key codes defined for mouse buttons, they cannot be used with this function currently.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga00fef3cd1a110189e737ad7bf948a3d0"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_point.html">wxPoint</a> wxGetMousePosition </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the mouse position in screen coordinates. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga6fb42677c51d509690e7062b9dadaa25"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_mouse_state.html">wxMouseState</a> wxGetMouseState </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the current state of the mouse. </p>
<p>Returns a <a class="el" href="classwx_mouse_state.html" title="Represents the mouse state.">wxMouseState</a> instance that contains the current position of the mouse pointer in screen coordinates, as well as boolean values indicating the up/down status of the mouse buttons and the modifier keys.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gac7a20e813e3d3259f98e9a54440cf633"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="power_8h.html#ae3f5c432e430cf701d4cef6abf893632">wxPowerType</a> wxGetPowerType </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the type of power source as one of <code>wxPOWER_SOCKET</code>, <code>wxPOWER_BATTERY</code> or <code>wxPOWER_UNKNOWN</code>. </p>
<p><code>wxPOWER_UNKNOWN</code> is also the default on platforms where this feature is not implemented (currently everywhere but MS Windows).</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gafe92f9f590110183182e5b65433ad2a2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxGetStockLabel </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td>
          <td class="paramname"><em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="stockitem_8h.html#af6371558f353ff89e5a64bc5d61ed694a6de9ba5f40896f0daf18e5bbb8086056">wxSTOCK_WITH_MNEMONIC</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns label that should be used for given <em>id</em> element. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">id</td><td>Given id of the <a class="el" href="classwx_menu_item.html" title="A menu item represents an item in a menu.">wxMenuItem</a>, <a class="el" href="classwx_button.html" title="A button is a control that contains a text string, and is one of the most common elements of a GUI...">wxButton</a>, <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> tool, etc. </td></tr>
    <tr><td class="paramname">flags</td><td>Combination of the elements of wxStockLabelQueryFlag.</td></tr>
  </table>
  </dd>
</dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/stockitem.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga3a5f33038df32c170c234a0161cfd702"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_window.html">wxWindow</a>* wxGetTopLevelParent </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>window</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the first top level parent of the given window, or in other words, the frame or dialog containing it, or <span class="literal">NULL</span>. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/window.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga04038d4c78e4c111d018b8f82b2d66c3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxLaunchDefaultApplication </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>document</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>flags</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Opens the <em>document</em> in the application associated with the files of this type. </p>
<p>The <em>flags</em> parameter is currently not used</p>
<p>Returns <span class="literal">true</span> if the application was successfully launched.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga3ff36fe489da2a779248b56f283615ca" title="Opens the url in user&#39;s default browser.">wxLaunchDefaultBrowser()</a>, <a class="el" href="group__group__funcmacro__procctrl.html#gaa276e9e676e26bafeec3141b73399b33" title="Executes another program in Unix or Windows.">wxExecute()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga3ff36fe489da2a779248b56f283615ca"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxLaunchDefaultBrowser </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>flags</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Opens the <em>url</em> in user's default browser. </p>
<p>If the <em>flags</em> parameter contains <code>wxBROWSER_NEW_WINDOW</code> flag, a new window is opened for the URL (currently this is only supported under Windows).</p>
<p>And unless the <em>flags</em> parameter contains <code>wxBROWSER_NOBUSYCURSOR</code> flag, a busy cursor is shown while the browser is being launched (using <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>).</p>
<p>The parameter <em>url</em> is interpreted as follows:</p>
<ul>
<li>if it has a valid scheme (e.g. <code>"file:"</code>, <code>"http:"</code> or <code>"mailto:"</code>) it is passed to the appropriate browser configured in the user system.</li>
<li>if it has no valid scheme (e.g. it's a local file path without the <code>"file:"</code> prefix), then <a class="el" href="group__group__funcmacro__file.html#ga72d2e4ef03d51c0d59c2cb788462d600" title="Returns true if the file exists and is a plain file.">wxFileExists</a> and <a class="el" href="group__group__funcmacro__file.html#ga3e960a6805631320fede18bf1176f278" title="Returns true if dirname exists and is a directory.">wxDirExists</a> are used to test if it's a local file/directory; if it is, then the browser is called with the <em>url</em> parameter eventually prefixed by <code>"file:"</code>.</li>
<li>if it has no valid scheme and it's not a local file/directory, then <code>"http:"</code> is prepended and the browser is called.</li>
</ul>
<p>Returns <span class="literal">true</span> if the application was successfully launched.</p>
<dl class="section note"><dt>Note</dt><dd>For some configurations of the running user, the application which is launched to open the given URL may be URL-dependent (e.g. a browser may be used for local URLs while another one may be used for remote URLs).</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga04038d4c78e4c111d018b8f82b2d66c3" title="Opens the document in the application associated with the files of this type.">wxLaunchDefaultApplication()</a>, <a class="el" href="group__group__funcmacro__procctrl.html#gaa276e9e676e26bafeec3141b73399b33" title="Executes another program in Unix or Windows.">wxExecute()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga8d211f75f18b9dfa770f93a1518e78da"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxLongLong_t wxLL </td>
          <td>(</td>
          <td class="paramtype">number&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants: </p>
<div class="fragment"><div class="line"><span class="preprocessor">#ifdef wxLongLong_t</span></div>
<div class="line"><span class="preprocessor"></span>    wxLongLong_t ll = <a class="code" href="group__group__funcmacro__misc.html#ga8d211f75f18b9dfa770f93a1518e78da" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxLL</a>(0x1234567890abcdef);</div>
<div class="line"><span class="preprocessor">#endif</span></div>
</div><!-- fragment --><dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga61a8fc8ea56fd6333d804e789af35ad4" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxULL()</a>, <a class="el" href="classwx_long_long.html" title="This class represents a signed 64 bit long number.">wxLongLong</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/longlong.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga02fa66144c1015ebe75a5b3a0c99986c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxLoadUserResource </td>
          <td>(</td>
          <td class="paramtype">const void **&#160;</td>
          <td class="paramname"><em>outData</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t *&#160;</td>
          <td class="paramname"><em>outLen</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>resourceName</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="group__group__funcmacro__string.html#gad42f64d8c82f1ce4ae58773a89b2d6a7">wxChar</a> *&#160;</td>
          <td class="paramname"><em>resourceType</em> = <code>&quot;TEXT&quot;</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">WXHINSTANCE&#160;</td>
          <td class="paramname"><em>module</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Loads an object from Windows resource file. </p>
<p>This function loads the resource with the given name and type from the resources embedded into a Windows application.</p>
<p>The typical use for it is to load some data from the data files embedded into the program itself. For example, you could have the following fragment in your <code></code>.rc file </p>
<div class="fragment"><div class="line">mydata  MYDATA  <span class="stringliteral">&quot;myfile.dat&quot;</span></div>
</div><!-- fragment --><p> and then use it in the following way: </p>
<div class="fragment"><div class="line"><span class="keyword">const</span> <span class="keywordtype">void</span>* data = NULL;</div>
<div class="line"><span class="keywordtype">size_t</span> size = 0;</div>
<div class="line"><span class="keywordflow">if</span> ( !<a class="code" href="group__group__funcmacro__misc.html#ga02fa66144c1015ebe75a5b3a0c99986c" title="Loads an object from Windows resource file.">wxLoadUserResource</a>(&amp;data, &amp;size, <span class="stringliteral">&quot;mydata&quot;</span>, <span class="stringliteral">&quot;MYDATA&quot;</span>) ) {</div>
<div class="line">    ... handle error ...</div>
<div class="line">}</div>
<div class="line"><span class="keywordflow">else</span> {</div>
<div class="line">    <span class="comment">// Use the data in any way, for example:</span></div>
<div class="line">    <a class="code" href="classwx_memory_input_stream.html" title="This class allows to use all methods taking a wxInputStream reference to read in-memory data...">wxMemoryInputStream</a> is(data, size);</div>
<div class="line">    ... read the data from stream ...</div>
<div class="line">}</div>
</div><!-- fragment --><dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">outData</td><td>Filled with the pointer to the data on successful return. Notice that this pointer does <em>not</em> need to be freed by the caller. </td></tr>
    <tr><td class="paramname">outLen</td><td>Filled with the length of the data in bytes. </td></tr>
    <tr><td class="paramname">resourceName</td><td>The name of the resource to load. </td></tr>
    <tr><td class="paramname">resourceType</td><td>The type of the resource in usual Windows format, i.e. either a real string like "MYDATA" or an integer created by the standard Windows <code>MAKEINTRESOURCE()</code> macro, including any constants for the standard resources types like <code>RT_RCDATA</code>. </td></tr>
    <tr><td class="paramname">module</td><td>The <code>HINSTANCE</code> of the module to load the resources from. The current module is used by default. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the data was loaded from resource or false if it couldn't be found (in which case no error is logged) or was found but couldn't be loaded (which is unexpected and does result in an error message).</dd></dl>
<p>This function is available under Windows only.</p>
<h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxbase">wxBase</a></span></div><p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre><dl class="section since"><dt>Since</dt><dd>2.9.1 </dd></dl>

</div>
</div>
<a class="anchor" id="gab13968dd7381ce432203c560741476bb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">char* wxLoadUserResource </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>resourceName</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="group__group__funcmacro__string.html#gad42f64d8c82f1ce4ae58773a89b2d6a7">wxChar</a> *&#160;</td>
          <td class="paramname"><em>resourceType</em> = <code>&quot;TEXT&quot;</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int *&#160;</td>
          <td class="paramname"><em>pLen</em> = <code>NULL</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">WXHINSTANCE&#160;</td>
          <td class="paramname"><em>module</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Loads a user-defined Windows resource as a string. </p>
<p>This is a wrapper for the general purpose overload wxLoadUserResource(const void**, size_t*, const <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a>&amp;, const wxChar*, WXHINSTANCE) and can be more convenient for the string data, but does an extra copy compared to the general version.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">resourceName</td><td>The name of the resource to load. </td></tr>
    <tr><td class="paramname">resourceType</td><td>The type of the resource in usual Windows format, i.e. either a real string like "MYDATA" or an integer created by the standard Windows <code>MAKEINTRESOURCE()</code> macro, including any constants for the standard resources types like <code>RT_RCDATA</code>. </td></tr>
    <tr><td class="paramname">pLen</td><td>Filled with the length of the returned buffer if it is non-<span class="literal">NULL</span>. This parameter should be used if NUL characters can occur in the resource data. It is new since wxWidgets 2.9.1 </td></tr>
    <tr><td class="paramname">module</td><td>The <code>HINSTANCE</code> of the module to load the resources from. The current module is used by default. This parameter is new since wxWidgets 2.9.1. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A pointer to the data to be <code>delete[]</code>d by caller on success or <span class="literal">NULL</span> on error.</dd></dl>
<p>This function is available under Windows only.</p>
<h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxbase">wxBase</a></span></div><p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gae3c4e71b9eb7d1bf7b7cf2eee1832796"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template&lt;typename F , typename P1 , ... , typename PN &gt; </div>
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_scope_guard.html">wxScopeGuard</a> wxMakeGuard </td>
          <td>(</td>
          <td class="paramtype">F&#160;</td>
          <td class="paramname"><em>func</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">P1&#160;</td>
          <td class="paramname"><em>p1</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">&#160;</td>
          <td class="paramname"><em>...</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">PN&#160;</td>
          <td class="paramname"><em>pN</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns a scope guard object which will call the specified function with the given parameters on scope exit. </p>
<p>This function is overloaded to take several parameters up to some implementation-defined (but relatively low) limit.</p>
<p>The <em>func</em> should be a functor taking parameters of the types P1, ..., PN, i.e. the expression <code>func</code>(p1, ..., pN) should be valid. </p>

</div>
</div>
<a class="anchor" id="gaa2d93c1680369b4227f7de9de58e5fcb"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int wxNewId </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000059">Deprecated:</a></b></dt><dd>Ids generated by it can conflict with the Ids defined by the user code, use <code>wxID_ANY</code> to assign ids which are guaranteed to not conflict with the user-defined ids for the controls and menu items you create instead of using this function.</dd></dl>
<p>Generates an integer identifier unique to this run of the program.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaf617bfe542c74d75f97adeab88fab2e6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxPostDelete </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_object.html">wxObject</a> *&#160;</td>
          <td class="paramname"><em>object</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000060">Deprecated:</a></b></dt><dd>Replaced by <a class="el" href="classwx_window.html#a3e44f4a494fc9ef4346c4fba70c8de0c" title="This function simply generates a wxCloseEvent whose handler usually tries to close the window...">wxWindow::Close()</a>. See the <a class="el" href="overview_windowdeletion.html">window deletion overview</a>.</dd></dl>
<p>Tells the system to delete the specified object when all other events have been processed. In some environments, it is necessary to use this instead of deleting a frame directly with the delete operator, because some GUIs will still send events to a deleted window.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gaaa680fc5a0eb13ed1f9ad56721e1171c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxQsort </td>
          <td>(</td>
          <td class="paramtype">void *&#160;</td>
          <td class="paramname"><em>pbase</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>total_elems</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>size</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__group__funcmacro__misc.html#ga35fec5f8f6480a13c339ce6d0710962a">wxSortCallback</a>&#160;</td>
          <td class="paramname"><em>cmp</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const void *&#160;</td>
          <td class="paramname"><em>user_data</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Function implementing quick sort algorithm. </p>
<p>This function sorts <em>total_elems</em> objects of size <em>size</em> located at <em>pbase</em>. It uses <em>cmp</em> function for comparing them and passes <em>user_data</em> pointer to the comparison function each time it's called.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga52e28963d56a4950a4c3036696954c04"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxRegisterId </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>id</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Ensures that Ids subsequently generated by <a class="el" href="group__group__funcmacro__misc.html#gaa2d93c1680369b4227f7de9de58e5fcb">wxNewId()</a> do not clash with the given <em>id</em>. </p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga6a5c19411145daf20a1cc6d875dbfe45"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxSetDisplayName </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>displayName</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Under X only, sets the current display name. </p>
<p>This is the X host and display name such as "colonsay:0.0", and the function indicates which display should be used for creating windows from this point on. Setting the display within an application allows multiple displays to be used.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gabb98f8c6c7df627b3c4a5246b452a5b8" title="Under X only, returns the current display name.">wxGetDisplayName()</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga1513748c5eb0df0de6103c5105a18d55"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxStripMenuCodes </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>str</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>flags</em> = <code><a class="el" href="group__group__funcmacro__misc.html#gga7cc2e4244ca368f68e5746185eda6c4aa498e6b6ab4541edee4df73d12913692e">wxStrip_All</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Strips any menu codes from <em>str</em> and returns the result. </p>
<p>By default, the functions strips both the mnemonics character (<code>'&amp;'</code>) which is used to indicate a keyboard shortkey, and the accelerators, which are used only in the menu items and are separated from the main text by the <code>\t</code> (TAB) character. By using <em>flags</em> of <code>wxStrip_Mnemonics</code> or <code>wxStrip_Accel</code> to strip only the former or the latter part, respectively.</p>
<p>Notice that in most cases <a class="el" href="classwx_menu_item.html#af8f7bb0c7ca8808047c3c97b564069ed">wxMenuItem::GetLabelFromText()</a> or <a class="el" href="classwx_control.html#ad95895ecdd123dff35866db1d2430a76" title="Returns the control&#39;s label without mnemonics.">wxControl::GetLabelText()</a> can be used instead.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/utils.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="gad6617733bba3da2f929aea0f0560d2cf"></a>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template&lt;typename T &gt; </div>
      <table class="memname">
        <tr>
          <td class="memname">wxSwap </td>
          <td>(</td>
          <td class="paramtype">T &amp;&#160;</td>
          <td class="paramname"><em>first</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">T &amp;&#160;</td>
          <td class="paramname"><em>second</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Swaps the contents of two variables. </p>
<p>This is similar to std::swap() but can be used even on the platforms where the standard C++ library is not available (if you don't target such platforms, please use std::swap() instead).</p>
<p>The function relies on type T being copy constructible and assignable.</p>
<p>Example of use: </p>
<div class="fragment"><div class="line"><span class="keywordtype">int</span> x = 3,</div>
<div class="line">    y = 4;</div>
<div class="line"><a class="code" href="group__group__funcmacro__misc.html#gad6617733bba3da2f929aea0f0560d2cf" title="Swaps the contents of two variables.">wxSwap</a>(x, y);</div>
<div class="line"><a class="code" href="group__group__funcmacro__debug.html#ga204cc264ee560b67e6c6467ba8ffee5f" title="Assert macro.">wxASSERT</a>( x == 4 &amp;&amp; y == 3 );</div>
</div><!-- fragment --> 
</div>
</div>
<a class="anchor" id="ga0adf8026ea8ed126420a2e7ef9edc678"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxToString </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_colour.html">wxColour</a> &amp;&#160;</td>
          <td class="paramname"><em>colour</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Converts the given <a class="el" href="classwx_colour.html" title="A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values...">wxColour</a> into a string. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga598ae7504c6436af325490b41f4b5e90" title="Converts string to a wxColour best represented by the given string.">wxFromString(const wxString&amp;, wxColour*)</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/colour.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga73a6a41930ee5544077c6dd4df77ea06"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxToString </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_font.html">wxFont</a> &amp;&#160;</td>
          <td class="paramname"><em>font</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Converts the given <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> into a string. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#gaa7f39827f935fb7ba342a35dc1fb45dd" title="Converts string to a wxFont best represented by the given string.">wxFromString(const wxString&amp;, wxFont*)</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/font.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga61a8fc8ea56fd6333d804e789af35ad4"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxLongLong_t wxULL </td>
          <td>(</td>
          <td class="paramtype">number&#160;</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit compile time constants: </p>
<div class="fragment"><div class="line"><span class="preprocessor">#ifdef wxLongLong_t</span></div>
<div class="line"><span class="preprocessor"></span>    <span class="keywordtype">unsigned</span> wxLongLong_t ll = <a class="code" href="group__group__funcmacro__misc.html#ga61a8fc8ea56fd6333d804e789af35ad4" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxULL</a>(0x1234567890abcdef);</div>
<div class="line"><span class="preprocessor">#endif</span></div>
</div><!-- fragment --><dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__misc.html#ga8d211f75f18b9dfa770f93a1518e78da" title="This macro is defined for the platforms with a native 64 bit integer type and allow the use of 64 bit...">wxLL()</a>, <a class="el" href="classwx_long_long.html" title="This class represents a signed 64 bit long number.">wxLongLong</a></dd></dl>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/longlong.h&gt; </pre> 
</div>
</div>
<a class="anchor" id="ga14782857e2432e5836ceb510bc72211c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxVaCopy </td>
          <td>(</td>
          <td class="paramtype">va_list&#160;</td>
          <td class="paramname"><em>argptrDst</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">va_list&#160;</td>
          <td class="paramname"><em>argptrSrc</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This macro is the same as the standard C99 <code>va_copy</code> for the compilers which support it or its replacement for those that don't. </p>
<p>It must be used to preserve the value of a <code>va_list</code> object if you need to use it after passing it to another function because it can be modified by the latter.</p>
<p>As with <code>va_start</code>, each call to <code>wxVaCopy</code> must have a matching <code>va_end</code>.</p>
<p>Include file: </p>
<pre class="fragment">#include &lt;wx/defs.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>