summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/wx-3.0-msw/wx/propgrid.py
blob: fc2888d9bb14676343173f814a7167426f3aa0e6 (plain)
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
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
# This file was created automatically by SWIG 1.3.29.
# Don't modify this file, modify the SWIG interface instead.

"""
The `PropertyGrid` provides a specialized grid for editing
properties such as strings, numbers, colours, and string lists.
"""

import _propgrid
import new
new_instancemethod = new.instancemethod
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'PySwigObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static) or hasattr(self,name):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError,name

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

import types
try:
    _object = types.ObjectType
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0
del types


def _swig_setattr_nondynamic_method(set):
    def set_attr(self,name,value):
        if (name == "thisown"): return self.this.own(value)
        if hasattr(self,name) or (name == "this"):
            set(self,name,value)
        else:
            raise AttributeError("You cannot add attributes to %s" % self)
    return set_attr


import _core
import _windows
wx = _core 
__docfilter__ = wx.__DocFilter(globals()) 
PG_XBEFORETEXT = _propgrid.PG_XBEFORETEXT
PG_XBEFOREWIDGET = _propgrid.PG_XBEFOREWIDGET
PG_ICON_WIDTH = _propgrid.PG_ICON_WIDTH
PG_USE_RENDERER_NATIVE = _propgrid.PG_USE_RENDERER_NATIVE
PG_SUPPORT_TOOLTIPS = _propgrid.PG_SUPPORT_TOOLTIPS
PG_CUSTOM_IMAGE_WIDTH = _propgrid.PG_CUSTOM_IMAGE_WIDTH
PG_NO_CHILD_EVT_MOTION = _propgrid.PG_NO_CHILD_EVT_MOTION
PG_NAT_BUTTON_BORDER_ANY = _propgrid.PG_NAT_BUTTON_BORDER_ANY
PG_NAT_BUTTON_BORDER_X = _propgrid.PG_NAT_BUTTON_BORDER_X
PG_NAT_BUTTON_BORDER_Y = _propgrid.PG_NAT_BUTTON_BORDER_Y
PG_REFRESH_CONTROLS = _propgrid.PG_REFRESH_CONTROLS
PG_CONTROL_MARGIN = _propgrid.PG_CONTROL_MARGIN
CC_CUSTOM_IMAGE_MARGIN1 = _propgrid.CC_CUSTOM_IMAGE_MARGIN1
CC_CUSTOM_IMAGE_MARGIN2 = _propgrid.CC_CUSTOM_IMAGE_MARGIN2
DEFAULT_IMAGE_OFFSET_INCREMENT = _propgrid.DEFAULT_IMAGE_OFFSET_INCREMENT
PG_DRAG_MARGIN = _propgrid.PG_DRAG_MARGIN
PG_SPLITTERX_DETECTMARGIN1 = _propgrid.PG_SPLITTERX_DETECTMARGIN1
PG_SPLITTERX_DETECTMARGIN2 = _propgrid.PG_SPLITTERX_DETECTMARGIN2
PG_SMALL_SCREEN = _propgrid.PG_SMALL_SCREEN
PG_COMPATIBILITY_1_4 = _propgrid.PG_COMPATIBILITY_1_4
PG_INCLUDE_ADVPROPS = _propgrid.PG_INCLUDE_ADVPROPS
PG_INCLUDE_CHECKBOX = _propgrid.PG_INCLUDE_CHECKBOX
PG_KEEP_STRUCTURE = _propgrid.PG_KEEP_STRUCTURE
PG_RECURSE = _propgrid.PG_RECURSE
PG_INC_ATTRIBUTES = _propgrid.PG_INC_ATTRIBUTES
PG_RECURSE_STARTS = _propgrid.PG_RECURSE_STARTS
PG_FORCE = _propgrid.PG_FORCE
PG_SORT_TOP_LEVEL_ONLY = _propgrid.PG_SORT_TOP_LEVEL_ONLY
PG_DONT_RECURSE = _propgrid.PG_DONT_RECURSE
PG_FULL_VALUE = _propgrid.PG_FULL_VALUE
PG_REPORT_ERROR = _propgrid.PG_REPORT_ERROR
PG_PROPERTY_SPECIFIC = _propgrid.PG_PROPERTY_SPECIFIC
PG_EDITABLE_VALUE = _propgrid.PG_EDITABLE_VALUE
PG_COMPOSITE_FRAGMENT = _propgrid.PG_COMPOSITE_FRAGMENT
PG_UNEDITABLE_COMPOSITE_FRAGMENT = _propgrid.PG_UNEDITABLE_COMPOSITE_FRAGMENT
PG_VALUE_IS_CURRENT = _propgrid.PG_VALUE_IS_CURRENT
PG_PROGRAMMATIC_VALUE = _propgrid.PG_PROGRAMMATIC_VALUE
PG_SETVAL_REFRESH_EDITOR = _propgrid.PG_SETVAL_REFRESH_EDITOR
PG_SETVAL_AGGREGATED = _propgrid.PG_SETVAL_AGGREGATED
PG_SETVAL_FROM_PARENT = _propgrid.PG_SETVAL_FROM_PARENT
PG_SETVAL_BY_USER = _propgrid.PG_SETVAL_BY_USER
class PGPaintData(object):
    """Proxy of C++ PGPaintData class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    m_parent = property(_propgrid.PGPaintData_m_parent_get, _propgrid.PGPaintData_m_parent_set)
    m_choiceItem = property(_propgrid.PGPaintData_m_choiceItem_get, _propgrid.PGPaintData_m_choiceItem_set)
    m_drawnWidth = property(_propgrid.PGPaintData_m_drawnWidth_get, _propgrid.PGPaintData_m_drawnWidth_set)
    m_drawnHeight = property(_propgrid.PGPaintData_m_drawnHeight_get, _propgrid.PGPaintData_m_drawnHeight_set)
_propgrid.PGPaintData_swigregister(PGPaintData)

PG_CUSTOM_IMAGE_SPACINGY = _propgrid.PG_CUSTOM_IMAGE_SPACINGY
PG_CAPRECTXMARGIN = _propgrid.PG_CAPRECTXMARGIN
PG_CAPRECTYMARGIN = _propgrid.PG_CAPRECTYMARGIN
class PGCell(_core.Object):
    """Proxy of C++ PGCell class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self) -> PGCell
        __init__(self, PGCell other) -> PGCell
        __init__(self, String text, Bitmap bitmap=wxNullBitmap, Colour fgCol=wxNullColour, 
            Colour bgCol=wxNullColour) -> PGCell
        """
        _propgrid.PGCell_swiginit(self,_propgrid.new_PGCell(*args))
    __swig_destroy__ = _propgrid.delete_PGCell
    __del__ = lambda self : None;
    def GetData(*args):
        """
        GetData(self)
        GetData(self)
        """
        return _propgrid.PGCell_GetData(*args)

    def HasText(*args, **kwargs):
        """HasText(self) -> bool"""
        return _propgrid.PGCell_HasText(*args, **kwargs)

    def SetEmptyData(*args, **kwargs):
        """SetEmptyData(self)"""
        return _propgrid.PGCell_SetEmptyData(*args, **kwargs)

    def MergeFrom(*args, **kwargs):
        """MergeFrom(self, PGCell srcCell)"""
        return _propgrid.PGCell_MergeFrom(*args, **kwargs)

    def SetText(*args, **kwargs):
        """SetText(self, String text)"""
        return _propgrid.PGCell_SetText(*args, **kwargs)

    def SetBitmap(*args, **kwargs):
        """SetBitmap(self, Bitmap bitmap)"""
        return _propgrid.PGCell_SetBitmap(*args, **kwargs)

    def SetFgCol(*args, **kwargs):
        """SetFgCol(self, Colour col)"""
        return _propgrid.PGCell_SetFgCol(*args, **kwargs)

    def SetFont(*args, **kwargs):
        """SetFont(self, Font font)"""
        return _propgrid.PGCell_SetFont(*args, **kwargs)

    def SetBgCol(*args, **kwargs):
        """SetBgCol(self, Colour col)"""
        return _propgrid.PGCell_SetBgCol(*args, **kwargs)

    def GetText(*args, **kwargs):
        """GetText(self) -> String"""
        return _propgrid.PGCell_GetText(*args, **kwargs)

    def GetBitmap(*args, **kwargs):
        """GetBitmap(self) -> Bitmap"""
        return _propgrid.PGCell_GetBitmap(*args, **kwargs)

    def GetFgCol(*args, **kwargs):
        """GetFgCol(self) -> Colour"""
        return _propgrid.PGCell_GetFgCol(*args, **kwargs)

    def GetFont(*args, **kwargs):
        """GetFont(self) -> Font"""
        return _propgrid.PGCell_GetFont(*args, **kwargs)

    def GetBgCol(*args, **kwargs):
        """GetBgCol(self) -> Colour"""
        return _propgrid.PGCell_GetBgCol(*args, **kwargs)

    def IsInvalid(*args, **kwargs):
        """IsInvalid(self) -> bool"""
        return _propgrid.PGCell_IsInvalid(*args, **kwargs)

_propgrid.PGCell_swigregister(PGCell)

PG_PROP_MODIFIED = _propgrid.PG_PROP_MODIFIED
PG_PROP_DISABLED = _propgrid.PG_PROP_DISABLED
PG_PROP_HIDDEN = _propgrid.PG_PROP_HIDDEN
PG_PROP_CUSTOMIMAGE = _propgrid.PG_PROP_CUSTOMIMAGE
PG_PROP_NOEDITOR = _propgrid.PG_PROP_NOEDITOR
PG_PROP_COLLAPSED = _propgrid.PG_PROP_COLLAPSED
PG_PROP_INVALID_VALUE = _propgrid.PG_PROP_INVALID_VALUE
PG_PROP_WAS_MODIFIED = _propgrid.PG_PROP_WAS_MODIFIED
PG_PROP_AGGREGATE = _propgrid.PG_PROP_AGGREGATE
PG_PROP_CHILDREN_ARE_COPIES = _propgrid.PG_PROP_CHILDREN_ARE_COPIES
PG_PROP_PROPERTY = _propgrid.PG_PROP_PROPERTY
PG_PROP_CATEGORY = _propgrid.PG_PROP_CATEGORY
PG_PROP_MISC_PARENT = _propgrid.PG_PROP_MISC_PARENT
PG_PROP_READONLY = _propgrid.PG_PROP_READONLY
PG_PROP_COMPOSED_VALUE = _propgrid.PG_PROP_COMPOSED_VALUE
PG_PROP_USES_COMMON_VALUE = _propgrid.PG_PROP_USES_COMMON_VALUE
PG_PROP_AUTO_UNSPECIFIED = _propgrid.PG_PROP_AUTO_UNSPECIFIED
PG_PROP_CLASS_SPECIFIC_1 = _propgrid.PG_PROP_CLASS_SPECIFIC_1
PG_PROP_CLASS_SPECIFIC_2 = _propgrid.PG_PROP_CLASS_SPECIFIC_2
PG_PROP_BEING_DELETED = _propgrid.PG_PROP_BEING_DELETED
class PGChoices(object):
    """Proxy of C++ PGChoices class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self) -> PGChoices
        __init__(self, PGChoices a) -> PGChoices
        __init__(self, wxChar labels, long values=None) -> PGChoices
        __init__(self, wxArrayString labels, wxArrayInt values=wxArrayInt()) -> PGChoices
        __init__(self,  data) -> PGChoices
        """
        _propgrid.PGChoices_swiginit(self,_propgrid.new_PGChoices(*args))
    __swig_destroy__ = _propgrid.delete_PGChoices
    __del__ = lambda self : None;
    def Add(*args):
        """
        Add(self, wxChar labels, ValArrItem values=None)
        Add(self, wxArrayString arr, wxArrayInt arrint=wxArrayInt())
        Add(self, String label, int value=INT_MAX)
        Add(self, String label, Bitmap bitmap, int value=INT_MAX)
        Add(self,  entry)
        """
        return _propgrid.PGChoices_Add(*args)

    def AddAsSorted(*args, **kwargs):
        """AddAsSorted(self, String label, int value=INT_MAX)"""
        return _propgrid.PGChoices_AddAsSorted(*args, **kwargs)

    def Assign(*args, **kwargs):
        """Assign(self, PGChoices a)"""
        return _propgrid.PGChoices_Assign(*args, **kwargs)

    def AssignData(*args, **kwargs):
        """AssignData(self,  data)"""
        return _propgrid.PGChoices_AssignData(*args, **kwargs)

    def Clear(*args, **kwargs):
        """Clear(self)"""
        return _propgrid.PGChoices_Clear(*args, **kwargs)

    def Copy(*args, **kwargs):
        """Copy(self) -> PGChoices"""
        return _propgrid.PGChoices_Copy(*args, **kwargs)

    def EnsureData(*args, **kwargs):
        """EnsureData(self)"""
        return _propgrid.PGChoices_EnsureData(*args, **kwargs)

    def GetId(*args, **kwargs):
        """GetId(self) -> PGChoicesId"""
        return _propgrid.PGChoices_GetId(*args, **kwargs)

    def GetLabel(*args, **kwargs):
        """GetLabel(self, int ind) -> String"""
        return _propgrid.PGChoices_GetLabel(*args, **kwargs)

    def GetCount(*args, **kwargs):
        """GetCount(self) -> int"""
        return _propgrid.PGChoices_GetCount(*args, **kwargs)

    def GetValue(*args, **kwargs):
        """GetValue(self, int ind) -> int"""
        return _propgrid.PGChoices_GetValue(*args, **kwargs)

    def GetValuesForStrings(*args, **kwargs):
        """GetValuesForStrings(self, wxArrayString strings) -> wxArrayInt"""
        return _propgrid.PGChoices_GetValuesForStrings(*args, **kwargs)

    def GetIndicesForStrings(*args, **kwargs):
        """GetIndicesForStrings(self, wxArrayString strings, wxArrayString unmatched=None) -> wxArrayInt"""
        return _propgrid.PGChoices_GetIndicesForStrings(*args, **kwargs)

    def Index(*args):
        """
        Index(self, String str) -> int
        Index(self, int val) -> int
        """
        return _propgrid.PGChoices_Index(*args)

    def Insert(*args):
        """
        Insert(self, String label, int index, int value=INT_MAX)
        Insert(self,  entry, int index)
        """
        return _propgrid.PGChoices_Insert(*args)

    def IsOk(*args, **kwargs):
        """IsOk(self) -> bool"""
        return _propgrid.PGChoices_IsOk(*args, **kwargs)

    def Item(*args):
        """
        Item(self, int i)
        Item(self, int i)
        """
        return _propgrid.PGChoices_Item(*args)

    def RemoveAt(*args, **kwargs):
        """RemoveAt(self, size_t nIndex, size_t count=1)"""
        return _propgrid.PGChoices_RemoveAt(*args, **kwargs)

    def Set(*args):
        """
        Set(self, wxChar labels, long values=None)
        Set(self, wxArrayString labels, wxArrayInt values=wxArrayInt())
        """
        return _propgrid.PGChoices_Set(*args)

    def AllocExclusive(*args, **kwargs):
        """AllocExclusive(self)"""
        return _propgrid.PGChoices_AllocExclusive(*args, **kwargs)

    def GetData(*args, **kwargs):
        """GetData(self)"""
        return _propgrid.PGChoices_GetData(*args, **kwargs)

    def GetDataPtr(*args, **kwargs):
        """GetDataPtr(self)"""
        return _propgrid.PGChoices_GetDataPtr(*args, **kwargs)

    def ExtractData(*args, **kwargs):
        """ExtractData(self)"""
        return _propgrid.PGChoices_ExtractData(*args, **kwargs)

    def GetLabels(*args, **kwargs):
        """GetLabels(self) -> wxArrayString"""
        return _propgrid.PGChoices_GetLabels(*args, **kwargs)

_propgrid.PGChoices_swigregister(PGChoices)

class PGProperty(_core.Object):
    """Proxy of C++ PGProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self) -> PGProperty
        __init__(self, String label, String name) -> PGProperty
        """
        _propgrid.PGProperty_swiginit(self,_propgrid.new_PGProperty(*args))
    __swig_destroy__ = _propgrid.delete_PGProperty
    __del__ = lambda self : None;
    def OnSetValue(*args, **kwargs):
        """OnSetValue(self)"""
        return _propgrid.PGProperty_OnSetValue(*args, **kwargs)

    def DoGetValue(*args, **kwargs):
        """DoGetValue(self) -> wxVariant"""
        return _propgrid.PGProperty_DoGetValue(*args, **kwargs)

    def ValueToString(*args, **kwargs):
        """ValueToString(self, wxVariant value, int argFlags=0) -> String"""
        return _propgrid.PGProperty_ValueToString(*args, **kwargs)

    def SetValueFromString(*args, **kwargs):
        """SetValueFromString(self, String text, int flags=PG_PROGRAMMATIC_VALUE) -> bool"""
        return _propgrid.PGProperty_SetValueFromString(*args, **kwargs)

    def SetValueFromInt(*args, **kwargs):
        """SetValueFromInt(self, long value, int flags=0) -> bool"""
        return _propgrid.PGProperty_SetValueFromInt(*args, **kwargs)

    def OnMeasureImage(*args, **kwargs):
        """OnMeasureImage(self, int item=-1) -> Size"""
        return _propgrid.PGProperty_OnMeasureImage(*args, **kwargs)

    def OnEvent(*args, **kwargs):
        """OnEvent(self, PropertyGrid propgrid, Window wnd_primary, Event event) -> bool"""
        return _propgrid.PGProperty_OnEvent(*args, **kwargs)

    def ChildChanged(*args, **kwargs):
        """ChildChanged(self, wxVariant thisValue, int childIndex, wxVariant childValue) -> wxVariant"""
        return _propgrid.PGProperty_ChildChanged(*args, **kwargs)

    def DoGetEditorClass(*args, **kwargs):
        """DoGetEditorClass(self) -> PGEditor"""
        return _propgrid.PGProperty_DoGetEditorClass(*args, **kwargs)

    def DoGetValidator(*args, **kwargs):
        """DoGetValidator(self) -> Validator"""
        return _propgrid.PGProperty_DoGetValidator(*args, **kwargs)

    def OnCustomPaint(*args, **kwargs):
        """OnCustomPaint(self, DC dc, Rect rect, PGPaintData paintdata)"""
        return _propgrid.PGProperty_OnCustomPaint(*args, **kwargs)

    def GetCellRenderer(*args, **kwargs):
        """GetCellRenderer(self, int column)"""
        return _propgrid.PGProperty_GetCellRenderer(*args, **kwargs)

    def GetChoiceSelection(*args, **kwargs):
        """GetChoiceSelection(self) -> int"""
        return _propgrid.PGProperty_GetChoiceSelection(*args, **kwargs)

    def RefreshChildren(*args, **kwargs):
        """RefreshChildren(self)"""
        return _propgrid.PGProperty_RefreshChildren(*args, **kwargs)

    def DoSetAttribute(*args, **kwargs):
        """DoSetAttribute(self, String name, wxVariant value) -> bool"""
        return _propgrid.PGProperty_DoSetAttribute(*args, **kwargs)

    def DoGetAttribute(*args, **kwargs):
        """DoGetAttribute(self, String name) -> wxVariant"""
        return _propgrid.PGProperty_DoGetAttribute(*args, **kwargs)

    def GetEditorDialog(*args, **kwargs):
        """GetEditorDialog(self) -> PGEditorDialogAdapter"""
        return _propgrid.PGProperty_GetEditorDialog(*args, **kwargs)

    def OnValidationFailure(*args, **kwargs):
        """OnValidationFailure(self, wxVariant pendingValue)"""
        return _propgrid.PGProperty_OnValidationFailure(*args, **kwargs)

    def AddChoice(*args, **kwargs):
        """AddChoice(self, String label, int value=INT_MAX) -> int"""
        return _propgrid.PGProperty_AddChoice(*args, **kwargs)

    def AreChildrenComponents(*args, **kwargs):
        """AreChildrenComponents(self) -> bool"""
        return _propgrid.PGProperty_AreChildrenComponents(*args, **kwargs)

    def DeleteChildren(*args, **kwargs):
        """DeleteChildren(self)"""
        return _propgrid.PGProperty_DeleteChildren(*args, **kwargs)

    def DeleteChoice(*args, **kwargs):
        """DeleteChoice(self, int index)"""
        return _propgrid.PGProperty_DeleteChoice(*args, **kwargs)

    def Enable(*args, **kwargs):
        """Enable(self, bool enable=True)"""
        return _propgrid.PGProperty_Enable(*args, **kwargs)

    def EnableCommonValue(*args, **kwargs):
        """EnableCommonValue(self, bool enable=True)"""
        return _propgrid.PGProperty_EnableCommonValue(*args, **kwargs)

    def GenerateComposedValue(*args, **kwargs):
        """GenerateComposedValue(self) -> String"""
        return _propgrid.PGProperty_GenerateComposedValue(*args, **kwargs)

    def GetLabel(*args, **kwargs):
        """GetLabel(self) -> String"""
        return _propgrid.PGProperty_GetLabel(*args, **kwargs)

    def GetName(*args, **kwargs):
        """GetName(self) -> String"""
        return _propgrid.PGProperty_GetName(*args, **kwargs)

    def GetBaseName(*args, **kwargs):
        """GetBaseName(self) -> String"""
        return _propgrid.PGProperty_GetBaseName(*args, **kwargs)

    def GetChoices(*args, **kwargs):
        """GetChoices(self) -> PGChoices"""
        return _propgrid.PGProperty_GetChoices(*args, **kwargs)

    def GetY(*args, **kwargs):
        """GetY(self) -> int"""
        return _propgrid.PGProperty_GetY(*args, **kwargs)

    def GetValue(*args, **kwargs):
        """GetValue(self) -> wxVariant"""
        return _propgrid.PGProperty_GetValue(*args, **kwargs)

    def GetValuePlain(*args, **kwargs):
        """GetValuePlain(self) -> wxVariant"""
        return _propgrid.PGProperty_GetValuePlain(*args, **kwargs)

    def GetValueAsString(*args, **kwargs):
        """GetValueAsString(self, int argFlags=0) -> String"""
        return _propgrid.PGProperty_GetValueAsString(*args, **kwargs)

    def GetCell(*args):
        """
        GetCell(self, int column) -> PGCell
        GetCell(self, int column) -> PGCell
        """
        return _propgrid.PGProperty_GetCell(*args)

    def GetOrCreateCell(*args, **kwargs):
        """GetOrCreateCell(self, int column) -> PGCell"""
        return _propgrid.PGProperty_GetOrCreateCell(*args, **kwargs)

    def GetDisplayedCommonValueCount(*args, **kwargs):
        """GetDisplayedCommonValueCount(self) -> int"""
        return _propgrid.PGProperty_GetDisplayedCommonValueCount(*args, **kwargs)

    def GetDisplayedString(*args, **kwargs):
        """GetDisplayedString(self) -> String"""
        return _propgrid.PGProperty_GetDisplayedString(*args, **kwargs)

    def GetHintText(*args, **kwargs):
        """GetHintText(self) -> String"""
        return _propgrid.PGProperty_GetHintText(*args, **kwargs)

    def GetGrid(*args, **kwargs):
        """GetGrid(self) -> PropertyGrid"""
        return _propgrid.PGProperty_GetGrid(*args, **kwargs)

    def GetGridIfDisplayed(*args, **kwargs):
        """GetGridIfDisplayed(self) -> PropertyGrid"""
        return _propgrid.PGProperty_GetGridIfDisplayed(*args, **kwargs)

    def GetMainParent(*args, **kwargs):
        """GetMainParent(self) -> PGProperty"""
        return _propgrid.PGProperty_GetMainParent(*args, **kwargs)

    def GetParent(*args, **kwargs):
        """GetParent(self) -> PGProperty"""
        return _propgrid.PGProperty_GetParent(*args, **kwargs)

    def IsTextEditable(*args, **kwargs):
        """IsTextEditable(self) -> bool"""
        return _propgrid.PGProperty_IsTextEditable(*args, **kwargs)

    def IsValueUnspecified(*args, **kwargs):
        """IsValueUnspecified(self) -> bool"""
        return _propgrid.PGProperty_IsValueUnspecified(*args, **kwargs)

    def HasFlag(*args, **kwargs):
        """HasFlag(self, int flag) -> FlagType"""
        return _propgrid.PGProperty_HasFlag(*args, **kwargs)

    def GetAttributes(*args, **kwargs):
        """GetAttributes(self)"""
        return _propgrid.PGProperty_GetAttributes(*args, **kwargs)

    def GetAttributesAsList(*args, **kwargs):
        """GetAttributesAsList(self) -> wxVariant"""
        return _propgrid.PGProperty_GetAttributesAsList(*args, **kwargs)

    def GetFlags(*args, **kwargs):
        """GetFlags(self) -> FlagType"""
        return _propgrid.PGProperty_GetFlags(*args, **kwargs)

    def GetEditorClass(*args, **kwargs):
        """GetEditorClass(self) -> PGEditor"""
        return _propgrid.PGProperty_GetEditorClass(*args, **kwargs)

    def GetValueType(*args, **kwargs):
        """GetValueType(self) -> String"""
        return _propgrid.PGProperty_GetValueType(*args, **kwargs)

    def GetColumnEditor(*args, **kwargs):
        """GetColumnEditor(self, int column) -> PGEditor"""
        return _propgrid.PGProperty_GetColumnEditor(*args, **kwargs)

    def GetCommonValue(*args, **kwargs):
        """GetCommonValue(self) -> int"""
        return _propgrid.PGProperty_GetCommonValue(*args, **kwargs)

    def HasVisibleChildren(*args, **kwargs):
        """HasVisibleChildren(self) -> bool"""
        return _propgrid.PGProperty_HasVisibleChildren(*args, **kwargs)

    def InsertChild(*args, **kwargs):
        """InsertChild(self, int index, PGProperty childProperty) -> PGProperty"""
        return _propgrid.PGProperty_InsertChild(*args, **kwargs)

    def InsertChoice(*args, **kwargs):
        """InsertChoice(self, String label, int index, int value=INT_MAX) -> int"""
        return _propgrid.PGProperty_InsertChoice(*args, **kwargs)

    def IsCategory(*args, **kwargs):
        """IsCategory(self) -> bool"""
        return _propgrid.PGProperty_IsCategory(*args, **kwargs)

    def IsRoot(*args, **kwargs):
        """IsRoot(self) -> bool"""
        return _propgrid.PGProperty_IsRoot(*args, **kwargs)

    def IsSubProperty(*args, **kwargs):
        """IsSubProperty(self) -> bool"""
        return _propgrid.PGProperty_IsSubProperty(*args, **kwargs)

    def GetLastVisibleSubItem(*args, **kwargs):
        """GetLastVisibleSubItem(self) -> PGProperty"""
        return _propgrid.PGProperty_GetLastVisibleSubItem(*args, **kwargs)

    def GetDefaultValue(*args, **kwargs):
        """GetDefaultValue(self) -> wxVariant"""
        return _propgrid.PGProperty_GetDefaultValue(*args, **kwargs)

    def GetMaxLength(*args, **kwargs):
        """GetMaxLength(self) -> int"""
        return _propgrid.PGProperty_GetMaxLength(*args, **kwargs)

    def AreAllChildrenSpecified(*args, **kwargs):
        """AreAllChildrenSpecified(self, wxVariant pendingList=None) -> bool"""
        return _propgrid.PGProperty_AreAllChildrenSpecified(*args, **kwargs)

    def UpdateParentValues(*args, **kwargs):
        """UpdateParentValues(self) -> PGProperty"""
        return _propgrid.PGProperty_UpdateParentValues(*args, **kwargs)

    def UsesAutoUnspecified(*args, **kwargs):
        """UsesAutoUnspecified(self) -> bool"""
        return _propgrid.PGProperty_UsesAutoUnspecified(*args, **kwargs)

    def GetValueImage(*args, **kwargs):
        """GetValueImage(self) -> Bitmap"""
        return _propgrid.PGProperty_GetValueImage(*args, **kwargs)

    def GetAttribute(*args):
        """
        GetAttribute(self, String name) -> wxVariant
        GetAttribute(self, String name, String defVal) -> String
        """
        return _propgrid.PGProperty_GetAttribute(*args)

    def GetAttributeAsLong(*args, **kwargs):
        """GetAttributeAsLong(self, String name, long defVal) -> long"""
        return _propgrid.PGProperty_GetAttributeAsLong(*args, **kwargs)

    def GetAttributeAsDouble(*args, **kwargs):
        """GetAttributeAsDouble(self, String name, double defVal) -> double"""
        return _propgrid.PGProperty_GetAttributeAsDouble(*args, **kwargs)

    def GetDepth(*args, **kwargs):
        """GetDepth(self) -> int"""
        return _propgrid.PGProperty_GetDepth(*args, **kwargs)

    def GetFlagsAsString(*args, **kwargs):
        """GetFlagsAsString(self, FlagType flagsMask) -> String"""
        return _propgrid.PGProperty_GetFlagsAsString(*args, **kwargs)

    def GetIndexInParent(*args, **kwargs):
        """GetIndexInParent(self) -> int"""
        return _propgrid.PGProperty_GetIndexInParent(*args, **kwargs)

    def Hide(*args, **kwargs):
        """Hide(self, bool hide, int flags=PG_RECURSE) -> bool"""
        return _propgrid.PGProperty_Hide(*args, **kwargs)

    def IsExpanded(*args, **kwargs):
        """IsExpanded(self) -> bool"""
        return _propgrid.PGProperty_IsExpanded(*args, **kwargs)

    def IsVisible(*args, **kwargs):
        """IsVisible(self) -> bool"""
        return _propgrid.PGProperty_IsVisible(*args, **kwargs)

    def IsEnabled(*args, **kwargs):
        """IsEnabled(self) -> bool"""
        return _propgrid.PGProperty_IsEnabled(*args, **kwargs)

    def RecreateEditor(*args, **kwargs):
        """RecreateEditor(self) -> bool"""
        return _propgrid.PGProperty_RecreateEditor(*args, **kwargs)

    def RefreshEditor(*args, **kwargs):
        """RefreshEditor(self)"""
        return _propgrid.PGProperty_RefreshEditor(*args, **kwargs)

    def SetAttribute(*args, **kwargs):
        """SetAttribute(self, String name, wxVariant value)"""
        return _propgrid.PGProperty_SetAttribute(*args, **kwargs)

    def SetAttributes(*args, **kwargs):
        """SetAttributes(self,  attributes)"""
        return _propgrid.PGProperty_SetAttributes(*args, **kwargs)

    def SetAutoUnspecified(*args, **kwargs):
        """SetAutoUnspecified(self, bool enable=True)"""
        return _propgrid.PGProperty_SetAutoUnspecified(*args, **kwargs)

    def SetBackgroundColour(*args, **kwargs):
        """SetBackgroundColour(self, Colour colour, int flags=PG_RECURSE)"""
        return _propgrid.PGProperty_SetBackgroundColour(*args, **kwargs)

    def SetTextColour(*args, **kwargs):
        """SetTextColour(self, Colour colour, int flags=PG_RECURSE)"""
        return _propgrid.PGProperty_SetTextColour(*args, **kwargs)

    def SetDefaultValue(*args, **kwargs):
        """SetDefaultValue(self, wxVariant value)"""
        return _propgrid.PGProperty_SetDefaultValue(*args, **kwargs)

    def SetEditor(*args, **kwargs):
        """SetEditor(self, String editorName)"""
        return _propgrid.PGProperty_SetEditor(*args, **kwargs)

    def SetCell(*args, **kwargs):
        """SetCell(self, int column, PGCell cell)"""
        return _propgrid.PGProperty_SetCell(*args, **kwargs)

    def SetCommonValue(*args, **kwargs):
        """SetCommonValue(self, int commonValue)"""
        return _propgrid.PGProperty_SetCommonValue(*args, **kwargs)

    def SetFlagsFromString(*args, **kwargs):
        """SetFlagsFromString(self, String str)"""
        return _propgrid.PGProperty_SetFlagsFromString(*args, **kwargs)

    def SetModifiedStatus(*args, **kwargs):
        """SetModifiedStatus(self, bool modified)"""
        return _propgrid.PGProperty_SetModifiedStatus(*args, **kwargs)

    def SetValueInEvent(*args, **kwargs):
        """SetValueInEvent(self, wxVariant value)"""
        return _propgrid.PGProperty_SetValueInEvent(*args, **kwargs)

    def SetValue(*args, **kwargs):
        """SetValue(self, wxVariant value, wxVariant pList=None, int flags=PG_SETVAL_REFRESH_EDITOR)"""
        return _propgrid.PGProperty_SetValue(*args, **kwargs)

    def SetValueImage(*args, **kwargs):
        """SetValueImage(self, Bitmap bmp)"""
        return _propgrid.PGProperty_SetValueImage(*args, **kwargs)

    def SetChoiceSelection(*args, **kwargs):
        """SetChoiceSelection(self, int newValue)"""
        return _propgrid.PGProperty_SetChoiceSelection(*args, **kwargs)

    def SetExpanded(*args, **kwargs):
        """SetExpanded(self, bool expanded)"""
        return _propgrid.PGProperty_SetExpanded(*args, **kwargs)

    def ChangeFlag(*args, **kwargs):
        """ChangeFlag(self, int flag, bool set)"""
        return _propgrid.PGProperty_ChangeFlag(*args, **kwargs)

    def SetFlagRecursively(*args, **kwargs):
        """SetFlagRecursively(self, int flag, bool set)"""
        return _propgrid.PGProperty_SetFlagRecursively(*args, **kwargs)

    def SetHelpString(*args, **kwargs):
        """SetHelpString(self, String helpString)"""
        return _propgrid.PGProperty_SetHelpString(*args, **kwargs)

    def SetLabel(*args, **kwargs):
        """SetLabel(self, String label)"""
        return _propgrid.PGProperty_SetLabel(*args, **kwargs)

    def SetName(*args, **kwargs):
        """SetName(self, String newName)"""
        return _propgrid.PGProperty_SetName(*args, **kwargs)

    def SetParentalType(*args, **kwargs):
        """SetParentalType(self, int flag)"""
        return _propgrid.PGProperty_SetParentalType(*args, **kwargs)

    def SetValueToUnspecified(*args, **kwargs):
        """SetValueToUnspecified(self)"""
        return _propgrid.PGProperty_SetValueToUnspecified(*args, **kwargs)

    def SetValuePlain(*args, **kwargs):
        """SetValuePlain(self, wxVariant value)"""
        return _propgrid.PGProperty_SetValuePlain(*args, **kwargs)

    def SetValidator(*args, **kwargs):
        """SetValidator(self, Validator validator)"""
        return _propgrid.PGProperty_SetValidator(*args, **kwargs)

    def GetValidator(*args, **kwargs):
        """GetValidator(self) -> Validator"""
        return _propgrid.PGProperty_GetValidator(*args, **kwargs)

    def SetMaxLength(*args, **kwargs):
        """SetMaxLength(self, int maxLen) -> bool"""
        return _propgrid.PGProperty_SetMaxLength(*args, **kwargs)

    def SetWasModified(*args, **kwargs):
        """SetWasModified(self, bool set=True)"""
        return _propgrid.PGProperty_SetWasModified(*args, **kwargs)

    def GetHelpString(*args, **kwargs):
        """GetHelpString(self) -> String"""
        return _propgrid.PGProperty_GetHelpString(*args, **kwargs)

    def IsSomeParent(*args, **kwargs):
        """IsSomeParent(self, PGProperty candidate_parent) -> bool"""
        return _propgrid.PGProperty_IsSomeParent(*args, **kwargs)

    def AdaptListToValue(*args, **kwargs):
        """AdaptListToValue(self, wxVariant list, wxVariant value)"""
        return _propgrid.PGProperty_AdaptListToValue(*args, **kwargs)

    def AddPrivateChild(*args, **kwargs):
        """AddPrivateChild(self, PGProperty prop)"""
        return _propgrid.PGProperty_AddPrivateChild(*args, **kwargs)

    def AppendChild(*args, **kwargs):
        """AppendChild(self, PGProperty prop) -> PGProperty"""
        return _propgrid.PGProperty_AppendChild(*args, **kwargs)

    def GetChildrenHeight(*args, **kwargs):
        """GetChildrenHeight(self, int lh, int iMax=-1) -> int"""
        return _propgrid.PGProperty_GetChildrenHeight(*args, **kwargs)

    def GetChildCount(*args, **kwargs):
        """GetChildCount(self) -> int"""
        return _propgrid.PGProperty_GetChildCount(*args, **kwargs)

    def Item(*args, **kwargs):
        """Item(self, int i) -> PGProperty"""
        return _propgrid.PGProperty_Item(*args, **kwargs)

    def Last(*args, **kwargs):
        """Last(self) -> PGProperty"""
        return _propgrid.PGProperty_Last(*args, **kwargs)

    def Index(*args, **kwargs):
        """Index(self, PGProperty p) -> int"""
        return _propgrid.PGProperty_Index(*args, **kwargs)

    def FixIndicesOfChildren(*args, **kwargs):
        """FixIndicesOfChildren(self, int starthere=0)"""
        return _propgrid.PGProperty_FixIndicesOfChildren(*args, **kwargs)

    def GetImageOffset(*args, **kwargs):
        """GetImageOffset(self, int imageWidth) -> int"""
        return _propgrid.PGProperty_GetImageOffset(*args, **kwargs)

    def GetItemAtY(*args, **kwargs):
        """GetItemAtY(self, int y) -> PGProperty"""
        return _propgrid.PGProperty_GetItemAtY(*args, **kwargs)

    def GetPropertyByName(*args, **kwargs):
        """GetPropertyByName(self, String name) -> PGProperty"""
        return _propgrid.PGProperty_GetPropertyByName(*args, **kwargs)

    def SetPyChoices(*args):
        """
        SetPyChoices(self, PGChoices chs) -> bool
        SetPyChoices(self, wxArrayString labels, wxArrayInt values=wxArrayInt()) -> bool
        """
        return _propgrid.PGProperty_SetPyChoices(*args)

    def PyBase_StringToValue(*args, **kwargs):
        """PyBase_StringToValue(self, String text, int argFlags=0) -> wxPGVariantAndBool"""
        return _propgrid.PGProperty_PyBase_StringToValue(*args, **kwargs)

    def PyBase_IntToValue(*args, **kwargs):
        """PyBase_IntToValue(self, wxVariant value, int number, int argFlags=0) -> wxPGVariantAndBool"""
        return _propgrid.PGProperty_PyBase_IntToValue(*args, **kwargs)

    m_value = property(GetValuePlain,SetValuePlain) 
    def GetPyClientData(*args, **kwargs):
        """
        GetPyClientData(self) -> PyObject

        Returns the client data object for a property
        """
        return _propgrid.PGProperty_GetPyClientData(*args, **kwargs)

    def SetPyClientData(*args, **kwargs):
        """
        SetPyClientData(self, PyObject clientData)

        Associate the given client data.
        """
        return _propgrid.PGProperty_SetPyClientData(*args, **kwargs)

    SetChoices = SetPyChoices
    StringToValue = PyBase_StringToValue
    IntToValue = PyBase_IntToValue
    GetClientObject = GetPyClientData
    SetClientObject = SetPyClientData
    GetClientData = GetPyClientData
    SetClientData = SetPyClientData

_propgrid.PGProperty_swigregister(PGProperty)

class PropertyGridHitTestResult(object):
    """Proxy of C++ PropertyGridHitTestResult class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PropertyGridHitTestResult"""
        _propgrid.PropertyGridHitTestResult_swiginit(self,_propgrid.new_PropertyGridHitTestResult(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PropertyGridHitTestResult
    __del__ = lambda self : None;
    def GetColumn(*args, **kwargs):
        """GetColumn(self) -> int"""
        return _propgrid.PropertyGridHitTestResult_GetColumn(*args, **kwargs)

    def GetProperty(*args, **kwargs):
        """GetProperty(self) -> PGProperty"""
        return _propgrid.PropertyGridHitTestResult_GetProperty(*args, **kwargs)

    def GetSplitter(*args, **kwargs):
        """GetSplitter(self) -> int"""
        return _propgrid.PropertyGridHitTestResult_GetSplitter(*args, **kwargs)

    def GetSplitterHitOffset(*args, **kwargs):
        """GetSplitterHitOffset(self) -> int"""
        return _propgrid.PropertyGridHitTestResult_GetSplitterHitOffset(*args, **kwargs)

_propgrid.PropertyGridHitTestResult_swigregister(PropertyGridHitTestResult)

PG_ITERATE_PROPERTIES = _propgrid.PG_ITERATE_PROPERTIES
PG_ITERATE_HIDDEN = _propgrid.PG_ITERATE_HIDDEN
PG_ITERATE_FIXED_CHILDREN = _propgrid.PG_ITERATE_FIXED_CHILDREN
PG_ITERATE_CATEGORIES = _propgrid.PG_ITERATE_CATEGORIES
PG_ITERATE_ALL_PARENTS = _propgrid.PG_ITERATE_ALL_PARENTS
PG_ITERATE_ALL_PARENTS_RECURSIVELY = _propgrid.PG_ITERATE_ALL_PARENTS_RECURSIVELY
PG_ITERATOR_FLAGS_ALL = _propgrid.PG_ITERATOR_FLAGS_ALL
PG_ITERATOR_MASK_OP_ITEM = _propgrid.PG_ITERATOR_MASK_OP_ITEM
PG_ITERATOR_MASK_OP_PARENT = _propgrid.PG_ITERATOR_MASK_OP_PARENT
PG_ITERATE_VISIBLE = _propgrid.PG_ITERATE_VISIBLE
PG_ITERATE_ALL = _propgrid.PG_ITERATE_ALL
PG_ITERATE_NORMAL = _propgrid.PG_ITERATE_NORMAL
PG_ITERATE_DEFAULT = _propgrid.PG_ITERATE_DEFAULT
class PropertyGridIteratorBase(object):
    """Proxy of C++ PropertyGridIteratorBase class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PropertyGridIteratorBase"""
        _propgrid.PropertyGridIteratorBase_swiginit(self,_propgrid.new_PropertyGridIteratorBase(*args, **kwargs))
    def Assign(*args, **kwargs):
        """Assign(self, PropertyGridIteratorBase it)"""
        return _propgrid.PropertyGridIteratorBase_Assign(*args, **kwargs)

    def AtEnd(*args, **kwargs):
        """AtEnd(self) -> bool"""
        return _propgrid.PropertyGridIteratorBase_AtEnd(*args, **kwargs)

    def GetProperty(*args, **kwargs):
        """GetProperty(self) -> PGProperty"""
        return _propgrid.PropertyGridIteratorBase_GetProperty(*args, **kwargs)

    def Init(*args):
        """
        Init(self,  state, int flags, PGProperty property, int dir=1)
        Init(self,  state, int flags, int startPos=TOP, int dir=0)
        """
        return _propgrid.PropertyGridIteratorBase_Init(*args)

    def Next(*args, **kwargs):
        """Next(self, bool iterateChildren=True)"""
        return _propgrid.PropertyGridIteratorBase_Next(*args, **kwargs)

    def Prev(*args, **kwargs):
        """Prev(self)"""
        return _propgrid.PropertyGridIteratorBase_Prev(*args, **kwargs)

    def SetBaseParent(*args, **kwargs):
        """SetBaseParent(self, PGProperty baseParent)"""
        return _propgrid.PropertyGridIteratorBase_SetBaseParent(*args, **kwargs)

_propgrid.PropertyGridIteratorBase_swigregister(PropertyGridIteratorBase)

class PropertyGridIterator(PropertyGridIteratorBase):
    """Proxy of C++ PropertyGridIterator class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self,  state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
            int dir=1) -> PropertyGridIterator
        __init__(self,  state, int flags, int startPos, int dir=0) -> PropertyGridIterator
        __init__(self) -> PropertyGridIterator
        __init__(self, PropertyGridIterator it) -> PropertyGridIterator
        """
        _propgrid.PropertyGridIterator_swiginit(self,_propgrid.new_PropertyGridIterator(*args))
    __swig_destroy__ = _propgrid.delete_PropertyGridIterator
    __del__ = lambda self : None;
    def __ref__(*args, **kwargs):
        """__ref__(self) -> PGProperty"""
        return _propgrid.PropertyGridIterator___ref__(*args, **kwargs)

    def OneStep(*args, **kwargs):
        """
        OneStep( state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
            int dir=1) -> PGProperty
        """
        return _propgrid.PropertyGridIterator_OneStep(*args, **kwargs)

    OneStep = staticmethod(OneStep)
_propgrid.PropertyGridIterator_swigregister(PropertyGridIterator)

def PropertyGridIterator_OneStep(*args, **kwargs):
  """
    PropertyGridIterator_OneStep( state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
        int dir=1) -> PGProperty
    """
  return _propgrid.PropertyGridIterator_OneStep(*args, **kwargs)

class PropertyGridConstIterator(PropertyGridIteratorBase):
    """Proxy of C++ PropertyGridConstIterator class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PropertyGridConstIterator
    __del__ = lambda self : None;
    def __ref__(*args, **kwargs):
        """__ref__(self) -> PGProperty"""
        return _propgrid.PropertyGridConstIterator___ref__(*args, **kwargs)

    def OneStep(*args, **kwargs):
        """
        OneStep( state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
            int dir=1) -> PGProperty
        """
        return _propgrid.PropertyGridConstIterator_OneStep(*args, **kwargs)

    OneStep = staticmethod(OneStep)
    def __init__(self, *args): 
        """
        __init__(self,  state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
            int dir=1) -> PropertyGridConstIterator
        __init__(self,  state, int flags, int startPos, int dir=0) -> PropertyGridConstIterator
        __init__(self) -> PropertyGridConstIterator
        __init__(self, PropertyGridConstIterator it) -> PropertyGridConstIterator
        __init__(self, PropertyGridIterator other) -> PropertyGridConstIterator
        """
        _propgrid.PropertyGridConstIterator_swiginit(self,_propgrid.new_PropertyGridConstIterator(*args))
_propgrid.PropertyGridConstIterator_swigregister(PropertyGridConstIterator)

def PropertyGridConstIterator_OneStep(*args, **kwargs):
  """
    PropertyGridConstIterator_OneStep( state, int flags=PG_ITERATE_DEFAULT, PGProperty property=None, 
        int dir=1) -> PGProperty
    """
  return _propgrid.PropertyGridConstIterator_OneStep(*args, **kwargs)

class PGVIteratorBase(_core.RefCounter):
    """Proxy of C++ PGVIteratorBase class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    def Next(*args, **kwargs):
        """Next(self)"""
        return _propgrid.PGVIteratorBase_Next(*args, **kwargs)

_propgrid.PGVIteratorBase_swigregister(PGVIteratorBase)

class PGVIterator(object):
    """Proxy of C++ PGVIterator class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PGVIterator
    __del__ = lambda self : None;
    def UnRef(*args, **kwargs):
        """UnRef(self)"""
        return _propgrid.PGVIterator_UnRef(*args, **kwargs)

    def __init__(self, *args): 
        """
        __init__(self) -> PGVIterator
        __init__(self, PGVIteratorBase obj) -> PGVIterator
        __init__(self, PGVIterator it) -> PGVIterator
        """
        _propgrid.PGVIterator_swiginit(self,_propgrid.new_PGVIterator(*args))
    def Next(*args, **kwargs):
        """Next(self)"""
        return _propgrid.PGVIterator_Next(*args, **kwargs)

    def AtEnd(*args, **kwargs):
        """AtEnd(self) -> bool"""
        return _propgrid.PGVIterator_AtEnd(*args, **kwargs)

    def GetProperty(*args, **kwargs):
        """GetProperty(self) -> PGProperty"""
        return _propgrid.PGVIterator_GetProperty(*args, **kwargs)

_propgrid.PGVIterator_swigregister(PGVIterator)


def PGTypeOperationFailed(*args, **kwargs):
  """PGTypeOperationFailed(PGProperty p, String typestr, String op)"""
  return _propgrid.PGTypeOperationFailed(*args, **kwargs)

def PGGetFailed(*args, **kwargs):
  """PGGetFailed(PGProperty p, String typestr)"""
  return _propgrid.PGGetFailed(*args, **kwargs)
class PropertyGridInterface(object):
    """Proxy of C++ PropertyGridInterface class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PropertyGridInterface
    __del__ = lambda self : None;
    def Append(*args, **kwargs):
        """Append(self, PGProperty property) -> PGProperty"""
        return _propgrid.PropertyGridInterface_Append(*args, **kwargs)

    def AppendIn(*args, **kwargs):
        """AppendIn(self, PGPropArg id, PGProperty newproperty) -> PGProperty"""
        return _propgrid.PropertyGridInterface_AppendIn(*args, **kwargs)

    def BeginAddChildren(*args, **kwargs):
        """BeginAddChildren(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_BeginAddChildren(*args, **kwargs)

    def Clear(*args, **kwargs):
        """Clear(self)"""
        return _propgrid.PropertyGridInterface_Clear(*args, **kwargs)

    def ClearSelection(*args, **kwargs):
        """ClearSelection(self, bool validation=False) -> bool"""
        return _propgrid.PropertyGridInterface_ClearSelection(*args, **kwargs)

    def ClearModifiedStatus(*args, **kwargs):
        """ClearModifiedStatus(self)"""
        return _propgrid.PropertyGridInterface_ClearModifiedStatus(*args, **kwargs)

    def Collapse(*args, **kwargs):
        """Collapse(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_Collapse(*args, **kwargs)

    def CollapseAll(*args, **kwargs):
        """CollapseAll(self) -> bool"""
        return _propgrid.PropertyGridInterface_CollapseAll(*args, **kwargs)

    def ChangePropertyValue(*args, **kwargs):
        """ChangePropertyValue(self, PGPropArg id, wxVariant newValue) -> bool"""
        return _propgrid.PropertyGridInterface_ChangePropertyValue(*args, **kwargs)

    def DeleteProperty(*args, **kwargs):
        """DeleteProperty(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_DeleteProperty(*args, **kwargs)

    def RemoveProperty(*args, **kwargs):
        """RemoveProperty(self, PGPropArg id) -> PGProperty"""
        return _propgrid.PropertyGridInterface_RemoveProperty(*args, **kwargs)

    def DisableProperty(*args, **kwargs):
        """DisableProperty(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_DisableProperty(*args, **kwargs)

    def EditorValidate(*args, **kwargs):
        """EditorValidate(self) -> bool"""
        return _propgrid.PropertyGridInterface_EditorValidate(*args, **kwargs)

    def EnableProperty(*args, **kwargs):
        """EnableProperty(self, PGPropArg id, bool enable=True) -> bool"""
        return _propgrid.PropertyGridInterface_EnableProperty(*args, **kwargs)

    def EndAddChildren(*args, **kwargs):
        """EndAddChildren(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_EndAddChildren(*args, **kwargs)

    def Expand(*args, **kwargs):
        """Expand(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_Expand(*args, **kwargs)

    def ExpandAll(*args, **kwargs):
        """ExpandAll(self, bool expand=True) -> bool"""
        return _propgrid.PropertyGridInterface_ExpandAll(*args, **kwargs)

    def GetFirstChild(*args, **kwargs):
        """GetFirstChild(self, PGPropArg id) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetFirstChild(*args, **kwargs)

    def GetIterator(*args):
        """
        GetIterator(self, int flags=PG_ITERATE_DEFAULT, PGProperty firstProp=None) -> PropertyGridIterator
        GetIterator(self, int flags=PG_ITERATE_DEFAULT, PGProperty firstProp=None) -> PropertyGridConstIterator
        GetIterator(self, int flags, int startPos) -> PropertyGridIterator
        GetIterator(self, int flags, int startPos) -> PropertyGridConstIterator
        """
        return _propgrid.PropertyGridInterface_GetIterator(*args)

    def GetFirst(*args):
        """
        GetFirst(self, int flags=PG_ITERATE_ALL) -> PGProperty
        GetFirst(self, int flags=PG_ITERATE_ALL) -> PGProperty
        """
        return _propgrid.PropertyGridInterface_GetFirst(*args)

    def GetProperty(*args, **kwargs):
        """GetProperty(self, String name) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetProperty(*args, **kwargs)

    def GetPropertyAttributes(*args, **kwargs):
        """GetPropertyAttributes(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_GetPropertyAttributes(*args, **kwargs)

    def GetPropertiesWithFlag(*args, **kwargs):
        """
        GetPropertiesWithFlag(self, wxArrayPGProperty targetArr, FlagType flags, bool inverse=False, 
            int iterFlags=wxPG_ITERATE_PROPERTIES|wxPG_ITERATE_HIDDEN|wxPG_ITERATE_CATEGORIES)
        """
        return _propgrid.PropertyGridInterface_GetPropertiesWithFlag(*args, **kwargs)

    def GetPropertyAttribute(*args, **kwargs):
        """GetPropertyAttribute(self, PGPropArg id, String attrName) -> wxVariant"""
        return _propgrid.PropertyGridInterface_GetPropertyAttribute(*args, **kwargs)

    def GetPropertyCategory(*args, **kwargs):
        """GetPropertyCategory(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_GetPropertyCategory(*args, **kwargs)

    def GetPropertyByLabel(*args, **kwargs):
        """GetPropertyByLabel(self, String label) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetPropertyByLabel(*args, **kwargs)

    def GetPropertyByName(*args):
        """
        GetPropertyByName(self, String name) -> PGProperty
        GetPropertyByName(self, String name, String subname) -> PGProperty
        """
        return _propgrid.PropertyGridInterface_GetPropertyByName(*args)

    def GetPropertyEditor(*args, **kwargs):
        """GetPropertyEditor(self, PGPropArg id) -> PGEditor"""
        return _propgrid.PropertyGridInterface_GetPropertyEditor(*args, **kwargs)

    def GetPropertyHelpString(*args, **kwargs):
        """GetPropertyHelpString(self, PGPropArg id) -> String"""
        return _propgrid.PropertyGridInterface_GetPropertyHelpString(*args, **kwargs)

    def GetPropertyImage(*args, **kwargs):
        """GetPropertyImage(self, PGPropArg id) -> Bitmap"""
        return _propgrid.PropertyGridInterface_GetPropertyImage(*args, **kwargs)

    def GetPropertyLabel(*args, **kwargs):
        """GetPropertyLabel(self, PGPropArg id) -> String"""
        return _propgrid.PropertyGridInterface_GetPropertyLabel(*args, **kwargs)

    def GetPropertyName(*args, **kwargs):
        """GetPropertyName(self, PGProperty property) -> String"""
        return _propgrid.PropertyGridInterface_GetPropertyName(*args, **kwargs)

    def GetPropertyParent(*args, **kwargs):
        """GetPropertyParent(self, PGPropArg id) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetPropertyParent(*args, **kwargs)

    def GetPropertyValidator(*args, **kwargs):
        """GetPropertyValidator(self, PGPropArg id) -> Validator"""
        return _propgrid.PropertyGridInterface_GetPropertyValidator(*args, **kwargs)

    def GetPropertyValue(*args, **kwargs):
        """GetPropertyValue(self, PGPropArg id) -> wxVariant"""
        return _propgrid.PropertyGridInterface_GetPropertyValue(*args, **kwargs)

    def GetPropertyValueAsString(*args, **kwargs):
        """GetPropertyValueAsString(self, PGPropArg id) -> String"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsString(*args, **kwargs)

    def GetPropertyValueAsLong(*args, **kwargs):
        """GetPropertyValueAsLong(self, PGPropArg id) -> long"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsLong(*args, **kwargs)

    def GetPropertyValueAsULong(*args, **kwargs):
        """GetPropertyValueAsULong(self, PGPropArg id) -> long"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsULong(*args, **kwargs)

    def GetPropertyValueAsBool(*args, **kwargs):
        """GetPropertyValueAsBool(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsBool(*args, **kwargs)

    def GetPropertyValueAsDouble(*args, **kwargs):
        """GetPropertyValueAsDouble(self, PGPropArg id) -> double"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsDouble(*args, **kwargs)

    def GetPropertyValueAsArrayString(*args, **kwargs):
        """GetPropertyValueAsArrayString(self, PGPropArg id) -> wxArrayString"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsArrayString(*args, **kwargs)

    def GetPropertyValueAsArrayInt(*args, **kwargs):
        """GetPropertyValueAsArrayInt(self, PGPropArg id) -> wxArrayInt"""
        return _propgrid.PropertyGridInterface_GetPropertyValueAsArrayInt(*args, **kwargs)

    def GetSelection(*args, **kwargs):
        """GetSelection(self) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetSelection(*args, **kwargs)

    def GetSelectedProperties(*args, **kwargs):
        """GetSelectedProperties(self) -> wxArrayPGProperty"""
        return _propgrid.PropertyGridInterface_GetSelectedProperties(*args, **kwargs)

    def GetVIterator(*args, **kwargs):
        """GetVIterator(self, int flags) -> PGVIterator"""
        return _propgrid.PropertyGridInterface_GetVIterator(*args, **kwargs)

    def HideProperty(*args, **kwargs):
        """HideProperty(self, PGPropArg id, bool hide=True, int flags=PG_RECURSE) -> bool"""
        return _propgrid.PropertyGridInterface_HideProperty(*args, **kwargs)

    def InitAllTypeHandlers(*args, **kwargs):
        """InitAllTypeHandlers()"""
        return _propgrid.PropertyGridInterface_InitAllTypeHandlers(*args, **kwargs)

    InitAllTypeHandlers = staticmethod(InitAllTypeHandlers)
    def Insert(*args):
        """
        Insert(self, PGPropArg priorThis, PGProperty newproperty) -> PGProperty
        Insert(self, PGPropArg parent, int index, PGProperty newproperty) -> PGProperty
        """
        return _propgrid.PropertyGridInterface_Insert(*args)

    def IsPropertyCategory(*args, **kwargs):
        """IsPropertyCategory(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyCategory(*args, **kwargs)

    def IsPropertyEnabled(*args, **kwargs):
        """IsPropertyEnabled(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyEnabled(*args, **kwargs)

    def IsPropertyExpanded(*args, **kwargs):
        """IsPropertyExpanded(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyExpanded(*args, **kwargs)

    def IsPropertyModified(*args, **kwargs):
        """IsPropertyModified(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyModified(*args, **kwargs)

    def IsPropertySelected(*args, **kwargs):
        """IsPropertySelected(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertySelected(*args, **kwargs)

    def IsPropertyShown(*args, **kwargs):
        """IsPropertyShown(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyShown(*args, **kwargs)

    def IsPropertyValueUnspecified(*args, **kwargs):
        """IsPropertyValueUnspecified(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridInterface_IsPropertyValueUnspecified(*args, **kwargs)

    def LimitPropertyEditing(*args, **kwargs):
        """LimitPropertyEditing(self, PGPropArg id, bool limit=True)"""
        return _propgrid.PropertyGridInterface_LimitPropertyEditing(*args, **kwargs)

    def RefreshGrid(*args, **kwargs):
        """RefreshGrid(self,  state=None)"""
        return _propgrid.PropertyGridInterface_RefreshGrid(*args, **kwargs)

    def RegisterAdditionalEditors(*args, **kwargs):
        """RegisterAdditionalEditors()"""
        return _propgrid.PropertyGridInterface_RegisterAdditionalEditors(*args, **kwargs)

    RegisterAdditionalEditors = staticmethod(RegisterAdditionalEditors)
    def ReplaceProperty(*args, **kwargs):
        """ReplaceProperty(self, PGPropArg id, PGProperty property) -> PGProperty"""
        return _propgrid.PropertyGridInterface_ReplaceProperty(*args, **kwargs)

    SelectionState = _propgrid.PropertyGridInterface_SelectionState
    ExpandedState = _propgrid.PropertyGridInterface_ExpandedState
    ScrollPosState = _propgrid.PropertyGridInterface_ScrollPosState
    PageState = _propgrid.PropertyGridInterface_PageState
    SplitterPosState = _propgrid.PropertyGridInterface_SplitterPosState
    DescBoxState = _propgrid.PropertyGridInterface_DescBoxState
    AllStates = _propgrid.PropertyGridInterface_AllStates
    def RestoreEditableState(*args, **kwargs):
        """RestoreEditableState(self, String src, int restoreStates=AllStates) -> bool"""
        return _propgrid.PropertyGridInterface_RestoreEditableState(*args, **kwargs)

    def SaveEditableState(*args, **kwargs):
        """SaveEditableState(self, int includedStates=AllStates) -> String"""
        return _propgrid.PropertyGridInterface_SaveEditableState(*args, **kwargs)

    def SetBoolChoices(*args, **kwargs):
        """SetBoolChoices(String trueChoice, String falseChoice)"""
        return _propgrid.PropertyGridInterface_SetBoolChoices(*args, **kwargs)

    SetBoolChoices = staticmethod(SetBoolChoices)
    def SetColumnProportion(*args, **kwargs):
        """SetColumnProportion(self, int column, int proportion) -> bool"""
        return _propgrid.PropertyGridInterface_SetColumnProportion(*args, **kwargs)

    def GetColumnProportion(*args, **kwargs):
        """GetColumnProportion(self, int column) -> int"""
        return _propgrid.PropertyGridInterface_GetColumnProportion(*args, **kwargs)

    def SetPropertyAttribute(*args, **kwargs):
        """SetPropertyAttribute(self, PGPropArg id, String attrName, wxVariant value, long argFlags=0)"""
        return _propgrid.PropertyGridInterface_SetPropertyAttribute(*args, **kwargs)

    def SetPropertyAttributeAll(*args, **kwargs):
        """SetPropertyAttributeAll(self, String attrName, wxVariant value)"""
        return _propgrid.PropertyGridInterface_SetPropertyAttributeAll(*args, **kwargs)

    def SetPropertyBackgroundColour(*args, **kwargs):
        """SetPropertyBackgroundColour(self, PGPropArg id, Colour colour, int flags=PG_RECURSE)"""
        return _propgrid.PropertyGridInterface_SetPropertyBackgroundColour(*args, **kwargs)

    def SetPropertyColoursToDefault(*args, **kwargs):
        """SetPropertyColoursToDefault(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_SetPropertyColoursToDefault(*args, **kwargs)

    def SetPropertyTextColour(*args, **kwargs):
        """SetPropertyTextColour(self, PGPropArg id, Colour col, int flags=PG_RECURSE)"""
        return _propgrid.PropertyGridInterface_SetPropertyTextColour(*args, **kwargs)

    def GetPropertyBackgroundColour(*args, **kwargs):
        """GetPropertyBackgroundColour(self, PGPropArg id) -> Colour"""
        return _propgrid.PropertyGridInterface_GetPropertyBackgroundColour(*args, **kwargs)

    def GetPropertyTextColour(*args, **kwargs):
        """GetPropertyTextColour(self, PGPropArg id) -> Colour"""
        return _propgrid.PropertyGridInterface_GetPropertyTextColour(*args, **kwargs)

    def SetPropertyCell(*args, **kwargs):
        """
        SetPropertyCell(self, PGPropArg id, int column, String text=wxEmptyString, 
            Bitmap bitmap=wxNullBitmap, Colour fgCol=wxNullColour, 
            Colour bgCol=wxNullColour)
        """
        return _propgrid.PropertyGridInterface_SetPropertyCell(*args, **kwargs)

    def SetPropertyEditor(*args, **kwargs):
        """SetPropertyEditor(self, PGPropArg id, String editorName)"""
        return _propgrid.PropertyGridInterface_SetPropertyEditor(*args, **kwargs)

    def SetPropertyLabel(*args, **kwargs):
        """SetPropertyLabel(self, PGPropArg id, String newproplabel)"""
        return _propgrid.PropertyGridInterface_SetPropertyLabel(*args, **kwargs)

    def SetPropertyName(*args, **kwargs):
        """SetPropertyName(self, PGPropArg id, String newName)"""
        return _propgrid.PropertyGridInterface_SetPropertyName(*args, **kwargs)

    def SetPropertyReadOnly(*args, **kwargs):
        """SetPropertyReadOnly(self, PGPropArg id, bool set=True, int flags=PG_RECURSE)"""
        return _propgrid.PropertyGridInterface_SetPropertyReadOnly(*args, **kwargs)

    def SetPropertyValueUnspecified(*args, **kwargs):
        """SetPropertyValueUnspecified(self, PGPropArg id)"""
        return _propgrid.PropertyGridInterface_SetPropertyValueUnspecified(*args, **kwargs)

    def SetPropertyHelpString(*args, **kwargs):
        """SetPropertyHelpString(self, PGPropArg id, String helpString)"""
        return _propgrid.PropertyGridInterface_SetPropertyHelpString(*args, **kwargs)

    def SetPropertyImage(*args, **kwargs):
        """SetPropertyImage(self, PGPropArg id, Bitmap bmp)"""
        return _propgrid.PropertyGridInterface_SetPropertyImage(*args, **kwargs)

    def SetPropertyMaxLength(*args, **kwargs):
        """SetPropertyMaxLength(self, PGPropArg id, int maxLen) -> bool"""
        return _propgrid.PropertyGridInterface_SetPropertyMaxLength(*args, **kwargs)

    def SetPropertyValidator(*args, **kwargs):
        """SetPropertyValidator(self, PGPropArg id, Validator validator)"""
        return _propgrid.PropertyGridInterface_SetPropertyValidator(*args, **kwargs)

    def SetPropertyValueString(*args, **kwargs):
        """SetPropertyValueString(self, PGPropArg id, String value)"""
        return _propgrid.PropertyGridInterface_SetPropertyValueString(*args, **kwargs)

    def SetPropertyValue(*args, **kwargs):
        """SetPropertyValue(self, PGPropArg id, wxVariant value)"""
        return _propgrid.PropertyGridInterface_SetPropertyValue(*args, **kwargs)

    def SetValidationFailureBehavior(*args, **kwargs):
        """SetValidationFailureBehavior(self, int vfbFlags)"""
        return _propgrid.PropertyGridInterface_SetValidationFailureBehavior(*args, **kwargs)

    def Sort(*args, **kwargs):
        """Sort(self, int flags=0)"""
        return _propgrid.PropertyGridInterface_Sort(*args, **kwargs)

    def SortChildren(*args, **kwargs):
        """SortChildren(self, PGPropArg id, int flags=0)"""
        return _propgrid.PropertyGridInterface_SortChildren(*args, **kwargs)

    def GetPropertyByNameA(*args, **kwargs):
        """GetPropertyByNameA(self, String name) -> PGProperty"""
        return _propgrid.PropertyGridInterface_GetPropertyByNameA(*args, **kwargs)

    def GetEditorByName(*args, **kwargs):
        """GetEditorByName(String editorName) -> PGEditor"""
        return _propgrid.PropertyGridInterface_GetEditorByName(*args, **kwargs)

    GetEditorByName = staticmethod(GetEditorByName)
    def RefreshProperty(*args, **kwargs):
        """RefreshProperty(self, PGProperty p)"""
        return _propgrid.PropertyGridInterface_RefreshProperty(*args, **kwargs)

    def MapType(class_,factory):
        "Registers Python type/class to property mapping.\n\nfactory: "
        "Property builder function/class."
        global _type2property
        try:
            mappings = _type2property
        except NameError:
            raise AssertionError("call only after a propertygrid or "
                                 "manager instance constructed")

        mappings[class_] = factory


    def DoDefaultTypeMappings(self):
        "Map built-in properties."
        global _type2property
        try:
            mappings = _type2property

            return
        except NameError:
            mappings = {}
            _type2property = mappings

        mappings[str] = StringProperty
        mappings[unicode] = StringProperty
        mappings[int] = IntProperty
        mappings[float] = FloatProperty
        mappings[bool] = BoolProperty
        mappings[list] = ArrayStringProperty
        mappings[tuple] = ArrayStringProperty
        mappings[wx.Font] = FontProperty
        mappings[wx.Colour] = ColourProperty
        "mappings[wx.Size] = SizeProperty"
        "mappings[wx.Point] = PointProperty"
        "mappings[wx.FontData] = FontDataProperty"

    def DoDefaultValueTypeMappings(self):
        "Map pg value type ids to getter methods."
        global _vt2getter
        try:
            vt2getter = _vt2getter

            return
        except NameError:
            vt2getter = {}
            _vt2getter = vt2getter

    def GetPropertyValues(self,dict_=None, as_strings=False,
                          inc_attributes=False):
        "Returns values in the grid."
        ""
        "dict_: if not given, then a new one is created. dict_ can be"
        "  object as well, in which case it's __dict__ is used."
        "as_strings: if True, then string representations of values"
        "  are fetched instead of native types. Useful for config and "
        "such."
        "inc_attributes: if True, then property attributes are added"
        "  as @<propname>@<attr>."
        ""
        "Return value: dictionary with values. It is always a dictionary,"
        "so if dict_ was object with __dict__ attribute, then that "
        "attribute is returned."

        if dict_ is None:
            dict_ = {}
        elif hasattr(dict_,'__dict__'):
            dict_ = dict_.__dict__

        if not as_strings:
            getter = self.GetPropertyValue
        else:
            getter = self.GetPropertyValueAsString

        it = self.GetVIterator(PG_ITERATE_PROPERTIES)
        while not it.AtEnd():
            p = it.GetProperty()
            name = p.GetName()

            dict_[name] = getter(p)

            if inc_attributes:
                attrs = p.GetAttributes()
                if attrs and len(attrs):
                    dict_['@%s@attr'%name] = attrs

            it.Next()

        return dict_

    GetValues = GetPropertyValues


    def SetPropertyValues(self,dict_):
        "Sets property values from dict_, which can be either\ndictionary "
        "or an object with __dict__ attribute."
        ""
        "autofill: If true, keys with not relevant properties"
        "  are auto-created. For more info, see AutoFill."
        ""
        "Notes:"
        "  * Keys starting with underscore are ignored."
        "  * Attributes can be set with entries named @<propname>@<attr>."
        ""

        autofill = False

        if dict_ is None:
            dict_ = {}
        elif hasattr(dict_,'__dict__'):
            dict_ = dict_.__dict__

        attr_dicts = []

        def set_sub_obj(k0,dict_):
            for k,v in dict_.iteritems():
                if k[0] != '_':
                    if k.endswith('@attr'):
                        attr_dicts.append((k[1:-5],v))
                    else:
                        try:
                            self.SetPropertyValue(k,v)
                        except:
                            try:
                                if autofill:
                                    self._AutoFillOne(k0,k,v)
                                    continue
                            except:
                                if isinstance(v,dict):
                                    set_sub_obj(k,v)
                                elif hasattr(v,'__dict__'):
                                    set_sub_obj(k,v.__dict__)


        for k,v in attr_dicts:
            p = GetPropertyByName(k)
            if not p:
                raise AssertionError("No such property: '%s'"%k)
            for an,av in v.iteritems():
                p.SetAttribute(an, av)


        cur_page = False
        is_manager = isinstance(self,PropertyGridManager)

        try:
            set_sub_obj(self.GetGrid().GetRoot(),dict_)
        except:
            import traceback
            traceback.print_exc()

        self.Refresh()

    SetValues = SetPropertyValues

    def _AutoFillMany(self,cat,dict_):
        for k,v in dict_.iteritems():
            self._AutoFillOne(cat,k,v)


    def _AutoFillOne(self,cat,k,v):
        global _type2property

        factory = _type2property.get(v.__class__,None)

        if factory:
            self.AppendIn( cat, factory(k,k,v) )
        elif hasattr(v,'__dict__'):
            cat2 = self.AppendIn( cat, PropertyCategory(k) )
            self._AutoFillMany(cat2,v.__dict__)
        elif isinstance(v,dict):
            cat2 = self.AppendIn( cat, PropertyCategory(k) )
            self._AutoFillMany(cat2,v)
        elif not k.startswith('_'):
            raise AssertionError("member '%s' is of unregisted type/"
                                 "class '%s'"%(k,v.__class__))


    def AutoFill(self,obj,parent=None):
        "Clears properties and re-fills to match members and\nvalues of "
        "given object or dictionary obj."

        self.edited_objects[parent] = obj

        cur_page = False
        is_manager = isinstance(self,PropertyGridManager)

        if not parent:
            if is_manager:
                page = self.GetCurrentPage()
                page.Clear()
                parent = page.GetRoot()
            else:
                self.Clear()
                parent = self.GetGrid().GetRoot()
        else:
            it = self.GetIterator(PG_ITERATE_PROPERTIES, parent)
            it.Next()  # Skip the parent
            while not it.AtEnd():
                p = it.GetProperty()
                if not p.IsSomeParent(parent):
                    break

                self.DeleteProperty(p)

                name = p.GetName()
                it.Next()

        if not is_manager or page == self.GetCurrentPage():
            self.Freeze()
            cur_page = True

        try:
            self._AutoFillMany(parent,obj.__dict__)
        except:
            import traceback
            traceback.print_exc()

        if cur_page:
            self.Thaw()

    def RegisterEditor(self, editor, editorName=None):
        "Transform class into instance, if necessary."
        if not isinstance(editor, PGEditor):
            editor = editor()
        if not editorName:
            editorName = editor.__class__.__name__
        try:
            self._editor_instances.append(editor)
        except:
            self._editor_instances = [editor]
        RegisterEditor(editor, editorName)

    def GetPropertyClientData(self, p):
        if isinstance(p, basestring):
            p = self.GetPropertyByName(p)
        return p.GetClientData()

    def SetPropertyClientData(self, p, data):
        if isinstance(p, basestring):
            p = self.GetPropertyByName(p)
        return p.SetClientData(data)

    def GetPyIterator(self, flags=PG_ITERATE_DEFAULT,
                      firstProperty=None):
        """
        Returns a pythonic property iterator for a single `PropertyGrid`
        or page in `PropertyGridManager`. Arguments are same as for
        `GetIterator`. Following example demonstrates iterating absolutely
        all items in a single grid::

            iterator = propGrid.GetPyIterator(wx.propgrid.PG_ITERATE_ALL)
            for prop in iterator:
                print(prop)

        :see: `wx.propgrid.PropertyGridInterface.Properties`
              `wx.propgrid.PropertyGridInterface.Items`
        """
        it = self.GetIterator(flags, firstProperty)
        while not it.AtEnd():
            yield it.GetProperty()
            it.Next()

    def GetPyVIterator(self, flags=PG_ITERATE_DEFAULT):
        """
        Returns a pythonic property iterator for a single `PropertyGrid`
        or entire `PropertyGridManager`. Arguments are same as for
        `GetIterator`. Following example demonstrates iterating absolutely
        all items in an entire `PropertyGridManager`::

            iterator = propGridManager.GetPyVIterator(wx.propgrid.PG_ITERATE_ALL)
            for prop in iterator:
                print(prop)

        :see: `wx.propgrid.PropertyGridInterface.Properties`
              `wx.propgrid.PropertyGridInterface.Items`
        """
        it = self.GetVIterator(flags)
        while not it.AtEnd():
            yield it.GetProperty()
            it.Next()

    @property
    def Properties(self):
        """
        This attribute is a pythonic iterator over all properties in
        this `PropertyGrid` property container. It will only skip
        categories and private child properties. Usage is simple::

            for prop in propGrid.Properties:
                print(prop)

        :see: `wx.propgrid.PropertyGridInterface.Items`
              `wx.propgrid.PropertyGridInterface.GetPyIterator`
        """
        it = self.GetVIterator(PG_ITERATE_NORMAL)
        while not it.AtEnd():
            yield it.GetProperty()
            it.Next()

    @property
    def Items(self):
        """
        This attribute is a pythonic iterator over all items in this
        `PropertyGrid` property container, excluding only private child
        properties. Usage is simple::

            for prop in propGrid.Items:
                print(prop)

        :see: `wx.propgrid.PropertyGridInterface.Properties`
              `wx.propgrid.PropertyGridInterface.GetPyIterator`
        """
        it = self.GetVIterator(PG_ITERATE_NORMAL | PG_ITERATE_CATEGORIES)
        while not it.AtEnd():
            yield it.GetProperty()
            it.Next()

_propgrid.PropertyGridInterface_swigregister(PropertyGridInterface)

def PropertyGridInterface_InitAllTypeHandlers(*args):
  """PropertyGridInterface_InitAllTypeHandlers()"""
  return _propgrid.PropertyGridInterface_InitAllTypeHandlers(*args)

def PropertyGridInterface_RegisterAdditionalEditors(*args):
  """PropertyGridInterface_RegisterAdditionalEditors()"""
  return _propgrid.PropertyGridInterface_RegisterAdditionalEditors(*args)

def PropertyGridInterface_SetBoolChoices(*args, **kwargs):
  """PropertyGridInterface_SetBoolChoices(String trueChoice, String falseChoice)"""
  return _propgrid.PropertyGridInterface_SetBoolChoices(*args, **kwargs)

def PropertyGridInterface_GetEditorByName(*args, **kwargs):
  """PropertyGridInterface_GetEditorByName(String editorName) -> PGEditor"""
  return _propgrid.PropertyGridInterface_GetEditorByName(*args, **kwargs)

PG_AUTO_SORT = _propgrid.PG_AUTO_SORT
PG_HIDE_CATEGORIES = _propgrid.PG_HIDE_CATEGORIES
PG_ALPHABETIC_MODE = _propgrid.PG_ALPHABETIC_MODE
PG_BOLD_MODIFIED = _propgrid.PG_BOLD_MODIFIED
PG_SPLITTER_AUTO_CENTER = _propgrid.PG_SPLITTER_AUTO_CENTER
PG_TOOLTIPS = _propgrid.PG_TOOLTIPS
PG_HIDE_MARGIN = _propgrid.PG_HIDE_MARGIN
PG_STATIC_SPLITTER = _propgrid.PG_STATIC_SPLITTER
PG_STATIC_LAYOUT = _propgrid.PG_STATIC_LAYOUT
PG_LIMITED_EDITING = _propgrid.PG_LIMITED_EDITING
PG_TOOLBAR = _propgrid.PG_TOOLBAR
PG_DESCRIPTION = _propgrid.PG_DESCRIPTION
PG_NO_INTERNAL_BORDER = _propgrid.PG_NO_INTERNAL_BORDER
PG_EX_INIT_NOCAT = _propgrid.PG_EX_INIT_NOCAT
PG_EX_NO_FLAT_TOOLBAR = _propgrid.PG_EX_NO_FLAT_TOOLBAR
PG_EX_MODE_BUTTONS = _propgrid.PG_EX_MODE_BUTTONS
PG_EX_HELP_AS_TOOLTIPS = _propgrid.PG_EX_HELP_AS_TOOLTIPS
PG_EX_NATIVE_DOUBLE_BUFFERING = _propgrid.PG_EX_NATIVE_DOUBLE_BUFFERING
PG_EX_AUTO_UNSPECIFIED_VALUES = _propgrid.PG_EX_AUTO_UNSPECIFIED_VALUES
PG_EX_WRITEONLY_BUILTIN_ATTRIBUTES = _propgrid.PG_EX_WRITEONLY_BUILTIN_ATTRIBUTES
PG_EX_HIDE_PAGE_BUTTONS = _propgrid.PG_EX_HIDE_PAGE_BUTTONS
PG_EX_MULTIPLE_SELECTION = _propgrid.PG_EX_MULTIPLE_SELECTION
PG_EX_ENABLE_TLP_TRACKING = _propgrid.PG_EX_ENABLE_TLP_TRACKING
PG_EX_NO_TOOLBAR_DIVIDER = _propgrid.PG_EX_NO_TOOLBAR_DIVIDER
PG_EX_TOOLBAR_SEPARATOR = _propgrid.PG_EX_TOOLBAR_SEPARATOR
PG_DEFAULT_STYLE = _propgrid.PG_DEFAULT_STYLE
PGMAN_DEFAULT_STYLE = _propgrid.PGMAN_DEFAULT_STYLE
PG_SUBID1 = _propgrid.PG_SUBID1
PG_SUBID2 = _propgrid.PG_SUBID2
PG_SUBID_TEMP1 = _propgrid.PG_SUBID_TEMP1
class PGCommonValue(object):
    """Proxy of C++ PGCommonValue class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self, String label,  renderer) -> PGCommonValue"""
        _propgrid.PGCommonValue_swiginit(self,_propgrid.new_PGCommonValue(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGCommonValue
    __del__ = lambda self : None;
    def GetEditableText(*args, **kwargs):
        """GetEditableText(self) -> String"""
        return _propgrid.PGCommonValue_GetEditableText(*args, **kwargs)

    def GetLabel(*args, **kwargs):
        """GetLabel(self) -> String"""
        return _propgrid.PGCommonValue_GetLabel(*args, **kwargs)

    def GetRenderer(*args, **kwargs):
        """GetRenderer(self)"""
        return _propgrid.PGCommonValue_GetRenderer(*args, **kwargs)

_propgrid.PGCommonValue_swigregister(PGCommonValue)

PG_VFB_STAY_IN_PROPERTY = _propgrid.PG_VFB_STAY_IN_PROPERTY
PG_VFB_BEEP = _propgrid.PG_VFB_BEEP
PG_VFB_MARK_CELL = _propgrid.PG_VFB_MARK_CELL
PG_VFB_SHOW_MESSAGE = _propgrid.PG_VFB_SHOW_MESSAGE
PG_VFB_SHOW_MESSAGEBOX = _propgrid.PG_VFB_SHOW_MESSAGEBOX
PG_VFB_SHOW_MESSAGE_ON_STATUSBAR = _propgrid.PG_VFB_SHOW_MESSAGE_ON_STATUSBAR
PG_VFB_DEFAULT = _propgrid.PG_VFB_DEFAULT
PG_VFB_UNDEFINED = _propgrid.PG_VFB_UNDEFINED
class PGValidationInfo(object):
    """Proxy of C++ PGValidationInfo class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGValidationInfo"""
        _propgrid.PGValidationInfo_swiginit(self,_propgrid.new_PGValidationInfo(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGValidationInfo
    __del__ = lambda self : None;
    def GetFailureBehavior(*args, **kwargs):
        """GetFailureBehavior(self) -> char"""
        return _propgrid.PGValidationInfo_GetFailureBehavior(*args, **kwargs)

    def GetFailureMessage(*args, **kwargs):
        """GetFailureMessage(self) -> String"""
        return _propgrid.PGValidationInfo_GetFailureMessage(*args, **kwargs)

    def GetValue(*args, **kwargs):
        """GetValue(self) -> wxVariant"""
        return _propgrid.PGValidationInfo_GetValue(*args, **kwargs)

    def SetFailureBehavior(*args, **kwargs):
        """SetFailureBehavior(self, char failureBehavior)"""
        return _propgrid.PGValidationInfo_SetFailureBehavior(*args, **kwargs)

    def SetFailureMessage(*args, **kwargs):
        """SetFailureMessage(self, String message)"""
        return _propgrid.PGValidationInfo_SetFailureMessage(*args, **kwargs)

_propgrid.PGValidationInfo_swigregister(PGValidationInfo)

PG_ACTION_INVALID = _propgrid.PG_ACTION_INVALID
PG_ACTION_NEXT_PROPERTY = _propgrid.PG_ACTION_NEXT_PROPERTY
PG_ACTION_PREV_PROPERTY = _propgrid.PG_ACTION_PREV_PROPERTY
PG_ACTION_EXPAND_PROPERTY = _propgrid.PG_ACTION_EXPAND_PROPERTY
PG_ACTION_COLLAPSE_PROPERTY = _propgrid.PG_ACTION_COLLAPSE_PROPERTY
PG_ACTION_CANCEL_EDIT = _propgrid.PG_ACTION_CANCEL_EDIT
PG_ACTION_EDIT = _propgrid.PG_ACTION_EDIT
PG_ACTION_PRESS_BUTTON = _propgrid.PG_ACTION_PRESS_BUTTON
PG_ACTION_MAX = _propgrid.PG_ACTION_MAX
PG_SEL_FOCUS = _propgrid.PG_SEL_FOCUS
PG_SEL_FORCE = _propgrid.PG_SEL_FORCE
PG_SEL_NONVISIBLE = _propgrid.PG_SEL_NONVISIBLE
PG_SEL_NOVALIDATE = _propgrid.PG_SEL_NOVALIDATE
PG_SEL_DELETING = _propgrid.PG_SEL_DELETING
PG_SEL_SETUNSPEC = _propgrid.PG_SEL_SETUNSPEC
PG_SEL_DIALOGVAL = _propgrid.PG_SEL_DIALOGVAL
PG_SEL_DONT_SEND_EVENT = _propgrid.PG_SEL_DONT_SEND_EVENT
PG_SEL_NO_REFRESH = _propgrid.PG_SEL_NO_REFRESH
PG_SPLITTER_REFRESH = _propgrid.PG_SPLITTER_REFRESH
PG_SPLITTER_ALL_PAGES = _propgrid.PG_SPLITTER_ALL_PAGES
PG_SPLITTER_FROM_EVENT = _propgrid.PG_SPLITTER_FROM_EVENT
PG_SPLITTER_FROM_AUTO_CENTER = _propgrid.PG_SPLITTER_FROM_AUTO_CENTER
PG_FL_INITIALIZED = _propgrid.PG_FL_INITIALIZED
PG_FL_ACTIVATION_BY_CLICK = _propgrid.PG_FL_ACTIVATION_BY_CLICK
PG_FL_DONT_CENTER_SPLITTER = _propgrid.PG_FL_DONT_CENTER_SPLITTER
PG_FL_FOCUSED = _propgrid.PG_FL_FOCUSED
PG_FL_MOUSE_CAPTURED = _propgrid.PG_FL_MOUSE_CAPTURED
PG_FL_MOUSE_INSIDE = _propgrid.PG_FL_MOUSE_INSIDE
PG_FL_VALUE_MODIFIED = _propgrid.PG_FL_VALUE_MODIFIED
PG_FL_PRIMARY_FILLS_ENTIRE = _propgrid.PG_FL_PRIMARY_FILLS_ENTIRE
PG_FL_CUR_USES_CUSTOM_IMAGE = _propgrid.PG_FL_CUR_USES_CUSTOM_IMAGE
PG_FL_CELL_OVERRIDES_SEL = _propgrid.PG_FL_CELL_OVERRIDES_SEL
PG_FL_SCROLLED = _propgrid.PG_FL_SCROLLED
PG_FL_ADDING_HIDEABLES = _propgrid.PG_FL_ADDING_HIDEABLES
PG_FL_NOSTATUSBARHELP = _propgrid.PG_FL_NOSTATUSBARHELP
PG_FL_CREATEDSTATE = _propgrid.PG_FL_CREATEDSTATE
PG_FL_SCROLLBAR_DETECTED = _propgrid.PG_FL_SCROLLBAR_DETECTED
PG_FL_DESC_REFRESH_REQUIRED = _propgrid.PG_FL_DESC_REFRESH_REQUIRED
PG_FL_IN_MANAGER = _propgrid.PG_FL_IN_MANAGER
PG_FL_GOOD_SIZE_SET = _propgrid.PG_FL_GOOD_SIZE_SET
PG_FL_IN_SELECT_PROPERTY = _propgrid.PG_FL_IN_SELECT_PROPERTY
PG_FL_STRING_IN_STATUSBAR = _propgrid.PG_FL_STRING_IN_STATUSBAR
PG_FL_CATMODE_AUTO_SORT = _propgrid.PG_FL_CATMODE_AUTO_SORT
PG_MAN_FL_PAGE_INSERTED = _propgrid.PG_MAN_FL_PAGE_INSERTED
PG_FL_ABNORMAL_EDITOR = _propgrid.PG_FL_ABNORMAL_EDITOR
PG_FL_IN_HANDLECUSTOMEDITOREVENT = _propgrid.PG_FL_IN_HANDLECUSTOMEDITOREVENT
PG_FL_VALUE_CHANGE_IN_EVENT = _propgrid.PG_FL_VALUE_CHANGE_IN_EVENT
PG_FL_FIXED_WIDTH_EDITOR = _propgrid.PG_FL_FIXED_WIDTH_EDITOR
PG_FL_HAS_VIRTUAL_WIDTH = _propgrid.PG_FL_HAS_VIRTUAL_WIDTH
PG_FL_RECALCULATING_VIRTUAL_SIZE = _propgrid.PG_FL_RECALCULATING_VIRTUAL_SIZE
class PropertyGrid(_core.Control,_windows.ScrollHelper,PropertyGridInterface):
    """Proxy of C++ PropertyGrid class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
            Size size=DefaultSize, long style=(0), 
            String name=wxPropertyGridNameStr) -> PropertyGrid
        """
        _propgrid.PropertyGrid_swiginit(self,_propgrid.new_PropertyGrid(*args, **kwargs))
        
        self._setOORInfo(self)
        self.DoDefaultTypeMappings()
        self.edited_objects = {}
        self.DoDefaultValueTypeMappings()
        if not hasattr(self.__class__,'_vt2setter'):
            self.__class__._vt2setter = {}
    

    __swig_destroy__ = _propgrid.delete_PropertyGrid
    __del__ = lambda self : None;
    def AddActionTrigger(*args, **kwargs):
        """AddActionTrigger(self, int action, int keycode, int modifiers=0)"""
        return _propgrid.PropertyGrid_AddActionTrigger(*args, **kwargs)

    def DedicateKey(*args, **kwargs):
        """DedicateKey(self, int keycode)"""
        return _propgrid.PropertyGrid_DedicateKey(*args, **kwargs)

    def AutoGetTranslation(*args, **kwargs):
        """AutoGetTranslation(bool enable)"""
        return _propgrid.PropertyGrid_AutoGetTranslation(*args, **kwargs)

    AutoGetTranslation = staticmethod(AutoGetTranslation)
    def ChangePropertyValue(*args, **kwargs):
        """ChangePropertyValue(self, PGPropArg id, wxVariant newValue) -> bool"""
        return _propgrid.PropertyGrid_ChangePropertyValue(*args, **kwargs)

    def CenterSplitter(*args, **kwargs):
        """CenterSplitter(self, bool enableAutoResizing=False)"""
        return _propgrid.PropertyGrid_CenterSplitter(*args, **kwargs)

    def ClearActionTriggers(*args, **kwargs):
        """ClearActionTriggers(self, int action)"""
        return _propgrid.PropertyGrid_ClearActionTriggers(*args, **kwargs)

    def CommitChangesFromEditor(*args, **kwargs):
        """CommitChangesFromEditor(self, int flags=0) -> bool"""
        return _propgrid.PropertyGrid_CommitChangesFromEditor(*args, **kwargs)

    def Create(*args, **kwargs):
        """
        Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
            Size size=DefaultSize, long style=(0), 
            String name=wxPropertyGridNameStr) -> bool
        """
        return _propgrid.PropertyGrid_Create(*args, **kwargs)

    def EditorsValueWasModified(*args, **kwargs):
        """EditorsValueWasModified(self)"""
        return _propgrid.PropertyGrid_EditorsValueWasModified(*args, **kwargs)

    def EditorsValueWasNotModified(*args, **kwargs):
        """EditorsValueWasNotModified(self)"""
        return _propgrid.PropertyGrid_EditorsValueWasNotModified(*args, **kwargs)

    def EnableCategories(*args, **kwargs):
        """EnableCategories(self, bool enable) -> bool"""
        return _propgrid.PropertyGrid_EnableCategories(*args, **kwargs)

    def EnsureVisible(*args, **kwargs):
        """EnsureVisible(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGrid_EnsureVisible(*args, **kwargs)

    def FitColumns(*args, **kwargs):
        """FitColumns(self) -> Size"""
        return _propgrid.PropertyGrid_FitColumns(*args, **kwargs)

    def GetPanel(*args, **kwargs):
        """GetPanel(self) -> Window"""
        return _propgrid.PropertyGrid_GetPanel(*args, **kwargs)

    def GetCaptionBackgroundColour(*args, **kwargs):
        """GetCaptionBackgroundColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetCaptionBackgroundColour(*args, **kwargs)

    def GetCaptionFont(*args):
        """
        GetCaptionFont(self) -> Font
        GetCaptionFont(self) -> Font
        """
        return _propgrid.PropertyGrid_GetCaptionFont(*args)

    def GetCaptionForegroundColour(*args, **kwargs):
        """GetCaptionForegroundColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetCaptionForegroundColour(*args, **kwargs)

    def GetCellBackgroundColour(*args, **kwargs):
        """GetCellBackgroundColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetCellBackgroundColour(*args, **kwargs)

    def GetCellDisabledTextColour(*args, **kwargs):
        """GetCellDisabledTextColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetCellDisabledTextColour(*args, **kwargs)

    def GetCellTextColour(*args, **kwargs):
        """GetCellTextColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetCellTextColour(*args, **kwargs)

    def GetColumnCount(*args, **kwargs):
        """GetColumnCount(self) -> int"""
        return _propgrid.PropertyGrid_GetColumnCount(*args, **kwargs)

    def GetEmptySpaceColour(*args, **kwargs):
        """GetEmptySpaceColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetEmptySpaceColour(*args, **kwargs)

    def GetFontHeight(*args, **kwargs):
        """GetFontHeight(self) -> int"""
        return _propgrid.PropertyGrid_GetFontHeight(*args, **kwargs)

    def GetGrid(*args, **kwargs):
        """GetGrid(self) -> PropertyGrid"""
        return _propgrid.PropertyGrid_GetGrid(*args, **kwargs)

    def GetImageRect(*args, **kwargs):
        """GetImageRect(self, PGProperty p, int item) -> Rect"""
        return _propgrid.PropertyGrid_GetImageRect(*args, **kwargs)

    def GetImageSize(*args, **kwargs):
        """GetImageSize(self, PGProperty p=None, int item=-1) -> Size"""
        return _propgrid.PropertyGrid_GetImageSize(*args, **kwargs)

    def GetLastItem(*args):
        """
        GetLastItem(self, int flags=PG_ITERATE_DEFAULT) -> PGProperty
        GetLastItem(self, int flags=PG_ITERATE_DEFAULT) -> PGProperty
        """
        return _propgrid.PropertyGrid_GetLastItem(*args)

    def GetLineColour(*args, **kwargs):
        """GetLineColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetLineColour(*args, **kwargs)

    def GetMarginColour(*args, **kwargs):
        """GetMarginColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetMarginColour(*args, **kwargs)

    def GetMarginWidth(*args, **kwargs):
        """GetMarginWidth(self) -> int"""
        return _propgrid.PropertyGrid_GetMarginWidth(*args, **kwargs)

    def GetUncommittedPropertyValue(*args, **kwargs):
        """GetUncommittedPropertyValue(self) -> wxVariant"""
        return _propgrid.PropertyGrid_GetUncommittedPropertyValue(*args, **kwargs)

    def GetRoot(*args, **kwargs):
        """GetRoot(self) -> PGProperty"""
        return _propgrid.PropertyGrid_GetRoot(*args, **kwargs)

    def GetRowHeight(*args, **kwargs):
        """GetRowHeight(self) -> int"""
        return _propgrid.PropertyGrid_GetRowHeight(*args, **kwargs)

    def GetSelectedProperty(*args, **kwargs):
        """GetSelectedProperty(self) -> PGProperty"""
        return _propgrid.PropertyGrid_GetSelectedProperty(*args, **kwargs)

    def GetSelectionBackgroundColour(*args, **kwargs):
        """GetSelectionBackgroundColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetSelectionBackgroundColour(*args, **kwargs)

    def GetSelectionForegroundColour(*args, **kwargs):
        """GetSelectionForegroundColour(self) -> Colour"""
        return _propgrid.PropertyGrid_GetSelectionForegroundColour(*args, **kwargs)

    def GetSplitterPosition(*args, **kwargs):
        """GetSplitterPosition(self, int splitterIndex=0) -> int"""
        return _propgrid.PropertyGrid_GetSplitterPosition(*args, **kwargs)

    def GetEditorTextCtrl(*args, **kwargs):
        """GetEditorTextCtrl(self) -> wxTextCtrl"""
        return _propgrid.PropertyGrid_GetEditorTextCtrl(*args, **kwargs)

    def GetValidationInfo(*args, **kwargs):
        """GetValidationInfo(self) -> PGValidationInfo"""
        return _propgrid.PropertyGrid_GetValidationInfo(*args, **kwargs)

    def GetVerticalSpacing(*args, **kwargs):
        """GetVerticalSpacing(self) -> int"""
        return _propgrid.PropertyGrid_GetVerticalSpacing(*args, **kwargs)

    def IsEditorFocused(*args, **kwargs):
        """IsEditorFocused(self) -> bool"""
        return _propgrid.PropertyGrid_IsEditorFocused(*args, **kwargs)

    def IsEditorsValueModified(*args, **kwargs):
        """IsEditorsValueModified(self) -> bool"""
        return _propgrid.PropertyGrid_IsEditorsValueModified(*args, **kwargs)

    def HitTest(*args, **kwargs):
        """
        HitTest(self, Point pt) -> PropertyGridHitTestResult

        Test where the given (in client coords) point lies
        """
        return _propgrid.PropertyGrid_HitTest(*args, **kwargs)

    def IsAnyModified(*args, **kwargs):
        """IsAnyModified(self) -> bool"""
        return _propgrid.PropertyGrid_IsAnyModified(*args, **kwargs)

    def IsFrozen(*args, **kwargs):
        """
        IsFrozen(self) -> bool

        Returns ``True`` if the window has been frozen and not thawed yet.

        :see: `Freeze` and `Thaw`
        """
        return _propgrid.PropertyGrid_IsFrozen(*args, **kwargs)

    def OnTLPChanging(*args, **kwargs):
        """OnTLPChanging(self, Window newTLP)"""
        return _propgrid.PropertyGrid_OnTLPChanging(*args, **kwargs)

    def ResetColours(*args, **kwargs):
        """ResetColours(self)"""
        return _propgrid.PropertyGrid_ResetColours(*args, **kwargs)

    def ResetColumnSizes(*args, **kwargs):
        """ResetColumnSizes(self, bool enableAutoResizing=False)"""
        return _propgrid.PropertyGrid_ResetColumnSizes(*args, **kwargs)

    def SelectProperty(*args, **kwargs):
        """SelectProperty(self, PGPropArg id, bool focus=False) -> bool"""
        return _propgrid.PropertyGrid_SelectProperty(*args, **kwargs)

    def SetSelection(*args, **kwargs):
        """SetSelection(self, wxArrayPGProperty newSelection)"""
        return _propgrid.PropertyGrid_SetSelection(*args, **kwargs)

    def AddToSelection(*args, **kwargs):
        """AddToSelection(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGrid_AddToSelection(*args, **kwargs)

    def RemoveFromSelection(*args, **kwargs):
        """RemoveFromSelection(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGrid_RemoveFromSelection(*args, **kwargs)

    def MakeColumnEditable(*args, **kwargs):
        """MakeColumnEditable(self, int column, bool editable=True)"""
        return _propgrid.PropertyGrid_MakeColumnEditable(*args, **kwargs)

    def BeginLabelEdit(*args, **kwargs):
        """BeginLabelEdit(self, int column=0)"""
        return _propgrid.PropertyGrid_BeginLabelEdit(*args, **kwargs)

    def EndLabelEdit(*args, **kwargs):
        """EndLabelEdit(self, bool commit=True)"""
        return _propgrid.PropertyGrid_EndLabelEdit(*args, **kwargs)

    def GetLabelEditor(*args, **kwargs):
        """GetLabelEditor(self) -> wxTextCtrl"""
        return _propgrid.PropertyGrid_GetLabelEditor(*args, **kwargs)

    def SetCaptionBackgroundColour(*args, **kwargs):
        """SetCaptionBackgroundColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetCaptionBackgroundColour(*args, **kwargs)

    def SetCaptionTextColour(*args, **kwargs):
        """SetCaptionTextColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetCaptionTextColour(*args, **kwargs)

    def SetCellBackgroundColour(*args, **kwargs):
        """SetCellBackgroundColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetCellBackgroundColour(*args, **kwargs)

    def SetCellDisabledTextColour(*args, **kwargs):
        """SetCellDisabledTextColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetCellDisabledTextColour(*args, **kwargs)

    def SetCellTextColour(*args, **kwargs):
        """SetCellTextColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetCellTextColour(*args, **kwargs)

    def SetColumnCount(*args, **kwargs):
        """SetColumnCount(self, int colCount)"""
        return _propgrid.PropertyGrid_SetColumnCount(*args, **kwargs)

    def SetCurrentCategory(*args, **kwargs):
        """SetCurrentCategory(self, PGPropArg id)"""
        return _propgrid.PropertyGrid_SetCurrentCategory(*args, **kwargs)

    def SetEmptySpaceColour(*args, **kwargs):
        """SetEmptySpaceColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetEmptySpaceColour(*args, **kwargs)

    def SetLineColour(*args, **kwargs):
        """SetLineColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetLineColour(*args, **kwargs)

    def SetMarginColour(*args, **kwargs):
        """SetMarginColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetMarginColour(*args, **kwargs)

    def SetSelectionBackgroundColour(*args, **kwargs):
        """SetSelectionBackgroundColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetSelectionBackgroundColour(*args, **kwargs)

    def SetSelectionTextColour(*args, **kwargs):
        """SetSelectionTextColour(self, Colour col)"""
        return _propgrid.PropertyGrid_SetSelectionTextColour(*args, **kwargs)

    def SetSplitterPosition(*args, **kwargs):
        """SetSplitterPosition(self, int newXPos, int col=0)"""
        return _propgrid.PropertyGrid_SetSplitterPosition(*args, **kwargs)

    def SetSortFunction(*args, **kwargs):
        """SetSortFunction(self, PGSortCallback sortFunction)"""
        return _propgrid.PropertyGrid_SetSortFunction(*args, **kwargs)

    def GetSortFunction(*args, **kwargs):
        """GetSortFunction(self) -> PGSortCallback"""
        return _propgrid.PropertyGrid_GetSortFunction(*args, **kwargs)

    def SetUnspecifiedValueAppearance(*args, **kwargs):
        """SetUnspecifiedValueAppearance(self, PGCell cell)"""
        return _propgrid.PropertyGrid_SetUnspecifiedValueAppearance(*args, **kwargs)

    def GetUnspecifiedValueAppearance(*args, **kwargs):
        """GetUnspecifiedValueAppearance(self) -> PGCell"""
        return _propgrid.PropertyGrid_GetUnspecifiedValueAppearance(*args, **kwargs)

    def GetUnspecifiedValueText(*args, **kwargs):
        """GetUnspecifiedValueText(self, int argFlags=0) -> String"""
        return _propgrid.PropertyGrid_GetUnspecifiedValueText(*args, **kwargs)

    def SetVirtualWidth(*args, **kwargs):
        """SetVirtualWidth(self, int width)"""
        return _propgrid.PropertyGrid_SetVirtualWidth(*args, **kwargs)

    def SetSplitterLeft(*args, **kwargs):
        """SetSplitterLeft(self, bool privateChildrenToo=False)"""
        return _propgrid.PropertyGrid_SetSplitterLeft(*args, **kwargs)

    def SetVerticalSpacing(*args, **kwargs):
        """SetVerticalSpacing(self, int vspacing)"""
        return _propgrid.PropertyGrid_SetVerticalSpacing(*args, **kwargs)

    def ShowPropertyError(*args, **kwargs):
        """ShowPropertyError(self, PGPropArg id, String msg)"""
        return _propgrid.PropertyGrid_ShowPropertyError(*args, **kwargs)

    def HasVirtualWidth(*args, **kwargs):
        """HasVirtualWidth(self) -> bool"""
        return _propgrid.PropertyGrid_HasVirtualWidth(*args, **kwargs)

    def GetCommonValue(*args, **kwargs):
        """GetCommonValue(self, int i) -> PGCommonValue"""
        return _propgrid.PropertyGrid_GetCommonValue(*args, **kwargs)

    def GetCommonValueCount(*args, **kwargs):
        """GetCommonValueCount(self) -> int"""
        return _propgrid.PropertyGrid_GetCommonValueCount(*args, **kwargs)

    def GetCommonValueLabel(*args, **kwargs):
        """GetCommonValueLabel(self, int i) -> String"""
        return _propgrid.PropertyGrid_GetCommonValueLabel(*args, **kwargs)

    def GetUnspecifiedCommonValue(*args, **kwargs):
        """GetUnspecifiedCommonValue(self) -> int"""
        return _propgrid.PropertyGrid_GetUnspecifiedCommonValue(*args, **kwargs)

    def SetUnspecifiedCommonValue(*args, **kwargs):
        """SetUnspecifiedCommonValue(self, int index)"""
        return _propgrid.PropertyGrid_SetUnspecifiedCommonValue(*args, **kwargs)

    def GenerateEditorButton(*args, **kwargs):
        """GenerateEditorButton(self, Point pos, Size sz) -> Window"""
        return _propgrid.PropertyGrid_GenerateEditorButton(*args, **kwargs)

    def FixPosForTextCtrl(*args, **kwargs):
        """FixPosForTextCtrl(self, Window ctrl, int forColumn=1, Point offset=wxPoint(0, 0))"""
        return _propgrid.PropertyGrid_FixPosForTextCtrl(*args, **kwargs)

    def GenerateEditorTextCtrl(*args, **kwargs):
        """
        GenerateEditorTextCtrl(self, Point pos, Size sz, String value, Window secondary, 
            int extraStyle=0, int maxLen=0, int forColumn=1) -> Window
        """
        return _propgrid.PropertyGrid_GenerateEditorTextCtrl(*args, **kwargs)

    def GenerateEditorTextCtrlAndButton(*args, **kwargs):
        """
        GenerateEditorTextCtrlAndButton(self, Point pos, Size sz, Window psecondary, int limited_editing, 
            PGProperty property) -> Window
        """
        return _propgrid.PropertyGrid_GenerateEditorTextCtrlAndButton(*args, **kwargs)

    def GetGoodEditorDialogPosition(*args, **kwargs):
        """GetGoodEditorDialogPosition(self, PGProperty p, Size sz) -> Point"""
        return _propgrid.PropertyGrid_GetGoodEditorDialogPosition(*args, **kwargs)

    def ExpandEscapeSequences(*args, **kwargs):
        """ExpandEscapeSequences(String dst_str, String src_str) -> String"""
        return _propgrid.PropertyGrid_ExpandEscapeSequences(*args, **kwargs)

    ExpandEscapeSequences = staticmethod(ExpandEscapeSequences)
    def CreateEscapeSequences(*args, **kwargs):
        """CreateEscapeSequences(String dst_str, String src_str) -> String"""
        return _propgrid.PropertyGrid_CreateEscapeSequences(*args, **kwargs)

    CreateEscapeSequences = staticmethod(CreateEscapeSequences)
    def GetPropertyRect(*args, **kwargs):
        """GetPropertyRect(self, PGProperty p1, PGProperty p2) -> Rect"""
        return _propgrid.PropertyGrid_GetPropertyRect(*args, **kwargs)

    def GetEditorControl(*args, **kwargs):
        """GetEditorControl(self) -> Window"""
        return _propgrid.PropertyGrid_GetEditorControl(*args, **kwargs)

    def GetPrimaryEditor(*args, **kwargs):
        """GetPrimaryEditor(self) -> Window"""
        return _propgrid.PropertyGrid_GetPrimaryEditor(*args, **kwargs)

    def GetEditorControlSecondary(*args, **kwargs):
        """GetEditorControlSecondary(self) -> Window"""
        return _propgrid.PropertyGrid_GetEditorControlSecondary(*args, **kwargs)

    def RefreshEditor(*args, **kwargs):
        """RefreshEditor(self)"""
        return _propgrid.PropertyGrid_RefreshEditor(*args, **kwargs)

    def HandleCustomEditorEvent(*args, **kwargs):
        """HandleCustomEditorEvent(self, Event event) -> bool"""
        return _propgrid.PropertyGrid_HandleCustomEditorEvent(*args, **kwargs)

    def GetInternalFlags(*args, **kwargs):
        """GetInternalFlags(self) -> long"""
        return _propgrid.PropertyGrid_GetInternalFlags(*args, **kwargs)

    def HasInternalFlag(*args, **kwargs):
        """HasInternalFlag(self, long flag) -> bool"""
        return _propgrid.PropertyGrid_HasInternalFlag(*args, **kwargs)

    def SetInternalFlag(*args, **kwargs):
        """SetInternalFlag(self, long flag)"""
        return _propgrid.PropertyGrid_SetInternalFlag(*args, **kwargs)

    def ClearInternalFlag(*args, **kwargs):
        """ClearInternalFlag(self, long flag)"""
        return _propgrid.PropertyGrid_ClearInternalFlag(*args, **kwargs)

    def DoubleToString(*args, **kwargs):
        """
        DoubleToString(String target, double value, int precision, bool removeZeroes, 
            String precTemplate=None) -> String
        """
        return _propgrid.PropertyGrid_DoubleToString(*args, **kwargs)

    DoubleToString = staticmethod(DoubleToString)
    def ValueChangeInEvent(*args, **kwargs):
        """ValueChangeInEvent(self, wxVariant variant)"""
        return _propgrid.PropertyGrid_ValueChangeInEvent(*args, **kwargs)

    def WasValueChangedInEvent(*args, **kwargs):
        """WasValueChangedInEvent(self) -> bool"""
        return _propgrid.PropertyGrid_WasValueChangedInEvent(*args, **kwargs)

    def IsMainButtonEvent(*args, **kwargs):
        """IsMainButtonEvent(self, Event event) -> bool"""
        return _propgrid.PropertyGrid_IsMainButtonEvent(*args, **kwargs)

    def DoHidePropertyError(*args, **kwargs):
        """DoHidePropertyError(self, PGProperty property)"""
        return _propgrid.PropertyGrid_DoHidePropertyError(*args, **kwargs)

    def GetSpacingY(*args, **kwargs):
        """GetSpacingY(self) -> int"""
        return _propgrid.PropertyGrid_GetSpacingY(*args, **kwargs)

    def SetupTextCtrlValue(*args, **kwargs):
        """SetupTextCtrlValue(self, String text)"""
        return _propgrid.PropertyGrid_SetupTextCtrlValue(*args, **kwargs)

    def UnfocusEditor(*args, **kwargs):
        """UnfocusEditor(self) -> bool"""
        return _propgrid.PropertyGrid_UnfocusEditor(*args, **kwargs)

    def GetPropertyDefaultCell(*args, **kwargs):
        """GetPropertyDefaultCell(self) -> PGCell"""
        return _propgrid.PropertyGrid_GetPropertyDefaultCell(*args, **kwargs)

    def GetCategoryDefaultCell(*args, **kwargs):
        """GetCategoryDefaultCell(self) -> PGCell"""
        return _propgrid.PropertyGrid_GetCategoryDefaultCell(*args, **kwargs)

    def GetItemAtY(*args, **kwargs):
        """GetItemAtY(self, int y) -> PGProperty"""
        return _propgrid.PropertyGrid_GetItemAtY(*args, **kwargs)

_propgrid.PropertyGrid_swigregister(PropertyGrid)

def PropertyGrid_AutoGetTranslation(*args, **kwargs):
  """PropertyGrid_AutoGetTranslation(bool enable)"""
  return _propgrid.PropertyGrid_AutoGetTranslation(*args, **kwargs)

def PropertyGrid_ExpandEscapeSequences(*args, **kwargs):
  """PropertyGrid_ExpandEscapeSequences(String dst_str, String src_str) -> String"""
  return _propgrid.PropertyGrid_ExpandEscapeSequences(*args, **kwargs)

def PropertyGrid_CreateEscapeSequences(*args, **kwargs):
  """PropertyGrid_CreateEscapeSequences(String dst_str, String src_str) -> String"""
  return _propgrid.PropertyGrid_CreateEscapeSequences(*args, **kwargs)

def PropertyGrid_DoubleToString(*args, **kwargs):
  """
    PropertyGrid_DoubleToString(String target, double value, int precision, bool removeZeroes, 
        String precTemplate=None) -> String
    """
  return _propgrid.PropertyGrid_DoubleToString(*args, **kwargs)

PG_BASE_EVT_PRE_ID = _propgrid.PG_BASE_EVT_PRE_ID
wxEVT_PG_SELECTED = _propgrid.wxEVT_PG_SELECTED
wxEVT_PG_CHANGING = _propgrid.wxEVT_PG_CHANGING
wxEVT_PG_CHANGED = _propgrid.wxEVT_PG_CHANGED
wxEVT_PG_HIGHLIGHTED = _propgrid.wxEVT_PG_HIGHLIGHTED
wxEVT_PG_RIGHT_CLICK = _propgrid.wxEVT_PG_RIGHT_CLICK
wxEVT_PG_PAGE_CHANGED = _propgrid.wxEVT_PG_PAGE_CHANGED
wxEVT_PG_ITEM_COLLAPSED = _propgrid.wxEVT_PG_ITEM_COLLAPSED
wxEVT_PG_ITEM_EXPANDED = _propgrid.wxEVT_PG_ITEM_EXPANDED
wxEVT_PG_DOUBLE_CLICK = _propgrid.wxEVT_PG_DOUBLE_CLICK
wxEVT_PG_LABEL_EDIT_BEGIN = _propgrid.wxEVT_PG_LABEL_EDIT_BEGIN
wxEVT_PG_LABEL_EDIT_ENDING = _propgrid.wxEVT_PG_LABEL_EDIT_ENDING
wxEVT_PG_COL_BEGIN_DRAG = _propgrid.wxEVT_PG_COL_BEGIN_DRAG
wxEVT_PG_COL_DRAGGING = _propgrid.wxEVT_PG_COL_DRAGGING
wxEVT_PG_COL_END_DRAG = _propgrid.wxEVT_PG_COL_END_DRAG
class PropertyGridEvent(_core.CommandEvent):
    """Proxy of C++ PropertyGridEvent class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self, EventType commandType=0, int id=0) -> PropertyGridEvent"""
        _propgrid.PropertyGridEvent_swiginit(self,_propgrid.new_PropertyGridEvent(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PropertyGridEvent
    __del__ = lambda self : None;
    def GetColumn(*args, **kwargs):
        """GetColumn(self) -> int"""
        return _propgrid.PropertyGridEvent_GetColumn(*args, **kwargs)

    def GetMainParent(*args, **kwargs):
        """GetMainParent(self) -> PGProperty"""
        return _propgrid.PropertyGridEvent_GetMainParent(*args, **kwargs)

    def GetProperty(*args, **kwargs):
        """GetProperty(self) -> PGProperty"""
        return _propgrid.PropertyGridEvent_GetProperty(*args, **kwargs)

    def GetValidationInfo(*args, **kwargs):
        """GetValidationInfo(self) -> PGValidationInfo"""
        return _propgrid.PropertyGridEvent_GetValidationInfo(*args, **kwargs)

    def CanVeto(*args, **kwargs):
        """CanVeto(self) -> bool"""
        return _propgrid.PropertyGridEvent_CanVeto(*args, **kwargs)

    def Veto(*args, **kwargs):
        """Veto(self, bool veto=True)"""
        return _propgrid.PropertyGridEvent_Veto(*args, **kwargs)

    def GetPropertyName(*args, **kwargs):
        """GetPropertyName(self) -> String"""
        return _propgrid.PropertyGridEvent_GetPropertyName(*args, **kwargs)

    def GetPropertyValue(*args, **kwargs):
        """GetPropertyValue(self) -> wxVariant"""
        return _propgrid.PropertyGridEvent_GetPropertyValue(*args, **kwargs)

    def GetValue(*args, **kwargs):
        """GetValue(self) -> wxVariant"""
        return _propgrid.PropertyGridEvent_GetValue(*args, **kwargs)

    def SetValidationFailureBehavior(*args, **kwargs):
        """SetValidationFailureBehavior(self, char flags)"""
        return _propgrid.PropertyGridEvent_SetValidationFailureBehavior(*args, **kwargs)

    def SetValidationFailureMessage(*args, **kwargs):
        """SetValidationFailureMessage(self, String message)"""
        return _propgrid.PropertyGridEvent_SetValidationFailureMessage(*args, **kwargs)

    def SetColumn(*args, **kwargs):
        """SetColumn(self, int column)"""
        return _propgrid.PropertyGridEvent_SetColumn(*args, **kwargs)

    def SetCanVeto(*args, **kwargs):
        """SetCanVeto(self, bool canVeto)"""
        return _propgrid.PropertyGridEvent_SetCanVeto(*args, **kwargs)

    def WasVetoed(*args, **kwargs):
        """WasVetoed(self) -> bool"""
        return _propgrid.PropertyGridEvent_WasVetoed(*args, **kwargs)

    def SetProperty(*args, **kwargs):
        """SetProperty(self, PGProperty p)"""
        return _propgrid.PropertyGridEvent_SetProperty(*args, **kwargs)

_propgrid.PropertyGridEvent_swigregister(PropertyGridEvent)

class PropertyGridPopulator(object):
    """Proxy of C++ PropertyGridPopulator class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PropertyGridPopulator
    __del__ = lambda self : None;
    def SetState(*args, **kwargs):
        """SetState(self,  state)"""
        return _propgrid.PropertyGridPopulator_SetState(*args, **kwargs)

    def SetGrid(*args, **kwargs):
        """SetGrid(self, PropertyGrid pg)"""
        return _propgrid.PropertyGridPopulator_SetGrid(*args, **kwargs)

    def Add(*args, **kwargs):
        """
        Add(self, String propClass, String propLabel, String propName, 
            String propValue, PGChoices pChoices=None) -> PGProperty
        """
        return _propgrid.PropertyGridPopulator_Add(*args, **kwargs)

    def AddChildren(*args, **kwargs):
        """AddChildren(self, PGProperty property)"""
        return _propgrid.PropertyGridPopulator_AddChildren(*args, **kwargs)

    def AddAttribute(*args, **kwargs):
        """AddAttribute(self, String name, String type, String value) -> bool"""
        return _propgrid.PropertyGridPopulator_AddAttribute(*args, **kwargs)

    def DoScanForChildren(*args, **kwargs):
        """DoScanForChildren(self)"""
        return _propgrid.PropertyGridPopulator_DoScanForChildren(*args, **kwargs)

    def GetCurParent(*args, **kwargs):
        """GetCurParent(self) -> PGProperty"""
        return _propgrid.PropertyGridPopulator_GetCurParent(*args, **kwargs)

    def GetState(*args):
        """
        GetState(self)
        GetState(self)
        """
        return _propgrid.PropertyGridPopulator_GetState(*args)

    def ToLongPCT(*args, **kwargs):
        """ToLongPCT(String s, long pval, long max) -> bool"""
        return _propgrid.PropertyGridPopulator_ToLongPCT(*args, **kwargs)

    ToLongPCT = staticmethod(ToLongPCT)
    def ParseChoices(*args, **kwargs):
        """ParseChoices(self, String choicesString, String idString) -> PGChoices"""
        return _propgrid.PropertyGridPopulator_ParseChoices(*args, **kwargs)

    def ProcessError(*args, **kwargs):
        """ProcessError(self, String msg)"""
        return _propgrid.PropertyGridPopulator_ProcessError(*args, **kwargs)

_propgrid.PropertyGridPopulator_swigregister(PropertyGridPopulator)

def PropertyGridPopulator_ToLongPCT(*args, **kwargs):
  """PropertyGridPopulator_ToLongPCT(String s, long pval, long max) -> bool"""
  return _propgrid.PropertyGridPopulator_ToLongPCT(*args, **kwargs)

class PGWindowList(object):
    """Proxy of C++ PGWindowList class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGWindowList"""
        _propgrid.PGWindowList_swiginit(self,_propgrid.new_PGWindowList(*args, **kwargs))
    def SetSecondary(*args, **kwargs):
        """SetSecondary(self, Window secondary)"""
        return _propgrid.PGWindowList_SetSecondary(*args, **kwargs)

    m_primary = property(_propgrid.PGWindowList_m_primary_get, _propgrid.PGWindowList_m_primary_set)
    m_secondary = property(_propgrid.PGWindowList_m_secondary_get, _propgrid.PGWindowList_m_secondary_set)
_propgrid.PGWindowList_swigregister(PGWindowList)

class PGEditor(_core.Object):
    """Proxy of C++ PGEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PGEditor
    __del__ = lambda self : None;
    def GetName(*args, **kwargs):
        """GetName(self) -> String"""
        return _propgrid.PGEditor_GetName(*args, **kwargs)

    def CreateControls(*args, **kwargs):
        """
        CreateControls(self, PropertyGrid propgrid, PGProperty property, Point pos, 
            Size size) -> PGWindowList
        """
        return _propgrid.PGEditor_CreateControls(*args, **kwargs)

    def UpdateControl(*args, **kwargs):
        """UpdateControl(self, PGProperty property, Window ctrl)"""
        return _propgrid.PGEditor_UpdateControl(*args, **kwargs)

    def DrawValue(*args, **kwargs):
        """DrawValue(self, DC dc, Rect rect, PGProperty property, String text)"""
        return _propgrid.PGEditor_DrawValue(*args, **kwargs)

    def OnEvent(*args, **kwargs):
        """
        OnEvent(self, PropertyGrid propgrid, PGProperty property, Window wnd_primary, 
            Event event) -> bool
        """
        return _propgrid.PGEditor_OnEvent(*args, **kwargs)

    def SetControlAppearance(*args, **kwargs):
        """
        SetControlAppearance(self, PropertyGrid pg, PGProperty property, Window ctrl, 
            PGCell appearance, PGCell oldAppearance, bool unspecified)
        """
        return _propgrid.PGEditor_SetControlAppearance(*args, **kwargs)

    def SetValueToUnspecified(*args, **kwargs):
        """SetValueToUnspecified(self, PGProperty property, Window ctrl)"""
        return _propgrid.PGEditor_SetValueToUnspecified(*args, **kwargs)

    def SetControlStringValue(*args, **kwargs):
        """SetControlStringValue(self, PGProperty property, Window ctrl, String txt)"""
        return _propgrid.PGEditor_SetControlStringValue(*args, **kwargs)

    def SetControlIntValue(*args, **kwargs):
        """SetControlIntValue(self, PGProperty property, Window ctrl, int value)"""
        return _propgrid.PGEditor_SetControlIntValue(*args, **kwargs)

    def InsertItem(*args, **kwargs):
        """InsertItem(self, Window ctrl, String label, int index) -> int"""
        return _propgrid.PGEditor_InsertItem(*args, **kwargs)

    def DeleteItem(*args, **kwargs):
        """DeleteItem(self, Window ctrl, int index)"""
        return _propgrid.PGEditor_DeleteItem(*args, **kwargs)

    def OnFocus(*args, **kwargs):
        """OnFocus(self, PGProperty property, Window wnd)"""
        return _propgrid.PGEditor_OnFocus(*args, **kwargs)

    def CanContainCustomImage(*args, **kwargs):
        """CanContainCustomImage(self) -> bool"""
        return _propgrid.PGEditor_CanContainCustomImage(*args, **kwargs)

    m_clientData = property(_propgrid.PGEditor_m_clientData_get, _propgrid.PGEditor_m_clientData_set)
_propgrid.PGEditor_swigregister(PGEditor)

class PGTextCtrlEditor(PGEditor):
    """Proxy of C++ PGTextCtrlEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGTextCtrlEditor"""
        _propgrid.PGTextCtrlEditor_swiginit(self,_propgrid.new_PGTextCtrlEditor(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGTextCtrlEditor
    __del__ = lambda self : None;
    def OnTextCtrlEvent(*args, **kwargs):
        """
        OnTextCtrlEvent(PropertyGrid propgrid, PGProperty property, Window ctrl, 
            Event event) -> bool
        """
        return _propgrid.PGTextCtrlEditor_OnTextCtrlEvent(*args, **kwargs)

    OnTextCtrlEvent = staticmethod(OnTextCtrlEvent)
    def GetTextCtrlValueFromControl(*args, **kwargs):
        """GetTextCtrlValueFromControl(wxVariant variant, PGProperty property, Window ctrl) -> bool"""
        return _propgrid.PGTextCtrlEditor_GetTextCtrlValueFromControl(*args, **kwargs)

    GetTextCtrlValueFromControl = staticmethod(GetTextCtrlValueFromControl)
_propgrid.PGTextCtrlEditor_swigregister(PGTextCtrlEditor)

def PGTextCtrlEditor_OnTextCtrlEvent(*args, **kwargs):
  """
    PGTextCtrlEditor_OnTextCtrlEvent(PropertyGrid propgrid, PGProperty property, Window ctrl, 
        Event event) -> bool
    """
  return _propgrid.PGTextCtrlEditor_OnTextCtrlEvent(*args, **kwargs)

def PGTextCtrlEditor_GetTextCtrlValueFromControl(*args, **kwargs):
  """PGTextCtrlEditor_GetTextCtrlValueFromControl(wxVariant variant, PGProperty property, Window ctrl) -> bool"""
  return _propgrid.PGTextCtrlEditor_GetTextCtrlValueFromControl(*args, **kwargs)

class PGChoiceEditor(PGEditor):
    """Proxy of C++ PGChoiceEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGChoiceEditor"""
        _propgrid.PGChoiceEditor_swiginit(self,_propgrid.new_PGChoiceEditor(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGChoiceEditor
    __del__ = lambda self : None;
    def CreateControlsBase(*args, **kwargs):
        """
        CreateControlsBase(self, PropertyGrid propgrid, PGProperty property, Point pos, 
            Size sz, long extraStyle) -> Window
        """
        return _propgrid.PGChoiceEditor_CreateControlsBase(*args, **kwargs)

_propgrid.PGChoiceEditor_swigregister(PGChoiceEditor)

class PGComboBoxEditor(PGChoiceEditor):
    """Proxy of C++ PGComboBoxEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGComboBoxEditor"""
        _propgrid.PGComboBoxEditor_swiginit(self,_propgrid.new_PGComboBoxEditor(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGComboBoxEditor
    __del__ = lambda self : None;
_propgrid.PGComboBoxEditor_swigregister(PGComboBoxEditor)

class PGEditorDialogAdapter(_core.Object):
    """Proxy of C++ PGEditorDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PGEditorDialogAdapter
    __del__ = lambda self : None;
    def ShowDialog(*args, **kwargs):
        """ShowDialog(self, PropertyGrid propGrid, PGProperty property) -> bool"""
        return _propgrid.PGEditorDialogAdapter_ShowDialog(*args, **kwargs)

    def DoShowDialog(*args, **kwargs):
        """DoShowDialog(self, PropertyGrid propGrid, PGProperty property) -> bool"""
        return _propgrid.PGEditorDialogAdapter_DoShowDialog(*args, **kwargs)

    def SetValue(*args, **kwargs):
        """SetValue(self, wxVariant value)"""
        return _propgrid.PGEditorDialogAdapter_SetValue(*args, **kwargs)

    def GetValue(*args, **kwargs):
        """GetValue(self) -> wxVariant"""
        return _propgrid.PGEditorDialogAdapter_GetValue(*args, **kwargs)

    m_clientData = property(_propgrid.PGEditorDialogAdapter_m_clientData_get, _propgrid.PGEditorDialogAdapter_m_clientData_set)
_propgrid.PGEditorDialogAdapter_swigregister(PGEditorDialogAdapter)

class PGMultiButton(_core.Window):
    """Proxy of C++ PGMultiButton class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self, PropertyGrid pg, Size sz) -> PGMultiButton"""
        _propgrid.PGMultiButton_swiginit(self,_propgrid.new_PGMultiButton(*args, **kwargs))
        
        self._setOORInfo(self)
    

    __swig_destroy__ = _propgrid.delete_PGMultiButton
    __del__ = lambda self : None;
    def GetButton(*args):
        """
        GetButton(self, int i) -> Window
        GetButton(self, int i) -> Window
        """
        return _propgrid.PGMultiButton_GetButton(*args)

    def GetButtonId(*args, **kwargs):
        """GetButtonId(self, int i) -> int"""
        return _propgrid.PGMultiButton_GetButtonId(*args, **kwargs)

    def GetCount(*args, **kwargs):
        """GetCount(self) -> int"""
        return _propgrid.PGMultiButton_GetCount(*args, **kwargs)

    def Add(*args, **kwargs):
        """Add(self, String label, int id=-2)"""
        return _propgrid.PGMultiButton_Add(*args, **kwargs)

    def GetPrimarySize(*args, **kwargs):
        """GetPrimarySize(self) -> Size"""
        return _propgrid.PGMultiButton_GetPrimarySize(*args, **kwargs)

    def Finalize(*args, **kwargs):
        """Finalize(self, PropertyGrid propGrid, Point pos)"""
        return _propgrid.PGMultiButton_Finalize(*args, **kwargs)

    def AddBitmapButton(*args, **kwargs):
        """AddBitmapButton(self, Bitmap bitmap, int id=-2)"""
        return _propgrid.PGMultiButton_AddBitmapButton(*args, **kwargs)

    def AddButton(self, *args, **kwargs):
        return self.Add(*args, **kwargs)

_propgrid.PGMultiButton_swigregister(PGMultiButton)

class StringProperty(PGProperty):
    """Proxy of C++ StringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> StringProperty
        """
        _propgrid.StringProperty_swiginit(self,_propgrid.new_StringProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_StringProperty
    __del__ = lambda self : None;
_propgrid.StringProperty_swigregister(StringProperty)

PG_PROPERTY_VALIDATION_ERROR_MESSAGE = _propgrid.PG_PROPERTY_VALIDATION_ERROR_MESSAGE
PG_PROPERTY_VALIDATION_SATURATE = _propgrid.PG_PROPERTY_VALIDATION_SATURATE
PG_PROPERTY_VALIDATION_WRAP = _propgrid.PG_PROPERTY_VALIDATION_WRAP
class NumericPropertyValidator(object):
    """Proxy of C++ NumericPropertyValidator class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    Signed = _propgrid.NumericPropertyValidator_Signed
    Unsigned = _propgrid.NumericPropertyValidator_Unsigned
    Float = _propgrid.NumericPropertyValidator_Float
    def __init__(self, *args, **kwargs): 
        """__init__(self, int numericType, int base=10) -> NumericPropertyValidator"""
        _propgrid.NumericPropertyValidator_swiginit(self,_propgrid.new_NumericPropertyValidator(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_NumericPropertyValidator
    __del__ = lambda self : None;
    def Validate(*args, **kwargs):
        """Validate(self, Window parent) -> bool"""
        return _propgrid.NumericPropertyValidator_Validate(*args, **kwargs)

_propgrid.NumericPropertyValidator_swigregister(NumericPropertyValidator)

class IntProperty(PGProperty):
    """Proxy of C++ IntProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_IntProperty
    __del__ = lambda self : None;
    def __init__(self, *args): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            long value=0) -> IntProperty
        __init__(self, String label, String name, wxLongLong value) -> IntProperty
        """
        _propgrid.IntProperty_swiginit(self,_propgrid.new_IntProperty(*args))
    def GetClassValidator(*args, **kwargs):
        """GetClassValidator() -> Validator"""
        return _propgrid.IntProperty_GetClassValidator(*args, **kwargs)

    GetClassValidator = staticmethod(GetClassValidator)
    def DoValidation(*args, **kwargs):
        """
        DoValidation(PGProperty property, wxLongLong_t value, PGValidationInfo pValidationInfo, 
            int mode=PG_PROPERTY_VALIDATION_ERROR_MESSAGE) -> bool
        """
        return _propgrid.IntProperty_DoValidation(*args, **kwargs)

    DoValidation = staticmethod(DoValidation)
_propgrid.IntProperty_swigregister(IntProperty)

def IntProperty_GetClassValidator(*args):
  """IntProperty_GetClassValidator() -> Validator"""
  return _propgrid.IntProperty_GetClassValidator(*args)

def IntProperty_DoValidation(*args, **kwargs):
  """
    IntProperty_DoValidation(PGProperty property, wxLongLong_t value, PGValidationInfo pValidationInfo, 
        int mode=PG_PROPERTY_VALIDATION_ERROR_MESSAGE) -> bool
    """
  return _propgrid.IntProperty_DoValidation(*args, **kwargs)

class UIntProperty(PGProperty):
    """Proxy of C++ UIntProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_UIntProperty
    __del__ = lambda self : None;
    def __init__(self, *args): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            long value=0) -> UIntProperty
        __init__(self, String label, String name, wxULongLong value) -> UIntProperty
        """
        _propgrid.UIntProperty_swiginit(self,_propgrid.new_UIntProperty(*args))
_propgrid.UIntProperty_swigregister(UIntProperty)

class FloatProperty(PGProperty):
    """Proxy of C++ FloatProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            double value=0.0) -> FloatProperty
        """
        _propgrid.FloatProperty_swiginit(self,_propgrid.new_FloatProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_FloatProperty
    __del__ = lambda self : None;
    def DoValidation(*args, **kwargs):
        """
        DoValidation(PGProperty property, double value, PGValidationInfo pValidationInfo, 
            int mode=PG_PROPERTY_VALIDATION_ERROR_MESSAGE) -> bool
        """
        return _propgrid.FloatProperty_DoValidation(*args, **kwargs)

    DoValidation = staticmethod(DoValidation)
    def GetClassValidator(*args, **kwargs):
        """GetClassValidator() -> Validator"""
        return _propgrid.FloatProperty_GetClassValidator(*args, **kwargs)

    GetClassValidator = staticmethod(GetClassValidator)
_propgrid.FloatProperty_swigregister(FloatProperty)

def FloatProperty_DoValidation(*args, **kwargs):
  """
    FloatProperty_DoValidation(PGProperty property, double value, PGValidationInfo pValidationInfo, 
        int mode=PG_PROPERTY_VALIDATION_ERROR_MESSAGE) -> bool
    """
  return _propgrid.FloatProperty_DoValidation(*args, **kwargs)

def FloatProperty_GetClassValidator(*args):
  """FloatProperty_GetClassValidator() -> Validator"""
  return _propgrid.FloatProperty_GetClassValidator(*args)

class EnumProperty(PGProperty):
    """Proxy of C++ EnumProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            int value=0) -> EnumProperty
        """
        _propgrid.EnumProperty_swiginit(self,_propgrid.new_EnumProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_EnumProperty
    __del__ = lambda self : None;
    def GetItemCount(*args, **kwargs):
        """GetItemCount(self) -> size_t"""
        return _propgrid.EnumProperty_GetItemCount(*args, **kwargs)

    def GetIndexForValue(*args, **kwargs):
        """GetIndexForValue(self, int value) -> int"""
        return _propgrid.EnumProperty_GetIndexForValue(*args, **kwargs)

_propgrid.EnumProperty_swigregister(EnumProperty)

class EditEnumProperty(EnumProperty):
    """Proxy of C++ EditEnumProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, String label, String name, wxChar labels, long values, 
            String value) -> EditEnumProperty
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            String value=wxEmptyString) -> EditEnumProperty
        __init__(self, String label, String name, PGChoices choices, String value=wxEmptyString) -> EditEnumProperty
        __init__(self, String label, String name, wxChar labels, long values, 
            PGChoices choicesCache, String value) -> EditEnumProperty
        """
        _propgrid.EditEnumProperty_swiginit(self,_propgrid.new_EditEnumProperty(*args))
    __swig_destroy__ = _propgrid.delete_EditEnumProperty
    __del__ = lambda self : None;
_propgrid.EditEnumProperty_swigregister(EditEnumProperty)

class FlagsProperty(PGProperty):
    """Proxy of C++ FlagsProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            int value=0) -> FlagsProperty
        """
        _propgrid.FlagsProperty_swiginit(self,_propgrid.new_FlagsProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_FlagsProperty
    __del__ = lambda self : None;
    def GetItemCount(*args, **kwargs):
        """GetItemCount(self) -> size_t"""
        return _propgrid.FlagsProperty_GetItemCount(*args, **kwargs)

    def GetLabel(*args, **kwargs):
        """GetLabel(self, size_t ind) -> String"""
        return _propgrid.FlagsProperty_GetLabel(*args, **kwargs)

_propgrid.FlagsProperty_swigregister(FlagsProperty)

class PGFileDialogAdapter(PGEditorDialogAdapter):
    """Proxy of C++ PGFileDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
_propgrid.PGFileDialogAdapter_swigregister(PGFileDialogAdapter)

class FileProperty(PGProperty):
    """Proxy of C++ FileProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> FileProperty
        """
        _propgrid.FileProperty_swiginit(self,_propgrid.new_FileProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_FileProperty
    __del__ = lambda self : None;
    def GetClassValidator(*args, **kwargs):
        """GetClassValidator() -> Validator"""
        return _propgrid.FileProperty_GetClassValidator(*args, **kwargs)

    GetClassValidator = staticmethod(GetClassValidator)
    def GetFileName(*args, **kwargs):
        """GetFileName(self) -> wxFileName"""
        return _propgrid.FileProperty_GetFileName(*args, **kwargs)

_propgrid.FileProperty_swigregister(FileProperty)

def FileProperty_GetClassValidator(*args):
  """FileProperty_GetClassValidator() -> Validator"""
  return _propgrid.FileProperty_GetClassValidator(*args)

class PGLongStringDialogAdapter(PGEditorDialogAdapter):
    """Proxy of C++ PGLongStringDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
_propgrid.PGLongStringDialogAdapter_swigregister(PGLongStringDialogAdapter)

class LongStringProperty(PGProperty):
    """Proxy of C++ LongStringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> LongStringProperty
        """
        _propgrid.LongStringProperty_swiginit(self,_propgrid.new_LongStringProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_LongStringProperty
    __del__ = lambda self : None;
    def OnButtonClick(*args, **kwargs):
        """OnButtonClick(self, PropertyGrid propgrid, String value) -> bool"""
        return _propgrid.LongStringProperty_OnButtonClick(*args, **kwargs)

    def DisplayEditorDialog(*args, **kwargs):
        """DisplayEditorDialog(PGProperty prop, PropertyGrid propGrid, String value) -> bool"""
        return _propgrid.LongStringProperty_DisplayEditorDialog(*args, **kwargs)

    DisplayEditorDialog = staticmethod(DisplayEditorDialog)
_propgrid.LongStringProperty_swigregister(LongStringProperty)

def LongStringProperty_DisplayEditorDialog(*args, **kwargs):
  """LongStringProperty_DisplayEditorDialog(PGProperty prop, PropertyGrid propGrid, String value) -> bool"""
  return _propgrid.LongStringProperty_DisplayEditorDialog(*args, **kwargs)

class ArrayStringProperty(PGProperty):
    """Proxy of C++ ArrayStringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString value=wxArrayString()) -> ArrayStringProperty
        """
        _propgrid.ArrayStringProperty_swiginit(self,_propgrid.new_ArrayStringProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_ArrayStringProperty
    __del__ = lambda self : None;
    def ConvertArrayToString(*args, **kwargs):
        """ConvertArrayToString(self, wxArrayString arr, String pString, wxUniChar delimiter)"""
        return _propgrid.ArrayStringProperty_ConvertArrayToString(*args, **kwargs)

    def OnCustomStringEdit(*args, **kwargs):
        """OnCustomStringEdit(self, Window parent, String value) -> bool"""
        return _propgrid.ArrayStringProperty_OnCustomStringEdit(*args, **kwargs)

    def OnButtonClick(*args, **kwargs):
        """OnButtonClick(self, PropertyGrid propgrid, Window primary, wxChar cbt) -> bool"""
        return _propgrid.ArrayStringProperty_OnButtonClick(*args, **kwargs)

    Escape = _propgrid.ArrayStringProperty_Escape
    QuoteStrings = _propgrid.ArrayStringProperty_QuoteStrings
    def ArrayStringToString(*args, **kwargs):
        """
        ArrayStringToString(String dst, wxArrayString src, wxUniChar delimiter, 
            int flags)
        """
        return _propgrid.ArrayStringProperty_ArrayStringToString(*args, **kwargs)

    ArrayStringToString = staticmethod(ArrayStringToString)
_propgrid.ArrayStringProperty_swigregister(ArrayStringProperty)

def ArrayStringProperty_ArrayStringToString(*args, **kwargs):
  """
    ArrayStringProperty_ArrayStringToString(String dst, wxArrayString src, wxUniChar delimiter, 
        int flags)
    """
  return _propgrid.ArrayStringProperty_ArrayStringToString(*args, **kwargs)

class PGArrayEditorDialog(_windows.Dialog):
    """Proxy of C++ PGArrayEditorDialog class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    def __init__(self): raise AttributeError, "No constructor defined"
    __repr__ = _swig_repr
    __swig_destroy__ = _propgrid.delete_PGArrayEditorDialog
    __del__ = lambda self : None;
    def Init(*args, **kwargs):
        """Init(self)"""
        return _propgrid.PGArrayEditorDialog_Init(*args, **kwargs)

    def Create(*args, **kwargs):
        """
        Create(self, Window parent, String message, String caption, long style=(wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxOK|wxCANCEL|wxCENTRE), 
            Point pos=DefaultPosition, 
            Size sz=DefaultSize) -> bool
        """
        return _propgrid.PGArrayEditorDialog_Create(*args, **kwargs)

    def EnableCustomNewAction(*args, **kwargs):
        """EnableCustomNewAction(self)"""
        return _propgrid.PGArrayEditorDialog_EnableCustomNewAction(*args, **kwargs)

    def SetDialogValue(*args, **kwargs):
        """SetDialogValue(self, wxVariant value)"""
        return _propgrid.PGArrayEditorDialog_SetDialogValue(*args, **kwargs)

    def GetDialogValue(*args, **kwargs):
        """GetDialogValue(self) -> wxVariant"""
        return _propgrid.PGArrayEditorDialog_GetDialogValue(*args, **kwargs)

    def GetTextCtrlValidator(*args, **kwargs):
        """GetTextCtrlValidator(self) -> Validator"""
        return _propgrid.PGArrayEditorDialog_GetTextCtrlValidator(*args, **kwargs)

    def IsModified(*args, **kwargs):
        """IsModified(self) -> bool"""
        return _propgrid.PGArrayEditorDialog_IsModified(*args, **kwargs)

    def GetSelection(*args, **kwargs):
        """GetSelection(self) -> int"""
        return _propgrid.PGArrayEditorDialog_GetSelection(*args, **kwargs)

    def OnAddClick(*args, **kwargs):
        """OnAddClick(self, CommandEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnAddClick(*args, **kwargs)

    def OnDeleteClick(*args, **kwargs):
        """OnDeleteClick(self, CommandEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnDeleteClick(*args, **kwargs)

    def OnUpClick(*args, **kwargs):
        """OnUpClick(self, CommandEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnUpClick(*args, **kwargs)

    def OnDownClick(*args, **kwargs):
        """OnDownClick(self, CommandEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnDownClick(*args, **kwargs)

    def OnEndLabelEdit(*args, **kwargs):
        """OnEndLabelEdit(self, ListEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnEndLabelEdit(*args, **kwargs)

    def OnIdle(*args, **kwargs):
        """OnIdle(self, IdleEvent event)"""
        return _propgrid.PGArrayEditorDialog_OnIdle(*args, **kwargs)

_propgrid.PGArrayEditorDialog_swigregister(PGArrayEditorDialog)

class PGArrayStringEditorDialog(PGArrayEditorDialog):
    """Proxy of C++ PGArrayStringEditorDialog class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PGArrayStringEditorDialog"""
        _propgrid.PGArrayStringEditorDialog_swiginit(self,_propgrid.new_PGArrayStringEditorDialog(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PGArrayStringEditorDialog
    __del__ = lambda self : None;
    def Init(*args, **kwargs):
        """Init(self)"""
        return _propgrid.PGArrayStringEditorDialog_Init(*args, **kwargs)

    def SetCustomButton(*args, **kwargs):
        """SetCustomButton(self, String custBtText, ArrayStringProperty pcc)"""
        return _propgrid.PGArrayStringEditorDialog_SetCustomButton(*args, **kwargs)

    def OnCustomNewAction(*args, **kwargs):
        """OnCustomNewAction(self, String resString) -> bool"""
        return _propgrid.PGArrayStringEditorDialog_OnCustomNewAction(*args, **kwargs)

_propgrid.PGArrayStringEditorDialog_swigregister(PGArrayStringEditorDialog)

PG_COLOUR_WEB_BASE = _propgrid.PG_COLOUR_WEB_BASE
PG_COLOUR_CUSTOM = _propgrid.PG_COLOUR_CUSTOM
PG_COLOUR_UNSPECIFIED = _propgrid.PG_COLOUR_UNSPECIFIED
class ColourPropertyValue(_core.Object):
    """Proxy of C++ ColourPropertyValue class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    m_type = property(_propgrid.ColourPropertyValue_m_type_get, _propgrid.ColourPropertyValue_m_type_set)
    m_colour = property(_propgrid.ColourPropertyValue_m_colour_get, _propgrid.ColourPropertyValue_m_colour_set)
    __swig_destroy__ = _propgrid.delete_ColourPropertyValue
    __del__ = lambda self : None;
    def Init(*args, **kwargs):
        """Init(self, int type, Colour colour)"""
        return _propgrid.ColourPropertyValue_Init(*args, **kwargs)

    def __init__(self, *args): 
        """
        __init__(self) -> ColourPropertyValue
        __init__(self, ColourPropertyValue v) -> ColourPropertyValue
        __init__(self, Colour colour) -> ColourPropertyValue
        __init__(self, int type) -> ColourPropertyValue
        __init__(self, int type, Colour colour) -> ColourPropertyValue
        """
        _propgrid.ColourPropertyValue_swiginit(self,_propgrid.new_ColourPropertyValue(*args))
_propgrid.ColourPropertyValue_swigregister(ColourPropertyValue)

class FontProperty(PGProperty):
    """Proxy of C++ FontProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            Font value=wxFont()) -> FontProperty
        """
        _propgrid.FontProperty_swiginit(self,_propgrid.new_FontProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_FontProperty
    __del__ = lambda self : None;
_propgrid.FontProperty_swigregister(FontProperty)

class SystemColourProperty(EnumProperty):
    """Proxy of C++ SystemColourProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            ColourPropertyValue value=wxColourPropertyValue()) -> SystemColourProperty
        """
        _propgrid.SystemColourProperty_swiginit(self,_propgrid.new_SystemColourProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_SystemColourProperty
    __del__ = lambda self : None;
    def ColourToString(*args, **kwargs):
        """ColourToString(self, Colour col, int index, int argFlags=0) -> String"""
        return _propgrid.SystemColourProperty_ColourToString(*args, **kwargs)

    def GetCustomColourIndex(*args, **kwargs):
        """GetCustomColourIndex(self) -> int"""
        return _propgrid.SystemColourProperty_GetCustomColourIndex(*args, **kwargs)

    def QueryColourFromUser(*args, **kwargs):
        """QueryColourFromUser(self, wxVariant variant) -> bool"""
        return _propgrid.SystemColourProperty_QueryColourFromUser(*args, **kwargs)

    def GetColour(*args, **kwargs):
        """GetColour(self, int index) -> Colour"""
        return _propgrid.SystemColourProperty_GetColour(*args, **kwargs)

    def GetVal(*args, **kwargs):
        """GetVal(self, wxVariant pVariant=None) -> ColourPropertyValue"""
        return _propgrid.SystemColourProperty_GetVal(*args, **kwargs)

_propgrid.SystemColourProperty_swigregister(SystemColourProperty)

class ColourProperty(SystemColourProperty):
    """Proxy of C++ ColourProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            Colour value=*wxWHITE) -> ColourProperty
        """
        _propgrid.ColourProperty_swiginit(self,_propgrid.new_ColourProperty(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_ColourProperty
    __del__ = lambda self : None;
_propgrid.ColourProperty_swigregister(ColourProperty)

class PropertyGridPage(_core.EvtHandler,PropertyGridInterface,):
    """Proxy of C++ PropertyGridPage class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PropertyGridPage"""
        _propgrid.PropertyGridPage_swiginit(self,_propgrid.new_PropertyGridPage(*args, **kwargs))
    __swig_destroy__ = _propgrid.delete_PropertyGridPage
    __del__ = lambda self : None;
    def FitColumns(*args, **kwargs):
        """FitColumns(self) -> Size"""
        return _propgrid.PropertyGridPage_FitColumns(*args, **kwargs)

    def GetIndex(*args, **kwargs):
        """GetIndex(self) -> int"""
        return _propgrid.PropertyGridPage_GetIndex(*args, **kwargs)

    def GetSplitterPosition(*args, **kwargs):
        """GetSplitterPosition(self, int col=0) -> int"""
        return _propgrid.PropertyGridPage_GetSplitterPosition(*args, **kwargs)

    def GetRoot(*args, **kwargs):
        """GetRoot(self) -> PGProperty"""
        return _propgrid.PropertyGridPage_GetRoot(*args, **kwargs)

    def GetStatePtr(*args):
        """
        GetStatePtr(self)
        GetStatePtr(self)
        """
        return _propgrid.PropertyGridPage_GetStatePtr(*args)

    def GetToolId(*args, **kwargs):
        """GetToolId(self) -> int"""
        return _propgrid.PropertyGridPage_GetToolId(*args, **kwargs)

    def Init(*args, **kwargs):
        """Init(self)"""
        return _propgrid.PropertyGridPage_Init(*args, **kwargs)

    def IsHandlingAllEvents(*args, **kwargs):
        """IsHandlingAllEvents(self) -> bool"""
        return _propgrid.PropertyGridPage_IsHandlingAllEvents(*args, **kwargs)

    def OnShow(*args, **kwargs):
        """OnShow(self)"""
        return _propgrid.PropertyGridPage_OnShow(*args, **kwargs)

    def SetSplitterPosition(*args, **kwargs):
        """SetSplitterPosition(self, int splitterPos, int col=0)"""
        return _propgrid.PropertyGridPage_SetSplitterPosition(*args, **kwargs)

_propgrid.PropertyGridPage_swigregister(PropertyGridPage)

class PropertyGridManager(_windows.Panel,PropertyGridInterface):
    """Proxy of C++ PropertyGridManager class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
            Size size=DefaultSize, long style=(0), 
            String name=wxPropertyGridManagerNameStr) -> PropertyGridManager
        """
        _propgrid.PropertyGridManager_swiginit(self,_propgrid.new_PropertyGridManager(*args, **kwargs))
        
        self._setOORInfo(self)
        self.DoDefaultTypeMappings()
        self.edited_objects = {}
        self.DoDefaultValueTypeMappings()
        if not hasattr(self.__class__,'_vt2setter'):
            self.__class__._vt2setter = {}
    

    __swig_destroy__ = _propgrid.delete_PropertyGridManager
    __del__ = lambda self : None;
    def AddPage(*args, **kwargs):
        """
        AddPage(self, String label=wxEmptyString, Bitmap bmp=wxNullBitmap, 
            PropertyGridPage pageObj=None) -> PropertyGridPage
        """
        return _propgrid.PropertyGridManager_AddPage(*args, **kwargs)

    def ClearPage(*args, **kwargs):
        """ClearPage(self, int page)"""
        return _propgrid.PropertyGridManager_ClearPage(*args, **kwargs)

    def CommitChangesFromEditor(*args, **kwargs):
        """CommitChangesFromEditor(self, int flags=0) -> bool"""
        return _propgrid.PropertyGridManager_CommitChangesFromEditor(*args, **kwargs)

    def Create(*args, **kwargs):
        """
        Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, 
            Size size=DefaultSize, long style=(0), 
            String name=wxPropertyGridManagerNameStr) -> bool
        """
        return _propgrid.PropertyGridManager_Create(*args, **kwargs)

    def EnableCategories(*args, **kwargs):
        """EnableCategories(self, bool enable) -> bool"""
        return _propgrid.PropertyGridManager_EnableCategories(*args, **kwargs)

    def EnsureVisible(*args, **kwargs):
        """EnsureVisible(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridManager_EnsureVisible(*args, **kwargs)

    def GetColumnCount(*args, **kwargs):
        """GetColumnCount(self, int page=-1) -> int"""
        return _propgrid.PropertyGridManager_GetColumnCount(*args, **kwargs)

    def GetDescBoxHeight(*args, **kwargs):
        """GetDescBoxHeight(self) -> int"""
        return _propgrid.PropertyGridManager_GetDescBoxHeight(*args, **kwargs)

    def GetGrid(*args):
        """
        GetGrid(self) -> PropertyGrid
        GetGrid(self) -> PropertyGrid
        """
        return _propgrid.PropertyGridManager_GetGrid(*args)

    def GetIterator(*args):
        """
        GetIterator(self, int flags=PG_ITERATE_DEFAULT, PGProperty firstProp=None) -> PropertyGridIterator
        GetIterator(self, int flags=PG_ITERATE_DEFAULT, PGProperty firstProp=None) -> PropertyGridConstIterator
        GetIterator(self, int flags, int startPos) -> PropertyGridIterator
        GetIterator(self, int flags, int startPos) -> PropertyGridConstIterator
        """
        return _propgrid.PropertyGridManager_GetIterator(*args)

    def GetCurrentPage(*args, **kwargs):
        """GetCurrentPage(self) -> PropertyGridPage"""
        return _propgrid.PropertyGridManager_GetCurrentPage(*args, **kwargs)

    def GetPage(*args):
        """
        GetPage(self, int ind) -> PropertyGridPage
        GetPage(self, String name) -> PropertyGridPage
        """
        return _propgrid.PropertyGridManager_GetPage(*args)

    def GetPageByName(*args, **kwargs):
        """GetPageByName(self, String name) -> int"""
        return _propgrid.PropertyGridManager_GetPageByName(*args, **kwargs)

    def GetPageByState(*args, **kwargs):
        """GetPageByState(self,  pstate) -> int"""
        return _propgrid.PropertyGridManager_GetPageByState(*args, **kwargs)

    def GetPageCount(*args, **kwargs):
        """GetPageCount(self) -> size_t"""
        return _propgrid.PropertyGridManager_GetPageCount(*args, **kwargs)

    def GetPageName(*args, **kwargs):
        """GetPageName(self, int index) -> String"""
        return _propgrid.PropertyGridManager_GetPageName(*args, **kwargs)

    def GetPageRoot(*args, **kwargs):
        """GetPageRoot(self, int index) -> PGProperty"""
        return _propgrid.PropertyGridManager_GetPageRoot(*args, **kwargs)

    def GetSelectedPage(*args, **kwargs):
        """GetSelectedPage(self) -> int"""
        return _propgrid.PropertyGridManager_GetSelectedPage(*args, **kwargs)

    def GetSelectedProperty(*args, **kwargs):
        """GetSelectedProperty(self) -> PGProperty"""
        return _propgrid.PropertyGridManager_GetSelectedProperty(*args, **kwargs)

    def GetSelection(*args, **kwargs):
        """GetSelection(self) -> PGProperty"""
        return _propgrid.PropertyGridManager_GetSelection(*args, **kwargs)

    def GetToolBar(*args, **kwargs):
        """GetToolBar(self) -> wxToolBar"""
        return _propgrid.PropertyGridManager_GetToolBar(*args, **kwargs)

    def InsertPage(*args, **kwargs):
        """InsertPage(self, int index, String label, Bitmap bmp=wxNullBitmap, PropertyGridPage pageObj=None) -> PropertyGridPage"""
        return _propgrid.PropertyGridManager_InsertPage(*args, **kwargs)

    def IsAnyModified(*args, **kwargs):
        """IsAnyModified(self) -> bool"""
        return _propgrid.PropertyGridManager_IsAnyModified(*args, **kwargs)

    def IsFrozen(*args, **kwargs):
        """
        IsFrozen(self) -> bool

        Returns ``True`` if the window has been frozen and not thawed yet.

        :see: `Freeze` and `Thaw`
        """
        return _propgrid.PropertyGridManager_IsFrozen(*args, **kwargs)

    def IsPageModified(*args, **kwargs):
        """IsPageModified(self, size_t index) -> bool"""
        return _propgrid.PropertyGridManager_IsPageModified(*args, **kwargs)

    def IsPropertySelected(*args, **kwargs):
        """IsPropertySelected(self, PGPropArg id) -> bool"""
        return _propgrid.PropertyGridManager_IsPropertySelected(*args, **kwargs)

    def RemovePage(*args, **kwargs):
        """RemovePage(self, int page) -> bool"""
        return _propgrid.PropertyGridManager_RemovePage(*args, **kwargs)

    def SelectPage(*args):
        """
        SelectPage(self, int index)
        SelectPage(self, String label)
        SelectPage(self, PropertyGridPage ptr)
        """
        return _propgrid.PropertyGridManager_SelectPage(*args)

    def SelectProperty(*args, **kwargs):
        """SelectProperty(self, PGPropArg id, bool focus=False) -> bool"""
        return _propgrid.PropertyGridManager_SelectProperty(*args, **kwargs)

    def SetColumnTitle(*args, **kwargs):
        """SetColumnTitle(self, int idx, String title)"""
        return _propgrid.PropertyGridManager_SetColumnTitle(*args, **kwargs)

    def SetColumnCount(*args, **kwargs):
        """SetColumnCount(self, int colCount, int page=-1)"""
        return _propgrid.PropertyGridManager_SetColumnCount(*args, **kwargs)

    def SetDescription(*args, **kwargs):
        """SetDescription(self, String label, String content)"""
        return _propgrid.PropertyGridManager_SetDescription(*args, **kwargs)

    def SetDescBoxHeight(*args, **kwargs):
        """SetDescBoxHeight(self, int ht, bool refresh=True)"""
        return _propgrid.PropertyGridManager_SetDescBoxHeight(*args, **kwargs)

    def SetSplitterLeft(*args, **kwargs):
        """SetSplitterLeft(self, bool subProps=False, bool allPages=True)"""
        return _propgrid.PropertyGridManager_SetSplitterLeft(*args, **kwargs)

    def SetPageSplitterLeft(*args, **kwargs):
        """SetPageSplitterLeft(self, int page, bool subProps=False)"""
        return _propgrid.PropertyGridManager_SetPageSplitterLeft(*args, **kwargs)

    def SetPageSplitterPosition(*args, **kwargs):
        """SetPageSplitterPosition(self, int page, int pos, int column=0)"""
        return _propgrid.PropertyGridManager_SetPageSplitterPosition(*args, **kwargs)

    def SetSplitterPosition(*args, **kwargs):
        """SetSplitterPosition(self, int pos, int column=0)"""
        return _propgrid.PropertyGridManager_SetSplitterPosition(*args, **kwargs)

    def SetId(*args, **kwargs):
        """
        SetId(self, int winid)

        Sets the identifier of the window.  Each window has an integer
        identifier. If the application has not provided one, an identifier
        will be generated. Normally, the identifier should be provided on
        creation and should not be modified subsequently.
        """
        return _propgrid.PropertyGridManager_SetId(*args, **kwargs)

    def Freeze(*args, **kwargs):
        """
        Freeze(self)

        Freezes the window or, in other words, prevents any updates from
        taking place on screen, the window is not redrawn at all. Thaw must be
        called to reenable window redrawing.  Calls to Freeze/Thaw may be
        nested, with the actual Thaw being delayed until all the nesting has
        been undone.

        This method is useful for visual appearance optimization (for example,
        it is a good idea to use it before inserting large amount of text into
        a wxTextCtrl under wxGTK) but is not implemented on all platforms nor
        for all controls so it is mostly just a hint to wxWindows and not a
        mandatory directive.
        """
        return _propgrid.PropertyGridManager_Freeze(*args, **kwargs)

    def Thaw(*args, **kwargs):
        """
        Thaw(self)

        Reenables window updating after a previous call to Freeze.  Calls to
        Freeze/Thaw may be nested, so Thaw must be called the same number of
        times that Freeze was before the window will be updated.
        """
        return _propgrid.PropertyGridManager_Thaw(*args, **kwargs)

    def Reparent(*args, **kwargs):
        """Reparent(self, wxWindowBase newParent) -> bool"""
        return _propgrid.PropertyGridManager_Reparent(*args, **kwargs)

    def GetValuesFromPage(self,
                          page,
                          dict_=None,
                          as_strings=False,
                          inc_attributes=False):
        "Same as GetValues, but returns values from specific page only."
        "For argument descriptions, see GetValues."
        return page.GetPropertyValues(dict_, as_strings, inc_attributes)

_propgrid.PropertyGridManager_swigregister(PropertyGridManager)


def NewPropertyCategory(*args, **kwargs):
  """NewPropertyCategory(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL)) -> PGProperty"""
  return _propgrid.NewPropertyCategory(*args, **kwargs)

def NewStringProperty(*args, **kwargs):
  """
    NewStringProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewStringProperty(*args, **kwargs)

def NewUIntProperty(*args, **kwargs):
  """
    NewUIntProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        long value=0) -> PGProperty
    """
  return _propgrid.NewUIntProperty(*args, **kwargs)

def NewIntProperty(*args, **kwargs):
  """
    NewIntProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        long value=0) -> PGProperty
    """
  return _propgrid.NewIntProperty(*args, **kwargs)

def NewFloatProperty(*args, **kwargs):
  """
    NewFloatProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        double value=0.0) -> PGProperty
    """
  return _propgrid.NewFloatProperty(*args, **kwargs)

def NewBoolProperty(*args, **kwargs):
  """
    NewBoolProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        bool value=False) -> PGProperty
    """
  return _propgrid.NewBoolProperty(*args, **kwargs)

def NewEnumProperty(*args, **kwargs):
  """
    NewEnumProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        wxArrayString labels=wxArrayString(), 
        wxArrayInt values=wxArrayInt(), 
        int value=0) -> PGProperty
    """
  return _propgrid.NewEnumProperty(*args, **kwargs)

def NewEditEnumProperty(*args, **kwargs):
  """
    NewEditEnumProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        wxArrayString labels=wxArrayString(), 
        wxArrayInt values=wxArrayInt(), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewEditEnumProperty(*args, **kwargs)

def NewFlagsProperty(*args, **kwargs):
  """
    NewFlagsProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        wxArrayString labels=wxArrayString(), 
        wxArrayInt values=wxArrayInt(), 
        int value=0) -> PGProperty
    """
  return _propgrid.NewFlagsProperty(*args, **kwargs)

def NewLongStringProperty(*args, **kwargs):
  """
    NewLongStringProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewLongStringProperty(*args, **kwargs)

def NewFileProperty(*args, **kwargs):
  """
    NewFileProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewFileProperty(*args, **kwargs)

def NewDirProperty(*args, **kwargs):
  """
    NewDirProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewDirProperty(*args, **kwargs)

def NewArrayStringProperty(*args, **kwargs):
  """
    NewArrayStringProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        wxArrayString value=wxArrayString()) -> PGProperty
    """
  return _propgrid.NewArrayStringProperty(*args, **kwargs)

def NewFontProperty(*args, **kwargs):
  """
    NewFontProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        Font value=wxFont()) -> PGProperty
    """
  return _propgrid.NewFontProperty(*args, **kwargs)

def NewSystemColourProperty(*args, **kwargs):
  """
    NewSystemColourProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        ColourPropertyValue value=wxColourPropertyValue()) -> PGProperty
    """
  return _propgrid.NewSystemColourProperty(*args, **kwargs)

def NewColourProperty(*args, **kwargs):
  """
    NewColourProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        Colour value=wxColour()) -> PGProperty
    """
  return _propgrid.NewColourProperty(*args, **kwargs)

def NewCursorProperty(*args, **kwargs):
  """
    NewCursorProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        int value=0) -> PGProperty
    """
  return _propgrid.NewCursorProperty(*args, **kwargs)

def NewImageFileProperty(*args, **kwargs):
  """
    NewImageFileProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        String value=wxEmptyString) -> PGProperty
    """
  return _propgrid.NewImageFileProperty(*args, **kwargs)

def NewMultiChoiceProperty(*args, **kwargs):
  """
    NewMultiChoiceProperty(String label, String name=(*wxPGProperty::sm_wxPG_LABEL), 
        wxArrayString choices=wxArrayString(), 
        wxArrayString value=wxArrayString()) -> PGProperty
    """
  return _propgrid.NewMultiChoiceProperty(*args, **kwargs)

def NewDateProperty(*args, **kwargs):
  """
    NewDateProperty(String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
        DateTime value=wxDateTime()) -> PGProperty
    """
  return _propgrid.NewDateProperty(*args, **kwargs)
class PyFloatProperty(FloatProperty):
    """Proxy of C++ PyFloatProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            double value=0.0) -> PyFloatProperty
        """
        _propgrid.PyFloatProperty_swiginit(self,_propgrid.new_PyFloatProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyFloatProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyFloatProperty__SetSelf(*args, **kwargs)

_propgrid.PyFloatProperty_swigregister(PyFloatProperty)

class PyEditorDialogAdapter(PGEditorDialogAdapter):
    """Proxy of C++ PyEditorDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyEditorDialogAdapter"""
        _propgrid.PyEditorDialogAdapter_swiginit(self,_propgrid.new_PyEditorDialogAdapter(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyEditorDialogAdapter, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyEditorDialogAdapter__SetSelf(*args, **kwargs)

_propgrid.PyEditorDialogAdapter_swigregister(PyEditorDialogAdapter)

class PyEnumProperty(EnumProperty):
    """Proxy of C++ PyEnumProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            int value=0) -> PyEnumProperty
        """
        _propgrid.PyEnumProperty_swiginit(self,_propgrid.new_PyEnumProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyEnumProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyEnumProperty__SetSelf(*args, **kwargs)

_propgrid.PyEnumProperty_swigregister(PyEnumProperty)

class PyArrayStringProperty(ArrayStringProperty):
    """Proxy of C++ PyArrayStringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString value=wxArrayString()) -> PyArrayStringProperty
        """
        _propgrid.PyArrayStringProperty_swiginit(self,_propgrid.new_PyArrayStringProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyArrayStringProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyArrayStringProperty__SetSelf(*args, **kwargs)

_propgrid.PyArrayStringProperty_swigregister(PyArrayStringProperty)

class PyComboBoxEditor(PGComboBoxEditor):
    """Proxy of C++ PyComboBoxEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyComboBoxEditor"""
        _propgrid.PyComboBoxEditor_swiginit(self,_propgrid.new_PyComboBoxEditor(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyComboBoxEditor, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyComboBoxEditor__SetSelf(*args, **kwargs)

_propgrid.PyComboBoxEditor_swigregister(PyComboBoxEditor)

class PyFileDialogAdapter(PGFileDialogAdapter):
    """Proxy of C++ PyFileDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyFileDialogAdapter"""
        _propgrid.PyFileDialogAdapter_swiginit(self,_propgrid.new_PyFileDialogAdapter(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyFileDialogAdapter, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyFileDialogAdapter__SetSelf(*args, **kwargs)

_propgrid.PyFileDialogAdapter_swigregister(PyFileDialogAdapter)

class PyStringProperty(StringProperty):
    """Proxy of C++ PyStringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> PyStringProperty
        """
        _propgrid.PyStringProperty_swiginit(self,_propgrid.new_PyStringProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyStringProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyStringProperty__SetSelf(*args, **kwargs)

_propgrid.PyStringProperty_swigregister(PyStringProperty)

class PyLongStringDialogAdapter(PGLongStringDialogAdapter):
    """Proxy of C++ PyLongStringDialogAdapter class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyLongStringDialogAdapter"""
        _propgrid.PyLongStringDialogAdapter_swiginit(self,_propgrid.new_PyLongStringDialogAdapter(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyLongStringDialogAdapter, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyLongStringDialogAdapter__SetSelf(*args, **kwargs)

_propgrid.PyLongStringDialogAdapter_swigregister(PyLongStringDialogAdapter)

class PyEditEnumProperty(EditEnumProperty):
    """Proxy of C++ PyEditEnumProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, String label, String name, wxChar labels, long values, 
            String value) -> PyEditEnumProperty
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            String value=wxEmptyString) -> PyEditEnumProperty
        __init__(self, String label, String name, PGChoices choices, String value=wxEmptyString) -> PyEditEnumProperty
        __init__(self, String label, String name, wxChar labels, long values, 
            PGChoices choicesCache, String value) -> PyEditEnumProperty
        """
        _propgrid.PyEditEnumProperty_swiginit(self,_propgrid.new_PyEditEnumProperty(*args))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyEditEnumProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyEditEnumProperty__SetSelf(*args, **kwargs)

_propgrid.PyEditEnumProperty_swigregister(PyEditEnumProperty)

class PyTextCtrlEditor(PGTextCtrlEditor):
    """Proxy of C++ PyTextCtrlEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyTextCtrlEditor"""
        _propgrid.PyTextCtrlEditor_swiginit(self,_propgrid.new_PyTextCtrlEditor(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyTextCtrlEditor, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyTextCtrlEditor__SetSelf(*args, **kwargs)

_propgrid.PyTextCtrlEditor_swigregister(PyTextCtrlEditor)

class PySystemColourProperty(SystemColourProperty):
    """Proxy of C++ PySystemColourProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            ColourPropertyValue value=wxColourPropertyValue()) -> PySystemColourProperty
        __init__(self, String label, String name, wxChar labels, long values, 
            PGChoices choicesCache, ColourPropertyValue value) -> PySystemColourProperty
        __init__(self, String label, String name, wxChar labels, long values, 
            PGChoices choicesCache, Colour value) -> PySystemColourProperty
        """
        _propgrid.PySystemColourProperty_swiginit(self,_propgrid.new_PySystemColourProperty(*args))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PySystemColourProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PySystemColourProperty__SetSelf(*args, **kwargs)

_propgrid.PySystemColourProperty_swigregister(PySystemColourProperty)

class PyFlagsProperty(FlagsProperty):
    """Proxy of C++ PyFlagsProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            wxArrayString labels=wxArrayString(), 
            wxArrayInt values=wxArrayInt(), 
            int value=0) -> PyFlagsProperty
        """
        _propgrid.PyFlagsProperty_swiginit(self,_propgrid.new_PyFlagsProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyFlagsProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyFlagsProperty__SetSelf(*args, **kwargs)

_propgrid.PyFlagsProperty_swigregister(PyFlagsProperty)

class PyFontProperty(FontProperty):
    """Proxy of C++ PyFontProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            Font value=wxFont()) -> PyFontProperty
        """
        _propgrid.PyFontProperty_swiginit(self,_propgrid.new_PyFontProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyFontProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyFontProperty__SetSelf(*args, **kwargs)

_propgrid.PyFontProperty_swigregister(PyFontProperty)

class PyColourProperty(ColourProperty):
    """Proxy of C++ PyColourProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            Colour value=*wxWHITE) -> PyColourProperty
        """
        _propgrid.PyColourProperty_swiginit(self,_propgrid.new_PyColourProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyColourProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyColourProperty__SetSelf(*args, **kwargs)

_propgrid.PyColourProperty_swigregister(PyColourProperty)

class PyFileProperty(FileProperty):
    """Proxy of C++ PyFileProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> PyFileProperty
        """
        _propgrid.PyFileProperty_swiginit(self,_propgrid.new_PyFileProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyFileProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyFileProperty__SetSelf(*args, **kwargs)

_propgrid.PyFileProperty_swigregister(PyFileProperty)

class PyIntProperty(IntProperty):
    """Proxy of C++ PyIntProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            long value=0) -> PyIntProperty
        __init__(self, String label, String name, wxLongLong value) -> PyIntProperty
        """
        _propgrid.PyIntProperty_swiginit(self,_propgrid.new_PyIntProperty(*args))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyIntProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyIntProperty__SetSelf(*args, **kwargs)

_propgrid.PyIntProperty_swigregister(PyIntProperty)

class PyEditor(PGEditor):
    """Proxy of C++ PyEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyEditor"""
        _propgrid.PyEditor_swiginit(self,_propgrid.new_PyEditor(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyEditor, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyEditor__SetSelf(*args, **kwargs)

_propgrid.PyEditor_swigregister(PyEditor)

class PyChoiceEditor(PGChoiceEditor):
    """Proxy of C++ PyChoiceEditor class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """__init__(self) -> PyChoiceEditor"""
        _propgrid.PyChoiceEditor_swiginit(self,_propgrid.new_PyChoiceEditor(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyChoiceEditor, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyChoiceEditor__SetSelf(*args, **kwargs)

_propgrid.PyChoiceEditor_swigregister(PyChoiceEditor)

class PyProperty(PGProperty):
    """Proxy of C++ PyProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self) -> PyProperty
        __init__(self, String label, String name) -> PyProperty
        """
        _propgrid.PyProperty_swiginit(self,_propgrid.new_PyProperty(*args))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyProperty__SetSelf(*args, **kwargs)

_propgrid.PyProperty_swigregister(PyProperty)

class PyUIntProperty(UIntProperty):
    """Proxy of C++ PyUIntProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            long value=0) -> PyUIntProperty
        __init__(self, String label, String name, wxULongLong value) -> PyUIntProperty
        """
        _propgrid.PyUIntProperty_swiginit(self,_propgrid.new_PyUIntProperty(*args))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyUIntProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyUIntProperty__SetSelf(*args, **kwargs)

_propgrid.PyUIntProperty_swigregister(PyUIntProperty)

class PyLongStringProperty(LongStringProperty):
    """Proxy of C++ PyLongStringProperty class"""
    thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
    __repr__ = _swig_repr
    def __init__(self, *args, **kwargs): 
        """
        __init__(self, String label=(*wxPGProperty::sm_wxPG_LABEL), String name=(*wxPGProperty::sm_wxPG_LABEL), 
            String value=wxEmptyString) -> PyLongStringProperty
        """
        _propgrid.PyLongStringProperty_swiginit(self,_propgrid.new_PyLongStringProperty(*args, **kwargs))
        self._SetSelf(self); self._RegisterMethods()

    def CallSuperMethod(self, *args, **kwargs):
        funcname = args[0]
        args2 = list(args)
        args2[0] = self
        self._super_call = True
        try:
            res = getattr(PyLongStringProperty, funcname)(*args2, **kwargs)
        finally:
            del self._super_call
        return res

    def _RegisterMethods(self):
        cls = self.__class__
        if not hasattr(cls,'_pyswig_methods_registered'):
            cls._pyswig_methods_registered = True
            ls = [ab for ab in cls.__dict__.iteritems()]
            for a, b in ls:
                if not a.startswith('_'):
                    setattr(cls, '%s_t_'%a, b)

    def _SetSelf(*args, **kwargs):
        """_SetSelf(self, PyObject self)"""
        return _propgrid.PyLongStringProperty__SetSelf(*args, **kwargs)

_propgrid.PyLongStringProperty_swigregister(PyLongStringProperty)


def RegisterEditor(*args, **kwargs):
  """RegisterEditor(PGEditor editor, String editorName)"""
  return _propgrid.RegisterEditor(*args, **kwargs)
EVT_PG_CHANGED = wx.PyEventBinder( wxEVT_PG_CHANGED, 1 )
EVT_PG_CHANGING = wx.PyEventBinder( wxEVT_PG_CHANGING, 1 )
EVT_PG_SELECTED = wx.PyEventBinder( wxEVT_PG_SELECTED, 1 )
EVT_PG_HIGHLIGHTED = wx.PyEventBinder( wxEVT_PG_HIGHLIGHTED, 1 )
EVT_PG_RIGHT_CLICK = wx.PyEventBinder( wxEVT_PG_RIGHT_CLICK, 1 )
EVT_PG_PAGE_CHANGED = wx.PyEventBinder( wxEVT_PG_PAGE_CHANGED, 1 )
EVT_PG_ITEM_COLLAPSED = wx.PyEventBinder( wxEVT_PG_ITEM_COLLAPSED, 1 )
EVT_PG_ITEM_EXPANDED = wx.PyEventBinder( wxEVT_PG_ITEM_EXPANDED, 1 )
EVT_PG_DOUBLE_CLICK = wx.PyEventBinder( wxEVT_PG_DOUBLE_CLICK, 1 )
EVT_PG_LABEL_EDIT_BEGIN = wx.PyEventBinder( wxEVT_PG_LABEL_EDIT_BEGIN, 1 )
EVT_PG_LABEL_EDIT_ENDING = wx.PyEventBinder( wxEVT_PG_LABEL_EDIT_ENDING, 1 )
EVT_PG_COL_BEGIN_DRAG = wx.PyEventBinder( wxEVT_PG_COL_BEGIN_DRAG, 1 )
EVT_PG_COL_DRAGGING = wx.PyEventBinder( wxEVT_PG_COL_DRAGGING, 1 )
EVT_PG_COL_END_DRAG = wx.PyEventBinder( wxEVT_PG_COL_END_DRAG, 1 )

LABEL_AS_NAME = "@!"
DEFAULT_IMAGE_SIZE = (-1,-1)
NO_IMAGE_SIZE = (0,0)

PG_BOOL_USE_CHECKBOX = "UseCheckbox"
PG_BOOL_USE_DOUBLE_CLICK_CYCLING = "UseDClickCycling"
PG_FLOAT_PRECISION = "Precision"
PG_STRING_PASSWORD = "Password"
PG_UINT_BASE = "Base"
PG_UINT_PREFIX = "Prefix"
PG_FILE_WILDCARD = "Wildcard"
PG_FILE_SHOW_FULL_PATH = "ShowFullPath"
PG_FILE_SHOW_RELATIVE_PATH = "ShowRelativePath"
PG_FILE_INITIAL_PATH = "InitialPath"
PG_FILE_DIALOG_TITLE = "DialogTitle"
PG_DIR_DIALOG_MESSAGE = "DialogMessage"
PG_DATE_FORMAT = "DateFormat"
PG_DATE_PICKER_STYLE = "PickerStyle"


PropertyCategory = NewPropertyCategory
StringProperty = NewStringProperty
IntProperty = NewIntProperty
UIntProperty = NewUIntProperty
FloatProperty = NewFloatProperty
BoolProperty = NewBoolProperty
EnumProperty = NewEnumProperty
EditEnumProperty = NewEditEnumProperty
FlagsProperty = NewFlagsProperty
LongStringProperty = NewLongStringProperty
FileProperty = NewFileProperty
DirProperty = NewDirProperty
ArrayStringProperty = NewArrayStringProperty
FontProperty = NewFontProperty
SystemColourProperty = NewSystemColourProperty
ColourProperty = NewColourProperty
CursorProperty = NewCursorProperty
ImageFileProperty = NewImageFileProperty
MultiChoiceProperty = NewMultiChoiceProperty
DateProperty = NewDateProperty