wxrust 0.0.1-alpha

Binding for the wxCore library of the wxWidgets toolkit.
Documentation
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
#include "generated.h"

extern "C" {

// CLASS: wxDC
wxClassInfo *wxDC_CLASSINFO() {
    return wxCLASSINFO(wxDC);
}
wxCoord wxDC_DeviceToLogicalX(const wxDC * self, wxCoord x) {
    return self->DeviceToLogicalX(x);
}
wxCoord wxDC_DeviceToLogicalXRel(const wxDC * self, wxCoord x) {
    return self->DeviceToLogicalXRel(x);
}
wxCoord wxDC_DeviceToLogicalY(const wxDC * self, wxCoord y) {
    return self->DeviceToLogicalY(y);
}
wxCoord wxDC_DeviceToLogicalYRel(const wxDC * self, wxCoord y) {
    return self->DeviceToLogicalYRel(y);
}
wxCoord wxDC_LogicalToDeviceX(const wxDC * self, wxCoord x) {
    return self->LogicalToDeviceX(x);
}
wxCoord wxDC_LogicalToDeviceXRel(const wxDC * self, wxCoord x) {
    return self->LogicalToDeviceXRel(x);
}
wxCoord wxDC_LogicalToDeviceY(const wxDC * self, wxCoord y) {
    return self->LogicalToDeviceY(y);
}
wxCoord wxDC_LogicalToDeviceYRel(const wxDC * self, wxCoord y) {
    return self->LogicalToDeviceYRel(y);
}
#if wxCHECK_VERSION(3, 1, 0)
wxPoint *wxDC_DeviceToLogical(const wxDC * self, wxCoord x, wxCoord y) {
    return new wxPoint(self->DeviceToLogical(x, y));
}
wxPoint *wxDC_DeviceToLogical1(const wxDC * self, const wxPoint * pt) {
    return new wxPoint(self->DeviceToLogical(*pt));
}
wxSize *wxDC_DeviceToLogicalRel(const wxDC * self, int x, int y) {
    return new wxSize(self->DeviceToLogicalRel(x, y));
}
wxSize *wxDC_DeviceToLogicalRel1(const wxDC * self, const wxSize * dim) {
    return new wxSize(self->DeviceToLogicalRel(*dim));
}
wxPoint *wxDC_LogicalToDevice(const wxDC * self, wxCoord x, wxCoord y) {
    return new wxPoint(self->LogicalToDevice(x, y));
}
wxPoint *wxDC_LogicalToDevice1(const wxDC * self, const wxPoint * pt) {
    return new wxPoint(self->LogicalToDevice(*pt));
}
wxSize *wxDC_LogicalToDeviceRel(const wxDC * self, int x, int y) {
    return new wxSize(self->LogicalToDeviceRel(x, y));
}
wxSize *wxDC_LogicalToDeviceRel1(const wxDC * self, const wxSize * dim) {
    return new wxSize(self->LogicalToDeviceRel(*dim));
}
#endif
void wxDC_Clear(wxDC * self) {
    return self->Clear();
}
void wxDC_DrawArc(wxDC * self, wxCoord x_start, wxCoord y_start, wxCoord x_end, wxCoord y_end, wxCoord xc, wxCoord yc) {
    return self->DrawArc(x_start, y_start, x_end, y_end, xc, yc);
}
void wxDC_DrawArc1(wxDC * self, const wxPoint * pt_start, const wxPoint * pt_end, const wxPoint * centre) {
    return self->DrawArc(*pt_start, *pt_end, *centre);
}
void wxDC_DrawBitmap(wxDC * self, const wxBitmap * bitmap, wxCoord x, wxCoord y, bool use_mask) {
    return self->DrawBitmap(*bitmap, x, y, use_mask);
}
void wxDC_DrawBitmap1(wxDC * self, const wxBitmap * bmp, const wxPoint * pt, bool use_mask) {
    return self->DrawBitmap(*bmp, *pt, use_mask);
}
void wxDC_DrawCheckMark(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height) {
    return self->DrawCheckMark(x, y, width, height);
}
void wxDC_DrawCheckMark1(wxDC * self, const wxRect * rect) {
    return self->DrawCheckMark(*rect);
}
void wxDC_DrawCircle(wxDC * self, wxCoord x, wxCoord y, wxCoord radius) {
    return self->DrawCircle(x, y, radius);
}
void wxDC_DrawCircle1(wxDC * self, const wxPoint * pt, wxCoord radius) {
    return self->DrawCircle(*pt, radius);
}
void wxDC_DrawEllipse(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height) {
    return self->DrawEllipse(x, y, width, height);
}
void wxDC_DrawEllipse1(wxDC * self, const wxPoint * pt, const wxSize * size) {
    return self->DrawEllipse(*pt, *size);
}
void wxDC_DrawEllipse2(wxDC * self, const wxRect * rect) {
    return self->DrawEllipse(*rect);
}
void wxDC_DrawEllipticArc(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height, double start, double end) {
    return self->DrawEllipticArc(x, y, width, height, start, end);
}
void wxDC_DrawEllipticArc1(wxDC * self, const wxPoint * pt, const wxSize * sz, double sa, double ea) {
    return self->DrawEllipticArc(*pt, *sz, sa, ea);
}
void wxDC_DrawIcon(wxDC * self, const wxIcon * icon, wxCoord x, wxCoord y) {
    return self->DrawIcon(*icon, x, y);
}
void wxDC_DrawIcon1(wxDC * self, const wxIcon * icon, const wxPoint * pt) {
    return self->DrawIcon(*icon, *pt);
}
void wxDC_DrawLabel(wxDC * self, const wxString * text, const wxBitmap * bitmap, const wxRect * rect, int alignment, int index_accel, wxRect * rect_bounding) {
    return self->DrawLabel(*text, *bitmap, *rect, alignment, index_accel, rect_bounding);
}
void wxDC_DrawLabel1(wxDC * self, const wxString * text, const wxRect * rect, int alignment, int index_accel) {
    return self->DrawLabel(*text, *rect, alignment, index_accel);
}
void wxDC_DrawLine(wxDC * self, wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) {
    return self->DrawLine(x1, y1, x2, y2);
}
void wxDC_DrawLine1(wxDC * self, const wxPoint * pt1, const wxPoint * pt2) {
    return self->DrawLine(*pt1, *pt2);
}
void wxDC_DrawLines1(wxDC * self, const wxPointList * points, wxCoord xoffset, wxCoord yoffset) {
    return self->DrawLines(points, xoffset, yoffset);
}
void wxDC_DrawPoint(wxDC * self, wxCoord x, wxCoord y) {
    return self->DrawPoint(x, y);
}
void wxDC_DrawPoint1(wxDC * self, const wxPoint * pt) {
    return self->DrawPoint(*pt);
}
void wxDC_DrawRectangle(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height) {
    return self->DrawRectangle(x, y, width, height);
}
void wxDC_DrawRectangle1(wxDC * self, const wxPoint * pt, const wxSize * sz) {
    return self->DrawRectangle(*pt, *sz);
}
void wxDC_DrawRectangle2(wxDC * self, const wxRect * rect) {
    return self->DrawRectangle(*rect);
}
void wxDC_DrawRotatedText(wxDC * self, const wxString * text, wxCoord x, wxCoord y, double angle) {
    return self->DrawRotatedText(*text, x, y, angle);
}
void wxDC_DrawRotatedText1(wxDC * self, const wxString * text, const wxPoint * point, double angle) {
    return self->DrawRotatedText(*text, *point, angle);
}
void wxDC_DrawRoundedRectangle(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius) {
    return self->DrawRoundedRectangle(x, y, width, height, radius);
}
void wxDC_DrawRoundedRectangle1(wxDC * self, const wxPoint * pt, const wxSize * sz, double radius) {
    return self->DrawRoundedRectangle(*pt, *sz, radius);
}
void wxDC_DrawRoundedRectangle2(wxDC * self, const wxRect * rect, double radius) {
    return self->DrawRoundedRectangle(*rect, radius);
}
void wxDC_DrawSpline1(wxDC * self, const wxPointList * points) {
    return self->DrawSpline(points);
}
void wxDC_DrawSpline2(wxDC * self, wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord x3, wxCoord y3) {
    return self->DrawSpline(x1, y1, x2, y2, x3, y3);
}
void wxDC_DrawText(wxDC * self, const wxString * text, wxCoord x, wxCoord y) {
    return self->DrawText(*text, x, y);
}
void wxDC_DrawText1(wxDC * self, const wxString * text, const wxPoint * pt) {
    return self->DrawText(*text, *pt);
}
void wxDC_GradientFillConcentric(wxDC * self, const wxRect * rect, const wxColour * initial_colour, const wxColour * dest_colour) {
    return self->GradientFillConcentric(*rect, *initial_colour, *dest_colour);
}
void wxDC_GradientFillConcentric1(wxDC * self, const wxRect * rect, const wxColour * initial_colour, const wxColour * dest_colour, const wxPoint * circle_center) {
    return self->GradientFillConcentric(*rect, *initial_colour, *dest_colour, *circle_center);
}
void wxDC_GradientFillLinear(wxDC * self, const wxRect * rect, const wxColour * initial_colour, const wxColour * dest_colour, wxDirection n_direction) {
    return self->GradientFillLinear(*rect, *initial_colour, *dest_colour, n_direction);
}
void wxDC_CrossHair(wxDC * self, wxCoord x, wxCoord y) {
    return self->CrossHair(x, y);
}
void wxDC_CrossHair1(wxDC * self, const wxPoint * pt) {
    return self->CrossHair(*pt);
}
void wxDC_DestroyClippingRegion(wxDC * self) {
    return self->DestroyClippingRegion();
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDC_GetClippingBox(const wxDC * self, wxCoord * x, wxCoord * y, wxCoord * width, wxCoord * height) {
    return self->GetClippingBox(x, y, width, height);
}
bool wxDC_GetClippingBox1(const wxDC * self, wxRect * rect) {
    return self->GetClippingBox(*rect);
}
#endif
void wxDC_SetClippingRegion(wxDC * self, wxCoord x, wxCoord y, wxCoord width, wxCoord height) {
    return self->SetClippingRegion(x, y, width, height);
}
void wxDC_SetClippingRegion1(wxDC * self, const wxPoint * pt, const wxSize * sz) {
    return self->SetClippingRegion(*pt, *sz);
}
void wxDC_SetClippingRegion2(wxDC * self, const wxRect * rect) {
    return self->SetClippingRegion(*rect);
}
void wxDC_SetDeviceClippingRegion(wxDC * self, const wxRegion * region) {
    return self->SetDeviceClippingRegion(*region);
}
wxCoord wxDC_GetCharHeight(const wxDC * self) {
    return self->GetCharHeight();
}
wxCoord wxDC_GetCharWidth(const wxDC * self) {
    return self->GetCharWidth();
}
void wxDC_GetMultiLineTextExtent(const wxDC * self, const wxString * string, wxCoord * w, wxCoord * h, wxCoord * height_line, const wxFont * font) {
    return self->GetMultiLineTextExtent(*string, w, h, height_line, font);
}
wxSize *wxDC_GetMultiLineTextExtent1(const wxDC * self, const wxString * string) {
    return new wxSize(self->GetMultiLineTextExtent(*string));
}
bool wxDC_GetPartialTextExtents(const wxDC * self, const wxString * text, wxArrayInt * widths) {
    return self->GetPartialTextExtents(*text, *widths);
}
void wxDC_GetTextExtent(const wxDC * self, const wxString * string, wxCoord * w, wxCoord * h, wxCoord * descent, wxCoord * external_leading, const wxFont * font) {
    return self->GetTextExtent(*string, w, h, descent, external_leading, font);
}
wxSize *wxDC_GetTextExtent1(const wxDC * self, const wxString * string) {
    return new wxSize(self->GetTextExtent(*string));
}
int wxDC_GetBackgroundMode(const wxDC * self) {
    return self->GetBackgroundMode();
}
wxFont *wxDC_GetFont(const wxDC * self) {
    return new wxFont(self->GetFont());
}
wxLayoutDirection wxDC_GetLayoutDirection(const wxDC * self) {
    return self->GetLayoutDirection();
}
wxColour *wxDC_GetTextBackground(const wxDC * self) {
    return new wxColour(self->GetTextBackground());
}
wxColour *wxDC_GetTextForeground(const wxDC * self) {
    return new wxColour(self->GetTextForeground());
}
void wxDC_SetBackgroundMode(wxDC * self, int mode) {
    return self->SetBackgroundMode(mode);
}
void wxDC_SetFont(wxDC * self, const wxFont * font) {
    return self->SetFont(*font);
}
void wxDC_SetTextBackground(wxDC * self, const wxColour * colour) {
    return self->SetTextBackground(*colour);
}
void wxDC_SetTextForeground(wxDC * self, const wxColour * colour) {
    return self->SetTextForeground(*colour);
}
void wxDC_SetLayoutDirection(wxDC * self, wxLayoutDirection dir) {
    return self->SetLayoutDirection(dir);
}
void wxDC_CalcBoundingBox(wxDC * self, wxCoord x, wxCoord y) {
    return self->CalcBoundingBox(x, y);
}
wxCoord wxDC_MaxX(const wxDC * self) {
    return self->MaxX();
}
wxCoord wxDC_MaxY(const wxDC * self) {
    return self->MaxY();
}
wxCoord wxDC_MinX(const wxDC * self) {
    return self->MinX();
}
wxCoord wxDC_MinY(const wxDC * self) {
    return self->MinY();
}
void wxDC_ResetBoundingBox(wxDC * self) {
    return self->ResetBoundingBox();
}
bool wxDC_StartDoc(wxDC * self, const wxString * message) {
    return self->StartDoc(*message);
}
void wxDC_StartPage(wxDC * self) {
    return self->StartPage();
}
void wxDC_EndDoc(wxDC * self) {
    return self->EndDoc();
}
void wxDC_EndPage(wxDC * self) {
    return self->EndPage();
}
wxBrush *wxDC_GetBackground(const wxDC * self) {
    return new wxBrush(self->GetBackground());
}
wxBrush *wxDC_GetBrush(const wxDC * self) {
    return new wxBrush(self->GetBrush());
}
void wxDC_SetBackground(wxDC * self, const wxBrush * brush) {
    return self->SetBackground(*brush);
}
void wxDC_SetBrush(wxDC * self, const wxBrush * brush) {
    return self->SetBrush(*brush);
}
void wxDC_SetPen(wxDC * self, const wxPen * pen) {
    return self->SetPen(*pen);
}
void wxDC_CopyAttributes(wxDC * self, const wxDC * dc) {
    return self->CopyAttributes(*dc);
}
double wxDC_GetContentScaleFactor(const wxDC * self) {
    return self->GetContentScaleFactor();
}
int wxDC_GetDepth(const wxDC * self) {
    return self->GetDepth();
}
wxPoint *wxDC_GetDeviceOrigin(const wxDC * self) {
    return new wxPoint(self->GetDeviceOrigin());
}
bool wxDC_GetPixel(const wxDC * self, wxCoord x, wxCoord y, wxColour * colour) {
    return self->GetPixel(x, y, colour);
}
wxSize *wxDC_GetPPI(const wxDC * self) {
    return new wxSize(self->GetPPI());
}
#if wxCHECK_VERSION(3, 1, 7)
wxSize *wxDC_FromDIP(const wxDC * self, const wxSize * sz) {
    return new wxSize(self->FromDIP(*sz));
}
wxPoint *wxDC_FromDIP1(const wxDC * self, const wxPoint * pt) {
    return new wxPoint(self->FromDIP(*pt));
}
int wxDC_FromDIP2(const wxDC * self, int d) {
    return self->FromDIP(d);
}
wxSize *wxDC_ToDIP(const wxDC * self, const wxSize * sz) {
    return new wxSize(self->ToDIP(*sz));
}
wxPoint *wxDC_ToDIP1(const wxDC * self, const wxPoint * pt) {
    return new wxPoint(self->ToDIP(*pt));
}
int wxDC_ToDIP2(const wxDC * self, int d) {
    return self->ToDIP(d);
}
#endif
void wxDC_GetSize(const wxDC * self, wxCoord * width, wxCoord * height) {
    return self->GetSize(width, height);
}
wxSize *wxDC_GetSize1(const wxDC * self) {
    return new wxSize(self->GetSize());
}
void wxDC_GetSizeMM(const wxDC * self, wxCoord * width, wxCoord * height) {
    return self->GetSizeMM(width, height);
}
wxSize *wxDC_GetSizeMM1(const wxDC * self) {
    return new wxSize(self->GetSizeMM());
}
void wxDC_GetUserScale(const wxDC * self, double * x, double * y) {
    return self->GetUserScale(x, y);
}
bool wxDC_IsOk(const wxDC * self) {
    return self->IsOk();
}
void wxDC_SetAxisOrientation(wxDC * self, bool x_left_right, bool y_bottom_up) {
    return self->SetAxisOrientation(x_left_right, y_bottom_up);
}
void wxDC_SetDeviceOrigin(wxDC * self, wxCoord x, wxCoord y) {
    return self->SetDeviceOrigin(x, y);
}
void wxDC_SetPalette(wxDC * self, const wxPalette * palette) {
    return self->SetPalette(*palette);
}
void wxDC_SetUserScale(wxDC * self, double x_scale, double y_scale) {
    return self->SetUserScale(x_scale, y_scale);
}
bool wxDC_CanUseTransformMatrix(const wxDC * self) {
    return self->CanUseTransformMatrix();
}
bool wxDC_SetTransformMatrix(wxDC * self, const wxAffineMatrix2D * matrix) {
    return self->SetTransformMatrix(*matrix);
}
wxAffineMatrix2D *wxDC_GetTransformMatrix(const wxDC * self) {
    return new wxAffineMatrix2D(self->GetTransformMatrix());
}
void wxDC_ResetTransformMatrix(wxDC * self) {
    return self->ResetTransformMatrix();
}
bool wxDC_CanDrawBitmap(const wxDC * self) {
    return self->CanDrawBitmap();
}
bool wxDC_CanGetTextExtent(const wxDC * self) {
    return self->CanGetTextExtent();
}
void * wxDC_GetHandle(const wxDC * self) {
    return self->GetHandle();
}
wxBitmap *wxDC_GetAsBitmap(const wxDC * self, const wxRect * subrect) {
    return new wxBitmap(self->GetAsBitmap(subrect));
}
void wxDC_SetLogicalScale(wxDC * self, double x, double y) {
    return self->SetLogicalScale(x, y);
}
void wxDC_GetLogicalScale(const wxDC * self, double * x, double * y) {
    return self->GetLogicalScale(x, y);
}
void wxDC_SetLogicalOrigin(wxDC * self, wxCoord x, wxCoord y) {
    return self->SetLogicalOrigin(x, y);
}
void wxDC_GetLogicalOrigin(const wxDC * self, wxCoord * x, wxCoord * y) {
    return self->GetLogicalOrigin(x, y);
}
wxPoint *wxDC_GetLogicalOrigin1(const wxDC * self) {
    return new wxPoint(self->GetLogicalOrigin());
}
wxGraphicsContext * wxDC_GetGraphicsContext(const wxDC * self) {
    return self->GetGraphicsContext();
}
void wxDC_SetGraphicsContext(wxDC * self, wxGraphicsContext * ctx) {
    return self->SetGraphicsContext(ctx);
}

// CLASS: wxDCBrushChanger
void wxDCBrushChanger_delete(wxDCBrushChanger *self) {
    delete self;
}
wxDCBrushChanger *wxDCBrushChanger_new(wxDC * dc, const wxBrush * brush) {
    return new wxDCBrushChanger(*dc, *brush);
}

// CLASS: wxDCClipper
void wxDCClipper_delete(wxDCClipper *self) {
    delete self;
}
wxDCClipper *wxDCClipper_new(wxDC * dc, const wxRegion * region) {
    return new wxDCClipper(*dc, *region);
}
wxDCClipper *wxDCClipper_new1(wxDC * dc, const wxRect * rect) {
    return new wxDCClipper(*dc, *rect);
}
wxDCClipper *wxDCClipper_new2(wxDC * dc, wxCoord x, wxCoord y, wxCoord w, wxCoord h) {
    return new wxDCClipper(*dc, x, y, w, h);
}

// CLASS: wxDCFontChanger
void wxDCFontChanger_delete(wxDCFontChanger *self) {
    delete self;
}
wxDCFontChanger *wxDCFontChanger_new(wxDC * dc) {
    return new wxDCFontChanger(*dc);
}
wxDCFontChanger *wxDCFontChanger_new1(wxDC * dc, const wxFont * font) {
    return new wxDCFontChanger(*dc, *font);
}
void wxDCFontChanger_Set(wxDCFontChanger * self, const wxFont * font) {
    return self->Set(*font);
}

// CLASS: wxDCOverlay
void wxDCOverlay_delete(wxDCOverlay *self) {
    delete self;
}
wxDCOverlay *wxDCOverlay_new(wxOverlay * overlay, wxDC * dc, int x, int y, int width, int height) {
    return new wxDCOverlay(*overlay, dc, x, y, width, height);
}
wxDCOverlay *wxDCOverlay_new1(wxOverlay * overlay, wxDC * dc) {
    return new wxDCOverlay(*overlay, dc);
}
void wxDCOverlay_Clear(wxDCOverlay * self) {
    return self->Clear();
}

// CLASS: wxDCPenChanger
void wxDCPenChanger_delete(wxDCPenChanger *self) {
    delete self;
}
wxDCPenChanger *wxDCPenChanger_new(wxDC * dc, const wxPen * pen) {
    return new wxDCPenChanger(*dc, *pen);
}

// CLASS: wxDCTextColourChanger
void wxDCTextColourChanger_delete(wxDCTextColourChanger *self) {
    delete self;
}
wxDCTextColourChanger *wxDCTextColourChanger_new(wxDC * dc) {
    return new wxDCTextColourChanger(*dc);
}
wxDCTextColourChanger *wxDCTextColourChanger_new1(wxDC * dc, const wxColour * col) {
    return new wxDCTextColourChanger(*dc, *col);
}
void wxDCTextColourChanger_Set(wxDCTextColourChanger * self, const wxColour * col) {
    return self->Set(*col);
}

// CLASS: wxDataFormat
void wxDataFormat_delete(wxDataFormat *self) {
    delete self;
}
wxDataFormat *wxDataFormat_new1(const wxString * format) {
    return new wxDataFormat(*format);
}
wxString *wxDataFormat_GetId(const wxDataFormat * self) {
    return new wxString(self->GetId());
}
void wxDataFormat_SetId(wxDataFormat * self, const wxString * format) {
    return self->SetId(*format);
}

// CLASS: wxDataObject
void wxDataObject_delete(wxDataObject *self) {
    delete self;
}
bool wxDataObject_GetDataHere(const wxDataObject * self, const wxDataFormat * format, void * buf) {
    return self->GetDataHere(*format, buf);
}
size_t wxDataObject_GetDataSize(const wxDataObject * self, const wxDataFormat * format) {
    return self->GetDataSize(*format);
}
bool wxDataObject_SetData(wxDataObject * self, const wxDataFormat * format, size_t len, const void * buf) {
    return self->SetData(*format, len, buf);
}

// CLASS: wxDataObjectComposite
void wxDataObjectComposite_delete(wxDataObjectComposite *self) {
    delete self;
}
wxDataObjectComposite *wxDataObjectComposite_new() {
    return new wxDataObjectComposite();
}
void wxDataObjectComposite_Add(wxDataObjectComposite * self, wxDataObjectSimple * data_object, bool preferred) {
    return self->Add(data_object, preferred);
}
wxDataFormat *wxDataObjectComposite_GetReceivedFormat(const wxDataObjectComposite * self) {
    return new wxDataFormat(self->GetReceivedFormat());
}

// CLASS: wxDataObjectSimple
void wxDataObjectSimple_delete(wxDataObjectSimple *self) {
    delete self;
}
wxDataObjectSimple *wxDataObjectSimple_new(const wxDataFormat * format) {
    return new wxDataObjectSimple(*format);
}
bool wxDataObjectSimple_GetDataHere(const wxDataObjectSimple * self, void * buf) {
    return self->GetDataHere(buf);
}
size_t wxDataObjectSimple_GetDataSize(const wxDataObjectSimple * self) {
    return self->GetDataSize();
}
bool wxDataObjectSimple_SetData(wxDataObjectSimple * self, size_t len, const void * buf) {
    return self->SetData(len, buf);
}
void wxDataObjectSimple_SetFormat(wxDataObjectSimple * self, const wxDataFormat * format) {
    return self->SetFormat(*format);
}

// CLASS: wxDataViewBitmapRenderer
wxClassInfo *wxDataViewBitmapRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewBitmapRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewBitmapRenderer_GetDefaultType() {
    return new wxString(wxDataViewBitmapRenderer::GetDefaultType());
}
#endif

// CLASS: wxDataViewChoiceByIndexRenderer
wxClassInfo *wxDataViewChoiceByIndexRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewChoiceByIndexRenderer);
}

// CLASS: wxDataViewChoiceRenderer
wxClassInfo *wxDataViewChoiceRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewChoiceRenderer);
}
wxString *wxDataViewChoiceRenderer_GetChoice(const wxDataViewChoiceRenderer * self, size_t index) {
    return new wxString(self->GetChoice(index));
}
wxArrayString *wxDataViewChoiceRenderer_GetChoices(const wxDataViewChoiceRenderer * self) {
    return new wxArrayString(self->GetChoices());
}

// CLASS: wxDataViewColumn
void wxDataViewColumn_delete(wxDataViewColumn *self) {
    delete self;
}
wxDataViewColumn *wxDataViewColumn_new(const wxString * title, wxDataViewRenderer * renderer, unsigned int model_column, int width, wxAlignment align, int flags) {
    return new wxDataViewColumn(*title, renderer, model_column, width, align, flags);
}
wxDataViewColumn *wxDataViewColumn_new1(const wxBitmapBundle * bitmap, wxDataViewRenderer * renderer, unsigned int model_column, int width, wxAlignment align, int flags) {
    return new wxDataViewColumn(*bitmap, renderer, model_column, width, align, flags);
}
unsigned int wxDataViewColumn_GetModelColumn(const wxDataViewColumn * self) {
    return self->GetModelColumn();
}
wxDataViewCtrl * wxDataViewColumn_GetOwner(const wxDataViewColumn * self) {
    return self->GetOwner();
}
wxDataViewRenderer * wxDataViewColumn_GetRenderer(const wxDataViewColumn * self) {
    return self->GetRenderer();
}

// CLASS: wxDataViewCtrl
wxClassInfo *wxDataViewCtrl_CLASSINFO() {
    return wxCLASSINFO(wxDataViewCtrl);
}
wxDataViewCtrl *wxDataViewCtrl_new() {
    return new wxDataViewCtrl();
}
wxDataViewCtrl *wxDataViewCtrl_new1(wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return new wxDataViewCtrl(parent, id, *pos, *size, style, *validator, *name);
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDataViewCtrl_AllowMultiColumnSort(wxDataViewCtrl * self, bool allow) {
    return self->AllowMultiColumnSort(allow);
}
#endif
bool wxDataViewCtrl_Create(wxDataViewCtrl * self, wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return self->Create(parent, id, *pos, *size, style, *validator, *name);
}
bool wxDataViewCtrl_AppendColumn(wxDataViewCtrl * self, wxDataViewColumn * col) {
    return self->AppendColumn(col);
}
bool wxDataViewCtrl_PrependColumn(wxDataViewCtrl * self, wxDataViewColumn * col) {
    return self->PrependColumn(col);
}
bool wxDataViewCtrl_InsertColumn(wxDataViewCtrl * self, unsigned int pos, wxDataViewColumn * col) {
    return self->InsertColumn(pos, col);
}
bool wxDataViewCtrl_AssociateModel(wxDataViewCtrl * self, wxDataViewModel * model) {
    return self->AssociateModel(model);
}
bool wxDataViewCtrl_ClearColumns(wxDataViewCtrl * self) {
    return self->ClearColumns();
}
void wxDataViewCtrl_Collapse(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->Collapse(*item);
}
bool wxDataViewCtrl_DeleteColumn(wxDataViewCtrl * self, wxDataViewColumn * column) {
    return self->DeleteColumn(column);
}
void wxDataViewCtrl_EditItem(wxDataViewCtrl * self, const wxDataViewItem * item, const wxDataViewColumn * column) {
    return self->EditItem(*item, column);
}
bool wxDataViewCtrl_EnableDragSource(wxDataViewCtrl * self, const wxDataFormat * format) {
    return self->EnableDragSource(*format);
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDataViewCtrl_EnableDropTargets(wxDataViewCtrl * self, const wxVector< wxDataFormat > * formats) {
    return self->EnableDropTargets(*formats);
}
#endif
bool wxDataViewCtrl_EnableDropTarget(wxDataViewCtrl * self, const wxDataFormat * format) {
    return self->EnableDropTarget(*format);
}
void wxDataViewCtrl_EnsureVisible(wxDataViewCtrl * self, const wxDataViewItem * item, const wxDataViewColumn * column) {
    return self->EnsureVisible(*item, column);
}
void wxDataViewCtrl_Expand(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->Expand(*item);
}
void wxDataViewCtrl_ExpandAncestors(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->ExpandAncestors(*item);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewCtrl_ExpandChildren(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->ExpandChildren(*item);
}
#endif
wxDataViewColumn * wxDataViewCtrl_GetColumn(const wxDataViewCtrl * self, unsigned int pos) {
    return self->GetColumn(pos);
}
unsigned int wxDataViewCtrl_GetColumnCount(const wxDataViewCtrl * self) {
    return self->GetColumnCount();
}
int wxDataViewCtrl_GetColumnPosition(const wxDataViewCtrl * self, const wxDataViewColumn * column) {
    return self->GetColumnPosition(column);
}
wxDataViewColumn * wxDataViewCtrl_GetExpanderColumn(const wxDataViewCtrl * self) {
    return self->GetExpanderColumn();
}
wxDataViewItem *wxDataViewCtrl_GetCurrentItem(const wxDataViewCtrl * self) {
    return new wxDataViewItem(self->GetCurrentItem());
}
wxDataViewColumn * wxDataViewCtrl_GetCurrentColumn(const wxDataViewCtrl * self) {
    return self->GetCurrentColumn();
}
int wxDataViewCtrl_GetIndent(const wxDataViewCtrl * self) {
    return self->GetIndent();
}
wxRect *wxDataViewCtrl_GetItemRect(const wxDataViewCtrl * self, const wxDataViewItem * item, const wxDataViewColumn * col) {
    return new wxRect(self->GetItemRect(*item, col));
}
wxWindow * wxDataViewCtrl_GetMainWindow(wxDataViewCtrl * self) {
    return self->GetMainWindow();
}
wxDataViewModel * wxDataViewCtrl_GetModel(wxDataViewCtrl * self) {
    return self->GetModel();
}
int wxDataViewCtrl_GetSelectedItemsCount(const wxDataViewCtrl * self) {
    return self->GetSelectedItemsCount();
}
wxDataViewItem *wxDataViewCtrl_GetSelection(const wxDataViewCtrl * self) {
    return new wxDataViewItem(self->GetSelection());
}
int wxDataViewCtrl_GetSelections(const wxDataViewCtrl * self, wxDataViewItemArray * sel) {
    return self->GetSelections(*sel);
}
wxDataViewColumn * wxDataViewCtrl_GetSortingColumn(const wxDataViewCtrl * self) {
    return self->GetSortingColumn();
}
bool wxDataViewCtrl_HasSelection(const wxDataViewCtrl * self) {
    return self->HasSelection();
}
void wxDataViewCtrl_HitTest(const wxDataViewCtrl * self, const wxPoint * point, wxDataViewItem * item, wxDataViewColumn *& col) {
    return self->HitTest(*point, *item, col);
}
bool wxDataViewCtrl_IsExpanded(const wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->IsExpanded(*item);
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDataViewCtrl_IsMultiColumnSortAllowed(const wxDataViewCtrl * self) {
    return self->IsMultiColumnSortAllowed();
}
#endif
bool wxDataViewCtrl_IsSelected(const wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->IsSelected(*item);
}
void wxDataViewCtrl_Select(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->Select(*item);
}
void wxDataViewCtrl_SelectAll(wxDataViewCtrl * self) {
    return self->SelectAll();
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDataViewCtrl_SetAlternateRowColour(wxDataViewCtrl * self, const wxColour * colour) {
    return self->SetAlternateRowColour(*colour);
}
#endif
void wxDataViewCtrl_SetExpanderColumn(wxDataViewCtrl * self, wxDataViewColumn * col) {
    return self->SetExpanderColumn(col);
}
void wxDataViewCtrl_SetCurrentItem(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->SetCurrentItem(*item);
}
#if wxCHECK_VERSION(3, 1, 0)
bool wxDataViewCtrl_SetHeaderAttr(wxDataViewCtrl * self, const wxItemAttr * attr) {
    return self->SetHeaderAttr(*attr);
}
#endif
void wxDataViewCtrl_SetIndent(wxDataViewCtrl * self, int indent) {
    return self->SetIndent(indent);
}
void wxDataViewCtrl_SetSelections(wxDataViewCtrl * self, const wxDataViewItemArray * sel) {
    return self->SetSelections(*sel);
}
void wxDataViewCtrl_Unselect(wxDataViewCtrl * self, const wxDataViewItem * item) {
    return self->Unselect(*item);
}
void wxDataViewCtrl_UnselectAll(wxDataViewCtrl * self) {
    return self->UnselectAll();
}
bool wxDataViewCtrl_SetRowHeight(wxDataViewCtrl * self, int row_height) {
    return self->SetRowHeight(row_height);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewCtrl_ToggleSortByColumn(wxDataViewCtrl * self, int column) {
    return self->ToggleSortByColumn(column);
}
int wxDataViewCtrl_GetCountPerPage(const wxDataViewCtrl * self) {
    return self->GetCountPerPage();
}
wxDataViewItem *wxDataViewCtrl_GetTopItem(const wxDataViewCtrl * self) {
    return new wxDataViewItem(self->GetTopItem());
}
#endif

// CLASS: wxDataViewCustomRenderer
wxClassInfo *wxDataViewCustomRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewCustomRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewCustomRenderer_GetDefaultType() {
    return new wxString(wxDataViewCustomRenderer::GetDefaultType());
}
#endif
bool wxDataViewCustomRenderer_ActivateCell(wxDataViewCustomRenderer * self, const wxRect * cell, wxDataViewModel * model, const wxDataViewItem * item, unsigned int col, const wxMouseEvent * mouse_event) {
    return self->ActivateCell(*cell, model, *item, col, mouse_event);
}
wxDataViewItemAttr *wxDataViewCustomRenderer_GetAttr(const wxDataViewCustomRenderer * self) {
    return new wxDataViewItemAttr(self->GetAttr());
}
wxSize *wxDataViewCustomRenderer_GetSize(const wxDataViewCustomRenderer * self) {
    return new wxSize(self->GetSize());
}
bool wxDataViewCustomRenderer_StartDrag(wxDataViewCustomRenderer * self, const wxPoint * cursor, const wxRect * cell, wxDataViewModel * model, const wxDataViewItem * item, unsigned int col) {
    return self->StartDrag(*cursor, *cell, model, *item, col);
}

// CLASS: wxDataViewDateRenderer
wxClassInfo *wxDataViewDateRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewDateRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewDateRenderer_GetDefaultType() {
    return new wxString(wxDataViewDateRenderer::GetDefaultType());
}
#endif

// CLASS: wxDataViewEvent
wxClassInfo *wxDataViewEvent_CLASSINFO() {
    return wxCLASSINFO(wxDataViewEvent);
}
wxDataViewEvent *wxDataViewEvent_new() {
    return new wxDataViewEvent();
}
wxDataViewEvent *wxDataViewEvent_new3(const wxDataViewEvent * event) {
    return new wxDataViewEvent(*event);
}
int wxDataViewEvent_GetColumn(const wxDataViewEvent * self) {
    return self->GetColumn();
}
wxDataViewColumn * wxDataViewEvent_GetDataViewColumn(const wxDataViewEvent * self) {
    return self->GetDataViewColumn();
}
wxDataViewModel * wxDataViewEvent_GetModel(const wxDataViewEvent * self) {
    return self->GetModel();
}
wxPoint *wxDataViewEvent_GetPosition(const wxDataViewEvent * self) {
    return new wxPoint(self->GetPosition());
}
bool wxDataViewEvent_IsEditCancelled(const wxDataViewEvent * self) {
    return self->IsEditCancelled();
}
void wxDataViewEvent_SetColumn(wxDataViewEvent * self, int col) {
    return self->SetColumn(col);
}
void wxDataViewEvent_SetValue(wxDataViewEvent * self, const wxVariant * value) {
    return self->SetValue(*value);
}
void wxDataViewEvent_SetDataObject(wxDataViewEvent * self, wxDataObject * obj) {
    return self->SetDataObject(obj);
}
wxDataFormat *wxDataViewEvent_GetDataFormat(const wxDataViewEvent * self) {
    return new wxDataFormat(self->GetDataFormat());
}
size_t wxDataViewEvent_GetDataSize(const wxDataViewEvent * self) {
    return self->GetDataSize();
}
void * wxDataViewEvent_GetDataBuffer(const wxDataViewEvent * self) {
    return self->GetDataBuffer();
}
void wxDataViewEvent_SetDragFlags(wxDataViewEvent * self, int flags) {
    return self->SetDragFlags(flags);
}
int wxDataViewEvent_GetCacheFrom(const wxDataViewEvent * self) {
    return self->GetCacheFrom();
}
int wxDataViewEvent_GetCacheTo(const wxDataViewEvent * self) {
    return self->GetCacheTo();
}
#if wxCHECK_VERSION(3, 1, 0)
int wxDataViewEvent_GetProposedDropIndex(const wxDataViewEvent * self) {
    return self->GetProposedDropIndex();
}
#endif
wxDataViewItem *wxDataViewEvent_GetItem(const wxDataViewEvent * self) {
    return new wxDataViewItem(self->GetItem());
}
void wxDataViewEvent_SetPosition(wxDataViewEvent * self, int x, int y) {
    return self->SetPosition(x, y);
}
void wxDataViewEvent_SetCache(wxDataViewEvent * self, int from, int to) {
    return self->SetCache(from, to);
}
wxDataObject * wxDataViewEvent_GetDataObject(const wxDataViewEvent * self) {
    return self->GetDataObject();
}
void wxDataViewEvent_SetDataFormat(wxDataViewEvent * self, const wxDataFormat * format) {
    return self->SetDataFormat(*format);
}
void wxDataViewEvent_SetDataSize(wxDataViewEvent * self, size_t size) {
    return self->SetDataSize(size);
}
void wxDataViewEvent_SetDataBuffer(wxDataViewEvent * self, void * buf) {
    return self->SetDataBuffer(buf);
}
int wxDataViewEvent_GetDragFlags(const wxDataViewEvent * self) {
    return self->GetDragFlags();
}

// CLASS: wxDataViewIconText
wxClassInfo *wxDataViewIconText_CLASSINFO() {
    return wxCLASSINFO(wxDataViewIconText);
}
#if wxCHECK_VERSION(3, 1, 0)
wxDataViewIconText *wxDataViewIconText_new(const wxString * text, const wxBitmapBundle * bitmap) {
    return new wxDataViewIconText(*text, *bitmap);
}
#endif
wxDataViewIconText *wxDataViewIconText_new1(const wxDataViewIconText * other) {
    return new wxDataViewIconText(*other);
}
#if wxCHECK_VERSION(3, 1, 0)
wxBitmapBundle *wxDataViewIconText_GetBitmapBundle(const wxDataViewIconText * self) {
    return new wxBitmapBundle(self->GetBitmapBundle());
}
#endif
wxIcon *wxDataViewIconText_GetIcon(const wxDataViewIconText * self) {
    return new wxIcon(self->GetIcon());
}
wxString *wxDataViewIconText_GetText(const wxDataViewIconText * self) {
    return new wxString(self->GetText());
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewIconText_SetBitmapBundle(wxDataViewIconText * self, const wxBitmapBundle * bitmap) {
    return self->SetBitmapBundle(*bitmap);
}
#endif
void wxDataViewIconText_SetIcon(wxDataViewIconText * self, const wxIcon * icon) {
    return self->SetIcon(*icon);
}
void wxDataViewIconText_SetText(wxDataViewIconText * self, const wxString * text) {
    return self->SetText(*text);
}

// CLASS: wxDataViewIconTextRenderer
wxClassInfo *wxDataViewIconTextRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewIconTextRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewIconTextRenderer_GetDefaultType() {
    return new wxString(wxDataViewIconTextRenderer::GetDefaultType());
}
#endif

// CLASS: wxDataViewIndexListModel
wxDataViewItem *wxDataViewIndexListModel_GetItem(const wxDataViewIndexListModel * self, unsigned int row) {
    return new wxDataViewItem(self->GetItem(row));
}
void wxDataViewIndexListModel_Reset(wxDataViewIndexListModel * self, unsigned int new_size) {
    return self->Reset(new_size);
}
void wxDataViewIndexListModel_RowAppended(wxDataViewIndexListModel * self) {
    return self->RowAppended();
}
void wxDataViewIndexListModel_RowChanged(wxDataViewIndexListModel * self, unsigned int row) {
    return self->RowChanged(row);
}
void wxDataViewIndexListModel_RowDeleted(wxDataViewIndexListModel * self, unsigned int row) {
    return self->RowDeleted(row);
}
void wxDataViewIndexListModel_RowInserted(wxDataViewIndexListModel * self, unsigned int before) {
    return self->RowInserted(before);
}
void wxDataViewIndexListModel_RowPrepended(wxDataViewIndexListModel * self) {
    return self->RowPrepended();
}
void wxDataViewIndexListModel_RowValueChanged(wxDataViewIndexListModel * self, unsigned int row, unsigned int col) {
    return self->RowValueChanged(row, col);
}
void wxDataViewIndexListModel_RowsDeleted(wxDataViewIndexListModel * self, const wxArrayInt * rows) {
    return self->RowsDeleted(*rows);
}

// CLASS: wxDataViewItem
void wxDataViewItem_delete(wxDataViewItem *self) {
    delete self;
}
wxDataViewItem *wxDataViewItem_new() {
    return new wxDataViewItem();
}
wxDataViewItem *wxDataViewItem_new1(const wxDataViewItem * item) {
    return new wxDataViewItem(*item);
}
wxDataViewItem *wxDataViewItem_new2(void * id) {
    return new wxDataViewItem(id);
}
void * wxDataViewItem_GetID(const wxDataViewItem * self) {
    return self->GetID();
}
bool wxDataViewItem_IsOk(const wxDataViewItem * self) {
    return self->IsOk();
}

// CLASS: wxDataViewItemAttr
void wxDataViewItemAttr_delete(wxDataViewItemAttr *self) {
    delete self;
}
wxDataViewItemAttr *wxDataViewItemAttr_new() {
    return new wxDataViewItemAttr();
}
void wxDataViewItemAttr_SetBold(wxDataViewItemAttr * self, bool set) {
    return self->SetBold(set);
}
void wxDataViewItemAttr_SetColour(wxDataViewItemAttr * self, const wxColour * colour) {
    return self->SetColour(*colour);
}
void wxDataViewItemAttr_SetBackgroundColour(wxDataViewItemAttr * self, const wxColour * colour) {
    return self->SetBackgroundColour(*colour);
}
void wxDataViewItemAttr_SetItalic(wxDataViewItemAttr * self, bool set) {
    return self->SetItalic(set);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewItemAttr_SetStrikethrough(wxDataViewItemAttr * self, bool set) {
    return self->SetStrikethrough(set);
}
#endif
bool wxDataViewItemAttr_HasColour(const wxDataViewItemAttr * self) {
    return self->HasColour();
}
wxColour *wxDataViewItemAttr_GetColour(const wxDataViewItemAttr * self) {
    return new wxColour(self->GetColour());
}
bool wxDataViewItemAttr_HasFont(const wxDataViewItemAttr * self) {
    return self->HasFont();
}
bool wxDataViewItemAttr_GetBold(const wxDataViewItemAttr * self) {
    return self->GetBold();
}
bool wxDataViewItemAttr_GetItalic(const wxDataViewItemAttr * self) {
    return self->GetItalic();
}
bool wxDataViewItemAttr_HasBackgroundColour(const wxDataViewItemAttr * self) {
    return self->HasBackgroundColour();
}
wxColour *wxDataViewItemAttr_GetBackgroundColour(const wxDataViewItemAttr * self) {
    return new wxColour(self->GetBackgroundColour());
}
bool wxDataViewItemAttr_IsDefault(const wxDataViewItemAttr * self) {
    return self->IsDefault();
}
wxFont *wxDataViewItemAttr_GetEffectiveFont(const wxDataViewItemAttr * self, const wxFont * font) {
    return new wxFont(self->GetEffectiveFont(*font));
}

// CLASS: wxDataViewListCtrl
wxClassInfo *wxDataViewListCtrl_CLASSINFO() {
    return wxCLASSINFO(wxDataViewListCtrl);
}
int wxDataViewListCtrl_GetSelectedRow(const wxDataViewListCtrl * self) {
    return self->GetSelectedRow();
}
void wxDataViewListCtrl_DeleteAllItems(wxDataViewListCtrl * self) {
    return self->DeleteAllItems();
}
unsigned int wxDataViewListCtrl_GetItemCount(const wxDataViewListCtrl * self) {
    return self->GetItemCount();
}
void wxDataViewListCtrl_SetValue(wxDataViewListCtrl * self, const wxVariant * value, unsigned int row, unsigned int col) {
    return self->SetValue(*value, row, col);
}
void wxDataViewListCtrl_GetValue(wxDataViewListCtrl * self, wxVariant * value, unsigned int row, unsigned int col) {
    return self->GetValue(*value, row, col);
}
void wxDataViewListCtrl_SetTextValue(wxDataViewListCtrl * self, const wxString * value, unsigned int row, unsigned int col) {
    return self->SetTextValue(*value, row, col);
}
wxString *wxDataViewListCtrl_GetTextValue(const wxDataViewListCtrl * self, unsigned int row, unsigned int col) {
    return new wxString(self->GetTextValue(row, col));
}
void wxDataViewListCtrl_SetToggleValue(wxDataViewListCtrl * self, bool value, unsigned int row, unsigned int col) {
    return self->SetToggleValue(value, row, col);
}
bool wxDataViewListCtrl_GetToggleValue(const wxDataViewListCtrl * self, unsigned int row, unsigned int col) {
    return self->GetToggleValue(row, col);
}
wxDataViewListCtrl *wxDataViewListCtrl_new() {
    return new wxDataViewListCtrl();
}
wxDataViewListCtrl *wxDataViewListCtrl_new1(wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator) {
    return new wxDataViewListCtrl(parent, id, *pos, *size, style, *validator);
}
bool wxDataViewListCtrl_Create(wxDataViewListCtrl * self, wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator) {
    return self->Create(parent, id, *pos, *size, style, *validator);
}
const wxDataViewListStore * wxDataViewListCtrl_GetStore1(const wxDataViewListCtrl * self) {
    return self->GetStore();
}
int wxDataViewListCtrl_ItemToRow(const wxDataViewListCtrl * self, const wxDataViewItem * item) {
    return self->ItemToRow(*item);
}
wxDataViewItem *wxDataViewListCtrl_RowToItem(const wxDataViewListCtrl * self, int row) {
    return new wxDataViewItem(self->RowToItem(row));
}

// CLASS: wxDataViewListModel
bool wxDataViewListModel_GetAttrByRow(const wxDataViewListModel * self, unsigned int row, unsigned int col, wxDataViewItemAttr * attr) {
    return self->GetAttrByRow(row, col, *attr);
}
bool wxDataViewListModel_IsEnabledByRow(const wxDataViewListModel * self, unsigned int row, unsigned int col) {
    return self->IsEnabledByRow(row, col);
}
unsigned int wxDataViewListModel_GetCount(const wxDataViewListModel * self) {
    return self->GetCount();
}
unsigned int wxDataViewListModel_GetRow(const wxDataViewListModel * self, const wxDataViewItem * item) {
    return self->GetRow(*item);
}
void wxDataViewListModel_GetValueByRow(const wxDataViewListModel * self, wxVariant * variant, unsigned int row, unsigned int col) {
    return self->GetValueByRow(*variant, row, col);
}
bool wxDataViewListModel_SetValueByRow(wxDataViewListModel * self, const wxVariant * variant, unsigned int row, unsigned int col) {
    return self->SetValueByRow(*variant, row, col);
}

// CLASS: wxDataViewListStore
wxDataViewListStore *wxDataViewListStore_new() {
    return new wxDataViewListStore();
}
void wxDataViewListStore_PrependColumn(wxDataViewListStore * self, const wxString * varianttype) {
    return self->PrependColumn(*varianttype);
}
void wxDataViewListStore_InsertColumn(wxDataViewListStore * self, unsigned int pos, const wxString * varianttype) {
    return self->InsertColumn(pos, *varianttype);
}
void wxDataViewListStore_AppendColumn(wxDataViewListStore * self, const wxString * varianttype) {
    return self->AppendColumn(*varianttype);
}
void wxDataViewListStore_DeleteAllItems(wxDataViewListStore * self) {
    return self->DeleteAllItems();
}
unsigned int wxDataViewListStore_GetItemCount(const wxDataViewListStore * self) {
    return self->GetItemCount();
}

// CLASS: wxDataViewModel
void wxDataViewModel_AddNotifier(wxDataViewModel * self, wxDataViewModelNotifier * notifier) {
    return self->AddNotifier(notifier);
}
bool wxDataViewModel_ChangeValue(wxDataViewModel * self, const wxVariant * variant, const wxDataViewItem * item, unsigned int col) {
    return self->ChangeValue(*variant, *item, col);
}
bool wxDataViewModel_Cleared(wxDataViewModel * self) {
    return self->Cleared();
}
int wxDataViewModel_Compare(const wxDataViewModel * self, const wxDataViewItem * item1, const wxDataViewItem * item2, unsigned int column, bool ascending) {
    return self->Compare(*item1, *item2, column, ascending);
}
bool wxDataViewModel_GetAttr(const wxDataViewModel * self, const wxDataViewItem * item, unsigned int col, wxDataViewItemAttr * attr) {
    return self->GetAttr(*item, col, *attr);
}
bool wxDataViewModel_IsEnabled(const wxDataViewModel * self, const wxDataViewItem * item, unsigned int col) {
    return self->IsEnabled(*item, col);
}
unsigned int wxDataViewModel_GetChildren(const wxDataViewModel * self, const wxDataViewItem * item, wxDataViewItemArray * children) {
    return self->GetChildren(*item, *children);
}
wxDataViewItem *wxDataViewModel_GetParent(const wxDataViewModel * self, const wxDataViewItem * item) {
    return new wxDataViewItem(self->GetParent(*item));
}
void wxDataViewModel_GetValue(const wxDataViewModel * self, wxVariant * variant, const wxDataViewItem * item, unsigned int col) {
    return self->GetValue(*variant, *item, col);
}
bool wxDataViewModel_HasContainerColumns(const wxDataViewModel * self, const wxDataViewItem * item) {
    return self->HasContainerColumns(*item);
}
bool wxDataViewModel_HasDefaultCompare(const wxDataViewModel * self) {
    return self->HasDefaultCompare();
}
bool wxDataViewModel_IsContainer(const wxDataViewModel * self, const wxDataViewItem * item) {
    return self->IsContainer(*item);
}
bool wxDataViewModel_ItemAdded(wxDataViewModel * self, const wxDataViewItem * parent, const wxDataViewItem * item) {
    return self->ItemAdded(*parent, *item);
}
bool wxDataViewModel_ItemChanged(wxDataViewModel * self, const wxDataViewItem * item) {
    return self->ItemChanged(*item);
}
bool wxDataViewModel_ItemDeleted(wxDataViewModel * self, const wxDataViewItem * parent, const wxDataViewItem * item) {
    return self->ItemDeleted(*parent, *item);
}
bool wxDataViewModel_ItemsAdded(wxDataViewModel * self, const wxDataViewItem * parent, const wxDataViewItemArray * items) {
    return self->ItemsAdded(*parent, *items);
}
bool wxDataViewModel_ItemsChanged(wxDataViewModel * self, const wxDataViewItemArray * items) {
    return self->ItemsChanged(*items);
}
bool wxDataViewModel_ItemsDeleted(wxDataViewModel * self, const wxDataViewItem * parent, const wxDataViewItemArray * items) {
    return self->ItemsDeleted(*parent, *items);
}
void wxDataViewModel_RemoveNotifier(wxDataViewModel * self, wxDataViewModelNotifier * notifier) {
    return self->RemoveNotifier(notifier);
}
void wxDataViewModel_Resort(wxDataViewModel * self) {
    return self->Resort();
}
bool wxDataViewModel_SetValue(wxDataViewModel * self, const wxVariant * variant, const wxDataViewItem * item, unsigned int col) {
    return self->SetValue(*variant, *item, col);
}
bool wxDataViewModel_ValueChanged(wxDataViewModel * self, const wxDataViewItem * item, unsigned int col) {
    return self->ValueChanged(*item, col);
}
bool wxDataViewModel_IsListModel(const wxDataViewModel * self) {
    return self->IsListModel();
}
bool wxDataViewModel_IsVirtualListModel(const wxDataViewModel * self) {
    return self->IsVirtualListModel();
}

// CLASS: wxDataViewModelNotifier
void wxDataViewModelNotifier_delete(wxDataViewModelNotifier *self) {
    delete self;
}
bool wxDataViewModelNotifier_Cleared(wxDataViewModelNotifier * self) {
    return self->Cleared();
}
wxDataViewModel * wxDataViewModelNotifier_GetOwner(const wxDataViewModelNotifier * self) {
    return self->GetOwner();
}
bool wxDataViewModelNotifier_ItemAdded(wxDataViewModelNotifier * self, const wxDataViewItem * parent, const wxDataViewItem * item) {
    return self->ItemAdded(*parent, *item);
}
bool wxDataViewModelNotifier_ItemChanged(wxDataViewModelNotifier * self, const wxDataViewItem * item) {
    return self->ItemChanged(*item);
}
bool wxDataViewModelNotifier_ItemDeleted(wxDataViewModelNotifier * self, const wxDataViewItem * parent, const wxDataViewItem * item) {
    return self->ItemDeleted(*parent, *item);
}
bool wxDataViewModelNotifier_ItemsAdded(wxDataViewModelNotifier * self, const wxDataViewItem * parent, const wxDataViewItemArray * items) {
    return self->ItemsAdded(*parent, *items);
}
bool wxDataViewModelNotifier_ItemsChanged(wxDataViewModelNotifier * self, const wxDataViewItemArray * items) {
    return self->ItemsChanged(*items);
}
bool wxDataViewModelNotifier_ItemsDeleted(wxDataViewModelNotifier * self, const wxDataViewItem * parent, const wxDataViewItemArray * items) {
    return self->ItemsDeleted(*parent, *items);
}
void wxDataViewModelNotifier_Resort(wxDataViewModelNotifier * self) {
    return self->Resort();
}
void wxDataViewModelNotifier_SetOwner(wxDataViewModelNotifier * self, wxDataViewModel * owner) {
    return self->SetOwner(owner);
}
bool wxDataViewModelNotifier_ValueChanged(wxDataViewModelNotifier * self, const wxDataViewItem * item, unsigned int col) {
    return self->ValueChanged(*item, col);
}

// CLASS: wxDataViewProgressRenderer
wxClassInfo *wxDataViewProgressRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewProgressRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewProgressRenderer_GetDefaultType() {
    return new wxString(wxDataViewProgressRenderer::GetDefaultType());
}
#endif

// CLASS: wxDataViewRenderer
wxClassInfo *wxDataViewRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewRenderer);
}
void wxDataViewRenderer_EnableEllipsize(wxDataViewRenderer * self, wxEllipsizeMode mode) {
    return self->EnableEllipsize(mode);
}
void wxDataViewRenderer_DisableEllipsize(wxDataViewRenderer * self) {
    return self->DisableEllipsize();
}
int wxDataViewRenderer_GetAlignment(const wxDataViewRenderer * self) {
    return self->GetAlignment();
}
wxEllipsizeMode wxDataViewRenderer_GetEllipsizeMode(const wxDataViewRenderer * self) {
    return self->GetEllipsizeMode();
}
wxDataViewColumn * wxDataViewRenderer_GetOwner(const wxDataViewRenderer * self) {
    return self->GetOwner();
}
bool wxDataViewRenderer_GetValue(const wxDataViewRenderer * self, wxVariant * value) {
    return self->GetValue(*value);
}
wxString *wxDataViewRenderer_GetVariantType(const wxDataViewRenderer * self) {
    return new wxString(self->GetVariantType());
}
#if wxCHECK_VERSION(3, 1, 7)
bool wxDataViewRenderer_IsCompatibleVariantType(const wxDataViewRenderer * self, const wxString * variant_type) {
    return self->IsCompatibleVariantType(*variant_type);
}
#endif
void wxDataViewRenderer_SetAlignment(wxDataViewRenderer * self, int align) {
    return self->SetAlignment(align);
}
void wxDataViewRenderer_SetOwner(wxDataViewRenderer * self, wxDataViewColumn * owner) {
    return self->SetOwner(owner);
}
bool wxDataViewRenderer_SetValue(wxDataViewRenderer * self, const wxVariant * value) {
    return self->SetValue(*value);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewRenderer_SetValueAdjuster(wxDataViewRenderer * self, wxDataViewValueAdjuster * transformer) {
    return self->SetValueAdjuster(transformer);
}
#endif
bool wxDataViewRenderer_Validate(wxDataViewRenderer * self, wxVariant * value) {
    return self->Validate(*value);
}
bool wxDataViewRenderer_HasEditorCtrl(const wxDataViewRenderer * self) {
    return self->HasEditorCtrl();
}
bool wxDataViewRenderer_GetValueFromEditorCtrl(wxDataViewRenderer * self, wxWindow * editor, wxVariant * value) {
    return self->GetValueFromEditorCtrl(editor, *value);
}
void wxDataViewRenderer_CancelEditing(wxDataViewRenderer * self) {
    return self->CancelEditing();
}
bool wxDataViewRenderer_FinishEditing(wxDataViewRenderer * self) {
    return self->FinishEditing();
}
wxWindow * wxDataViewRenderer_GetEditorCtrl(wxDataViewRenderer * self) {
    return self->GetEditorCtrl();
}

// CLASS: wxDataViewSpinRenderer
wxClassInfo *wxDataViewSpinRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewSpinRenderer);
}

// CLASS: wxDataViewTextRenderer
wxClassInfo *wxDataViewTextRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewTextRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewTextRenderer_GetDefaultType() {
    return new wxString(wxDataViewTextRenderer::GetDefaultType());
}
void wxDataViewTextRenderer_EnableMarkup(wxDataViewTextRenderer * self, bool enable) {
    return self->EnableMarkup(enable);
}
#endif

// CLASS: wxDataViewToggleRenderer
wxClassInfo *wxDataViewToggleRenderer_CLASSINFO() {
    return wxCLASSINFO(wxDataViewToggleRenderer);
}
#if wxCHECK_VERSION(3, 1, 0)
wxString *wxDataViewToggleRenderer_GetDefaultType() {
    return new wxString(wxDataViewToggleRenderer::GetDefaultType());
}
void wxDataViewToggleRenderer_ShowAsRadio(wxDataViewToggleRenderer * self) {
    return self->ShowAsRadio();
}
#endif

// CLASS: wxDataViewTreeCtrl
wxClassInfo *wxDataViewTreeCtrl_CLASSINFO() {
    return wxCLASSINFO(wxDataViewTreeCtrl);
}
wxDataViewTreeCtrl *wxDataViewTreeCtrl_new() {
    return new wxDataViewTreeCtrl();
}
wxDataViewTreeCtrl *wxDataViewTreeCtrl_new1(wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator) {
    return new wxDataViewTreeCtrl(parent, id, *pos, *size, style, *validator);
}
wxDataViewItem *wxDataViewTreeCtrl_AppendContainer(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxString * text, int icon, int expanded, wxClientData * data) {
    return new wxDataViewItem(self->AppendContainer(*parent, *text, icon, expanded, data));
}
wxDataViewItem *wxDataViewTreeCtrl_AppendItem(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxString * text, int icon, wxClientData * data) {
    return new wxDataViewItem(self->AppendItem(*parent, *text, icon, data));
}
bool wxDataViewTreeCtrl_Create(wxDataViewTreeCtrl * self, wxWindow * parent, wxWindowID id, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator) {
    return self->Create(parent, id, *pos, *size, style, *validator);
}
void wxDataViewTreeCtrl_DeleteAllItems(wxDataViewTreeCtrl * self) {
    return self->DeleteAllItems();
}
void wxDataViewTreeCtrl_DeleteChildren(wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return self->DeleteChildren(*item);
}
void wxDataViewTreeCtrl_DeleteItem(wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return self->DeleteItem(*item);
}
int wxDataViewTreeCtrl_GetChildCount(const wxDataViewTreeCtrl * self, const wxDataViewItem * parent) {
    return self->GetChildCount(*parent);
}
wxImageList * wxDataViewTreeCtrl_GetImageList(wxDataViewTreeCtrl * self) {
    return self->GetImageList();
}
wxClientData * wxDataViewTreeCtrl_GetItemData(const wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return self->GetItemData(*item);
}
wxIcon *wxDataViewTreeCtrl_GetItemExpandedIcon(const wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return new wxIcon(self->GetItemExpandedIcon(*item));
}
wxIcon *wxDataViewTreeCtrl_GetItemIcon(const wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return new wxIcon(self->GetItemIcon(*item));
}
wxString *wxDataViewTreeCtrl_GetItemText(const wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return new wxString(self->GetItemText(*item));
}
wxDataViewItem *wxDataViewTreeCtrl_GetNthChild(const wxDataViewTreeCtrl * self, const wxDataViewItem * parent, unsigned int pos) {
    return new wxDataViewItem(self->GetNthChild(*parent, pos));
}
const wxDataViewTreeStore * wxDataViewTreeCtrl_GetStore1(const wxDataViewTreeCtrl * self) {
    return self->GetStore();
}
wxDataViewItem *wxDataViewTreeCtrl_InsertContainer(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxDataViewItem * previous, const wxString * text, int icon, int expanded, wxClientData * data) {
    return new wxDataViewItem(self->InsertContainer(*parent, *previous, *text, icon, expanded, data));
}
wxDataViewItem *wxDataViewTreeCtrl_InsertItem(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxDataViewItem * previous, const wxString * text, int icon, wxClientData * data) {
    return new wxDataViewItem(self->InsertItem(*parent, *previous, *text, icon, data));
}
bool wxDataViewTreeCtrl_IsContainer(wxDataViewTreeCtrl * self, const wxDataViewItem * item) {
    return self->IsContainer(*item);
}
wxDataViewItem *wxDataViewTreeCtrl_PrependContainer(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxString * text, int icon, int expanded, wxClientData * data) {
    return new wxDataViewItem(self->PrependContainer(*parent, *text, icon, expanded, data));
}
wxDataViewItem *wxDataViewTreeCtrl_PrependItem(wxDataViewTreeCtrl * self, const wxDataViewItem * parent, const wxString * text, int icon, wxClientData * data) {
    return new wxDataViewItem(self->PrependItem(*parent, *text, icon, data));
}
void wxDataViewTreeCtrl_SetImageList(wxDataViewTreeCtrl * self, wxImageList * imagelist) {
    return self->SetImageList(imagelist);
}
void wxDataViewTreeCtrl_SetItemData(wxDataViewTreeCtrl * self, const wxDataViewItem * item, wxClientData * data) {
    return self->SetItemData(*item, data);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewTreeCtrl_SetItemExpandedIcon(wxDataViewTreeCtrl * self, const wxDataViewItem * item, const wxBitmapBundle * icon) {
    return self->SetItemExpandedIcon(*item, *icon);
}
void wxDataViewTreeCtrl_SetItemIcon(wxDataViewTreeCtrl * self, const wxDataViewItem * item, const wxBitmapBundle * icon) {
    return self->SetItemIcon(*item, *icon);
}
#endif
void wxDataViewTreeCtrl_SetItemText(wxDataViewTreeCtrl * self, const wxDataViewItem * item, const wxString * text) {
    return self->SetItemText(*item, *text);
}

// CLASS: wxDataViewTreeStore
wxDataViewTreeStore *wxDataViewTreeStore_new() {
    return new wxDataViewTreeStore();
}
#if wxCHECK_VERSION(3, 1, 0)
wxDataViewItem *wxDataViewTreeStore_AppendContainer(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxString * text, const wxBitmapBundle * icon, const wxBitmapBundle * expanded, wxClientData * data) {
    return new wxDataViewItem(self->AppendContainer(*parent, *text, *icon, *expanded, data));
}
wxDataViewItem *wxDataViewTreeStore_AppendItem(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxString * text, const wxBitmapBundle * icon, wxClientData * data) {
    return new wxDataViewItem(self->AppendItem(*parent, *text, *icon, data));
}
#endif
void wxDataViewTreeStore_DeleteAllItems(wxDataViewTreeStore * self) {
    return self->DeleteAllItems();
}
void wxDataViewTreeStore_DeleteChildren(wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return self->DeleteChildren(*item);
}
void wxDataViewTreeStore_DeleteItem(wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return self->DeleteItem(*item);
}
int wxDataViewTreeStore_GetChildCount(const wxDataViewTreeStore * self, const wxDataViewItem * parent) {
    return self->GetChildCount(*parent);
}
wxClientData * wxDataViewTreeStore_GetItemData(const wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return self->GetItemData(*item);
}
wxIcon *wxDataViewTreeStore_GetItemExpandedIcon(const wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return new wxIcon(self->GetItemExpandedIcon(*item));
}
wxIcon *wxDataViewTreeStore_GetItemIcon(const wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return new wxIcon(self->GetItemIcon(*item));
}
wxString *wxDataViewTreeStore_GetItemText(const wxDataViewTreeStore * self, const wxDataViewItem * item) {
    return new wxString(self->GetItemText(*item));
}
wxDataViewItem *wxDataViewTreeStore_GetNthChild(const wxDataViewTreeStore * self, const wxDataViewItem * parent, unsigned int pos) {
    return new wxDataViewItem(self->GetNthChild(*parent, pos));
}
#if wxCHECK_VERSION(3, 1, 0)
wxDataViewItem *wxDataViewTreeStore_InsertContainer(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxDataViewItem * previous, const wxString * text, const wxBitmapBundle * icon, const wxBitmapBundle * expanded, wxClientData * data) {
    return new wxDataViewItem(self->InsertContainer(*parent, *previous, *text, *icon, *expanded, data));
}
wxDataViewItem *wxDataViewTreeStore_InsertItem(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxDataViewItem * previous, const wxString * text, const wxBitmapBundle * icon, wxClientData * data) {
    return new wxDataViewItem(self->InsertItem(*parent, *previous, *text, *icon, data));
}
wxDataViewItem *wxDataViewTreeStore_PrependContainer(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxString * text, const wxBitmapBundle * icon, const wxBitmapBundle * expanded, wxClientData * data) {
    return new wxDataViewItem(self->PrependContainer(*parent, *text, *icon, *expanded, data));
}
wxDataViewItem *wxDataViewTreeStore_PrependItem(wxDataViewTreeStore * self, const wxDataViewItem * parent, const wxString * text, const wxBitmapBundle * icon, wxClientData * data) {
    return new wxDataViewItem(self->PrependItem(*parent, *text, *icon, data));
}
#endif
void wxDataViewTreeStore_SetItemData(wxDataViewTreeStore * self, const wxDataViewItem * item, wxClientData * data) {
    return self->SetItemData(*item, data);
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDataViewTreeStore_SetItemExpandedIcon(wxDataViewTreeStore * self, const wxDataViewItem * item, const wxBitmapBundle * icon) {
    return self->SetItemExpandedIcon(*item, *icon);
}
void wxDataViewTreeStore_SetItemIcon(wxDataViewTreeStore * self, const wxDataViewItem * item, const wxBitmapBundle * icon) {
    return self->SetItemIcon(*item, *icon);
}
#endif

// CLASS: wxDataViewVirtualListModel
wxDataViewItem *wxDataViewVirtualListModel_GetItem(const wxDataViewVirtualListModel * self, unsigned int row) {
    return new wxDataViewItem(self->GetItem(row));
}
void wxDataViewVirtualListModel_Reset(wxDataViewVirtualListModel * self, unsigned int new_size) {
    return self->Reset(new_size);
}
void wxDataViewVirtualListModel_RowAppended(wxDataViewVirtualListModel * self) {
    return self->RowAppended();
}
void wxDataViewVirtualListModel_RowChanged(wxDataViewVirtualListModel * self, unsigned int row) {
    return self->RowChanged(row);
}
void wxDataViewVirtualListModel_RowDeleted(wxDataViewVirtualListModel * self, unsigned int row) {
    return self->RowDeleted(row);
}
void wxDataViewVirtualListModel_RowInserted(wxDataViewVirtualListModel * self, unsigned int before) {
    return self->RowInserted(before);
}
void wxDataViewVirtualListModel_RowPrepended(wxDataViewVirtualListModel * self) {
    return self->RowPrepended();
}
void wxDataViewVirtualListModel_RowValueChanged(wxDataViewVirtualListModel * self, unsigned int row, unsigned int col) {
    return self->RowValueChanged(row, col);
}
void wxDataViewVirtualListModel_RowsDeleted(wxDataViewVirtualListModel * self, const wxArrayInt * rows) {
    return self->RowsDeleted(*rows);
}

// CLASS: wxDateEvent
wxClassInfo *wxDateEvent_CLASSINFO() {
    return wxCLASSINFO(wxDateEvent);
}
wxDateEvent *wxDateEvent_new() {
    return new wxDateEvent();
}
wxDateTime *wxDateEvent_GetDate(const wxDateEvent * self) {
    return new wxDateTime(self->GetDate());
}
void wxDateEvent_SetDate(wxDateEvent * self, const wxDateTime * date) {
    return self->SetDate(*date);
}

// CLASS: wxDatePickerCtrl
wxClassInfo *wxDatePickerCtrl_CLASSINFO() {
    return wxCLASSINFO(wxDatePickerCtrl);
}
wxDatePickerCtrl *wxDatePickerCtrl_new() {
    return new wxDatePickerCtrl();
}
wxDatePickerCtrl *wxDatePickerCtrl_new1(wxWindow * parent, wxWindowID id, const wxDateTime * dt, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return new wxDatePickerCtrl(parent, id, *dt, *pos, *size, style, *validator, *name);
}
bool wxDatePickerCtrl_Create(wxDatePickerCtrl * self, wxWindow * parent, wxWindowID id, const wxDateTime * dt, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return self->Create(parent, id, *dt, *pos, *size, style, *validator, *name);
}
bool wxDatePickerCtrl_GetRange(const wxDatePickerCtrl * self, wxDateTime * dt1, wxDateTime * dt2) {
    return self->GetRange(dt1, dt2);
}
wxDateTime *wxDatePickerCtrl_GetValue(const wxDatePickerCtrl * self) {
    return new wxDateTime(self->GetValue());
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDatePickerCtrl_SetNullText(wxDatePickerCtrl * self, const wxString * text) {
    return self->SetNullText(*text);
}
#endif
void wxDatePickerCtrl_SetRange(wxDatePickerCtrl * self, const wxDateTime * dt1, const wxDateTime * dt2) {
    return self->SetRange(*dt1, *dt2);
}
void wxDatePickerCtrl_SetValue(wxDatePickerCtrl * self, const wxDateTime * dt) {
    return self->SetValue(*dt);
}

// CLASS: wxDelegateRendererNative
void wxDelegateRendererNative_delete(wxDelegateRendererNative *self) {
    delete self;
}
wxDelegateRendererNative *wxDelegateRendererNative_new() {
    return new wxDelegateRendererNative();
}
wxDelegateRendererNative *wxDelegateRendererNative_new1(wxRendererNative * renderer_native) {
    return new wxDelegateRendererNative(*renderer_native);
}

// CLASS: wxDialog
wxClassInfo *wxDialog_CLASSINFO() {
    return wxCLASSINFO(wxDialog);
}
wxDialog *wxDialog_new() {
    return new wxDialog();
}
wxDialog *wxDialog_new1(wxWindow * parent, wxWindowID id, const wxString * title, const wxPoint * pos, const wxSize * size, long style, const wxString * name) {
    return new wxDialog(parent, id, *title, *pos, *size, style, *name);
}
void wxDialog_AddMainButtonId(wxDialog * self, wxWindowID id) {
    return self->AddMainButtonId(id);
}
bool wxDialog_CanDoLayoutAdaptation(wxDialog * self) {
    return self->CanDoLayoutAdaptation();
}
void wxDialog_Centre(wxDialog * self, int direction) {
    return self->Centre(direction);
}
bool wxDialog_Create(wxDialog * self, wxWindow * parent, wxWindowID id, const wxString * title, const wxPoint * pos, const wxSize * size, long style, const wxString * name) {
    return self->Create(parent, id, *title, *pos, *size, style, *name);
}
wxSizer * wxDialog_CreateButtonSizer(wxDialog * self, long flags) {
    return self->CreateButtonSizer(flags);
}
wxSizer * wxDialog_CreateSeparatedButtonSizer(wxDialog * self, long flags) {
    return self->CreateSeparatedButtonSizer(flags);
}
wxSizer * wxDialog_CreateSeparatedSizer(wxDialog * self, wxSizer * sizer) {
    return self->CreateSeparatedSizer(sizer);
}
wxStdDialogButtonSizer * wxDialog_CreateStdDialogButtonSizer(wxDialog * self, long flags) {
    return self->CreateStdDialogButtonSizer(flags);
}
#if wxCHECK_VERSION(3, 1, 0)
wxSizer * wxDialog_CreateTextSizer(wxDialog * self, const wxString * message, int width_max) {
    return self->CreateTextSizer(*message, width_max);
}
#endif
bool wxDialog_DoLayoutAdaptation(wxDialog * self) {
    return self->DoLayoutAdaptation();
}
void wxDialog_EndModal(wxDialog * self, int ret_code) {
    return self->EndModal(ret_code);
}
int wxDialog_GetAffirmativeId(const wxDialog * self) {
    return self->GetAffirmativeId();
}
wxWindow * wxDialog_GetContentWindow(const wxDialog * self) {
    return self->GetContentWindow();
}
int wxDialog_GetEscapeId(const wxDialog * self) {
    return self->GetEscapeId();
}
bool wxDialog_GetLayoutAdaptationDone(const wxDialog * self) {
    return self->GetLayoutAdaptationDone();
}
int wxDialog_GetLayoutAdaptationLevel(const wxDialog * self) {
    return self->GetLayoutAdaptationLevel();
}
wxArrayInt * wxDialog_GetMainButtonIds(wxDialog * self) {
    return &(self->GetMainButtonIds());
}
int wxDialog_GetReturnCode(const wxDialog * self) {
    return self->GetReturnCode();
}
bool wxDialog_IsMainButtonId(const wxDialog * self, wxWindowID id) {
    return self->IsMainButtonId(id);
}
bool wxDialog_IsModal(const wxDialog * self) {
    return self->IsModal();
}
void wxDialog_SetAffirmativeId(wxDialog * self, int id) {
    return self->SetAffirmativeId(id);
}
void wxDialog_SetEscapeId(wxDialog * self, int id) {
    return self->SetEscapeId(id);
}
void wxDialog_SetIcon(wxDialog * self, const wxIcon * icon) {
    return self->SetIcon(*icon);
}
void wxDialog_SetLayoutAdaptationDone(wxDialog * self, bool done) {
    return self->SetLayoutAdaptationDone(done);
}
void wxDialog_SetLayoutAdaptationLevel(wxDialog * self, int level) {
    return self->SetLayoutAdaptationLevel(level);
}
void wxDialog_SetReturnCode(wxDialog * self, int ret_code) {
    return self->SetReturnCode(ret_code);
}
int wxDialog_ShowModal(wxDialog * self) {
    return self->ShowModal();
}
void wxDialog_ShowWindowModal(wxDialog * self) {
    return self->ShowWindowModal();
}
void wxDialog_EnableLayoutAdaptation(bool enable) {
    return wxDialog::EnableLayoutAdaptation(enable);
}
wxDialogLayoutAdapter * wxDialog_GetLayoutAdapter() {
    return wxDialog::GetLayoutAdapter();
}
bool wxDialog_IsLayoutAdaptationEnabled() {
    return wxDialog::IsLayoutAdaptationEnabled();
}
wxDialogLayoutAdapter * wxDialog_SetLayoutAdapter(wxDialogLayoutAdapter * adapter) {
    return wxDialog::SetLayoutAdapter(adapter);
}

// CLASS: wxDialogLayoutAdapter
void wxDialogLayoutAdapter_delete(wxDialogLayoutAdapter *self) {
    delete self;
}
bool wxDialogLayoutAdapter_CanDoLayoutAdaptation(wxDialogLayoutAdapter * self, wxDialog * dialog) {
    return self->CanDoLayoutAdaptation(dialog);
}
bool wxDialogLayoutAdapter_DoLayoutAdaptation(wxDialogLayoutAdapter * self, wxDialog * dialog) {
    return self->DoLayoutAdaptation(dialog);
}

// CLASS: wxDirDialog
wxClassInfo *wxDirDialog_CLASSINFO() {
    return wxCLASSINFO(wxDirDialog);
}
wxDirDialog *wxDirDialog_new(wxWindow * parent, const wxString * message, const wxString * default_path, long style, const wxPoint * pos, const wxSize * size, const wxString * name) {
    return new wxDirDialog(parent, *message, *default_path, style, *pos, *size, *name);
}
wxString *wxDirDialog_GetMessage(const wxDirDialog * self) {
    return new wxString(self->GetMessage());
}
wxString *wxDirDialog_GetPath(const wxDirDialog * self) {
    return new wxString(self->GetPath());
}
#if wxCHECK_VERSION(3, 1, 0)
void wxDirDialog_GetPaths(const wxDirDialog * self, wxArrayString * paths) {
    return self->GetPaths(*paths);
}
#endif
void wxDirDialog_SetMessage(wxDirDialog * self, const wxString * message) {
    return self->SetMessage(*message);
}
void wxDirDialog_SetPath(wxDirDialog * self, const wxString * path) {
    return self->SetPath(*path);
}

// CLASS: wxDirPickerCtrl
wxClassInfo *wxDirPickerCtrl_CLASSINFO() {
    return wxCLASSINFO(wxDirPickerCtrl);
}
wxDirPickerCtrl *wxDirPickerCtrl_new() {
    return new wxDirPickerCtrl();
}
wxDirPickerCtrl *wxDirPickerCtrl_new1(wxWindow * parent, wxWindowID id, const wxString * path, const wxString * message, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return new wxDirPickerCtrl(parent, id, *path, *message, *pos, *size, style, *validator, *name);
}
bool wxDirPickerCtrl_Create(wxDirPickerCtrl * self, wxWindow * parent, wxWindowID id, const wxString * path, const wxString * message, const wxPoint * pos, const wxSize * size, long style, const wxValidator * validator, const wxString * name) {
    return self->Create(parent, id, *path, *message, *pos, *size, style, *validator, *name);
}
wxFileName *wxDirPickerCtrl_GetDirName(const wxDirPickerCtrl * self) {
    return new wxFileName(self->GetDirName());
}
wxString *wxDirPickerCtrl_GetPath(const wxDirPickerCtrl * self) {
    return new wxString(self->GetPath());
}
void wxDirPickerCtrl_SetDirName(wxDirPickerCtrl * self, const wxFileName * dirname) {
    return self->SetDirName(*dirname);
}
void wxDirPickerCtrl_SetInitialDirectory(wxDirPickerCtrl * self, const wxString * dir) {
    return self->SetInitialDirectory(*dir);
}
void wxDirPickerCtrl_SetPath(wxDirPickerCtrl * self, const wxString * dirname) {
    return self->SetPath(*dirname);
}

// CLASS: wxDisplay
void wxDisplay_delete(wxDisplay *self) {
    delete self;
}
wxDisplay *wxDisplay_new() {
    return new wxDisplay();
}
wxDisplay *wxDisplay_new1(unsigned int index) {
    return new wxDisplay(index);
}
#if wxCHECK_VERSION(3, 1, 0)
wxDisplay *wxDisplay_new2(const wxWindow * window) {
    return new wxDisplay(window);
}
#endif
bool wxDisplay_ChangeMode(wxDisplay * self, const wxVideoMode * mode) {
    return self->ChangeMode(*mode);
}
wxRect *wxDisplay_GetClientArea(const wxDisplay * self) {
    return new wxRect(self->GetClientArea());
}
wxRect *wxDisplay_GetGeometry(const wxDisplay * self) {
    return new wxRect(self->GetGeometry());
}
wxString *wxDisplay_GetName(const wxDisplay * self) {
    return new wxString(self->GetName());
}
#if wxCHECK_VERSION(3, 1, 0)
wxSize *wxDisplay_GetPPI(const wxDisplay * self) {
    return new wxSize(self->GetPPI());
}
double wxDisplay_GetScaleFactor(const wxDisplay * self) {
    return self->GetScaleFactor();
}
#endif
bool wxDisplay_IsPrimary(const wxDisplay * self) {
    return self->IsPrimary();
}
unsigned int wxDisplay_GetCount() {
    return wxDisplay::GetCount();
}
int wxDisplay_GetFromPoint(const wxPoint * pt) {
    return wxDisplay::GetFromPoint(*pt);
}
int wxDisplay_GetFromWindow(const wxWindow * win) {
    return wxDisplay::GetFromWindow(win);
}
#if wxCHECK_VERSION(3, 1, 0)
int wxDisplay_GetStdPPIValue() {
    return wxDisplay::GetStdPPIValue();
}
wxSize *wxDisplay_GetStdPPI() {
    return new wxSize(wxDisplay::GetStdPPI());
}
#endif

// CLASS: wxDisplayChangedEvent
wxClassInfo *wxDisplayChangedEvent_CLASSINFO() {
    return wxCLASSINFO(wxDisplayChangedEvent);
}
wxDisplayChangedEvent *wxDisplayChangedEvent_new() {
    return new wxDisplayChangedEvent();
}

// CLASS: wxDragImage
wxClassInfo *wxDragImage_CLASSINFO() {
    return wxCLASSINFO(wxDragImage);
}
wxDragImage *wxDragImage_new() {
    return new wxDragImage();
}
wxDragImage *wxDragImage_new1(const wxBitmap * image, const wxCursor * cursor) {
    return new wxDragImage(*image, *cursor);
}
wxDragImage *wxDragImage_new2(const wxIcon * image, const wxCursor * cursor) {
    return new wxDragImage(*image, *cursor);
}
wxDragImage *wxDragImage_new3(const wxString * text, const wxCursor * cursor) {
    return new wxDragImage(*text, *cursor);
}
wxDragImage *wxDragImage_new4(const wxTreeCtrl * tree_ctrl, wxTreeItemId * id) {
    return new wxDragImage(*tree_ctrl, *id);
}
wxDragImage *wxDragImage_new5(const wxListCtrl * list_ctrl, long id) {
    return new wxDragImage(*list_ctrl, id);
}
bool wxDragImage_BeginDrag(wxDragImage * self, const wxPoint * hotspot, wxWindow * window, bool full_screen, wxRect * rect) {
    return self->BeginDrag(*hotspot, window, full_screen, rect);
}
bool wxDragImage_BeginDrag1(wxDragImage * self, const wxPoint * hotspot, wxWindow * window, wxWindow * bounding_window) {
    return self->BeginDrag(*hotspot, window, bounding_window);
}
#ifndef __WXMSW__
bool wxDragImage_DoDrawImage(const wxDragImage * self, wxDC * dc, const wxPoint * pos) {
    return self->DoDrawImage(*dc, *pos);
}
#endif
bool wxDragImage_EndDrag(wxDragImage * self) {
    return self->EndDrag();
}
#ifndef __WXMSW__
wxRect *wxDragImage_GetImageRect(const wxDragImage * self, const wxPoint * pos) {
    return new wxRect(self->GetImageRect(*pos));
}
#endif
bool wxDragImage_Hide(wxDragImage * self) {
    return self->Hide();
}
bool wxDragImage_Move(wxDragImage * self, const wxPoint * pt) {
    return self->Move(*pt);
}
bool wxDragImage_Show(wxDragImage * self) {
    return self->Show();
}
#ifndef __WXMSW__
bool wxDragImage_UpdateBackingFromWindow(const wxDragImage * self, wxDC * window_dc, wxMemoryDC * dest_dc, const wxRect * source_rect, const wxRect * dest_rect) {
    return self->UpdateBackingFromWindow(*window_dc, *dest_dc, *source_rect, *dest_rect);
}
#endif

// CLASS: wxDropFilesEvent
wxClassInfo *wxDropFilesEvent_CLASSINFO() {
    return wxCLASSINFO(wxDropFilesEvent);
}
int wxDropFilesEvent_GetNumberOfFiles(const wxDropFilesEvent * self) {
    return self->GetNumberOfFiles();
}
wxPoint *wxDropFilesEvent_GetPosition(const wxDropFilesEvent * self) {
    return new wxPoint(self->GetPosition());
}

// CLASS: wxDropSource
void wxDropSource_delete(wxDropSource *self) {
    delete self;
}
#ifndef __WXGTK__
wxDropSource *wxDropSource_new(wxWindow * win, const wxCursor * icon_copy, const wxCursor * icon_move, const wxCursor * icon_none) {
    return new wxDropSource(win, *icon_copy, *icon_move, *icon_none);
}
wxDropSource *wxDropSource_new1(wxDataObject * data, wxWindow * win, const wxCursor * icon_copy, const wxCursor * icon_move, const wxCursor * icon_none) {
    return new wxDropSource(*data, win, *icon_copy, *icon_move, *icon_none);
}
#endif
#ifdef __WXGTK__
wxDropSource *wxDropSource_new2(wxWindow * win, const wxIcon * icon_copy, const wxIcon * icon_move, const wxIcon * icon_none) {
    return new wxDropSource(win, *icon_copy, *icon_move, *icon_none);
}
wxDropSource *wxDropSource_new3(wxDataObject * data, wxWindow * win, const wxIcon * icon_copy, const wxIcon * icon_move, const wxIcon * icon_none) {
    return new wxDropSource(*data, win, *icon_copy, *icon_move, *icon_none);
}
#endif
wxDataObject * wxDropSource_GetDataObject(wxDropSource * self) {
    return self->GetDataObject();
}
void wxDropSource_SetData(wxDropSource * self, wxDataObject * data) {
    return self->SetData(*data);
}

// CLASS: wxDropTarget
void wxDropTarget_delete(wxDropTarget *self) {
    delete self;
}
bool wxDropTarget_GetData(wxDropTarget * self) {
    return self->GetData();
}
bool wxDropTarget_OnDrop(wxDropTarget * self, wxCoord x, wxCoord y) {
    return self->OnDrop(x, y);
}
void wxDropTarget_OnLeave(wxDropTarget * self) {
    return self->OnLeave();
}
wxDataObject * wxDropTarget_GetDataObject(const wxDropTarget * self) {
    return self->GetDataObject();
}
void wxDropTarget_SetDataObject(wxDropTarget * self, wxDataObject * data) {
    return self->SetDataObject(data);
}

} // extern "C"