summaryrefslogtreecommitdiff
path: root/vapi/gtk+-2.0.vapi
blob: 82e1523ea0926cbbb3dbe583cb97121cbc94f3ee (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
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
/* gtk+-2.0.vapi generated by lt-vapigen, do not modify. */

[CCode (cprefix = "Gtk", lower_case_cprefix = "gtk_")]
namespace Gtk {
	[CCode (cprefix = "GTK_ANCHOR_", cheader_filename = "gtk/gtk.h")]
	public enum AnchorType {
		CENTER,
		NORTH,
		NORTH_WEST,
		NORTH_EAST,
		SOUTH,
		SOUTH_WEST,
		SOUTH_EAST,
		WEST,
		EAST,
		N,
		NW,
		NE,
		S,
		SW,
		SE,
		W,
		E,
	}
	[CCode (cprefix = "GTK_ARROW_", cheader_filename = "gtk/gtk.h")]
	public enum ArrowType {
		UP,
		DOWN,
		LEFT,
		RIGHT,
		NONE,
	}
	[CCode (cprefix = "GTK_ASSISTANT_PAGE_", cheader_filename = "gtk/gtk.h")]
	public enum AssistantPageType {
		CONTENT,
		INTRO,
		CONFIRM,
		SUMMARY,
		PROGRESS,
	}
	[CCode (cprefix = "GTK_BUILDER_ERROR_", cheader_filename = "gtk/gtk.h")]
	public enum BuilderError {
		INVALID_TYPE_FUNCTION,
		UNHANDLED_TAG,
		MISSING_ATTRIBUTE,
		INVALID_ATTRIBUTE,
		INVALID_TAG,
		MISSING_PROPERTY_VALUE,
		INVALID_VALUE,
	}
	[CCode (cprefix = "GTK_BUTTONBOX_", cheader_filename = "gtk/gtk.h")]
	public enum ButtonBoxStyle {
		DEFAULT_STYLE,
		SPREAD,
		EDGE,
		START,
		END,
		CENTER,
	}
	[CCode (cprefix = "GTK_BUTTONS_", cheader_filename = "gtk/gtk.h")]
	public enum ButtonsType {
		NONE,
		OK,
		CLOSE,
		CANCEL,
		YES_NO,
		OK_CANCEL,
	}
	[CCode (cprefix = "GTK_CLIST_DRAG_", cheader_filename = "gtk/gtk.h")]
	public enum CListDragPos {
		NONE,
		BEFORE,
		INTO,
		AFTER,
	}
	[CCode (cprefix = "GTK_CTREE_EXPANDER_", cheader_filename = "gtk/gtk.h")]
	public enum CTreeExpanderStyle {
		NONE,
		SQUARE,
		TRIANGLE,
		CIRCULAR,
	}
	[CCode (cprefix = "GTK_CTREE_EXPANSION_", cheader_filename = "gtk/gtk.h")]
	public enum CTreeExpansionType {
		EXPAND,
		EXPAND_RECURSIVE,
		COLLAPSE,
		COLLAPSE_RECURSIVE,
		TOGGLE,
		TOGGLE_RECURSIVE,
	}
	[CCode (cprefix = "GTK_CTREE_LINES_", cheader_filename = "gtk/gtk.h")]
	public enum CTreeLineStyle {
		NONE,
		SOLID,
		DOTTED,
		TABBED,
	}
	[CCode (cprefix = "GTK_CTREE_POS_", cheader_filename = "gtk/gtk.h")]
	public enum CTreePos {
		BEFORE,
		AS_CHILD,
		AFTER,
	}
	[CCode (cprefix = "GTK_CELL_RENDERER_ACCEL_MODE_", cheader_filename = "gtk/gtk.h")]
	public enum CellRendererAccelMode {
		GTK,
		OTHER,
	}
	[CCode (cprefix = "GTK_CELL_RENDERER_MODE_", cheader_filename = "gtk/gtk.h")]
	public enum CellRendererMode {
		INERT,
		ACTIVATABLE,
		EDITABLE,
	}
	[CCode (cprefix = "GTK_CELL_", cheader_filename = "gtk/gtk.h")]
	public enum CellType {
		EMPTY,
		TEXT,
		PIXMAP,
		PIXTEXT,
		WIDGET,
	}
	[CCode (cprefix = "GTK_CORNER_", cheader_filename = "gtk/gtk.h")]
	public enum CornerType {
		TOP_LEFT,
		BOTTOM_LEFT,
		TOP_RIGHT,
		BOTTOM_RIGHT,
	}
	[CCode (cprefix = "GTK_CURVE_TYPE_", cheader_filename = "gtk/gtk.h")]
	public enum CurveType {
		LINEAR,
		SPLINE,
		FREE,
	}
	[CCode (cprefix = "GTK_DELETE_", cheader_filename = "gtk/gtk.h")]
	public enum DeleteType {
		CHARS,
		WORD_ENDS,
		WORDS,
		DISPLAY_LINES,
		DISPLAY_LINE_ENDS,
		PARAGRAPH_ENDS,
		PARAGRAPHS,
		WHITESPACE,
	}
	[CCode (cprefix = "GTK_DIR_", cheader_filename = "gtk/gtk.h")]
	public enum DirectionType {
		TAB_FORWARD,
		TAB_BACKWARD,
		UP,
		DOWN,
		LEFT,
		RIGHT,
	}
	[CCode (cprefix = "GTK_DRAG_RESULT_", cheader_filename = "gtk/gtk.h")]
	public enum DragResult {
		SUCCESS,
		NO_TARGET,
		USER_CANCELLED,
		TIMEOUT_EXPIRED,
		GRAB_BROKEN,
		ERROR,
	}
	[CCode (cprefix = "GTK_EXPANDER_", cheader_filename = "gtk/gtk.h")]
	public enum ExpanderStyle {
		COLLAPSED,
		SEMI_COLLAPSED,
		SEMI_EXPANDED,
		EXPANDED,
	}
	[CCode (cprefix = "GTK_FILE_CHOOSER_ACTION_", cheader_filename = "gtk/gtk.h")]
	public enum FileChooserAction {
		OPEN,
		SAVE,
		SELECT_FOLDER,
		CREATE_FOLDER,
	}
	[CCode (cprefix = "GTK_FILE_CHOOSER_CONFIRMATION_", cheader_filename = "gtk/gtk.h")]
	public enum FileChooserConfirmation {
		CONFIRM,
		ACCEPT_FILENAME,
		SELECT_AGAIN,
	}
	[CCode (cprefix = "GTK_FILE_CHOOSER_ERROR_", cheader_filename = "gtk/gtk.h")]
	public enum FileChooserError {
		NONEXISTENT,
		BAD_FILENAME,
		ALREADY_EXISTS,
	}
	[CCode (cprefix = "GTK_IM_PREEDIT_", cheader_filename = "gtk/gtk.h")]
	public enum IMPreeditStyle {
		NOTHING,
		CALLBACK,
		NONE,
	}
	[CCode (cprefix = "GTK_IM_STATUS_", cheader_filename = "gtk/gtk.h")]
	public enum IMStatusStyle {
		NOTHING,
		CALLBACK,
		NONE,
	}
	[CCode (cprefix = "GTK_ICON_SIZE_", cheader_filename = "gtk/gtk.h")]
	public enum IconSize {
		INVALID,
		MENU,
		SMALL_TOOLBAR,
		LARGE_TOOLBAR,
		BUTTON,
		DND,
		DIALOG,
	}
	[CCode (cprefix = "GTK_ICON_THEME_", cheader_filename = "gtk/gtk.h")]
	public enum IconThemeError {
		NOT_FOUND,
		FAILED,
	}
	[CCode (cprefix = "GTK_ICON_VIEW_", cheader_filename = "gtk/gtk.h")]
	public enum IconViewDropPosition {
		NO_DROP,
		DROP_INTO,
		DROP_LEFT,
		DROP_RIGHT,
		DROP_ABOVE,
		DROP_BELOW,
	}
	[CCode (cprefix = "GTK_IMAGE_", cheader_filename = "gtk/gtk.h")]
	public enum ImageType {
		EMPTY,
		PIXMAP,
		IMAGE,
		PIXBUF,
		STOCK,
		ICON_SET,
		ANIMATION,
		ICON_NAME,
	}
	[CCode (cprefix = "GTK_JUSTIFY_", cheader_filename = "gtk/gtk.h")]
	public enum Justification {
		LEFT,
		RIGHT,
		CENTER,
		FILL,
	}
	[CCode (cprefix = "GTK_MATCH_", cheader_filename = "gtk/gtk.h")]
	public enum MatchType {
		ALL,
		ALL_TAIL,
		HEAD,
		TAIL,
		EXACT,
		LAST,
	}
	[CCode (cprefix = "GTK_MENU_DIR_", cheader_filename = "gtk/gtk.h")]
	public enum MenuDirectionType {
		PARENT,
		CHILD,
		NEXT,
		PREV,
	}
	[CCode (cprefix = "GTK_MESSAGE_", cheader_filename = "gtk/gtk.h")]
	public enum MessageType {
		INFO,
		WARNING,
		QUESTION,
		ERROR,
		OTHER,
	}
	[CCode (cprefix = "GTK_", cheader_filename = "gtk/gtk.h")]
	public enum MetricType {
		PIXELS,
		INCHES,
		CENTIMETERS,
	}
	[CCode (cprefix = "GTK_MOVEMENT_", cheader_filename = "gtk/gtk.h")]
	public enum MovementStep {
		LOGICAL_POSITIONS,
		VISUAL_POSITIONS,
		WORDS,
		DISPLAY_LINES,
		DISPLAY_LINE_ENDS,
		PARAGRAPHS,
		PARAGRAPH_ENDS,
		PAGES,
		BUFFER_ENDS,
		HORIZONTAL_PAGES,
	}
	[CCode (cprefix = "GTK_NOTEBOOK_TAB_", cheader_filename = "gtk/gtk.h")]
	public enum NotebookTab {
		FIRST,
		LAST,
	}
	[CCode (cprefix = "GTK_ORIENTATION_", cheader_filename = "gtk/gtk.h")]
	public enum Orientation {
		HORIZONTAL,
		VERTICAL,
	}
	[CCode (cprefix = "GTK_PACK_DIRECTION_", cheader_filename = "gtk/gtk.h")]
	public enum PackDirection {
		LTR,
		RTL,
		TTB,
		BTT,
	}
	[CCode (cprefix = "GTK_PACK_", cheader_filename = "gtk/gtk.h")]
	public enum PackType {
		START,
		END,
	}
	[CCode (cprefix = "GTK_PAGE_ORIENTATION_", cheader_filename = "gtk/gtk.h")]
	public enum PageOrientation {
		PORTRAIT,
		LANDSCAPE,
		REVERSE_PORTRAIT,
		REVERSE_LANDSCAPE,
	}
	[CCode (cprefix = "GTK_PAGE_SET_", cheader_filename = "gtk/gtk.h")]
	public enum PageSet {
		ALL,
		EVEN,
		ODD,
	}
	[CCode (cprefix = "GTK_PATH_PRIO_", cheader_filename = "gtk/gtk.h")]
	public enum PathPriorityType {
		LOWEST,
		GTK,
		APPLICATION,
		THEME,
		RC,
		HIGHEST,
	}
	[CCode (cprefix = "GTK_PATH_", cheader_filename = "gtk/gtk.h")]
	public enum PathType {
		WIDGET,
		WIDGET_CLASS,
		CLASS,
	}
	[CCode (cprefix = "GTK_POLICY_", cheader_filename = "gtk/gtk.h")]
	public enum PolicyType {
		ALWAYS,
		AUTOMATIC,
		NEVER,
	}
	[CCode (cprefix = "GTK_POS_", cheader_filename = "gtk/gtk.h")]
	public enum PositionType {
		LEFT,
		RIGHT,
		TOP,
		BOTTOM,
	}
	[CCode (cprefix = "GTK_PREVIEW_", cheader_filename = "gtk/gtk.h")]
	public enum PreviewType {
		COLOR,
		GRAYSCALE,
	}
	[CCode (cprefix = "GTK_PRINT_DUPLEX_", cheader_filename = "gtk/gtk.h")]
	public enum PrintDuplex {
		SIMPLEX,
		HORIZONTAL,
		VERTICAL,
	}
	[CCode (cprefix = "GTK_PRINT_ERROR_", cheader_filename = "gtk/gtk.h")]
	public enum PrintError {
		GENERAL,
		INTERNAL_ERROR,
		NOMEM,
		INVALID_FILE,
	}
	[CCode (cprefix = "GTK_PRINT_OPERATION_ACTION_", cheader_filename = "gtk/gtk.h")]
	public enum PrintOperationAction {
		PRINT_DIALOG,
		PRINT,
		PREVIEW,
		EXPORT,
	}
	[CCode (cprefix = "GTK_PRINT_OPERATION_RESULT_", cheader_filename = "gtk/gtk.h")]
	public enum PrintOperationResult {
		ERROR,
		APPLY,
		CANCEL,
		IN_PROGRESS,
	}
	[CCode (cprefix = "GTK_PRINT_PAGES_", cheader_filename = "gtk/gtk.h")]
	public enum PrintPages {
		ALL,
		CURRENT,
		RANGES,
	}
	[CCode (cprefix = "GTK_PRINT_QUALITY_", cheader_filename = "gtk/gtk.h")]
	public enum PrintQuality {
		LOW,
		NORMAL,
		HIGH,
		DRAFT,
	}
	[CCode (cprefix = "GTK_PRINT_STATUS_", cheader_filename = "gtk/gtk.h")]
	public enum PrintStatus {
		INITIAL,
		PREPARING,
		GENERATING_DATA,
		SENDING_DATA,
		PENDING,
		PENDING_ISSUE,
		PRINTING,
		FINISHED,
		FINISHED_ABORTED,
	}
	[CCode (cprefix = "GTK_PROGRESS_", cheader_filename = "gtk/gtk.h")]
	public enum ProgressBarOrientation {
		LEFT_TO_RIGHT,
		RIGHT_TO_LEFT,
		BOTTOM_TO_TOP,
		TOP_TO_BOTTOM,
	}
	[CCode (cprefix = "GTK_PROGRESS_", cheader_filename = "gtk/gtk.h")]
	public enum ProgressBarStyle {
		CONTINUOUS,
		DISCRETE,
	}
	[CCode (cprefix = "GTK_RC_TOKEN_", cheader_filename = "gtk/gtk.h")]
	public enum RcTokenType {
		INVALID,
		INCLUDE,
		NORMAL,
		ACTIVE,
		PRELIGHT,
		SELECTED,
		INSENSITIVE,
		FG,
		BG,
		TEXT,
		BASE,
		XTHICKNESS,
		YTHICKNESS,
		FONT,
		FONTSET,
		FONT_NAME,
		BG_PIXMAP,
		PIXMAP_PATH,
		STYLE,
		BINDING,
		BIND,
		WIDGET,
		WIDGET_CLASS,
		CLASS,
		LOWEST,
		GTK,
		APPLICATION,
		THEME,
		RC,
		HIGHEST,
		ENGINE,
		MODULE_PATH,
		IM_MODULE_PATH,
		IM_MODULE_FILE,
		STOCK,
		LTR,
		RTL,
		COLOR,
		UNBIND,
		LAST,
	}
	[CCode (cprefix = "GTK_RECENT_CHOOSER_ERROR_", cheader_filename = "gtk/gtk.h")]
	public enum RecentChooserError {
		NOT_FOUND,
		INVALID_URI,
	}
	[CCode (cprefix = "GTK_RECENT_MANAGER_ERROR_", cheader_filename = "gtk/gtk.h")]
	public enum RecentManagerError {
		NOT_FOUND,
		INVALID_URI,
		INVALID_ENCODING,
		NOT_REGISTERED,
		READ,
		WRITE,
		UNKNOWN,
	}
	[CCode (cprefix = "GTK_RECENT_SORT_", cheader_filename = "gtk/gtk.h")]
	public enum RecentSortType {
		NONE,
		MRU,
		LRU,
		CUSTOM,
	}
	[CCode (cprefix = "GTK_RELIEF_", cheader_filename = "gtk/gtk.h")]
	public enum ReliefStyle {
		NORMAL,
		HALF,
		NONE,
	}
	[CCode (cprefix = "GTK_RESIZE_", cheader_filename = "gtk/gtk.h")]
	public enum ResizeMode {
		PARENT,
		QUEUE,
		IMMEDIATE,
	}
	[CCode (cprefix = "GTK_RESPONSE_", cheader_filename = "gtk/gtk.h")]
	public enum ResponseType {
		NONE,
		REJECT,
		ACCEPT,
		DELETE_EVENT,
		OK,
		CANCEL,
		CLOSE,
		YES,
		NO,
		APPLY,
		HELP,
	}
	[CCode (cprefix = "GTK_SCROLL_", cheader_filename = "gtk/gtk.h")]
	public enum ScrollStep {
		STEPS,
		PAGES,
		ENDS,
		HORIZONTAL_STEPS,
		HORIZONTAL_PAGES,
		HORIZONTAL_ENDS,
	}
	[CCode (cprefix = "GTK_SCROLL_", cheader_filename = "gtk/gtk.h")]
	public enum ScrollType {
		NONE,
		JUMP,
		STEP_BACKWARD,
		STEP_FORWARD,
		PAGE_BACKWARD,
		PAGE_FORWARD,
		STEP_UP,
		STEP_DOWN,
		PAGE_UP,
		PAGE_DOWN,
		STEP_LEFT,
		STEP_RIGHT,
		PAGE_LEFT,
		PAGE_RIGHT,
		START,
		END,
	}
	[CCode (cprefix = "GTK_SELECTION_", cheader_filename = "gtk/gtk.h")]
	public enum SelectionMode {
		NONE,
		SINGLE,
		BROWSE,
		MULTIPLE,
		EXTENDED,
	}
	[CCode (cprefix = "GTK_SENSITIVITY_", cheader_filename = "gtk/gtk.h")]
	public enum SensitivityType {
		AUTO,
		ON,
		OFF,
	}
	[CCode (cprefix = "GTK_SHADOW_", cheader_filename = "gtk/gtk.h")]
	public enum ShadowType {
		NONE,
		IN,
		OUT,
		ETCHED_IN,
		ETCHED_OUT,
	}
	[CCode (cprefix = "GTK_SIDE_", cheader_filename = "gtk/gtk.h")]
	public enum SideType {
		TOP,
		BOTTOM,
		LEFT,
		RIGHT,
	}
	[CCode (cprefix = "GTK_SIZE_GROUP_", cheader_filename = "gtk/gtk.h")]
	public enum SizeGroupMode {
		NONE,
		HORIZONTAL,
		VERTICAL,
		BOTH,
	}
	[CCode (cprefix = "GTK_SORT_", cheader_filename = "gtk/gtk.h")]
	public enum SortType {
		ASCENDING,
		DESCENDING,
	}
	[CCode (cprefix = "GTK_UPDATE_", cheader_filename = "gtk/gtk.h")]
	public enum SpinButtonUpdatePolicy {
		ALWAYS,
		IF_VALID,
	}
	[CCode (cprefix = "GTK_SPIN_", cheader_filename = "gtk/gtk.h")]
	public enum SpinType {
		STEP_FORWARD,
		STEP_BACKWARD,
		PAGE_FORWARD,
		PAGE_BACKWARD,
		HOME,
		END,
		USER_DEFINED,
	}
	[CCode (cprefix = "GTK_STATE_", cheader_filename = "gtk/gtk.h")]
	public enum StateType {
		NORMAL,
		ACTIVE,
		PRELIGHT,
		SELECTED,
		INSENSITIVE,
	}
	[CCode (cprefix = "GTK_DIRECTION_", cheader_filename = "gtk/gtk.h")]
	public enum SubmenuDirection {
		LEFT,
		RIGHT,
	}
	[CCode (cprefix = "GTK_", cheader_filename = "gtk/gtk.h")]
	public enum SubmenuPlacement {
		TOP_BOTTOM,
		LEFT_RIGHT,
	}
	[CCode (cprefix = "GTK_TEXT_BUFFER_TARGET_INFO_", cheader_filename = "gtk/gtk.h")]
	public enum TextBufferTargetInfo {
		BUFFER_CONTENTS,
		RICH_TEXT,
		TEXT,
	}
	[CCode (cprefix = "GTK_TEXT_DIR_", cheader_filename = "gtk/gtk.h")]
	public enum TextDirection {
		NONE,
		LTR,
		RTL,
	}
	[CCode (cprefix = "GTK_TEXT_WINDOW_", cheader_filename = "gtk/gtk.h")]
	public enum TextWindowType {
		PRIVATE,
		WIDGET,
		TEXT,
		LEFT,
		RIGHT,
		TOP,
		BOTTOM,
	}
	[CCode (cprefix = "GTK_TOOLBAR_CHILD_", cheader_filename = "gtk/gtk.h")]
	public enum ToolbarChildType {
		SPACE,
		BUTTON,
		TOGGLEBUTTON,
		RADIOBUTTON,
		WIDGET,
	}
	[CCode (cprefix = "GTK_TOOLBAR_SPACE_", cheader_filename = "gtk/gtk.h")]
	public enum ToolbarSpaceStyle {
		EMPTY,
		LINE,
	}
	[CCode (cprefix = "GTK_TOOLBAR_", cheader_filename = "gtk/gtk.h")]
	public enum ToolbarStyle {
		ICONS,
		TEXT,
		BOTH,
		BOTH_HORIZ,
	}
	[CCode (cprefix = "GTK_TREE_VIEW_COLUMN_", cheader_filename = "gtk/gtk.h")]
	public enum TreeViewColumnSizing {
		GROW_ONLY,
		AUTOSIZE,
		FIXED,
	}
	[CCode (cprefix = "GTK_TREE_VIEW_DROP_", cheader_filename = "gtk/gtk.h")]
	public enum TreeViewDropPosition {
		BEFORE,
		AFTER,
		INTO_OR_BEFORE,
		INTO_OR_AFTER,
	}
	[CCode (cprefix = "GTK_TREE_VIEW_GRID_LINES_", cheader_filename = "gtk/gtk.h")]
	public enum TreeViewGridLines {
		NONE,
		HORIZONTAL,
		VERTICAL,
		BOTH,
	}
	[CCode (cprefix = "GTK_TREE_VIEW_", cheader_filename = "gtk/gtk.h")]
	public enum TreeViewMode {
		LINE,
		ITEM,
	}
	[CCode (cprefix = "GTK_UNIT_", cheader_filename = "gtk/gtk.h")]
	public enum Unit {
		PIXEL,
		POINTS,
		INCH,
		MM,
	}
	[CCode (cprefix = "GTK_UPDATE_", cheader_filename = "gtk/gtk.h")]
	public enum UpdateType {
		CONTINUOUS,
		DISCONTINUOUS,
		DELAYED,
	}
	[CCode (cprefix = "GTK_VISIBILITY_", cheader_filename = "gtk/gtk.h")]
	public enum Visibility {
		NONE,
		PARTIAL,
		FULL,
	}
	[CCode (cprefix = "GTK_WIDGET_HELP_", cheader_filename = "gtk/gtk.h")]
	public enum WidgetHelpType {
		TOOLTIP,
		WHATS_THIS,
	}
	[CCode (cprefix = "GTK_WIN_POS_", cheader_filename = "gtk/gtk.h")]
	public enum WindowPosition {
		NONE,
		CENTER,
		MOUSE,
		CENTER_ALWAYS,
		CENTER_ON_PARENT,
	}
	[CCode (cprefix = "GTK_WINDOW_", cheader_filename = "gtk/gtk.h")]
	public enum WindowType {
		TOPLEVEL,
		POPUP,
	}
	[CCode (cprefix = "GTK_WRAP_", cheader_filename = "gtk/gtk.h")]
	public enum WrapMode {
		NONE,
		CHAR,
		WORD,
		WORD_CHAR,
	}
	[CCode (cprefix = "GTK_ACCEL_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum AccelFlags {
		VISIBLE,
		LOCKED,
		MASK,
	}
	[CCode (cprefix = "GTK_ARG_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum ArgFlags {
		READABLE,
		WRITABLE,
		CONSTRUCT,
		CONSTRUCT_ONLY,
		CHILD_ARG,
	}
	[CCode (cprefix = "GTK_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum AttachOptions {
		EXPAND,
		SHRINK,
		FILL,
	}
	[CCode (cprefix = "GTK_BUTTON_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum ButtonAction {
		IGNORED,
		SELECTS,
		DRAGS,
		EXPANDS,
	}
	[CCode (cprefix = "GTK_CALENDAR_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum CalendarDisplayOptions {
		SHOW_HEADING,
		SHOW_DAY_NAMES,
		NO_MONTH_CHANGE,
		SHOW_WEEK_NUMBERS,
		WEEK_START_MONDAY,
	}
	[CCode (cprefix = "GTK_CELL_RENDERER_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum CellRendererState {
		SELECTED,
		PRELIT,
		INSENSITIVE,
		SORTED,
		FOCUSED,
	}
	[CCode (cprefix = "GTK_DEBUG_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum DebugFlag {
		MISC,
		PLUGSOCKET,
		TEXT,
		TREE,
		UPDATES,
		KEYBINDINGS,
		MULTIHEAD,
		MODULES,
		GEOMETRY,
		ICONTHEME,
		PRINTING,
		BUILDER,
	}
	[CCode (cprefix = "GTK_DEST_DEFAULT_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum DestDefaults {
		MOTION,
		HIGHLIGHT,
		DROP,
		ALL,
	}
	[CCode (cprefix = "GTK_DIALOG_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum DialogFlags {
		MODAL,
		DESTROY_WITH_PARENT,
		NO_SEPARATOR,
	}
	[CCode (cprefix = "GTK_FILE_FILTER_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum FileFilterFlags {
		FILENAME,
		URI,
		DISPLAY_NAME,
		MIME_TYPE,
	}
	[CCode (cprefix = "GTK_ICON_LOOKUP_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum IconLookupFlags {
		NO_SVG,
		FORCE_SVG,
		USE_BUILTIN,
		GENERIC_FALLBACK,
	}
	[CCode (cprefix = "GTK_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum ObjectFlags {
		IN_DESTRUCTION,
		FLOATING,
		RESERVED_1,
		RESERVED_2,
	}
	[CCode (cprefix = "PRIVATE_GTK_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum PrivateFlags {
		USER_STYLE,
		RESIZE_PENDING,
		LEAVE_PENDING,
		HAS_SHAPE_MASK,
		IN_REPARENT,
		DIRECTION_SET,
		DIRECTION_LTR,
		ANCHORED,
		CHILD_VISIBLE,
		REDRAW_ON_ALLOC,
		ALLOC_NEEDED,
		REQUEST_NEEDED,
	}
	[CCode (cprefix = "GTK_RC_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum RcFlags {
		FG,
		BG,
		TEXT,
		BASE,
	}
	[CCode (cprefix = "GTK_RECENT_FILTER_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum RecentFilterFlags {
		URI,
		DISPLAY_NAME,
		MIME_TYPE,
		APPLICATION,
		GROUP,
		AGE,
	}
	[CCode (cprefix = "GTK_RUN_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum SignalRunType {
		FIRST,
		LAST,
		BOTH,
		NO_RECURSE,
		ACTION,
		NO_HOOKS,
	}
	[CCode (cprefix = "GTK_TARGET_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum TargetFlags {
		SAME_APP,
		SAME_WIDGET,
		OTHER_APP,
		OTHER_WIDGET,
	}
	[CCode (cprefix = "GTK_TEXT_SEARCH_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum TextSearchFlags {
		VISIBLE_ONLY,
		TEXT_ONLY,
	}
	[CCode (cprefix = "GTK_TREE_MODEL_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum TreeModelFlags {
		ITERS_PERSIST,
		LIST_ONLY,
	}
	[CCode (cprefix = "GTK_UI_MANAGER_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum UIManagerItemType {
		AUTO,
		MENUBAR,
		MENU,
		TOOLBAR,
		PLACEHOLDER,
		POPUP,
		MENUITEM,
		TOOLITEM,
		SEPARATOR,
		ACCELERATOR,
	}
	[CCode (cprefix = "GTK_", cheader_filename = "gtk/gtk.h")]
	[Flags]
	public enum WidgetFlags {
		TOPLEVEL,
		NO_WINDOW,
		REALIZED,
		MAPPED,
		VISIBLE,
		SENSITIVE,
		PARENT_SENSITIVE,
		CAN_FOCUS,
		HAS_FOCUS,
		CAN_DEFAULT,
		HAS_DEFAULT,
		HAS_GRAB,
		RC_STYLE,
		COMPOSITE_CHILD,
		NO_REPARENT,
		APP_PAINTABLE,
		RECEIVES_DEFAULT,
		DOUBLE_BUFFERED,
		NO_SHOW_ALL,
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Widget : Gtk.Object, Atk.Implementor, Gtk.Buildable {
		public uchar state;
		public uchar saved_state;
		public Gtk.Requisition requisition;
		public Gtk.Allocation allocation;
		public weak Gdk.Window window;
		public Widget (GLib.Type type, ...);
		[CCode (cname = "GTK_WIDGET_FLAGS")]
		public Gtk.WidgetFlags get_flags ();
		[CCode (cname = "GTK_WIDGET_SET_FLAGS")]
		public void set_flags (Gtk.WidgetFlags flags);
		[CCode (cname = "GTK_WIDGET_UNSET_FLAGS")]
		public void unset_flags (Gtk.WidgetFlags flags);
		public bool activate ();
		public void add_accelerator (string accel_signal, Gtk.AccelGroup accel_group, uint accel_key, Gdk.ModifierType accel_mods, Gtk.AccelFlags accel_flags);
		public void add_events (int events);
		public void add_mnemonic_label (Gtk.Widget label);
		public bool child_focus (Gtk.DirectionType direction);
		public static weak GLib.ParamSpec class_find_style_property (pointer klass, string property_name);
		public static void class_install_style_property (pointer klass, GLib.ParamSpec pspec);
		public static void class_install_style_property_parser (pointer klass, GLib.ParamSpec pspec, Gtk.RcPropertyParser parser);
		public static weak GLib.ParamSpec class_list_style_properties (pointer klass, uint n_properties);
		public void class_path (uint path_length, string path, string path_reversed);
		public weak Pango.Context create_pango_context ();
		public weak Pango.Layout create_pango_layout (string text);
		public void destroyed (out weak Gtk.Widget widget_pointer);
		public void ensure_style ();
		public void error_bell ();
		public void freeze_child_notify ();
		public weak Gtk.Action get_action ();
		public weak Gtk.Widget get_ancestor (GLib.Type widget_type);
		public void get_child_requisition (out Gtk.Requisition requisition);
		public bool get_child_visible ();
		public weak Gtk.Clipboard get_clipboard (Gdk.Atom selection);
		public weak Gdk.Colormap get_colormap ();
		public weak string get_composite_name ();
		public static weak Gdk.Colormap get_default_colormap ();
		public static Gtk.TextDirection get_default_direction ();
		public static weak Gtk.Style get_default_style ();
		public static weak Gdk.Visual get_default_visual ();
		public Gtk.TextDirection get_direction ();
		public weak Gdk.Display get_display ();
		public int get_events ();
		public Gdk.ExtensionMode get_extension_events ();
		public bool get_has_tooltip ();
		public weak Gtk.RcStyle get_modifier_style ();
		public weak string get_name ();
		public bool get_no_show_all ();
		public weak Pango.Context get_pango_context ();
		public weak Gtk.Widget get_parent ();
		public weak Gdk.Window get_parent_window ();
		public void get_pointer (int x, int y);
		public weak Gdk.Window get_root_window ();
		public weak Gdk.Screen get_screen ();
		public weak Gtk.Settings get_settings ();
		public void get_size_request (int width, int height);
		public weak Gtk.Style get_style ();
		public weak string get_tooltip_markup ();
		public weak string get_tooltip_text ();
		public weak Gtk.Window get_tooltip_window ();
		public weak Gtk.Widget get_toplevel ();
		public weak Gdk.Visual get_visual ();
		public void grab_default ();
		public bool has_screen ();
		public bool hide_on_delete ();
		public void input_shape_combine_mask (Gdk.Bitmap shape_mask, int offset_x, int offset_y);
		public bool intersect (Gdk.Rectangle area, Gdk.Rectangle intersection);
		public bool is_ancestor (Gtk.Widget ancestor);
		public bool is_composited ();
		public weak GLib.List list_accel_closures ();
		public weak GLib.List list_mnemonic_labels ();
		public void modify_base (Gtk.StateType state, Gdk.Color? color);
		public void modify_bg (Gtk.StateType state, Gdk.Color? color);
		public void modify_cursor (Gdk.Color? primary, Gdk.Color? secondary);
		public void modify_fg (Gtk.StateType state, Gdk.Color? color);
		public void modify_font (Pango.FontDescription font_desc);
		public void modify_style (Gtk.RcStyle style);
		public void modify_text (Gtk.StateType state, Gdk.Color? color);
		public void path (uint path_length, string path, string path_reversed);
		public static void pop_colormap ();
		public static void pop_composite_child ();
		public static void push_colormap (Gdk.Colormap cmap);
		public static void push_composite_child ();
		public void queue_draw ();
		public void queue_draw_area (int x, int y, int width, int height);
		public void queue_resize ();
		public void queue_resize_no_redraw ();
		public weak Gdk.Region region_intersect (Gdk.Region region);
		public bool remove_accelerator (Gtk.AccelGroup accel_group, uint accel_key, Gdk.ModifierType accel_mods);
		public void remove_mnemonic_label (Gtk.Widget label);
		public weak Gdk.Pixbuf render_icon (string stock_id, Gtk.IconSize size, string detail);
		public void reparent (Gtk.Widget new_parent);
		public void reset_rc_styles ();
		public void reset_shapes ();
		public int send_expose (Gdk.Event event);
		public void set_accel_path (string accel_path, Gtk.AccelGroup accel_group);
		public void set_app_paintable (bool app_paintable);
		public void set_child_visible (bool is_visible);
		public void set_colormap (Gdk.Colormap colormap);
		public void set_composite_name (string name);
		public static void set_default_colormap (Gdk.Colormap colormap);
		public static void set_default_direction (Gtk.TextDirection dir);
		public void set_direction (Gtk.TextDirection dir);
		public void set_double_buffered (bool double_buffered);
		public void set_events (int events);
		public void set_extension_events (Gdk.ExtensionMode mode);
		public void set_has_tooltip (bool has_tooltip);
		public void set_name (string name);
		public void set_no_show_all (bool no_show_all);
		public void set_parent (Gtk.Widget parent);
		public void set_parent_window (Gdk.Window parent_window);
		public void set_redraw_on_allocate (bool redraw_on_allocate);
		public bool set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public void set_sensitive (bool sensitive);
		public void set_size_request (int width, int height);
		public void set_state (Gtk.StateType state);
		public void set_style (Gtk.Style style);
		public void set_tooltip_markup (string markup);
		public void set_tooltip_text (string text);
		public void set_tooltip_window (Gtk.Window custom_window);
		public void shape_combine_mask (Gdk.Bitmap shape_mask, int offset_x, int offset_y);
		public void show_now ();
		public void style_get (...);
		public void style_get_property (string property_name, GLib.Value value);
		public void style_get_valist (string first_property_name, pointer var_args);
		public void thaw_child_notify ();
		public bool translate_coordinates (Gtk.Widget dest_widget, int src_x, int src_y, int dest_x, int dest_y);
		public void trigger_tooltip_query ();
		public void unparent ();
		[NoWrapper]
		public virtual void dispatch_child_properties_changed (uint n_pspecs, out weak GLib.ParamSpec pspecs);
		public virtual weak Atk.Object get_accessible ();
		public virtual void hide_all ();
		public virtual void show_all ();
		[NoAccessorMethod]
		public weak bool app_paintable { get; set; }
		[NoAccessorMethod]
		public weak bool can_default { get; set; }
		[NoAccessorMethod]
		public weak bool can_focus { get; set; }
		[NoAccessorMethod]
		public weak bool composite_child { get; }
		public weak Gdk.EventMask events { get; set; }
		public weak Gdk.ExtensionMode extension_events { get; set; }
		[NoAccessorMethod]
		public weak bool has_default { get; set; }
		[NoAccessorMethod]
		public weak bool has_focus { get; set; }
		public weak bool has_tooltip { get; set; }
		[NoAccessorMethod]
		public weak int height_request { get; set; }
		[NoAccessorMethod]
		public weak bool is_focus { get; set; }
		public weak string name { get; set; }
		public weak bool no_show_all { get; set; }
		public weak Gtk.Container parent { get; set; }
		[NoAccessorMethod]
		public weak bool receives_default { get; set; }
		[NoAccessorMethod]
		public weak bool sensitive { get; set; }
		public weak Gtk.Style style { get; set; }
		public weak string tooltip_markup { get; set; }
		public weak string tooltip_text { get; set; }
		[NoAccessorMethod]
		public weak bool visible { get; set; }
		[NoAccessorMethod]
		public weak int width_request { get; set; }
		public signal void accel_closures_changed ();
		public signal bool button_press_event (Gdk.Event event);
		public signal bool button_release_event (Gdk.Event event);
		[HasEmitter]
		public signal bool can_activate_accel (uint signal_id);
		[HasEmitter]
		public signal void child_notify (GLib.ParamSpec pspec);
		public signal bool client_event (Gdk.Event event);
		public signal void composited_changed ();
		public signal bool configure_event (Gdk.Event event);
		public signal bool delete_event (Gdk.Event event);
		public signal bool destroy_event (Gdk.Event event);
		public signal void direction_changed (Gtk.TextDirection previous_direction);
		public signal void drag_begin (Gdk.DragContext context);
		public signal void drag_data_delete (Gdk.DragContext context);
		public signal void drag_data_get (Gdk.DragContext context, Gtk.SelectionData selection_data, uint info, uint time_);
		public signal void drag_data_received (Gdk.DragContext context, int x, int y, Gtk.SelectionData selection_data, uint info, uint time_);
		public signal bool drag_drop (Gdk.DragContext context, int x, int y, uint time_);
		public signal void drag_end (Gdk.DragContext context);
		public signal bool drag_failed (Gdk.DragContext p0, Gtk.DragResult p1);
		public signal void drag_leave (Gdk.DragContext context, uint time_);
		public signal bool drag_motion (Gdk.DragContext context, int x, int y, uint time_);
		public signal bool enter_notify_event (Gdk.Event event);
		[HasEmitter]
		public signal bool event (Gdk.Event event);
		public signal void event_after (Gdk.Event p0);
		public signal bool expose_event (Gdk.Event event);
		public signal bool focus (Gtk.DirectionType direction);
		public signal bool focus_in_event (Gdk.Event event);
		public signal bool focus_out_event (Gdk.Event event);
		public signal bool grab_broken_event (Gdk.Event event);
		[HasEmitter]
		public signal void grab_focus ();
		public signal void grab_notify (bool was_grabbed);
		[HasEmitter]
		public signal void hide ();
		public signal void hierarchy_changed (Gtk.Widget previous_toplevel);
		public signal bool key_press_event (Gdk.EventKey event);
		public signal bool key_release_event (Gdk.EventKey event);
		[HasEmitter]
		public signal bool keynav_failed (Gtk.DirectionType p0);
		public signal bool leave_notify_event (Gdk.Event event);
		[HasEmitter]
		public signal void map ();
		public signal bool map_event (Gdk.Event event);
		[HasEmitter]
		public signal bool mnemonic_activate (bool group_cycling);
		public signal bool motion_notify_event (Gdk.Event event);
		public signal void move_focus (Gtk.DirectionType p0);
		public signal bool no_expose_event (Gdk.Event event);
		public signal void parent_set (Gtk.Widget previous_parent);
		public signal bool popup_menu ();
		public signal bool property_notify_event (Gdk.Event event);
		public signal bool proximity_in_event (Gdk.Event event);
		public signal bool proximity_out_event (Gdk.Event event);
		public signal bool query_tooltip (int x, int y, bool keyboard_tooltip, Gtk.Tooltip tooltip);
		[HasEmitter]
		public signal void realize ();
		public signal void screen_changed (Gdk.Screen previous_screen);
		public signal bool scroll_event (Gdk.Event event);
		public signal bool selection_clear_event (Gdk.Event event);
		public signal void selection_get (Gtk.SelectionData selection_data, uint info, uint time_);
		public signal bool selection_notify_event (Gdk.Event event);
		public signal void selection_received (Gtk.SelectionData selection_data, uint time_);
		public signal bool selection_request_event (Gdk.Event event);
		[HasEmitter]
		public signal void show ();
		public signal bool show_help (Gtk.WidgetHelpType help_type);
		[HasEmitter]
		public signal void size_allocate (Gdk.Rectangle allocation);
		[HasEmitter]
		public signal void size_request (Gtk.Requisition requisition);
		public signal void state_changed (Gtk.StateType previous_state);
		public signal void style_set (Gtk.Style previous_style);
		[HasEmitter]
		public signal void unmap ();
		public signal bool unmap_event (Gdk.Event event);
		[HasEmitter]
		public signal void unrealize ();
		public signal bool visibility_notify_event (Gdk.Event event);
		public signal bool window_state_event (Gdk.Event event);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelGroupEntry {
		public weak Gtk.AccelKey key;
		public weak GLib.Closure closure;
		public GLib.Quark accel_path_quark;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelKey {
		public uint accel_key;
		public Gdk.ModifierType accel_mods;
		public uint accel_flags;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelMapClass {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Arg {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class BindingArg {
		public GLib.Type arg_type;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class BindingEntry {
		public uint keyval;
		public Gdk.ModifierType modifiers;
		public weak Gtk.BindingSet binding_set;
		public uint destroyed;
		public uint in_emission;
		public uint marks_unbound;
		public weak Gtk.BindingEntry set_next;
		public weak Gtk.BindingEntry hash_next;
		public weak Gtk.BindingSignal signals;
		public static void add_signal (Gtk.BindingSet binding_set, uint keyval, Gdk.ModifierType modifiers, string signal_name, uint n_args);
		public static void remove (Gtk.BindingSet binding_set, uint keyval, Gdk.ModifierType modifiers);
		public static void skip (Gtk.BindingSet binding_set, uint keyval, Gdk.ModifierType modifiers);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class BindingSet {
		public weak string set_name;
		public int priority;
		public weak GLib.SList widget_path_pspecs;
		public weak GLib.SList widget_class_pspecs;
		public weak GLib.SList class_branch_pspecs;
		public weak Gtk.BindingEntry entries;
		public weak Gtk.BindingEntry current;
		public uint parsed;
		public bool activate (uint keyval, Gdk.ModifierType modifiers, Gtk.Object object);
		public void add_path (Gtk.PathType path_type, string path_pattern, Gtk.PathPriorityType priority);
		public static weak Gtk.BindingSet by_class (pointer object_class);
		public static weak Gtk.BindingSet find (string set_name);
		public BindingSet (string set_name);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class BindingSignal {
		public weak Gtk.BindingSignal next;
		public weak string signal_name;
		public uint n_args;
		public weak Gtk.BindingArg args;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class BoxChild {
		public weak Gtk.Widget widget;
		public ushort padding;
		public uint expand;
		public uint fill;
		public uint pack;
		public uint is_secondary;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FileFilterInfo {
		public Gtk.FileFilterFlags contains;
		public weak string filename;
		public weak string uri;
		public weak string display_name;
		public weak string mime_type;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FixedChild {
		public weak Gtk.Widget widget;
		public int x;
		public int y;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IMContextInfo {
		public weak string context_id;
		public weak string context_name;
		public weak string domain;
		public weak string domain_dirname;
		public weak string default_locales;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageAnimationData {
		public weak Gdk.PixbufAnimation anim;
		public weak Gdk.PixbufAnimationIter iter;
		public uint frame_timeout;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageIconNameData {
		public weak string icon_name;
		public weak Gdk.Pixbuf pixbuf;
		public uint theme_change_id;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageIconSetData {
		public weak Gtk.IconSet icon_set;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageImageData {
		public weak Gdk.Image image;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImagePixbufData {
		public weak Gdk.Pixbuf pixbuf;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImagePixmapData {
		public weak Gdk.Pixmap pixmap;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageStockData {
		public weak string stock_id;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class LabelSelectionInfo {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class NotebookPage {
		public static int num (Gtk.Notebook notebook, Gtk.Widget child);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class PageRange {
		public int start;
		public int end;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RangeLayout {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RangeStepTimer {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RcContext {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RcProperty {
		public GLib.Quark type_name;
		public GLib.Quark property_name;
		public weak string origin;
		public GLib.Value value;
		public static bool parse_border (GLib.ParamSpec pspec, GLib.StringBuilder gstring, GLib.Value property_value);
		public static bool parse_color (GLib.ParamSpec pspec, GLib.StringBuilder gstring, GLib.Value property_value);
		public static bool parse_enum (GLib.ParamSpec pspec, GLib.StringBuilder gstring, GLib.Value property_value);
		public static bool parse_flags (GLib.ParamSpec pspec, GLib.StringBuilder gstring, GLib.Value property_value);
		public static bool parse_requisition (GLib.ParamSpec pspec, GLib.StringBuilder gstring, GLib.Value property_value);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentFilterInfo {
		public Gtk.RecentFilterFlags contains;
		public weak string uri;
		public weak string display_name;
		public weak string mime_type;
		public weak string applications;
		public weak string groups;
		public int age;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RulerMetric {
		public weak string metric_name;
		public weak string abbrev;
		public double pixels_per_unit;
		[NoArrayLength]
		public weak double[] ruler_scale;
		[NoArrayLength]
		public weak int[] subdivide;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SettingsPropertyValue {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SettingsValue {
		public weak string origin;
		public GLib.Value value;
	}
	[CCode (copy_function = "gtk_stock_item_copy", cheader_filename = "gtk/gtk.h")]
	public class StockItem {
		public weak string stock_id;
		public weak string label;
		public Gdk.ModifierType modifier;
		public uint keyval;
		public weak string translation_domain;
		public weak Gtk.StockItem copy ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TableChild {
		public weak Gtk.Widget widget;
		public ushort left_attach;
		public ushort right_attach;
		public ushort top_attach;
		public ushort bottom_attach;
		public ushort xpadding;
		public ushort ypadding;
		public uint xexpand;
		public uint yexpand;
		public uint xshrink;
		public uint yshrink;
		public uint xfill;
		public uint yfill;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TableRowCol {
		public ushort requisition;
		public ushort allocation;
		public ushort spacing;
		public uint need_expand;
		public uint need_shrink;
		public uint expand;
		public uint shrink;
		public uint empty;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TargetPair {
		public Gdk.Atom target;
		public uint flags;
		public uint info;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextAppearance {
		public Gdk.Color bg_color;
		public Gdk.Color fg_color;
		public weak Gdk.Bitmap bg_stipple;
		public weak Gdk.Bitmap fg_stipple;
		public int rise;
		public pointer padding1;
		public uint underline;
		public uint strikethrough;
		public uint draw_bg;
		public uint inside_selection;
		public uint is_text;
		public uint pad1;
		public uint pad2;
		public uint pad3;
		public uint pad4;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextBTree {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextLogAttrCache {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextPendingScroll {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextWindow {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ThemeEngine {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Type {
		public pointer @class ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class WidgetAuxInfo {
		public int x;
		public int y;
		public int width;
		public int height;
		public uint x_set;
		public uint y_set;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class WidgetShapeInfo {
		public short offset_x;
		public short offset_y;
		public weak Gdk.Bitmap shape_mask;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class WindowGeometryInfo {
	}
	[CCode (copy_function = "gtk_icon_info_copy", cheader_filename = "gtk/gtk.h")]
	public class IconInfo : GLib.Boxed {
		public weak Gtk.IconInfo copy ();
		public bool get_attach_points (Gdk.Point[] points);
		public int get_base_size ();
		public weak Gdk.Pixbuf get_builtin_pixbuf ();
		public weak string get_display_name ();
		public bool get_embedded_rect (out Gdk.Rectangle rectangle);
		public weak string get_filename ();
		public weak Gdk.Pixbuf load_icon () throws GLib.Error;
		public void set_raw_coordinates (bool raw_coordinates);
	}
	[CCode (ref_function = "gtk_icon_set_ref", unref_function = "gtk_icon_set_unref", cheader_filename = "gtk/gtk.h")]
	public class IconSet : GLib.Boxed {
		public void add_source (Gtk.IconSource source);
		public weak Gtk.IconSet copy ();
		public void get_sizes (Gtk.IconSize[] sizes);
		public IconSet ();
		public IconSet.from_pixbuf (Gdk.Pixbuf pixbuf);
		public weak Gdk.Pixbuf render_icon (Gtk.Style style, Gtk.TextDirection direction, Gtk.StateType state, Gtk.IconSize size, Gtk.Widget widget, string detail);
	}
	[CCode (copy_function = "gtk_icon_source_copy", cheader_filename = "gtk/gtk.h")]
	public class IconSource : GLib.Boxed {
		public weak Gtk.IconSource copy ();
		public Gtk.TextDirection get_direction ();
		public bool get_direction_wildcarded ();
		public weak string get_filename ();
		public weak string get_icon_name ();
		public weak Gdk.Pixbuf get_pixbuf ();
		public Gtk.IconSize get_size ();
		public bool get_size_wildcarded ();
		public Gtk.StateType get_state ();
		public bool get_state_wildcarded ();
		public IconSource ();
		public void set_direction (Gtk.TextDirection direction);
		public void set_direction_wildcarded (bool setting);
		public void set_filename (string filename);
		public void set_icon_name (string icon_name);
		public void set_pixbuf (Gdk.Pixbuf pixbuf);
		public void set_size (Gtk.IconSize size);
		public void set_size_wildcarded (bool setting);
		public void set_state (Gtk.StateType state);
		public void set_state_wildcarded (bool setting);
	}
	[CCode (copy_function = "gtk_paper_size_copy", cheader_filename = "gtk/gtk.h")]
	public class PaperSize : GLib.Boxed {
		public weak Gtk.PaperSize copy ();
		public static weak string get_default ();
		public double get_default_bottom_margin (Gtk.Unit unit);
		public double get_default_left_margin (Gtk.Unit unit);
		public double get_default_right_margin (Gtk.Unit unit);
		public double get_default_top_margin (Gtk.Unit unit);
		public weak string get_display_name ();
		public double get_height (Gtk.Unit unit);
		public weak string get_name ();
		public static weak GLib.List get_paper_sizes (bool include_custom);
		public weak string get_ppd_name ();
		public double get_width (Gtk.Unit unit);
		public bool is_custom ();
		public bool is_equal (Gtk.PaperSize size2);
		public PaperSize (string name);
		public PaperSize.custom (string name, string display_name, double width, double height, Gtk.Unit unit);
		public PaperSize.from_key_file (GLib.KeyFile key_file, string group_name) throws GLib.Error;
		public PaperSize.from_ppd (string ppd_name, string ppd_display_name, double width, double height);
		public void set_size (double width, double height, Gtk.Unit unit);
		public void to_key_file (GLib.KeyFile key_file, string group_name);
	}
	[CCode (ref_function = "gtk_recent_info_ref", unref_function = "gtk_recent_info_unref", cheader_filename = "gtk/gtk.h")]
	public class RecentInfo : GLib.Boxed {
		public bool exists ();
		public ulong get_added ();
		public int get_age ();
		public bool get_application_info (string app_name, string app_exec, uint count, ulong time_);
		public weak string get_applications (ulong length);
		public weak string get_description ();
		public weak string get_display_name ();
		public weak string get_groups (ulong length);
		public weak Gdk.Pixbuf get_icon (int size);
		public weak string get_mime_type ();
		public ulong get_modified ();
		public bool get_private_hint ();
		public weak string get_short_name ();
		public weak string get_uri ();
		public weak string get_uri_display ();
		public ulong get_visited ();
		public bool has_application (string app_name);
		public bool has_group (string group_name);
		public bool is_local ();
		public weak string last_application ();
		public bool match (Gtk.RecentInfo info_b);
	}
	[CCode (copy_function = "gtk_selection_data_copy", cheader_filename = "gtk/gtk.h")]
	public class SelectionData : GLib.Boxed {
		public Gdk.Atom selection;
		public Gdk.Atom target;
		public Gdk.Atom type;
		public int format;
		[NoArrayLength]
		public weak uchar[] data;
		public int length;
		public weak Gdk.Display display;
		public weak Gtk.SelectionData copy ();
		public weak Gdk.Pixbuf get_pixbuf ();
		public bool get_targets (out Gdk.Atom targets, int n_atoms);
		public weak uchar[] get_text ();
		public weak string get_uris ();
		public void set (Gdk.Atom type, int format, uchar[] data, int length);
		public bool set_pixbuf (Gdk.Pixbuf pixbuf);
		public bool set_text (string str, int len);
		public bool set_uris (string uris);
		public bool targets_include_image (bool writable);
		public bool targets_include_rich_text (Gtk.TextBuffer buffer);
		public bool targets_include_text ();
		public bool targets_include_uri ();
	}
	[CCode (ref_function = "gtk_target_list_ref", unref_function = "gtk_target_list_unref", cheader_filename = "gtk/gtk.h")]
	public class TargetList : GLib.Boxed {
		public weak GLib.List list;
		public uint ref_count;
		public void add (Gdk.Atom target, uint flags, uint info);
		public void add_image_targets (uint info, bool writable);
		public void add_rich_text_targets (uint info, bool deserializable, Gtk.TextBuffer buffer);
		public void add_table (Gtk.TargetEntry[] targets, uint ntargets);
		public void add_text_targets (uint info);
		public void add_uri_targets (uint info);
		public bool find (Gdk.Atom target, uint info);
		public TargetList (Gtk.TargetEntry[] targets, uint ntargets);
		public void remove (Gdk.Atom target);
	}
	[CCode (ref_function = "gtk_text_attributes_ref", unref_function = "gtk_text_attributes_unref", cheader_filename = "gtk/gtk.h")]
	public class TextAttributes : GLib.Boxed {
		public uint refcount;
		public weak Gtk.TextAppearance appearance;
		public Gtk.Justification justification;
		public Gtk.TextDirection direction;
		public weak Pango.FontDescription font;
		public double font_scale;
		public int left_margin;
		public int indent;
		public int right_margin;
		public int pixels_above_lines;
		public int pixels_below_lines;
		public int pixels_inside_wrap;
		public weak Pango.TabArray tabs;
		public Gtk.WrapMode wrap_mode;
		public weak Pango.Language language;
		public Gdk.Color pg_bg_color;
		public uint invisible;
		public uint bg_full_height;
		public uint editable;
		public uint realized;
		public uint pad1;
		public uint pad2;
		public uint pad3;
		public uint pad4;
		public weak Gtk.TextAttributes copy ();
		public void copy_values (Gtk.TextAttributes dest);
		public TextAttributes ();
	}
	[CCode (copy_function = "gtk_tree_path_copy", cheader_filename = "gtk/gtk.h")]
	public class TreePath : GLib.Boxed {
		public void append_index (int index_);
		public int compare (Gtk.TreePath b);
		public weak Gtk.TreePath copy ();
		public void down ();
		public int get_depth ();
		public weak int[] get_indices ();
		public bool is_ancestor (Gtk.TreePath descendant);
		public bool is_descendant (Gtk.TreePath ancestor);
		public TreePath ();
		public TreePath.first ();
		[CCode (sentinel = "-1")]
		public TreePath.from_indices (...);
		public TreePath.from_string (string path);
		public void next ();
		public void prepend_index (int index_);
		public bool prev ();
		public weak string to_string ();
		public bool up ();
	}
	[CCode (copy_function = "gtk_tree_row_reference_copy", cheader_filename = "gtk/gtk.h")]
	public class TreeRowReference : GLib.Boxed {
		public weak Gtk.TreeRowReference copy ();
		public static void deleted (GLib.Object proxy, Gtk.TreePath path);
		public weak Gtk.TreeModel get_model ();
		public weak Gtk.TreePath get_path ();
		public static void inserted (GLib.Object proxy, Gtk.TreePath path);
		public TreeRowReference (Gtk.TreeModel model, Gtk.TreePath path);
		public TreeRowReference.proxy (GLib.Object proxy, Gtk.TreeModel model, Gtk.TreePath path);
		public static void reordered (GLib.Object proxy, Gtk.TreePath path, Gtk.TreeIter iter, int[] new_order);
		public bool valid ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AboutDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
		public weak string get_artists ();
		public weak string get_authors ();
		public weak string get_comments ();
		public weak string get_copyright ();
		public weak string get_documenters ();
		public weak string get_license ();
		public weak Gdk.Pixbuf get_logo ();
		public weak string get_logo_icon_name ();
		public weak string get_program_name ();
		public weak string get_translator_credits ();
		public weak string get_version ();
		public weak string get_website ();
		public weak string get_website_label ();
		public bool get_wrap_license ();
		public AboutDialog ();
		public void set_artists (string[] artists);
		public void set_authors (string[] authors);
		public void set_comments (string comments);
		public void set_copyright (string copyright);
		public void set_documenters (string[] documenters);
		public static Gtk.AboutDialogActivateLinkFunc set_email_hook (Gtk.AboutDialogActivateLinkFunc func, pointer data, GLib.DestroyNotify destroy);
		public void set_license (string license);
		public void set_logo (Gdk.Pixbuf logo);
		public void set_logo_icon_name (string icon_name);
		public void set_program_name (string name);
		public void set_translator_credits (string translator_credits);
		public static Gtk.AboutDialogActivateLinkFunc set_url_hook (Gtk.AboutDialogActivateLinkFunc func, pointer data, GLib.DestroyNotify destroy);
		public void set_version (string version);
		public void set_website (string website);
		public void set_website_label (string website_label);
		public void set_wrap_license (bool wrap_license);
		public weak string[] artists { get; set; }
		public weak string[] authors { get; set; }
		public weak string comments { get; set; }
		public weak string copyright { get; set; }
		public weak string[] documenters { get; set; }
		public weak string license { get; set; }
		public weak Gdk.Pixbuf logo { get; set; }
		public weak string logo_icon_name { get; set; }
		public weak string program_name { get; set; }
		public weak string translator_credits { get; set; }
		public weak string version { get; set; }
		public weak string website { get; set; }
		public weak string website_label { get; set; }
		public weak bool wrap_license { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelGroup : GLib.Object {
		public uint lock_count;
		public Gdk.ModifierType modifier_mask;
		public weak GLib.SList acceleratables;
		public uint n_accels;
		public bool activate (GLib.Quark accel_quark, GLib.Object acceleratable, uint accel_key, Gdk.ModifierType accel_mods);
		public void connect (uint accel_key, Gdk.ModifierType accel_mods, Gtk.AccelFlags accel_flags, GLib.Closure closure);
		public void connect_by_path (string accel_path, GLib.Closure closure);
		public bool disconnect (GLib.Closure closure);
		public bool disconnect_key (uint accel_key, Gdk.ModifierType accel_mods);
		public weak Gtk.AccelKey find (Gtk.AccelGroupFindFunc find_func, pointer data);
		public static weak Gtk.AccelGroup from_accel_closure (GLib.Closure closure);
		public void @lock ();
		public AccelGroup ();
		public weak Gtk.AccelGroupEntry query (uint accel_key, Gdk.ModifierType accel_mods, uint n_entries);
		public void unlock ();
		public signal bool accel_activate (GLib.Object p0, uint p1, Gdk.ModifierType p2);
		public signal void accel_changed (uint keyval, Gdk.ModifierType modifier, GLib.Closure accel_closure);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelLabel : Gtk.Label, Atk.Implementor, Gtk.Buildable {
		public uint gtk_reserved;
		public uint accel_padding;
		public weak Gtk.AccelGroup accel_group;
		public weak string accel_string;
		public ushort accel_string_width;
		public weak Gtk.Widget get_accel_widget ();
		public uint get_accel_width ();
		public AccelLabel (string string);
		public bool refetch ();
		public void set_accel_closure (GLib.Closure accel_closure);
		public void set_accel_widget (Gtk.Widget accel_widget);
		[NoAccessorMethod]
		public weak GLib.Closure accel_closure { get; set; }
		public weak Gtk.Widget accel_widget { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AccelMap : GLib.Object {
		public static void add_entry (string accel_path, uint accel_key, Gdk.ModifierType accel_mods);
		public static void add_filter (string filter_pattern);
		public static bool change_entry (string accel_path, uint accel_key, Gdk.ModifierType accel_mods, bool replace);
		public static void @foreach (pointer data, Gtk.AccelMapForeach foreach_func);
		public static void foreach_unfiltered (pointer data, Gtk.AccelMapForeach foreach_func);
		public static weak Gtk.AccelMap get ();
		public static void load (string file_name);
		public static void load_fd (int fd);
		public static void load_scanner (GLib.Scanner scanner);
		public static void lock_path (string accel_path);
		public static bool lookup_entry (string accel_path, Gtk.AccelKey key);
		public static void save (string file_name);
		public static void save_fd (int fd);
		public static void unlock_path (string accel_path);
		public signal void changed (string p0, uint p1, Gdk.ModifierType p2);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Accessible : Atk.Object {
		public weak Gtk.Widget widget;
		public virtual void connect_widget_destroyed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Action : GLib.Object, Gtk.Buildable {
		public void block_activate_from (Gtk.Widget proxy);
		public void connect_accelerator ();
		public weak Gtk.Widget create_icon (Gtk.IconSize icon_size);
		public void disconnect_accelerator ();
		public weak GLib.Closure get_accel_closure ();
		public weak string get_accel_path ();
		public weak string get_name ();
		public weak GLib.SList get_proxies ();
		public bool get_sensitive ();
		public bool get_visible ();
		public bool is_sensitive ();
		public bool is_visible ();
		public Action (string name, string label, string tooltip, string stock_id);
		public void set_accel_group (Gtk.AccelGroup accel_group);
		public void set_accel_path (string accel_path);
		public void set_sensitive (bool sensitive);
		public void set_visible (bool visible);
		public void unblock_activate_from (Gtk.Widget proxy);
		public virtual void connect_proxy (Gtk.Widget proxy);
		public virtual weak Gtk.Widget create_menu ();
		public virtual weak Gtk.Widget create_menu_item ();
		public virtual weak Gtk.Widget create_tool_item ();
		public virtual void disconnect_proxy (Gtk.Widget proxy);
		[NoAccessorMethod]
		public weak Gtk.ActionGroup action_group { get; set; }
		[NoAccessorMethod]
		public weak bool hide_if_empty { get; set; }
		[NoAccessorMethod]
		public weak string icon_name { get; set; }
		[NoAccessorMethod]
		public weak bool is_important { get; set; }
		[NoAccessorMethod]
		public weak string label { get; set; }
		[NoAccessorMethod]
		public weak string name { get; construct; }
		public weak bool sensitive { get; set; }
		[NoAccessorMethod]
		public weak string short_label { get; set; }
		[NoAccessorMethod]
		public weak string stock_id { get; set; }
		[NoAccessorMethod]
		public weak string tooltip { get; set; }
		public weak bool visible { get; set; }
		[NoAccessorMethod]
		public weak bool visible_horizontal { get; set; }
		[NoAccessorMethod]
		public weak bool visible_overflown { get; set; }
		[NoAccessorMethod]
		public weak bool visible_vertical { get; set; }
		[HasEmitter]
		public signal void activate ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ActionGroup : GLib.Object, Gtk.Buildable {
		public void add_action (Gtk.Action action);
		public void add_action_with_accel (Gtk.Action action, string accelerator);
		public void add_actions (Gtk.ActionEntry[] entries, pointer user_data);
		public void add_actions_full (Gtk.ActionEntry[] entries, pointer user_data, GLib.DestroyNotify destroy);
		public void add_radio_actions (Gtk.RadioActionEntry[] entries, int value, GLib.Callback on_change, pointer user_data);
		public void add_radio_actions_full (Gtk.RadioActionEntry[] entries, int value, GLib.Callback on_change, pointer user_data, GLib.DestroyNotify destroy);
		public void add_toggle_actions (Gtk.ToggleActionEntry[] entries, pointer user_data);
		public void add_toggle_actions_full (Gtk.ToggleActionEntry[] entries, pointer user_data, GLib.DestroyNotify destroy);
		public weak string get_name ();
		public bool get_sensitive ();
		public bool get_visible ();
		public weak GLib.List list_actions ();
		public ActionGroup (string name);
		public void remove_action (Gtk.Action action);
		public void set_sensitive (bool sensitive);
		public void set_translate_func (Gtk.TranslateFunc func, pointer data, Gtk.DestroyNotify notify);
		public void set_translation_domain (string domain);
		public void set_visible (bool visible);
		public weak string translate_string (string string);
		public virtual weak Gtk.Action get_action (string action_name);
		[NoAccessorMethod]
		public weak string name { get; construct; }
		public weak bool sensitive { get; set; }
		public weak bool visible { get; set; }
		public signal void connect_proxy (Gtk.Action p0, Gtk.Widget p1);
		public signal void disconnect_proxy (Gtk.Action p0, Gtk.Widget p1);
		public signal void post_activate (Gtk.Action p0);
		public signal void pre_activate (Gtk.Action p0);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Adjustment : Gtk.Object {
		public void clamp_page (double lower, double upper);
		public double get_value ();
		public Adjustment (double value, double lower, double upper, double step_increment, double page_increment, double page_size);
		public void set_value (double value);
		[NoAccessorMethod]
		public weak double lower { get; set; }
		[NoAccessorMethod]
		public weak double page_increment { get; set; }
		[NoAccessorMethod]
		public weak double page_size { get; set; }
		[NoAccessorMethod]
		public weak double step_increment { get; set; }
		[NoAccessorMethod]
		public weak double upper { get; set; }
		public weak double value { get; set; }
		[HasEmitter]
		public signal void changed ();
		[HasEmitter]
		public signal void value_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Alignment : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public void get_padding (uint padding_top, uint padding_bottom, uint padding_left, uint padding_right);
		public Alignment (float xalign, float yalign, float xscale, float yscale);
		public void set (float xalign, float yalign, float xscale, float yscale);
		public void set_padding (uint padding_top, uint padding_bottom, uint padding_left, uint padding_right);
		[NoAccessorMethod]
		public weak uint bottom_padding { get; set; }
		[NoAccessorMethod]
		public weak uint left_padding { get; set; }
		[NoAccessorMethod]
		public weak uint right_padding { get; set; }
		[NoAccessorMethod]
		public weak uint top_padding { get; set; }
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		[NoAccessorMethod]
		public weak float xscale { get; set; }
		[NoAccessorMethod]
		public weak float yalign { get; set; }
		[NoAccessorMethod]
		public weak float yscale { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Arrow : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
		public Arrow (Gtk.ArrowType arrow_type, Gtk.ShadowType shadow_type);
		public void set (Gtk.ArrowType arrow_type, Gtk.ShadowType shadow_type);
		[NoAccessorMethod]
		public weak Gtk.ArrowType arrow_type { get; set; }
		[NoAccessorMethod]
		public weak Gtk.ShadowType shadow_type { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class AspectFrame : Gtk.Frame, Atk.Implementor, Gtk.Buildable {
		public Gtk.Allocation center_allocation;
		public AspectFrame (string label, float xalign, float yalign, float ratio, bool obey_child);
		public void set (float xalign, float yalign, float ratio, bool obey_child);
		[NoAccessorMethod]
		public weak bool obey_child { get; set; }
		[NoAccessorMethod]
		public weak float ratio { get; set; }
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		[NoAccessorMethod]
		public weak float yalign { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Assistant : Gtk.Window, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget forward;
		public weak Gtk.Widget back;
		public weak Gtk.Widget last;
		public void add_action_widget (Gtk.Widget child);
		public int append_page (Gtk.Widget page);
		public int get_current_page ();
		public int get_n_pages ();
		public weak Gtk.Widget get_nth_page (int page_num);
		public bool get_page_complete (Gtk.Widget page);
		public weak Gdk.Pixbuf get_page_header_image (Gtk.Widget page);
		public weak Gdk.Pixbuf get_page_side_image (Gtk.Widget page);
		public weak string get_page_title (Gtk.Widget page);
		public Gtk.AssistantPageType get_page_type (Gtk.Widget page);
		public int insert_page (Gtk.Widget page, int position);
		public Assistant ();
		public int prepend_page (Gtk.Widget page);
		public void remove_action_widget (Gtk.Widget child);
		public void set_current_page (int page_num);
		public void set_forward_page_func (Gtk.AssistantPageFunc page_func, pointer data, GLib.DestroyNotify destroy);
		public void set_page_complete (Gtk.Widget page, bool complete);
		public void set_page_header_image (Gtk.Widget page, Gdk.Pixbuf pixbuf);
		public void set_page_side_image (Gtk.Widget page, Gdk.Pixbuf pixbuf);
		public void set_page_title (Gtk.Widget page, string title);
		public void set_page_type (Gtk.Widget page, Gtk.AssistantPageType type);
		public void update_buttons_state ();
		public signal void apply ();
		public signal void cancel ();
		public signal void close ();
		public signal void prepare (Gtk.Widget page);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Bin : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget child;
		public weak Gtk.Widget get_child ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Box : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak GLib.List children;
		public bool get_homogeneous ();
		public int get_spacing ();
		public void pack_end (Gtk.Widget child, bool expand, bool fill, uint padding);
		public void pack_end_defaults (Gtk.Widget widget);
		public void pack_start (Gtk.Widget child, bool expand, bool fill, uint padding);
		public void pack_start_defaults (Gtk.Widget widget);
		public void query_child_packing (Gtk.Widget child, bool expand, bool fill, uint padding, Gtk.PackType pack_type);
		public void reorder_child (Gtk.Widget child, int position);
		public void set_child_packing (Gtk.Widget child, bool expand, bool fill, uint padding, Gtk.PackType pack_type);
		public void set_homogeneous (bool homogeneous);
		public void set_spacing (int spacing);
		public weak bool homogeneous { get; set; }
		public weak int spacing { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Builder : GLib.Object {
		public uint add_from_file (string filename) throws GLib.Error;
		public uint add_from_string (string buffer, ulong length) throws GLib.Error;
		public void connect_signals (pointer user_data);
		public void connect_signals_full (Gtk.BuilderConnectFunc func, pointer user_data);
		public static GLib.Quark error_quark ();
		public weak GLib.Object get_object (string name);
		public weak GLib.SList get_objects ();
		public weak string get_translation_domain ();
		public Builder ();
		public void set_translation_domain (string domain);
		public bool value_from_string (GLib.ParamSpec pspec, string string, GLib.Value value) throws GLib.Error;
		public bool value_from_string_type (GLib.Type type, string string, GLib.Value value) throws GLib.Error;
		public virtual GLib.Type get_type_from_name (string type_name);
		public weak string translation_domain { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Button : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Window event_window;
		public weak string label_text;
		public uint activate_timeout;
		public uint constructed;
		public uint in_button;
		public uint button_down;
		public uint depressed;
		public uint depress_on_activate;
		public void get_alignment (float xalign, float yalign);
		public bool get_focus_on_click ();
		public weak Gtk.Widget get_image ();
		public Gtk.PositionType get_image_position ();
		public weak string get_label ();
		public Gtk.ReliefStyle get_relief ();
		public bool get_use_stock ();
		public bool get_use_underline ();
		public Button ();
		public Button.from_stock (string stock_id);
		public Button.with_label (string label);
		public Button.with_mnemonic (string label);
		public void set_alignment (float xalign, float yalign);
		public void set_focus_on_click (bool focus_on_click);
		public void set_image (Gtk.Widget image);
		public void set_image_position (Gtk.PositionType position);
		public void set_label (string label);
		public void set_relief (Gtk.ReliefStyle newstyle);
		public void set_use_stock (bool use_stock);
		public void set_use_underline (bool use_underline);
		public weak bool focus_on_click { get; set; }
		public weak Gtk.Widget image { get; set; }
		public weak Gtk.PositionType image_position { get; set; }
		public weak string label { get; set construct; }
		public weak Gtk.ReliefStyle relief { get; set; }
		public weak bool use_stock { get; set construct; }
		public weak bool use_underline { get; set construct; }
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		[NoAccessorMethod]
		public weak float yalign { get; set; }
		public signal void activate ();
		[HasEmitter]
		public signal void clicked ();
		[HasEmitter]
		public signal void enter ();
		[HasEmitter]
		public signal void leave ();
		[HasEmitter]
		public signal void pressed ();
		[HasEmitter]
		public signal void released ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ButtonBox : Gtk.Box, Atk.Implementor, Gtk.Buildable {
		public int child_min_width;
		public int child_min_height;
		public int child_ipad_x;
		public int child_ipad_y;
		public bool get_child_secondary (Gtk.Widget child);
		public Gtk.ButtonBoxStyle get_layout ();
		public void set_child_secondary (Gtk.Widget child, bool is_secondary);
		public void set_layout (Gtk.ButtonBoxStyle layout_style);
		[NoAccessorMethod]
		public weak Gtk.ButtonBoxStyle layout_style { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Calendar : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Style header_style;
		public weak Gtk.Style label_style;
		public int selected_day;
		[NoArrayLength]
		public weak int[] day_month;
		public int num_marked_dates;
		[NoArrayLength]
		public weak int[] marked_date;
		public Gtk.CalendarDisplayOptions display_flags;
		[NoArrayLength]
		public weak Gdk.Color[] marked_date_color;
		public weak Gdk.GC gc;
		public weak Gdk.GC xor_gc;
		public int focus_row;
		public int focus_col;
		public int highlight_row;
		public int highlight_col;
		[NoArrayLength]
		public weak char[] grow_space;
		public void clear_marks ();
		public void get_date (uint year, uint month, uint day);
		public Gtk.CalendarDisplayOptions get_display_options ();
		public bool mark_day (uint day);
		public Calendar ();
		public void select_day (uint day);
		public bool select_month (uint month, uint year);
		public void set_display_options (Gtk.CalendarDisplayOptions flags);
		public bool unmark_day (uint day);
		[NoAccessorMethod]
		public weak int day { get; set; }
		[NoAccessorMethod]
		public weak int month { get; set; }
		[NoAccessorMethod]
		public weak bool no_month_change { get; set; }
		[NoAccessorMethod]
		public weak bool show_day_names { get; set; }
		[NoAccessorMethod]
		public weak bool show_heading { get; set; }
		[NoAccessorMethod]
		public weak bool show_week_numbers { get; set; }
		[NoAccessorMethod]
		public weak int year { get; set; }
		public signal void day_selected ();
		public signal void day_selected_double_click ();
		public signal void month_changed ();
		public signal void next_month ();
		public signal void next_year ();
		public signal void prev_month ();
		public signal void prev_year ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRenderer : Gtk.Object {
		public uint editing;
		public void get_fixed_size (int width, int height);
		public void set_fixed_size (int width, int height);
		public void stop_editing (bool canceled);
		public virtual bool activate (Gdk.Event event, Gtk.Widget widget, string path, Gdk.Rectangle background_area, Gdk.Rectangle cell_area, Gtk.CellRendererState flags);
		public virtual void get_size (Gtk.Widget widget, Gdk.Rectangle cell_area, int x_offset, int y_offset, int width, int height);
		public virtual void render (Gdk.Window window, Gtk.Widget widget, Gdk.Rectangle background_area, Gdk.Rectangle cell_area, Gdk.Rectangle expose_area, Gtk.CellRendererState flags);
		public virtual weak Gtk.CellEditable start_editing (Gdk.Event event, Gtk.Widget widget, string path, Gdk.Rectangle background_area, Gdk.Rectangle cell_area, Gtk.CellRendererState flags);
		[NoAccessorMethod]
		public weak string cell_background { set; }
		[NoAccessorMethod]
		public weak Gdk.Color cell_background_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool cell_background_set { get; set; }
		[NoAccessorMethod]
		public weak int height { get; set; }
		[NoAccessorMethod]
		public weak bool is_expanded { get; set; }
		[NoAccessorMethod]
		public weak bool is_expander { get; set; }
		[NoAccessorMethod]
		public weak Gtk.CellRendererMode mode { get; set; }
		[NoAccessorMethod]
		public weak bool sensitive { get; set; }
		[NoAccessorMethod]
		public weak bool visible { get; set; }
		[NoAccessorMethod]
		public weak int width { get; set; }
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		[NoAccessorMethod]
		public weak uint xpad { get; set; }
		[NoAccessorMethod]
		public weak float yalign { get; set; }
		[NoAccessorMethod]
		public weak uint ypad { get; set; }
		[HasEmitter]
		public signal void editing_canceled ();
		public signal void editing_started (Gtk.CellEditable editable, string path);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererAccel : Gtk.CellRendererText {
		public weak Gtk.Widget edit_widget;
		public weak Gtk.Widget grab_widget;
		public weak Gtk.Widget sizing_label;
		public CellRendererAccel ();
		[NoAccessorMethod]
		public weak uint accel_key { get; set; }
		[NoAccessorMethod]
		public weak Gtk.CellRendererAccelMode accel_mode { get; set; }
		[NoAccessorMethod]
		public weak Gdk.ModifierType accel_mods { get; set; }
		[NoAccessorMethod]
		public weak uint keycode { get; set; }
		public signal void accel_cleared (string path_string);
		public signal void accel_edited (string path_string, uint accel_key, Gdk.ModifierType accel_mods, uint hardware_keycode);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererCombo : Gtk.CellRendererText {
		public uint focus_out_id;
		public CellRendererCombo ();
		[NoAccessorMethod]
		public weak bool has_entry { get; set; }
		[NoAccessorMethod]
		public weak Gtk.TreeModel model { get; set; }
		[NoAccessorMethod]
		public weak int text_column { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererPixbuf : Gtk.CellRenderer {
		public CellRendererPixbuf ();
		[NoAccessorMethod]
		public weak bool follow_state { get; set; }
		[NoAccessorMethod]
		public weak string icon_name { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixbuf pixbuf { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixbuf pixbuf_expander_closed { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixbuf pixbuf_expander_open { get; set; }
		[NoAccessorMethod]
		public weak string stock_detail { get; set; }
		[NoAccessorMethod]
		public weak string stock_id { get; set; }
		[NoAccessorMethod]
		public weak uint stock_size { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererProgress : Gtk.CellRenderer {
		public CellRendererProgress ();
		[NoAccessorMethod]
		public weak Gtk.ProgressBarOrientation orientation { get; set; }
		[NoAccessorMethod]
		public weak int pulse { get; set; }
		[NoAccessorMethod]
		public weak string text { get; set; }
		[NoAccessorMethod]
		public weak float text_xalign { get; set; }
		[NoAccessorMethod]
		public weak float text_yalign { get; set; }
		[NoAccessorMethod]
		public weak int value { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererSpin : Gtk.CellRendererText {
		public CellRendererSpin ();
		[NoAccessorMethod]
		public weak Gtk.Adjustment adjustment { get; set; }
		[NoAccessorMethod]
		public weak double climb_rate { get; set; }
		[NoAccessorMethod]
		public weak uint digits { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererText : Gtk.CellRenderer {
		public double font_scale;
		public weak Pango.AttrList extra_attrs;
		public Pango.Underline underline_style;
		public int fixed_height_rows;
		public uint calc_fixed_height;
		public CellRendererText ();
		public void set_fixed_height_from_font (int number_of_rows);
		[NoAccessorMethod]
		public weak bool align_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Alignment alignment { get; set; }
		[NoAccessorMethod]
		public weak Pango.AttrList attributes { get; set; }
		[NoAccessorMethod]
		public weak string background { set; }
		[NoAccessorMethod]
		public weak Gdk.Color background_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool background_set { get; set; }
		[NoAccessorMethod]
		public weak bool editable { get; set; }
		[NoAccessorMethod]
		public weak bool editable_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.EllipsizeMode ellipsize { get; set; }
		[NoAccessorMethod]
		public weak bool ellipsize_set { get; set; }
		[NoAccessorMethod]
		public weak string family { get; set; }
		[NoAccessorMethod]
		public weak bool family_set { get; set; }
		[NoAccessorMethod]
		public weak string font { get; set; }
		[NoAccessorMethod]
		public weak Pango.FontDescription font_desc { get; set; }
		[NoAccessorMethod]
		public weak string foreground { set; }
		[NoAccessorMethod]
		public weak Gdk.Color foreground_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool foreground_set { get; set; }
		[NoAccessorMethod]
		public weak string language { get; set; }
		[NoAccessorMethod]
		public weak bool language_set { get; set; }
		[NoAccessorMethod]
		public weak string markup { set; }
		[NoAccessorMethod]
		public weak int rise { get; set; }
		[NoAccessorMethod]
		public weak bool rise_set { get; set; }
		[NoAccessorMethod]
		public weak double scale { get; set; }
		[NoAccessorMethod]
		public weak bool scale_set { get; set; }
		[NoAccessorMethod]
		public weak bool single_paragraph_mode { get; set; }
		[NoAccessorMethod]
		public weak int size { get; set; }
		[NoAccessorMethod]
		public weak double size_points { get; set; }
		[NoAccessorMethod]
		public weak bool size_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Stretch stretch { get; set; }
		[NoAccessorMethod]
		public weak bool stretch_set { get; set; }
		[NoAccessorMethod]
		public weak bool strikethrough { get; set; }
		[NoAccessorMethod]
		public weak bool strikethrough_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Style style { get; set; }
		[NoAccessorMethod]
		public weak bool style_set { get; set; }
		[NoAccessorMethod]
		public weak string text { get; set; }
		[NoAccessorMethod]
		public weak Pango.Underline underline { get; set; }
		[NoAccessorMethod]
		public weak bool underline_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Variant variant { get; set; }
		[NoAccessorMethod]
		public weak bool variant_set { get; set; }
		[NoAccessorMethod]
		public weak int weight { get; set; }
		[NoAccessorMethod]
		public weak bool weight_set { get; set; }
		[NoAccessorMethod]
		public weak int width_chars { get; set; }
		[NoAccessorMethod]
		public weak Pango.WrapMode wrap_mode { get; set; }
		[NoAccessorMethod]
		public weak int wrap_width { get; set; }
		public signal void edited (string path, string new_text);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellRendererToggle : Gtk.CellRenderer {
		public bool get_active ();
		public bool get_radio ();
		public CellRendererToggle ();
		public void set_active (bool setting);
		public void set_radio (bool radio);
		[NoAccessorMethod]
		public weak bool activatable { get; set; }
		public weak bool active { get; set; }
		[NoAccessorMethod]
		public weak bool inconsistent { get; set; }
		[NoAccessorMethod]
		public weak int indicator_size { get; set; }
		public weak bool radio { get; set; }
		public signal void toggled (string path);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CellView : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout {
		public weak GLib.List get_cell_renderers ();
		public weak Gtk.TreePath get_displayed_row ();
		public bool get_size_of_row (Gtk.TreePath path, out Gtk.Requisition requisition);
		public CellView ();
		public CellView.with_markup (string markup);
		public CellView.with_pixbuf (Gdk.Pixbuf pixbuf);
		public CellView.with_text (string text);
		public void set_background_color (Gdk.Color color);
		public void set_displayed_row (Gtk.TreePath path);
		public void set_model (Gtk.TreeModel model);
		[NoAccessorMethod]
		public weak string background { set; }
		[NoAccessorMethod]
		public weak Gdk.Color background_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool background_set { get; set; }
		[NoAccessorMethod]
		public weak Gtk.TreeModel model { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CheckButton : Gtk.ToggleButton, Atk.Implementor, Gtk.Buildable {
		public CheckButton ();
		public CheckButton.with_label (string label);
		public CheckButton.with_mnemonic (string label);
		[NoWrapper]
		public virtual void draw_indicator (Gdk.Rectangle area);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class CheckMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable {
		public uint always_show_toggle;
		public bool get_active ();
		public bool get_draw_as_radio ();
		public bool get_inconsistent ();
		public CheckMenuItem ();
		public CheckMenuItem.with_label (string label);
		public CheckMenuItem.with_mnemonic (string label);
		public void set_active (bool is_active);
		public void set_draw_as_radio (bool draw_as_radio);
		public void set_inconsistent (bool setting);
		[NoWrapper]
		public virtual void draw_indicator (Gdk.Rectangle area);
		public weak bool active { get; set; }
		public weak bool draw_as_radio { get; set; }
		public weak bool inconsistent { get; set; }
		[HasEmitter]
		public signal void toggled ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Clipboard : GLib.Object {
		public void clear ();
		public static weak Gtk.Clipboard get (Gdk.Atom selection);
		public weak Gdk.Display get_display ();
		public static weak Gtk.Clipboard get_for_display (Gdk.Display display, Gdk.Atom selection);
		public weak GLib.Object get_owner ();
		public void request_contents (Gdk.Atom target, Gtk.ClipboardReceivedFunc callback, pointer user_data);
		public void request_image (Gtk.ClipboardImageReceivedFunc callback, pointer user_data);
		public void request_rich_text (Gtk.TextBuffer buffer, Gtk.ClipboardRichTextReceivedFunc callback, pointer user_data);
		public void request_targets (Gtk.ClipboardTargetsReceivedFunc callback, pointer user_data);
		public void request_text (Gtk.ClipboardTextReceivedFunc callback, pointer user_data);
		public void set_can_store (Gtk.TargetEntry[] targets);
		public void set_image (Gdk.Pixbuf pixbuf);
		public void set_text (string text, int len);
		public bool set_with_data (Gtk.TargetEntry[] targets, Gtk.ClipboardGetFunc get_func, Gtk.ClipboardClearFunc clear_func, pointer user_data);
		public bool set_with_owner (Gtk.TargetEntry[] targets, Gtk.ClipboardGetFunc get_func, Gtk.ClipboardClearFunc clear_func, GLib.Object owner);
		public void store ();
		public weak Gtk.SelectionData wait_for_contents (Gdk.Atom target);
		public weak Gdk.Pixbuf wait_for_image ();
		public uchar wait_for_rich_text (Gtk.TextBuffer buffer, out Gdk.Atom format, ulong length);
		public bool wait_for_targets (Gdk.Atom[] targets);
		public weak string wait_for_text ();
		public bool wait_is_image_available ();
		public bool wait_is_rich_text_available (Gtk.TextBuffer buffer);
		public bool wait_is_target_available (Gdk.Atom target);
		public bool wait_is_text_available ();
		public signal void owner_change (Gdk.Event p0);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ColorButton : Gtk.Button, Atk.Implementor, Gtk.Buildable {
		public ushort get_alpha ();
		public void get_color (out Gdk.Color color);
		public weak string get_title ();
		public bool get_use_alpha ();
		public ColorButton ();
		public ColorButton.with_color (Gdk.Color color);
		public void set_alpha (ushort alpha);
		public void set_color (Gdk.Color color);
		public void set_title (string title);
		public void set_use_alpha (bool use_alpha);
		public weak uint alpha { get; set; }
		public weak Gdk.Color color { get; set; }
		public weak string title { get; set; }
		public weak bool use_alpha { get; set; }
		public signal void color_set ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ColorSelection : Gtk.VBox, Atk.Implementor, Gtk.Buildable {
		public ushort get_current_alpha ();
		public void get_current_color (out Gdk.Color color);
		public bool get_has_opacity_control ();
		public bool get_has_palette ();
		public ushort get_previous_alpha ();
		public void get_previous_color (out Gdk.Color color);
		public bool is_adjusting ();
		public ColorSelection ();
		public static bool palette_from_string (string str, Gdk.Color[] colors);
		public static weak string palette_to_string (Gdk.Color[] colors);
		public static Gtk.ColorSelectionChangePaletteWithScreenFunc set_change_palette_with_screen_hook (Gtk.ColorSelectionChangePaletteWithScreenFunc func);
		public void set_current_alpha (ushort alpha);
		public void set_current_color (Gdk.Color color);
		public void set_has_opacity_control (bool has_opacity);
		public void set_has_palette (bool has_palette);
		public void set_previous_alpha (ushort alpha);
		public void set_previous_color (Gdk.Color color);
		public weak uint current_alpha { get; set; }
		public weak Gdk.Color current_color { get; set; }
		public weak bool has_opacity_control { get; set; }
		public weak bool has_palette { get; set; }
		public signal void color_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ColorSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget colorsel;
		public weak Gtk.Widget ok_button;
		public weak Gtk.Widget cancel_button;
		public weak Gtk.Widget help_button;
		public ColorSelectionDialog (string title);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ComboBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.CellLayout {
		public void append_text (string text);
		public int get_active ();
		public bool get_active_iter (out Gtk.TreeIter iter);
		public bool get_add_tearoffs ();
		public int get_column_span_column ();
		public bool get_focus_on_click ();
		public weak Gtk.TreeModel get_model ();
		public weak Atk.Object get_popup_accessible ();
		public Gtk.TreeViewRowSeparatorFunc get_row_separator_func ();
		public int get_row_span_column ();
		public weak string get_title ();
		public int get_wrap_width ();
		public void insert_text (int position, string text);
		public ComboBox ();
		public ComboBox.text ();
		public ComboBox.with_model (Gtk.TreeModel model);
		public void prepend_text (string text);
		public void remove_text (int position);
		public void set_active (int index_);
		public void set_active_iter (Gtk.TreeIter iter);
		public void set_add_tearoffs (bool add_tearoffs);
		public void set_column_span_column (int column_span);
		public void set_focus_on_click (bool focus_on_click);
		public void set_model (Gtk.TreeModel model);
		public void set_row_separator_func (Gtk.TreeViewRowSeparatorFunc func, pointer data, Gtk.DestroyNotify destroy);
		public void set_row_span_column (int row_span);
		public void set_title (string title);
		public void set_wrap_width (int width);
		public virtual weak string get_active_text ();
		public weak int active { get; set; }
		public weak bool add_tearoffs { get; set; }
		public weak int column_span_column { get; set; }
		public weak bool focus_on_click { get; set; }
		[NoAccessorMethod]
		public weak bool has_frame { get; set; }
		public weak Gtk.TreeModel model { get; set; }
		[NoAccessorMethod]
		public weak bool popup_shown { get; }
		public weak int row_span_column { get; set; }
		[NoAccessorMethod]
		public weak string tearoff_title { get; set; }
		public weak int wrap_width { get; set; }
		public signal void changed ();
		public signal void move_active (Gtk.ScrollType p0);
		[HasEmitter]
		public signal bool popdown ();
		[HasEmitter]
		public signal void popup ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ComboBoxEntry : Gtk.ComboBox, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.CellLayout {
		public int get_text_column ();
		public ComboBoxEntry ();
		public ComboBoxEntry.text ();
		public ComboBoxEntry.with_model (Gtk.TreeModel model, int text_column);
		public void set_text_column (int text_column);
		public weak int text_column { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Container : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget focus_child;
		public uint need_resize;
		public uint reallocate_redraws;
		public uint has_focus_chain;
		public void add_with_properties (Gtk.Widget widget, ...);
		public void child_get (Gtk.Widget child, ...);
		public void child_get_property (Gtk.Widget child, string property_name, GLib.Value value);
		public void child_get_valist (Gtk.Widget child, string first_property_name, pointer var_args);
		public void child_set (Gtk.Widget child, ...);
		public void child_set_property (Gtk.Widget child, string property_name, GLib.Value value);
		public void child_set_valist (Gtk.Widget child, string first_property_name, pointer var_args);
		public static weak GLib.ParamSpec class_find_child_property (GLib.ObjectClass cclass, string property_name);
		public static void class_install_child_property (pointer cclass, uint property_id, GLib.ParamSpec pspec);
		public static weak GLib.ParamSpec class_list_child_properties (GLib.ObjectClass cclass, uint n_properties);
		public void @foreach (Gtk.Callback callback, pointer callback_data);
		public uint get_border_width ();
		public weak GLib.List get_children ();
		public bool get_focus_chain (GLib.List focusable_widgets);
		public weak Gtk.Adjustment get_focus_hadjustment ();
		public weak Gtk.Adjustment get_focus_vadjustment ();
		public Gtk.ResizeMode get_resize_mode ();
		public void propagate_expose (Gtk.Widget child, Gdk.EventExpose event);
		public void resize_children ();
		public void set_border_width (uint border_width);
		public void set_focus_chain (GLib.List focusable_widgets);
		public void set_focus_hadjustment (Gtk.Adjustment adjustment);
		public void set_focus_vadjustment (Gtk.Adjustment adjustment);
		public void set_reallocate_redraws (bool needs_redraws);
		public void set_resize_mode (Gtk.ResizeMode resize_mode);
		public void unset_focus_chain ();
		public virtual GLib.Type child_type ();
		[NoWrapper]
		public virtual weak string composite_name (Gtk.Widget child);
		public virtual void forall (Gtk.Callback callback, pointer callback_data);
		[NoWrapper]
		public virtual void get_child_property (Gtk.Widget child, uint property_id, GLib.Value value, GLib.ParamSpec pspec);
		[NoWrapper]
		public virtual void set_child_property (Gtk.Widget child, uint property_id, GLib.Value value, GLib.ParamSpec pspec);
		public weak uint border_width { get; set; }
		[NoAccessorMethod]
		public weak Gtk.Widget child { set; }
		public weak Gtk.ResizeMode resize_mode { get; set; }
		[HasEmitter]
		public signal void add (Gtk.Widget widget);
		[HasEmitter]
		public signal void check_resize ();
		[HasEmitter]
		public signal void remove (Gtk.Widget widget);
		[HasEmitter]
		public signal void set_focus_child (Gtk.Widget widget);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Curve : Gtk.DrawingArea, Atk.Implementor, Gtk.Buildable {
		public int cursor_type;
		public weak Gdk.Pixmap pixmap;
		public int height;
		public int grab_point;
		public int last;
		public int num_points;
		public weak Gdk.Point point;
		public int num_ctlpoints;
		[NoArrayLength]
		public weak float[] ctlpoint;
		public void get_vector (int veclen, float[] vector);
		public Curve ();
		public void reset ();
		public void set_curve_type (Gtk.CurveType type);
		public void set_gamma (float gamma_);
		public void set_range (float min_x, float max_x, float min_y, float max_y);
		public void set_vector (int veclen, float[] vector);
		[NoAccessorMethod]
		public weak Gtk.CurveType curve_type { get; set; }
		[NoAccessorMethod]
		public weak float max_x { get; set; }
		[NoAccessorMethod]
		public weak float max_y { get; set; }
		[NoAccessorMethod]
		public weak float min_x { get; set; }
		[NoAccessorMethod]
		public weak float min_y { get; set; }
		public signal void curve_type_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Dialog : Gtk.Window, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget vbox;
		public weak Gtk.Widget action_area;
		public weak Gtk.Widget separator;
		public void add_action_widget (Gtk.Widget child, int response_id);
		public weak Gtk.Widget add_button (string button_text, int response_id);
		public void add_buttons (...);
		public bool get_has_separator ();
		public int get_response_for_widget (Gtk.Widget widget);
		public Dialog ();
		public Dialog.with_buttons (string title, Gtk.Window parent, Gtk.DialogFlags flags, ...);
		public int run ();
		[CCode (sentinel = "-1")]
		public void set_alternative_button_order (...);
		public void set_alternative_button_order_from_array (int n_params, int new_order);
		public void set_default_response (int response_id);
		public void set_has_separator (bool setting);
		public void set_response_sensitive (int response_id, bool setting);
		public weak bool has_separator { get; set; }
		public signal void close ();
		[HasEmitter]
		public signal void response (int response_id);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class DrawingArea : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public pointer draw_data;
		public DrawingArea ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Entry : Gtk.Widget, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.Editable {
		public uint visible;
		public uint overwrite_mode;
		public uint in_drag;
		public ushort text_length;
		public ushort text_max_length;
		public weak Gdk.Window text_area;
		public weak Gtk.IMContext im_context;
		public weak Gtk.Widget popup_menu;
		public int current_pos;
		public weak Pango.Layout cached_layout;
		public uint cache_includes_preedit;
		public uint need_im_reset;
		public uint cursor_visible;
		public uint in_click;
		public uint is_cell_renderer;
		public uint editing_canceled;
		public uint mouse_cursor_obscured;
		public uint select_words;
		public uint select_lines;
		public uint resolved_dir;
		public uint button;
		public uint blink_timeout;
		public uint recompute_idle;
		public int ascent;
		public int descent;
		public ushort text_size;
		public ushort n_bytes;
		public ushort preedit_length;
		public ushort preedit_cursor;
		public int dnd_position;
		public int drag_start_x;
		public int drag_start_y;
		public bool get_activates_default ();
		public float get_alignment ();
		public weak Gtk.EntryCompletion get_completion ();
		public weak Gtk.Adjustment get_cursor_hadjustment ();
		public bool get_has_frame ();
		public Gtk.Border get_inner_border ();
		public unichar get_invisible_char ();
		public weak Pango.Layout get_layout ();
		public void get_layout_offsets (int x, int y);
		public int get_max_length ();
		public weak string get_text ();
		public bool get_visibility ();
		public int get_width_chars ();
		public int layout_index_to_text_index (int layout_index);
		public Entry ();
		public void set_activates_default (bool setting);
		public void set_alignment (float xalign);
		public void set_completion (Gtk.EntryCompletion completion);
		public void set_cursor_hadjustment (Gtk.Adjustment adjustment);
		public void set_has_frame (bool setting);
		public void set_inner_border (Gtk.Border border);
		public void set_invisible_char (unichar ch);
		public void set_max_length (int max);
		public void set_text (string text);
		public void set_visibility (bool visible);
		public void set_width_chars (int n_chars);
		public int text_index_to_layout_index (int text_index);
		public weak bool activates_default { get; set; }
		[NoAccessorMethod]
		public weak int cursor_position { get; }
		[NoAccessorMethod]
		public weak bool editable { get; set; }
		public weak bool has_frame { get; set; }
		public weak Gtk.Border inner_border { get; set; }
		public weak uint invisible_char { get; set; }
		public weak int max_length { get; set; }
		[NoAccessorMethod]
		public weak int scroll_offset { get; }
		[NoAccessorMethod]
		public weak int selection_bound { get; }
		[NoAccessorMethod]
		public weak Gtk.ShadowType shadow_type { get; set; }
		public weak string text { get; set; }
		[NoAccessorMethod]
		public weak bool truncate_multiline { get; set; }
		public weak bool visibility { get; set; }
		public weak int width_chars { get; set; }
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		public signal void activate ();
		public signal void backspace ();
		public signal void copy_clipboard ();
		public signal void cut_clipboard ();
		public signal void delete_from_cursor (Gtk.DeleteType type, int count);
		public signal void insert_at_cursor (string str);
		public signal void move_cursor (Gtk.MovementStep step, int count, bool extend_selection);
		public signal void paste_clipboard ();
		public signal void populate_popup (Gtk.Menu menu);
		public signal void toggle_overwrite ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class EntryCompletion : GLib.Object, Gtk.Buildable, Gtk.CellLayout {
		public void complete ();
		public void delete_action (int index_);
		public weak string get_completion_prefix ();
		public weak Gtk.Widget get_entry ();
		public bool get_inline_completion ();
		public bool get_inline_selection ();
		public int get_minimum_key_length ();
		public weak Gtk.TreeModel get_model ();
		public bool get_popup_completion ();
		public bool get_popup_set_width ();
		public bool get_popup_single_match ();
		public int get_text_column ();
		public void insert_action_markup (int index_, string markup);
		public void insert_action_text (int index_, string text);
		public EntryCompletion ();
		public void set_inline_completion (bool inline_completion);
		public void set_inline_selection (bool inline_selection);
		public void set_match_func (Gtk.EntryCompletionMatchFunc func, pointer func_data, GLib.DestroyNotify func_notify);
		public void set_minimum_key_length (int length);
		public void set_model (Gtk.TreeModel model);
		public void set_popup_completion (bool popup_completion);
		public void set_popup_set_width (bool popup_set_width);
		public void set_popup_single_match (bool popup_single_match);
		public void set_text_column (int column);
		public weak bool inline_completion { get; set; }
		public weak bool inline_selection { get; set; }
		public weak int minimum_key_length { get; set; }
		public weak Gtk.TreeModel model { get; set; }
		public weak bool popup_completion { get; set; }
		public weak bool popup_set_width { get; set; }
		public weak bool popup_single_match { get; set; }
		public weak int text_column { get; set; }
		public signal void action_activated (int index_);
		public signal bool cursor_on_match (Gtk.TreeModel model, Gtk.TreeIter iter);
		[HasEmitter]
		public signal bool insert_prefix (string prefix);
		public signal bool match_selected (Gtk.TreeModel model, Gtk.TreeIter iter);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class EventBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public bool get_above_child ();
		public bool get_visible_window ();
		public EventBox ();
		public void set_above_child (bool above_child);
		public void set_visible_window (bool visible_window);
		public weak bool above_child { get; set; }
		public weak bool visible_window { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Expander : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public bool get_expanded ();
		public weak string get_label ();
		public weak Gtk.Widget get_label_widget ();
		public int get_spacing ();
		public bool get_use_markup ();
		public bool get_use_underline ();
		public Expander (string label);
		public Expander.with_mnemonic (string label);
		public void set_expanded (bool expanded);
		public void set_label (string label);
		public void set_label_widget (Gtk.Widget label_widget);
		public void set_spacing (int spacing);
		public void set_use_markup (bool use_markup);
		public void set_use_underline (bool use_underline);
		public weak bool expanded { get; set construct; }
		public weak string label { get; set construct; }
		public weak Gtk.Widget label_widget { get; set; }
		public weak int spacing { get; set; }
		public weak bool use_markup { get; set construct; }
		public weak bool use_underline { get; set construct; }
		public signal void activate ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FileChooserButton : Gtk.HBox, Atk.Implementor, Gtk.Buildable, Gtk.FileChooser {
		public bool get_focus_on_click ();
		public weak string get_title ();
		public int get_width_chars ();
		public FileChooserButton (string title, Gtk.FileChooserAction action);
		public FileChooserButton.with_backend (string title, Gtk.FileChooserAction action, string backend);
		public FileChooserButton.with_dialog (Gtk.Widget dialog);
		public void set_focus_on_click (bool focus_on_click);
		public void set_title (string title);
		public void set_width_chars (int n_chars);
		[NoAccessorMethod]
		public weak Gtk.FileChooser dialog { construct; }
		public weak bool focus_on_click { get; set; }
		public weak string title { get; set; }
		public weak int width_chars { get; set; }
		public signal void file_set ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FileChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.FileChooser {
		public FileChooserDialog (string title, Gtk.Window parent, Gtk.FileChooserAction action, ...);
		public FileChooserDialog.with_backend (string title, Gtk.Window parent, Gtk.FileChooserAction action, string backend, ...);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FileChooserWidget : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.FileChooser, Gtk.FileChooserEmbed {
		public FileChooserWidget (Gtk.FileChooserAction action);
		public FileChooserWidget.with_backend (Gtk.FileChooserAction action, string backend);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FileFilter : Gtk.Object {
		public void add_custom (Gtk.FileFilterFlags needed, Gtk.FileFilterFunc func, pointer data, GLib.DestroyNotify notify);
		public void add_mime_type (string mime_type);
		public void add_pattern (string pattern);
		public void add_pixbuf_formats ();
		public bool filter (Gtk.FileFilterInfo filter_info);
		public weak string get_name ();
		public Gtk.FileFilterFlags get_needed ();
		public FileFilter ();
		public void set_name (string name);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Fixed : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak GLib.List children;
		public bool get_has_window ();
		public void move (Gtk.Widget widget, int x, int y);
		public Fixed ();
		public void put (Gtk.Widget widget, int x, int y);
		public void set_has_window (bool has_window);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FontButton : Gtk.Button, Atk.Implementor, Gtk.Buildable {
		public weak string get_font_name ();
		public bool get_show_size ();
		public bool get_show_style ();
		public weak string get_title ();
		public bool get_use_font ();
		public bool get_use_size ();
		public FontButton ();
		public FontButton.with_font (string fontname);
		public bool set_font_name (string fontname);
		public void set_show_size (bool show_size);
		public void set_show_style (bool show_style);
		public void set_title (string title);
		public void set_use_font (bool use_font);
		public void set_use_size (bool use_size);
		public weak string font_name { get; set; }
		public weak bool show_size { get; set; }
		public weak bool show_style { get; set; }
		public weak string title { get; set; }
		public weak bool use_font { get; set; }
		public weak bool use_size { get; set; }
		public signal void font_set ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FontSelection : Gtk.VBox, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget font_entry;
		public weak Gtk.Widget family_list;
		public weak Gtk.Widget font_style_entry;
		public weak Gtk.Widget face_list;
		public weak Gtk.Widget size_entry;
		public weak Gtk.Widget size_list;
		public weak Gtk.Widget pixels_button;
		public weak Gtk.Widget points_button;
		public weak Gtk.Widget filter_button;
		public weak Gtk.Widget preview_entry;
		public weak Pango.FontFamily family;
		public weak Pango.FontFace face;
		public int size;
		public weak string get_font_name ();
		public weak string get_preview_text ();
		public FontSelection ();
		public bool set_font_name (string fontname);
		public void set_preview_text (string text);
		[NoAccessorMethod]
		public weak Gdk.Font font { get; }
		public weak string font_name { get; set; }
		public weak string preview_text { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class FontSelectionDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget fontsel;
		public weak Gtk.Widget main_vbox;
		public weak Gtk.Widget action_area;
		public weak Gtk.Widget ok_button;
		public weak Gtk.Widget apply_button;
		public weak Gtk.Widget cancel_button;
		public int dialog_width;
		public bool auto_resize;
		public weak string get_font_name ();
		public weak string get_preview_text ();
		public FontSelectionDialog (string title);
		public bool set_font_name (string fontname);
		public void set_preview_text (string text);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Frame : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public Gtk.Allocation child_allocation;
		public weak string get_label ();
		public void get_label_align (float xalign, float yalign);
		public weak Gtk.Widget get_label_widget ();
		public Gtk.ShadowType get_shadow_type ();
		public Frame (string label);
		public void set_label (string label);
		public void set_label_align (float xalign, float yalign);
		public void set_label_widget (Gtk.Widget label_widget);
		public void set_shadow_type (Gtk.ShadowType type);
		[NoWrapper]
		public virtual void compute_child_allocation (Gtk.Allocation allocation);
		public weak string label { get; set; }
		public weak Gtk.Widget label_widget { get; set; }
		[NoAccessorMethod]
		public weak float label_xalign { get; set; }
		[NoAccessorMethod]
		public weak float label_yalign { get; set; }
		[NoAccessorMethod]
		public weak Gtk.ShadowType shadow { get; set; }
		public weak Gtk.ShadowType shadow_type { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class GammaCurve : Gtk.VBox, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget table;
		public weak Gtk.Widget curve;
		[NoArrayLength]
		public weak Gtk.Widget[] button;
		public float gamma;
		public weak Gtk.Widget gamma_dialog;
		public weak Gtk.Widget gamma_text;
		public GammaCurve ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HBox : Gtk.Box, Atk.Implementor, Gtk.Buildable {
		public HBox (bool homogeneous, int spacing);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable {
		public HButtonBox ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable {
		public HPaned ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HRuler : Gtk.Ruler, Atk.Implementor, Gtk.Buildable {
		public HRuler ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable {
		public HScale (Gtk.Adjustment adjustment);
		public HScale.with_range (double min, double max, double step);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable {
		public HScrollbar (Gtk.Adjustment adjustment);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable {
		public HSeparator ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class HandleBox : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Window bin_window;
		public weak Gdk.Window float_window;
		public uint float_window_mapped;
		public uint in_drag;
		public uint shrink_on_detach;
		public int deskoff_x;
		public int deskoff_y;
		public Gtk.Allocation attach_allocation;
		public Gtk.Allocation float_allocation;
		public Gtk.PositionType get_handle_position ();
		public Gtk.ShadowType get_shadow_type ();
		public Gtk.PositionType get_snap_edge ();
		public HandleBox ();
		public void set_handle_position (Gtk.PositionType position);
		public void set_shadow_type (Gtk.ShadowType type);
		public void set_snap_edge (Gtk.PositionType edge);
		public weak Gtk.PositionType handle_position { get; set; }
		[NoAccessorMethod]
		public weak Gtk.ShadowType shadow { get; set; }
		public weak Gtk.ShadowType shadow_type { get; set; }
		public weak Gtk.PositionType snap_edge { get; set; }
		[NoAccessorMethod]
		public weak bool snap_edge_set { get; set; }
		public signal void child_attached (Gtk.Widget child);
		public signal void child_detached (Gtk.Widget child);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IMContext : GLib.Object {
		public virtual bool filter_keypress (Gdk.EventKey event);
		public virtual void focus_in ();
		public virtual void focus_out ();
		public virtual void get_preedit_string (string str, out weak Pango.AttrList attrs, int cursor_pos);
		public virtual bool get_surrounding (string text, int cursor_index);
		public virtual void reset ();
		public virtual void set_client_window (Gdk.Window window);
		public virtual void set_cursor_location (Gdk.Rectangle area);
		public virtual void set_surrounding (string text, int len, int cursor_index);
		public virtual void set_use_preedit (bool use_preedit);
		public signal void commit (string str);
		[HasEmitter]
		public signal bool delete_surrounding (int offset, int n_chars);
		public signal void preedit_changed ();
		public signal void preedit_end ();
		public signal void preedit_start ();
		public signal bool retrieve_surrounding ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IMContextSimple : Gtk.IMContext {
		public weak GLib.SList tables;
		[NoArrayLength]
		public weak uint[] compose_buffer;
		public unichar tentative_match;
		public int tentative_match_len;
		public uint in_hex_sequence;
		public uint modifiers_dropped;
		public void add_table (ushort data, int max_seq_len, int n_seqs);
		public IMContextSimple ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IMMulticontext : Gtk.IMContext {
		public weak Gtk.IMContext slave;
		public weak string context_id;
		public void append_menuitems (Gtk.MenuShell menushell);
		public IMMulticontext ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IconFactory : GLib.Object {
		public weak GLib.HashTable icons;
		public void add (string stock_id, Gtk.IconSet icon_set);
		public void add_default ();
		public weak Gtk.IconSet lookup (string stock_id);
		public static weak Gtk.IconSet lookup_default (string stock_id);
		public IconFactory ();
		public void remove_default ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IconTheme : GLib.Object {
		public static void add_builtin_icon (string icon_name, int size, Gdk.Pixbuf pixbuf);
		public void append_search_path (string path);
		public weak Gtk.IconInfo choose_icon (string[] icon_names, int size, Gtk.IconLookupFlags flags);
		public static GLib.Quark error_quark ();
		public static weak Gtk.IconTheme get_default ();
		public weak string get_example_icon_name ();
		public static weak Gtk.IconTheme get_for_screen (Gdk.Screen screen);
		public int get_icon_sizes (string icon_name);
		public void get_search_path (string path, int n_elements);
		public bool has_icon (string icon_name);
		public weak GLib.List list_contexts ();
		public weak GLib.List list_icons (string context);
		public weak Gdk.Pixbuf load_icon (string icon_name, int size, Gtk.IconLookupFlags flags) throws GLib.Error;
		public weak Gtk.IconInfo lookup_icon (string icon_name, int size, Gtk.IconLookupFlags flags);
		public IconTheme ();
		public void prepend_search_path (string path);
		public bool rescan_if_needed ();
		public void set_custom_theme (string theme_name);
		public void set_screen (Gdk.Screen screen);
		public void set_search_path (string[] path, int n_elements);
		public signal void changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class IconView : Gtk.Container, Atk.Implementor, Gtk.Buildable, Gtk.CellLayout {
		public void convert_widget_to_bin_window_coords (int wx, int wy, int bx, int by);
		public weak Gdk.Pixmap create_drag_icon (Gtk.TreePath path);
		public void enable_model_drag_dest (Gtk.TargetEntry[] targets, Gdk.DragAction actions);
		public void enable_model_drag_source (Gdk.ModifierType start_button_mask, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
		public int get_column_spacing ();
		public int get_columns ();
		public bool get_cursor (out weak Gtk.TreePath path, out weak Gtk.CellRenderer cell);
		public bool get_dest_item_at_pos (int drag_x, int drag_y, out weak Gtk.TreePath path, Gtk.IconViewDropPosition pos);
		public void get_drag_dest_item (out weak Gtk.TreePath path, Gtk.IconViewDropPosition pos);
		public bool get_item_at_pos (int x, int y, out weak Gtk.TreePath path, out weak Gtk.CellRenderer cell);
		public int get_item_width ();
		public int get_margin ();
		public int get_markup_column ();
		public weak Gtk.TreeModel get_model ();
		public Gtk.Orientation get_orientation ();
		public weak Gtk.TreePath get_path_at_pos (int x, int y);
		public int get_pixbuf_column ();
		public bool get_reorderable ();
		public int get_row_spacing ();
		public weak GLib.List get_selected_items ();
		public Gtk.SelectionMode get_selection_mode ();
		public int get_spacing ();
		public int get_text_column ();
		public int get_tooltip_column ();
		public bool get_tooltip_context (int x, int y, bool keyboard_tip, out weak Gtk.TreeModel model, out weak Gtk.TreePath path, out Gtk.TreeIter iter);
		public bool get_visible_range (out weak Gtk.TreePath start_path, out weak Gtk.TreePath end_path);
		public IconView ();
		public IconView.with_model (Gtk.TreeModel model);
		public bool path_is_selected (Gtk.TreePath path);
		public void scroll_to_path (Gtk.TreePath path, bool use_align, float row_align, float col_align);
		public void select_path (Gtk.TreePath path);
		public void selected_foreach (Gtk.IconViewForeachFunc func, pointer data);
		public void set_column_spacing (int column_spacing);
		public void set_columns (int columns);
		public void set_cursor (Gtk.TreePath path, Gtk.CellRenderer cell, bool start_editing);
		public void set_drag_dest_item (Gtk.TreePath path, Gtk.IconViewDropPosition pos);
		public void set_item_width (int item_width);
		public void set_margin (int margin);
		public void set_markup_column (int column);
		public void set_model (Gtk.TreeModel model);
		public void set_orientation (Gtk.Orientation orientation);
		public void set_pixbuf_column (int column);
		public void set_reorderable (bool reorderable);
		public void set_row_spacing (int row_spacing);
		public void set_selection_mode (Gtk.SelectionMode mode);
		public void set_spacing (int spacing);
		public void set_text_column (int column);
		public void set_tooltip_cell (Gtk.Tooltip tooltip, Gtk.TreePath path, Gtk.CellRenderer cell);
		public void set_tooltip_column (int column);
		public void set_tooltip_item (Gtk.Tooltip tooltip, Gtk.TreePath path);
		public void unselect_path (Gtk.TreePath path);
		public void unset_model_drag_dest ();
		public void unset_model_drag_source ();
		public weak int column_spacing { get; set; }
		public weak int columns { get; set; }
		public weak int item_width { get; set; }
		public weak int margin { get; set; }
		public weak int markup_column { get; set; }
		public weak Gtk.TreeModel model { get; set; }
		public weak Gtk.Orientation orientation { get; set; }
		public weak int pixbuf_column { get; set; }
		public weak bool reorderable { get; set; }
		public weak int row_spacing { get; set; }
		public weak Gtk.SelectionMode selection_mode { get; set; }
		public weak int spacing { get; set; }
		public weak int text_column { get; set; }
		public weak int tooltip_column { get; set; }
		public signal bool activate_cursor_item ();
		[HasEmitter]
		public signal void item_activated (Gtk.TreePath path);
		public signal bool move_cursor (Gtk.MovementStep step, int count);
		public signal void select_all ();
		public signal void select_cursor_item ();
		public signal void selection_changed ();
		public signal void set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public signal void toggle_cursor_item ();
		public signal void unselect_all ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Image : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
		public void clear ();
		public weak Gdk.PixbufAnimation get_animation ();
		public void get_icon_name (string icon_name, Gtk.IconSize size);
		public void get_icon_set (out weak Gtk.IconSet icon_set, Gtk.IconSize size);
		public void get_image (out weak Gdk.Image gdk_image, out weak Gdk.Bitmap mask);
		public weak Gdk.Pixbuf get_pixbuf ();
		public int get_pixel_size ();
		public void get_pixmap (out weak Gdk.Pixmap pixmap, out weak Gdk.Bitmap mask);
		public void get_stock (string stock_id, Gtk.IconSize size);
		public Gtk.ImageType get_storage_type ();
		public Image ();
		public Image.from_animation (Gdk.PixbufAnimation animation);
		public Image.from_file (string filename);
		public Image.from_icon_name (string icon_name, Gtk.IconSize size);
		public Image.from_icon_set (Gtk.IconSet icon_set, Gtk.IconSize size);
		public Image.from_image (Gdk.Image image, Gdk.Bitmap mask);
		public Image.from_pixbuf (Gdk.Pixbuf pixbuf);
		public Image.from_pixmap (Gdk.Pixmap pixmap, Gdk.Bitmap mask);
		public Image.from_stock (string stock_id, Gtk.IconSize size);
		public void set_from_animation (Gdk.PixbufAnimation animation);
		public void set_from_file (string filename);
		public void set_from_icon_name (string icon_name, Gtk.IconSize size);
		public void set_from_icon_set (Gtk.IconSet icon_set, Gtk.IconSize size);
		public void set_from_image (Gdk.Image gdk_image, Gdk.Bitmap mask);
		public void set_from_pixbuf (Gdk.Pixbuf pixbuf);
		public void set_from_pixmap (Gdk.Pixmap pixmap, Gdk.Bitmap mask);
		public void set_from_stock (string stock_id, Gtk.IconSize size);
		public void set_pixel_size (int pixel_size);
		[NoAccessorMethod]
		public weak string file { get; set; }
		[NoAccessorMethod]
		public weak string icon_name { get; set; }
		[NoAccessorMethod]
		public weak Gtk.IconSet icon_set { get; set; }
		[NoAccessorMethod]
		public weak int icon_size { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Image image { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixmap mask { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixbuf pixbuf { get; set; }
		[NoAccessorMethod]
		public weak Gdk.PixbufAnimation pixbuf_animation { get; set; }
		public weak int pixel_size { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixmap pixmap { get; set; }
		[NoAccessorMethod]
		public weak string stock { get; set; }
		public weak Gtk.ImageType storage_type { get; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ImageMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget get_image ();
		public ImageMenuItem ();
		public ImageMenuItem.from_stock (string stock_id, Gtk.AccelGroup accel_group);
		public ImageMenuItem.with_label (string label);
		public ImageMenuItem.with_mnemonic (string label);
		public void set_image (Gtk.Widget image);
		public weak Gtk.Widget image { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class InputDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget axis_list;
		public weak Gtk.Widget axis_listbox;
		public weak Gtk.Widget mode_optionmenu;
		public weak Gtk.Widget close_button;
		public weak Gtk.Widget save_button;
		[NoArrayLength]
		public weak Gtk.Widget[] axis_items;
		public weak Gdk.Device current_device;
		public weak Gtk.Widget keys_list;
		public weak Gtk.Widget keys_listbox;
		public InputDialog ();
		public signal void disable_device (Gdk.Device device);
		public signal void enable_device (Gdk.Device device);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Invisible : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public bool has_user_ref_count;
		public weak Gdk.Screen get_screen ();
		public Invisible ();
		public Invisible.for_screen (Gdk.Screen screen);
		public void set_screen (Gdk.Screen screen);
		public weak Gdk.Screen screen { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Item : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		[HasEmitter]
		public signal void deselect ();
		[HasEmitter]
		public signal void select ();
		[HasEmitter]
		public signal void toggle ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Label : Gtk.Misc, Atk.Implementor, Gtk.Buildable {
		public uint jtype;
		public uint have_transform;
		public uint in_click;
		public uint pattern_set;
		public weak string text;
		public weak Pango.AttrList attrs;
		public weak Pango.AttrList effective_attrs;
		public weak Pango.Layout layout;
		public weak Gtk.Window mnemonic_window;
		public weak Gtk.LabelSelectionInfo select_info;
		public double get_angle ();
		public weak Pango.AttrList get_attributes ();
		public Pango.EllipsizeMode get_ellipsize ();
		public Gtk.Justification get_justify ();
		public weak string get_label ();
		public weak Pango.Layout get_layout ();
		public void get_layout_offsets (int x, int y);
		public bool get_line_wrap ();
		public Pango.WrapMode get_line_wrap_mode ();
		public int get_max_width_chars ();
		public uint get_mnemonic_keyval ();
		public weak Gtk.Widget get_mnemonic_widget ();
		public bool get_selectable ();
		public bool get_selection_bounds (int start, int end);
		public bool get_single_line_mode ();
		public weak string get_text ();
		public bool get_use_markup ();
		public bool get_use_underline ();
		public int get_width_chars ();
		public Label (string str);
		public Label.with_mnemonic (string str);
		public void select_region (int start_offset, int end_offset);
		public void set_angle (double angle);
		public void set_attributes (Pango.AttrList attrs);
		public void set_ellipsize (Pango.EllipsizeMode mode);
		public void set_justify (Gtk.Justification jtype);
		public void set_label (string str);
		public void set_line_wrap (bool wrap);
		public void set_line_wrap_mode (Pango.WrapMode wrap_mode);
		public void set_markup (string str);
		public void set_markup_with_mnemonic (string str);
		public void set_max_width_chars (int n_chars);
		public void set_mnemonic_widget (Gtk.Widget widget);
		public void set_pattern (string pattern);
		public void set_selectable (bool setting);
		public void set_single_line_mode (bool single_line_mode);
		public void set_text (string str);
		public void set_text_with_mnemonic (string str);
		public void set_use_markup (bool setting);
		public void set_use_underline (bool setting);
		public void set_width_chars (int n_chars);
		public weak double angle { get; set; }
		public weak Pango.AttrList attributes { get; set; }
		[NoAccessorMethod]
		public weak int cursor_position { get; }
		public weak Pango.EllipsizeMode ellipsize { get; set; }
		public weak Gtk.Justification justify { get; set; }
		public weak string label { get; set; }
		public weak int max_width_chars { get; set; }
		public weak uint mnemonic_keyval { get; }
		public weak Gtk.Widget mnemonic_widget { get; set; }
		public weak string pattern { set; }
		public weak bool selectable { get; set; }
		[NoAccessorMethod]
		public weak int selection_bound { get; }
		public weak bool single_line_mode { get; set; }
		public weak bool use_markup { get; set; }
		public weak bool use_underline { get; set; }
		public weak int width_chars { get; set; }
		[NoAccessorMethod]
		public weak bool wrap { get; set; }
		[NoAccessorMethod]
		public weak Pango.WrapMode wrap_mode { get; set; }
		public signal void copy_clipboard ();
		public signal void move_cursor (Gtk.MovementStep step, int count, bool extend_selection);
		public signal void populate_popup (Gtk.Menu menu);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Layout : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak GLib.List children;
		public weak Gdk.Window bin_window;
		public Gdk.VisibilityState visibility;
		public int scroll_x;
		public int scroll_y;
		public uint freeze_count;
		public weak Gtk.Adjustment get_hadjustment ();
		public void get_size (uint width, uint height);
		public weak Gtk.Adjustment get_vadjustment ();
		public void move (Gtk.Widget child_widget, int x, int y);
		public Layout (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public void put (Gtk.Widget child_widget, int x, int y);
		public void set_hadjustment (Gtk.Adjustment adjustment);
		public void set_size (uint width, uint height);
		public void set_vadjustment (Gtk.Adjustment adjustment);
		public weak Gtk.Adjustment hadjustment { get; set; }
		[NoAccessorMethod]
		public weak uint height { get; set; }
		public weak Gtk.Adjustment vadjustment { get; set; }
		[NoAccessorMethod]
		public weak uint width { get; set; }
		public signal void set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class LinkButton : Gtk.Button, Atk.Implementor, Gtk.Buildable {
		public weak string get_uri ();
		public LinkButton (string uri);
		public LinkButton.with_label (string uri, string label);
		public void set_uri (string uri);
		public static Gtk.LinkButtonUriFunc set_uri_hook (Gtk.LinkButtonUriFunc func, pointer data, GLib.DestroyNotify destroy);
		public weak string uri { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ListStore : GLib.Object, Gtk.Buildable, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource, Gtk.TreeDragDest {
		public int stamp;
		public pointer seq;
		public weak GLib.List sort_list;
		public int n_columns;
		public int sort_column_id;
		public Gtk.SortType order;
		[NoArrayLength]
		public weak GLib.Type[] column_headers;
		public int length;
		public Gtk.TreeIterCompareFunc default_sort_func;
		public pointer default_sort_data;
		public Gtk.DestroyNotify default_sort_destroy;
		public uint columns_dirty;
		public void append (out Gtk.TreeIter iter);
		public void clear ();
		public void insert (out Gtk.TreeIter iter, int position);
		public void insert_after (out Gtk.TreeIter iter, Gtk.TreeIter? sibling);
		public void insert_before (out Gtk.TreeIter iter, Gtk.TreeIter? sibling);
		[CCode (sentinel = "-1")]
		public void insert_with_values (out Gtk.TreeIter iter, int position, ...);
		public void insert_with_valuesv (out Gtk.TreeIter iter, int position, int columns, GLib.Value[] values);
		public bool iter_is_valid (Gtk.TreeIter iter);
		public void move_after (Gtk.TreeIter iter, Gtk.TreeIter? position);
		public void move_before (Gtk.TreeIter iter, Gtk.TreeIter? position);
		public ListStore (int n_columns, ...);
		[CCode (cname = "gtk_list_store_newv")]
		public ListStore.newv (int n_columns, GLib.Type[] types);
		public void prepend (out Gtk.TreeIter iter);
		public bool remove (Gtk.TreeIter iter);
		public void reorder (int new_order);
		[CCode (sentinel = "-1")]
		public void set (Gtk.TreeIter iter, ...);
		public void set_column_types (int n_columns, GLib.Type[] types);
		public void set_valist (Gtk.TreeIter iter, pointer var_args);
		public void set_value (Gtk.TreeIter iter, int column, GLib.Value value);
		public void set_valuesv (Gtk.TreeIter iter, int columns, GLib.Value[] values);
		public void swap (Gtk.TreeIter a, Gtk.TreeIter b);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Menu : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget parent_menu_item;
		public weak Gtk.Widget old_active_menu_item;
		public weak Gtk.AccelGroup accel_group;
		public weak string accel_path;
		public Gtk.MenuPositionFunc position_func;
		public pointer position_func_data;
		public uint toggle_size;
		public weak Gtk.Widget toplevel;
		public weak Gtk.Widget tearoff_window;
		public weak Gtk.Widget tearoff_hbox;
		public weak Gtk.Widget tearoff_scrollbar;
		public weak Gtk.Adjustment tearoff_adjustment;
		public weak Gdk.Window view_window;
		public weak Gdk.Window bin_window;
		public int scroll_offset;
		public int saved_scroll_offset;
		public int scroll_step;
		public uint timeout_id;
		public weak Gdk.Region navigation_region;
		public uint navigation_timeout;
		public uint needs_destruction_ref_count;
		public uint torn_off;
		public uint tearoff_active;
		public uint scroll_fast;
		public uint upper_arrow_visible;
		public uint lower_arrow_visible;
		public uint upper_arrow_prelight;
		public uint lower_arrow_prelight;
		public void attach (Gtk.Widget child, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach);
		public void attach_to_widget (Gtk.Widget attach_widget, Gtk.MenuDetachFunc detacher);
		public void detach ();
		public weak Gtk.AccelGroup get_accel_group ();
		public weak Gtk.Widget get_active ();
		public weak Gtk.Widget get_attach_widget ();
		public static weak GLib.List get_for_attach_widget (Gtk.Widget widget);
		public bool get_tearoff_state ();
		public weak string get_title ();
		public Menu ();
		public void popdown ();
		public void popup (Gtk.Widget parent_menu_shell, Gtk.Widget parent_menu_item, Gtk.MenuPositionFunc func, pointer data, uint button, uint activate_time);
		public void reorder_child (Gtk.Widget child, int position);
		public void reposition ();
		public void set_accel_group (Gtk.AccelGroup accel_group);
		public void set_accel_path (string accel_path);
		public void set_active (uint index_);
		public void set_monitor (int monitor_num);
		public void set_screen (Gdk.Screen screen);
		public void set_tearoff_state (bool torn_off);
		public void set_title (string title);
		public weak bool tearoff_state { get; set; }
		[NoAccessorMethod]
		public weak string tearoff_title { get; set; }
		public signal void move_scroll (Gtk.ScrollType p0);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class MenuBar : Gtk.MenuShell, Atk.Implementor, Gtk.Buildable {
		public Gtk.PackDirection get_child_pack_direction ();
		public Gtk.PackDirection get_pack_direction ();
		public MenuBar ();
		public void set_child_pack_direction (Gtk.PackDirection child_pack_dir);
		public void set_pack_direction (Gtk.PackDirection pack_dir);
		public weak Gtk.PackDirection child_pack_direction { get; set; }
		public weak Gtk.PackDirection pack_direction { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class MenuItem : Gtk.Item, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Window event_window;
		public ushort toggle_size;
		public ushort accelerator_width;
		public weak string accel_path;
		public uint show_submenu_indicator;
		public uint submenu_placement;
		public uint submenu_direction;
		public uint right_justify;
		public uint timer_from_keypress;
		public uint from_menubar;
		public uint timer;
		public void deselect ();
		public bool get_right_justified ();
		public weak Gtk.Widget get_submenu ();
		public MenuItem ();
		public MenuItem.with_label (string label);
		public MenuItem.with_mnemonic (string label);
		public void select ();
		public void set_accel_path (string accel_path);
		public void set_right_justified (bool right_justified);
		public void set_submenu (Gtk.Widget submenu);
		public weak Gtk.Menu submenu { get; set; }
		[HasEmitter]
		public signal void activate ();
		public signal void activate_item ();
		[HasEmitter]
		public signal void toggle_size_allocate (int allocation);
		[HasEmitter]
		public signal void toggle_size_request (pointer requisition);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class MenuShell : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak GLib.List children;
		public weak Gtk.Widget active_menu_item;
		public weak Gtk.Widget parent_menu_shell;
		public uint button;
		public uint activate_time;
		public uint active;
		public uint have_grab;
		public uint have_xgrab;
		public uint ignore_leave;
		public uint menu_flag;
		public uint ignore_enter;
		public void activate_item (Gtk.Widget menu_item, bool force_deactivate);
		public void append (Gtk.Widget child);
		public void deselect ();
		public bool get_take_focus ();
		public void prepend (Gtk.Widget child);
		public void select_first (bool search_sensitive);
		public void set_take_focus (bool take_focus);
		[NoWrapper]
		public virtual int get_popup_delay ();
		public virtual void insert (Gtk.Widget child, int position);
		public virtual void select_item (Gtk.Widget menu_item);
		public weak bool take_focus { get; set; }
		public signal void activate_current (bool force_hide);
		[HasEmitter]
		public signal void cancel ();
		public signal void cycle_focus (Gtk.DirectionType p0);
		[HasEmitter]
		public signal void deactivate ();
		public signal void move_current (Gtk.MenuDirectionType direction);
		public signal bool move_selected (int distance);
		public signal void selection_done ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class MenuToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget get_menu ();
		public MenuToolButton (Gtk.Widget icon_widget, string label);
		public MenuToolButton.from_stock (string stock_id);
		public void set_arrow_tooltip_markup (string markup);
		public void set_arrow_tooltip_text (string text);
		public void set_menu (Gtk.Widget menu);
		public weak Gtk.Menu menu { get; set; }
		public signal void show_menu ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class MessageDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget label;
		public void format_secondary_markup (string message_format);
		public void format_secondary_text (string message_format);
		public MessageDialog (Gtk.Window parent, Gtk.DialogFlags flags, Gtk.MessageType type, Gtk.ButtonsType buttons, string message_format);
		public MessageDialog.with_markup (Gtk.Window parent, Gtk.DialogFlags flags, Gtk.MessageType type, Gtk.ButtonsType buttons, string message_format);
		public void set_image (Gtk.Widget image);
		public void set_markup (string str);
		[NoAccessorMethod]
		public weak Gtk.ButtonsType buttons { construct; }
		[NoAccessorMethod]
		public weak Gtk.Widget image { get; set; }
		[NoAccessorMethod]
		public weak Gtk.MessageType message_type { get; set construct; }
		[NoAccessorMethod]
		public weak string secondary_text { get; set; }
		[NoAccessorMethod]
		public weak bool secondary_use_markup { get; set; }
		[NoAccessorMethod]
		public weak string text { get; set; }
		[NoAccessorMethod]
		public weak bool use_markup { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Misc : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public void get_alignment (float xalign, float yalign);
		public void get_padding (int xpad, int ypad);
		public void set_alignment (float xalign, float yalign);
		public void set_padding (int xpad, int ypad);
		[NoAccessorMethod]
		public weak float xalign { get; set; }
		[NoAccessorMethod]
		public weak int xpad { get; set; }
		[NoAccessorMethod]
		public weak float yalign { get; set; }
		[NoAccessorMethod]
		public weak int ypad { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Notebook : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.NotebookPage cur_page;
		public weak GLib.List children;
		public weak GLib.List first_tab;
		public weak Gtk.Widget menu;
		public weak Gdk.Window event_window;
		public uint timer;
		public uint in_child;
		public uint click_child;
		public uint button;
		public uint need_timer;
		public uint child_has_focus;
		public uint have_visible_child;
		public uint focus_out;
		public uint has_before_previous;
		public uint has_before_next;
		public uint has_after_previous;
		public uint has_after_next;
		public int append_page (Gtk.Widget child, Gtk.Widget tab_label);
		public int append_page_menu (Gtk.Widget child, Gtk.Widget tab_label, Gtk.Widget menu_label);
		public int get_current_page ();
		public pointer get_group ();
		public weak Gtk.Widget get_menu_label (Gtk.Widget child);
		public weak string get_menu_label_text (Gtk.Widget child);
		public int get_n_pages ();
		public weak Gtk.Widget get_nth_page (int page_num);
		public bool get_scrollable ();
		public bool get_show_border ();
		public bool get_show_tabs ();
		public bool get_tab_detachable (Gtk.Widget child);
		public weak Gtk.Widget get_tab_label (Gtk.Widget child);
		public weak string get_tab_label_text (Gtk.Widget child);
		public Gtk.PositionType get_tab_pos ();
		public bool get_tab_reorderable (Gtk.Widget child);
		public int insert_page_menu (Gtk.Widget child, Gtk.Widget tab_label, Gtk.Widget menu_label, int position);
		public Notebook ();
		public void next_page ();
		public void popup_disable ();
		public void popup_enable ();
		public int prepend_page (Gtk.Widget child, Gtk.Widget tab_label);
		public int prepend_page_menu (Gtk.Widget child, Gtk.Widget tab_label, Gtk.Widget menu_label);
		public void prev_page ();
		public void query_tab_label_packing (Gtk.Widget child, bool expand, bool fill, Gtk.PackType pack_type);
		public void remove_page (int page_num);
		public void reorder_child (Gtk.Widget child, int position);
		public void set_current_page (int page_num);
		public void set_group (pointer group);
		public void set_menu_label (Gtk.Widget child, Gtk.Widget menu_label);
		public void set_menu_label_text (Gtk.Widget child, string menu_text);
		public void set_scrollable (bool scrollable);
		public void set_show_border (bool show_border);
		public void set_show_tabs (bool show_tabs);
		public void set_tab_detachable (Gtk.Widget child, bool detachable);
		public void set_tab_label (Gtk.Widget child, Gtk.Widget tab_label);
		public void set_tab_label_packing (Gtk.Widget child, bool expand, bool fill, Gtk.PackType pack_type);
		public void set_tab_label_text (Gtk.Widget child, string tab_text);
		public void set_tab_pos (Gtk.PositionType pos);
		public void set_tab_reorderable (Gtk.Widget child, bool reorderable);
		public static void set_window_creation_hook (Gtk.NotebookWindowCreationFunc func, pointer data, GLib.DestroyNotify destroy);
		public virtual int insert_page (Gtk.Widget child, Gtk.Widget tab_label, int position);
		[NoAccessorMethod]
		public weak bool enable_popup { get; set; }
		public weak pointer group { get; set; }
		[NoAccessorMethod]
		public weak int group_id { get; set; }
		[NoAccessorMethod]
		public weak bool homogeneous { get; set; }
		[NoAccessorMethod]
		public weak int page { get; set; }
		public weak bool scrollable { get; set; }
		public weak bool show_border { get; set; }
		public weak bool show_tabs { get; set; }
		[NoAccessorMethod]
		public weak uint tab_border { set; }
		[NoAccessorMethod]
		public weak uint tab_hborder { get; set; }
		public weak Gtk.PositionType tab_pos { get; set; }
		[NoAccessorMethod]
		public weak uint tab_vborder { get; set; }
		public signal bool change_current_page (int offset);
		public signal weak Gtk.Notebook create_window (Gtk.Widget page, int x, int y);
		public signal bool focus_tab (Gtk.NotebookTab type);
		public signal void move_focus_out (Gtk.DirectionType direction);
		public signal void page_added (Gtk.Widget p0, uint p1);
		public signal void page_removed (Gtk.Widget p0, uint p1);
		public signal void page_reordered (Gtk.Widget p0, uint p1);
		public signal bool reorder_tab (Gtk.DirectionType direction, bool move_to_last);
		public signal bool select_page (bool move_focus);
		public signal void switch_page (pointer page, uint page_num);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Object : GLib.InitiallyUnowned {
		public uint flags;
		[NoWrapper]
		public virtual void get_arg (Gtk.Arg arg, uint arg_id);
		[NoWrapper]
		public virtual void set_arg (Gtk.Arg arg, uint arg_id);
		[NoAccessorMethod]
		public weak pointer user_data { get; set; }
		[HasEmitter]
		public signal void destroy ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class PageSetup : GLib.Object {
		public weak Gtk.PageSetup copy ();
		public double get_bottom_margin (Gtk.Unit unit);
		public double get_left_margin (Gtk.Unit unit);
		public Gtk.PageOrientation get_orientation ();
		public double get_page_height (Gtk.Unit unit);
		public double get_page_width (Gtk.Unit unit);
		public double get_paper_height (Gtk.Unit unit);
		public weak Gtk.PaperSize get_paper_size ();
		public double get_paper_width (Gtk.Unit unit);
		public double get_right_margin (Gtk.Unit unit);
		public double get_top_margin (Gtk.Unit unit);
		public PageSetup ();
		public PageSetup.from_file (string file_name) throws GLib.Error;
		public PageSetup.from_key_file (GLib.KeyFile key_file, string group_name) throws GLib.Error;
		public void set_bottom_margin (double margin, Gtk.Unit unit);
		public void set_left_margin (double margin, Gtk.Unit unit);
		public void set_orientation (Gtk.PageOrientation orientation);
		public void set_paper_size (Gtk.PaperSize size);
		public void set_paper_size_and_default_margins (Gtk.PaperSize size);
		public void set_right_margin (double margin, Gtk.Unit unit);
		public void set_top_margin (double margin, Gtk.Unit unit);
		public bool to_file (string file_name) throws GLib.Error;
		public void to_key_file (GLib.KeyFile key_file, string group_name);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Paned : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget child1;
		public weak Gtk.Widget child2;
		public weak Gdk.Window handle;
		public weak Gdk.GC xor_gc;
		public Gdk.CursorType cursor_type;
		public Gdk.Rectangle handle_pos;
		public int child1_size;
		public int last_allocation;
		public uint in_drag;
		public uint child1_shrink;
		public uint child1_resize;
		public uint child2_shrink;
		public uint child2_resize;
		public uint orientation;
		public uint in_recursion;
		public uint handle_prelit;
		public weak Gtk.Widget last_child1_focus;
		public weak Gtk.Widget last_child2_focus;
		public int drag_pos;
		public int original_position;
		public void add1 (Gtk.Widget child);
		public void add2 (Gtk.Widget child);
		public weak Gtk.Widget get_child1 ();
		public weak Gtk.Widget get_child2 ();
		public int get_position ();
		public void pack1 (Gtk.Widget child, bool resize, bool shrink);
		public void pack2 (Gtk.Widget child, bool resize, bool shrink);
		public void set_position (int position);
		[NoAccessorMethod]
		public weak int max_position { get; }
		[NoAccessorMethod]
		public weak int min_position { get; }
		public weak int position { get; set; }
		[NoAccessorMethod]
		public weak bool position_set { get; set; }
		public signal bool accept_position ();
		public signal bool cancel_position ();
		public signal bool cycle_child_focus (bool reverse);
		public signal bool cycle_handle_focus (bool reverse);
		public signal bool move_handle (Gtk.ScrollType scroll);
		public signal bool toggle_handle_focus ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Plug : Gtk.Window, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Window socket_window;
		public weak Gtk.Widget modality_window;
		public weak Gtk.WindowGroup modality_group;
		public weak GLib.HashTable grabbed_keys;
		public uint same_app;
		public void @construct (Gdk.NativeWindow socket_id);
		public void construct_for_display (Gdk.Display display, Gdk.NativeWindow socket_id);
		public weak Gdk.NativeWindow get_id ();
		public Plug (Gdk.NativeWindow socket_id);
		public Plug.for_display (Gdk.Display display, Gdk.NativeWindow socket_id);
		[NoAccessorMethod]
		public weak bool embedded { get; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class PrintContext : GLib.Object {
		public weak Pango.Context create_pango_context ();
		public weak Pango.Layout create_pango_layout ();
		public weak Cairo.Context get_cairo_context ();
		public double get_dpi_x ();
		public double get_dpi_y ();
		public double get_height ();
		public weak Gtk.PageSetup get_page_setup ();
		public weak Pango.FontMap get_pango_fontmap ();
		public double get_width ();
		public void set_cairo_context (Cairo.Context cr, double dpi_x, double dpi_y);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class PrintOperation : GLib.Object, Gtk.PrintOperationPreview {
		public void cancel ();
		public weak Gtk.PageSetup get_default_page_setup ();
		public void get_error () throws GLib.Error;
		public weak Gtk.PrintSettings get_print_settings ();
		public Gtk.PrintStatus get_status ();
		public weak string get_status_string ();
		public bool is_finished ();
		public PrintOperation ();
		public Gtk.PrintOperationResult run (Gtk.PrintOperationAction action, Gtk.Window parent) throws GLib.Error;
		public void set_allow_async (bool allow_async);
		public void set_current_page (int current_page);
		public void set_custom_tab_label (string label);
		public void set_default_page_setup (Gtk.PageSetup default_page_setup);
		public void set_export_filename (string filename);
		public void set_job_name (string job_name);
		public void set_n_pages (int n_pages);
		public void set_print_settings (Gtk.PrintSettings print_settings);
		public void set_show_progress (bool show_progress);
		public void set_track_print_status (bool track_status);
		public void set_unit (Gtk.Unit unit);
		public void set_use_full_page (bool full_page);
		[NoAccessorMethod]
		public weak bool allow_async { get; set; }
		[NoAccessorMethod]
		public weak int current_page { get; set; }
		[NoAccessorMethod]
		public weak string custom_tab_label { get; set; }
		public weak Gtk.PageSetup default_page_setup { get; set; }
		[NoAccessorMethod]
		public weak string export_filename { get; set; }
		[NoAccessorMethod]
		public weak string job_name { get; set; }
		[NoAccessorMethod]
		public weak int n_pages { get; set; }
		public weak Gtk.PrintSettings print_settings { get; set; }
		[NoAccessorMethod]
		public weak bool show_progress { get; set; }
		public weak Gtk.PrintStatus status { get; }
		public weak string status_string { get; }
		[NoAccessorMethod]
		public weak bool track_print_status { get; set; }
		[NoAccessorMethod]
		public weak Gtk.Unit unit { get; set; }
		[NoAccessorMethod]
		public weak bool use_full_page { get; set; }
		public signal void begin_print (Gtk.PrintContext context);
		public signal weak GLib.Object create_custom_widget ();
		public signal void custom_widget_apply (Gtk.Widget widget);
		public signal void done (Gtk.PrintOperationResult result);
		public signal void draw_page (Gtk.PrintContext context, int page_nr);
		public signal void end_print (Gtk.PrintContext context);
		public signal bool paginate (Gtk.PrintContext context);
		public signal bool preview (Gtk.PrintOperationPreview preview, Gtk.PrintContext context, Gtk.Window parent);
		public signal void request_page_setup (Gtk.PrintContext context, int page_nr, Gtk.PageSetup setup);
		public signal void status_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class PrintSettings : GLib.Object {
		public weak Gtk.PrintSettings copy ();
		public void @foreach (Gtk.PrintSettingsFunc func, pointer user_data);
		public weak string get (string key);
		public bool get_bool (string key);
		public bool get_collate ();
		public weak string get_default_source ();
		public weak string get_dither ();
		public double get_double (string key);
		public double get_double_with_default (string key, double def);
		public Gtk.PrintDuplex get_duplex ();
		public weak string get_finishings ();
		public int get_int (string key);
		public int get_int_with_default (string key, int def);
		public double get_length (string key, Gtk.Unit unit);
		public weak string get_media_type ();
		public int get_n_copies ();
		public int get_number_up ();
		public Gtk.PageOrientation get_orientation ();
		public weak string get_output_bin ();
		public weak Gtk.PageRange get_page_ranges (int num_ranges);
		public Gtk.PageSet get_page_set ();
		public double get_paper_height (Gtk.Unit unit);
		public weak Gtk.PaperSize get_paper_size ();
		public double get_paper_width (Gtk.Unit unit);
		public Gtk.PrintPages get_print_pages ();
		public weak string get_printer ();
		public Gtk.PrintQuality get_quality ();
		public int get_resolution ();
		public bool get_reverse ();
		public double get_scale ();
		public bool get_use_color ();
		public bool has_key (string key);
		public PrintSettings ();
		public PrintSettings.from_file (string file_name) throws GLib.Error;
		public PrintSettings.from_key_file (GLib.KeyFile key_file, string group_name) throws GLib.Error;
		public void set (string key, string value);
		public void set_bool (string key, bool value);
		public void set_collate (bool collate);
		public void set_default_source (string default_source);
		public void set_dither (string dither);
		public void set_double (string key, double value);
		public void set_duplex (Gtk.PrintDuplex duplex);
		public void set_finishings (string finishings);
		public void set_int (string key, int value);
		public void set_length (string key, double value, Gtk.Unit unit);
		public void set_media_type (string media_type);
		public void set_n_copies (int num_copies);
		public void set_number_up (int number_up);
		public void set_orientation (Gtk.PageOrientation orientation);
		public void set_output_bin (string output_bin);
		public void set_page_ranges (Gtk.PageRange page_ranges, int num_ranges);
		public void set_page_set (Gtk.PageSet page_set);
		public void set_paper_height (double height, Gtk.Unit unit);
		public void set_paper_size (Gtk.PaperSize paper_size);
		public void set_paper_width (double width, Gtk.Unit unit);
		public void set_print_pages (Gtk.PrintPages pages);
		public void set_printer (string printer);
		public void set_quality (Gtk.PrintQuality quality);
		public void set_resolution (int resolution);
		public void set_reverse (bool reverse);
		public void set_scale (double scale);
		public void set_use_color (bool use_color);
		public bool to_file (string file_name) throws GLib.Error;
		public void to_key_file (GLib.KeyFile key_file, string group_name);
		public void unset (string key);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ProgressBar : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public uint blocks;
		public int in_block;
		public int activity_pos;
		public double pulse_fraction;
		public uint activity_dir;
		public uint dirty;
		public Pango.EllipsizeMode get_ellipsize ();
		public double get_fraction ();
		public Gtk.ProgressBarOrientation get_orientation ();
		public double get_pulse_step ();
		public weak string get_text ();
		public ProgressBar ();
		public void pulse ();
		public void set_ellipsize (Pango.EllipsizeMode mode);
		public void set_fraction (double fraction);
		public void set_orientation (Gtk.ProgressBarOrientation orientation);
		public void set_pulse_step (double fraction);
		public void set_text (string text);
		[NoAccessorMethod]
		public weak uint activity_blocks { get; set; }
		[NoAccessorMethod]
		public weak uint activity_step { get; set; }
		[NoAccessorMethod]
		public weak Gtk.Adjustment adjustment { get; set; }
		[NoAccessorMethod]
		public weak Gtk.ProgressBarStyle bar_style { get; set; }
		[NoAccessorMethod]
		public weak uint discrete_blocks { get; set; }
		public weak Pango.EllipsizeMode ellipsize { get; set; }
		public weak double fraction { get; set; }
		public weak Gtk.ProgressBarOrientation orientation { get; set; }
		public weak double pulse_step { get; set; }
		public weak string text { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RadioAction : Gtk.ToggleAction, Gtk.Buildable {
		public int get_current_value ();
		public weak GLib.SList get_group ();
		public RadioAction (string name, string label, string tooltip, string stock_id, int value);
		public void set_current_value (int current_value);
		public void set_group (GLib.SList group);
		public weak int current_value { get; set; }
		public weak Gtk.RadioAction group { set; }
		[NoAccessorMethod]
		public weak int value { get; set; }
		public signal void changed (Gtk.RadioAction current);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RadioButton : Gtk.CheckButton, Atk.Implementor, Gtk.Buildable {
		public weak GLib.SList get_group ();
		public RadioButton (GLib.SList group);
		public RadioButton.from_widget (Gtk.RadioButton radio_group_member);
		public RadioButton.with_label (GLib.SList group, string label);
		public RadioButton.with_label_from_widget (Gtk.RadioButton radio_group_member, string label);
		public RadioButton.with_mnemonic (GLib.SList group, string label);
		public RadioButton.with_mnemonic_from_widget (Gtk.RadioButton radio_group_member, string label);
		public void set_group (GLib.SList group);
		public weak Gtk.RadioButton group { set; }
		public signal void group_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RadioMenuItem : Gtk.CheckMenuItem, Atk.Implementor, Gtk.Buildable {
		public weak GLib.SList get_group ();
		public RadioMenuItem (GLib.SList group);
		public RadioMenuItem.from_widget (Gtk.RadioMenuItem group);
		public RadioMenuItem.with_label (GLib.SList group, string label);
		public RadioMenuItem.with_label_from_widget (Gtk.RadioMenuItem group, string label);
		public RadioMenuItem.with_mnemonic (GLib.SList group, string label);
		public RadioMenuItem.with_mnemonic_from_widget (Gtk.RadioMenuItem group, string label);
		public void set_group (GLib.SList group);
		public weak Gtk.RadioMenuItem group { set; }
		public signal void group_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RadioToolButton : Gtk.ToggleToolButton, Atk.Implementor, Gtk.Buildable {
		public weak GLib.SList get_group ();
		public RadioToolButton (GLib.SList group);
		public RadioToolButton.from_stock (GLib.SList group, string stock_id);
		public RadioToolButton.from_widget (Gtk.RadioToolButton group);
		public RadioToolButton.with_stock_from_widget (Gtk.RadioToolButton group, string stock_id);
		public void set_group (GLib.SList group);
		public weak Gtk.RadioToolButton group { set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Range : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public uint flippable;
		public uint has_stepper_a;
		public uint has_stepper_b;
		public uint has_stepper_c;
		public uint has_stepper_d;
		public uint need_recalc;
		public uint slider_size_fixed;
		public int min_slider_size;
		public Gtk.Orientation orientation;
		public Gdk.Rectangle range_rect;
		public int slider_start;
		public int slider_end;
		public int round_digits;
		public uint trough_click_forward;
		public uint update_pending;
		public weak Gtk.RangeLayout layout;
		public weak Gtk.RangeStepTimer timer;
		public int slide_initial_slider_position;
		public int slide_initial_coordinate;
		public uint update_timeout_id;
		public weak Gdk.Window event_window;
		public weak Gtk.Adjustment get_adjustment ();
		public double get_fill_level ();
		public bool get_inverted ();
		public Gtk.SensitivityType get_lower_stepper_sensitivity ();
		public bool get_restrict_to_fill_level ();
		public bool get_show_fill_level ();
		public Gtk.UpdateType get_update_policy ();
		public Gtk.SensitivityType get_upper_stepper_sensitivity ();
		public double get_value ();
		public void set_adjustment (Gtk.Adjustment adjustment);
		public void set_fill_level (double fill_level);
		public void set_increments (double step, double page);
		public void set_inverted (bool setting);
		public void set_lower_stepper_sensitivity (Gtk.SensitivityType sensitivity);
		public void set_range (double min, double max);
		public void set_restrict_to_fill_level (bool restrict_to_fill_level);
		public void set_show_fill_level (bool show_fill_level);
		public void set_update_policy (Gtk.UpdateType policy);
		public void set_upper_stepper_sensitivity (Gtk.SensitivityType sensitivity);
		public void set_value (double value);
		[NoWrapper]
		public virtual void get_range_border (Gtk.Border border_);
		public weak Gtk.Adjustment adjustment { get; set construct; }
		public weak double fill_level { get; set; }
		public weak bool inverted { get; set; }
		public weak Gtk.SensitivityType lower_stepper_sensitivity { get; set; }
		public weak bool restrict_to_fill_level { get; set; }
		public weak bool show_fill_level { get; set; }
		public weak Gtk.UpdateType update_policy { get; set; }
		public weak Gtk.SensitivityType upper_stepper_sensitivity { get; set; }
		public signal void adjust_bounds (double new_value);
		public signal bool change_value (Gtk.ScrollType scroll, double new_value);
		public signal void move_slider (Gtk.ScrollType scroll);
		public signal void value_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RcStyle : GLib.Object {
		public weak string name;
		[NoArrayLength]
		public weak string[] bg_pixmap_name;
		public weak Pango.FontDescription font_desc;
		[NoArrayLength]
		public weak Gtk.RcFlags[] color_flags;
		[NoArrayLength]
		public weak Gdk.Color[] fg;
		[NoArrayLength]
		public weak Gdk.Color[] bg;
		[NoArrayLength]
		public weak Gdk.Color[] text;
		[NoArrayLength]
		public weak Gdk.Color[] @base;
		public int xthickness;
		public int ythickness;
		public weak GLib.Array rc_properties;
		public weak GLib.SList rc_style_lists;
		public weak GLib.SList icon_factories;
		public uint engine_specified;
		public weak Gtk.RcStyle copy ();
		public RcStyle ();
		[NoWrapper]
		public virtual weak Gtk.RcStyle create_rc_style ();
		[NoWrapper]
		public virtual weak Gtk.Style create_style ();
		[NoWrapper]
		public virtual void merge (Gtk.RcStyle src);
		[NoWrapper]
		public virtual uint parse (Gtk.Settings settings, GLib.Scanner scanner);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentAction : Gtk.Action, Gtk.Buildable, Gtk.RecentChooser {
		public bool get_show_numbers ();
		public RecentAction (string name, string label, string tooltip, string stock_id);
		public RecentAction.for_manager (string name, string label, string tooltip, string stock_id, Gtk.RecentManager manager);
		public void set_show_numbers (bool show_numbers);
		public weak bool show_numbers { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentChooserDialog : Gtk.Dialog, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser {
		public RecentChooserDialog (string title, Gtk.Window parent, ...);
		public RecentChooserDialog.for_manager (string title, Gtk.Window parent, Gtk.RecentManager manager, ...);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentChooserMenu : Gtk.Menu, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser {
		public bool get_show_numbers ();
		public RecentChooserMenu ();
		public RecentChooserMenu.for_manager (Gtk.RecentManager manager);
		public void set_show_numbers (bool show_numbers);
		[NoWrapper]
		public virtual void gtk_recent1 ();
		[NoWrapper]
		public virtual void gtk_recent2 ();
		[NoWrapper]
		public virtual void gtk_recent3 ();
		[NoWrapper]
		public virtual void gtk_recent4 ();
		public weak bool show_numbers { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentChooserWidget : Gtk.VBox, Atk.Implementor, Gtk.Buildable, Gtk.RecentChooser {
		public RecentChooserWidget ();
		public RecentChooserWidget.for_manager (Gtk.RecentManager manager);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentFilter : Gtk.Object {
		public void add_age (int days);
		public void add_application (string application);
		public void add_custom (Gtk.RecentFilterFlags needed, Gtk.RecentFilterFunc func, pointer data, GLib.DestroyNotify data_destroy);
		public void add_group (string group);
		public void add_mime_type (string mime_type);
		public void add_pattern (string pattern);
		public void add_pixbuf_formats ();
		public bool filter (Gtk.RecentFilterInfo filter_info);
		public weak string get_name ();
		public Gtk.RecentFilterFlags get_needed ();
		public RecentFilter ();
		public void set_name (string name);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class RecentManager : GLib.Object {
		public bool add_full (string uri, Gtk.RecentData recent_data);
		public bool add_item (string uri);
		public static GLib.Quark error_quark ();
		public static weak Gtk.RecentManager get_default ();
		public weak GLib.List get_items ();
		public int get_limit ();
		public bool has_item (string uri);
		public weak Gtk.RecentInfo lookup_item (string uri) throws GLib.Error;
		public bool move_item (string uri, string new_uri) throws GLib.Error;
		public RecentManager ();
		public int purge_items () throws GLib.Error;
		public bool remove_item (string uri) throws GLib.Error;
		public void set_limit (int limit);
		[NoAccessorMethod]
		public weak string filename { get; construct; }
		public weak int limit { get; set; }
		[NoAccessorMethod]
		public weak int size { get; }
		public signal void changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Ruler : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Pixmap backing_store;
		public weak Gdk.GC non_gr_exp_gc;
		public int xsrc;
		public int ysrc;
		public int slider_size;
		public Gtk.MetricType get_metric ();
		public void get_range (double lower, double upper, double position, double max_size);
		public void set_metric (Gtk.MetricType metric);
		public void set_range (double lower, double upper, double position, double max_size);
		public virtual void draw_pos ();
		public virtual void draw_ticks ();
		[NoAccessorMethod]
		public weak double lower { get; set; }
		[NoAccessorMethod]
		public weak double max_size { get; set; }
		public weak Gtk.MetricType metric { get; set; }
		[NoAccessorMethod]
		public weak double position { get; set; }
		[NoAccessorMethod]
		public weak double upper { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Scale : Gtk.Range, Atk.Implementor, Gtk.Buildable {
		public int get_digits ();
		public bool get_draw_value ();
		public weak Pango.Layout get_layout ();
		public Gtk.PositionType get_value_pos ();
		public void set_digits (int digits);
		public void set_draw_value (bool draw_value);
		public void set_value_pos (Gtk.PositionType pos);
		public virtual void get_layout_offsets (int x, int y);
		public weak int digits { get; set; }
		public weak bool draw_value { get; set; }
		public weak Gtk.PositionType value_pos { get; set; }
		public signal weak string format_value (double value);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ScaleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget plus_button;
		public weak Gtk.Widget minus_button;
		public weak Gtk.Adjustment get_adjustment ();
		public double get_value ();
		public ScaleButton (Gtk.IconSize size, double min, double max, double step, string[] icons);
		public void set_adjustment (Gtk.Adjustment adjustment);
		public void set_icons (string[] icons);
		public void set_value (double value);
		public weak Gtk.Adjustment adjustment { get; set; }
		[NoAccessorMethod]
		public weak string[] icons { get; set; }
		[NoAccessorMethod]
		public weak Gtk.IconSize size { get; set; }
		public weak double value { get; set; }
		public signal void popdown ();
		public signal void popup ();
		public signal void value_changed (double value);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Scrollbar : Gtk.Range, Atk.Implementor, Gtk.Buildable {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ScrolledWindow : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget hscrollbar;
		public weak Gtk.Widget vscrollbar;
		public uint hscrollbar_visible;
		public uint vscrollbar_visible;
		public uint focus_out;
		public void add_with_viewport (Gtk.Widget child);
		public weak Gtk.Adjustment get_hadjustment ();
		public weak Gtk.Widget get_hscrollbar ();
		public Gtk.CornerType get_placement ();
		public void get_policy (Gtk.PolicyType hscrollbar_policy, Gtk.PolicyType vscrollbar_policy);
		public Gtk.ShadowType get_shadow_type ();
		public weak Gtk.Adjustment get_vadjustment ();
		public weak Gtk.Widget get_vscrollbar ();
		public ScrolledWindow (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public void set_hadjustment (Gtk.Adjustment hadjustment);
		public void set_placement (Gtk.CornerType window_placement);
		public void set_policy (Gtk.PolicyType hscrollbar_policy, Gtk.PolicyType vscrollbar_policy);
		public void set_shadow_type (Gtk.ShadowType type);
		public void set_vadjustment (Gtk.Adjustment vadjustment);
		public void unset_placement ();
		public weak Gtk.Adjustment hadjustment { get; set construct; }
		[NoAccessorMethod]
		public weak Gtk.PolicyType hscrollbar_policy { get; set; }
		public weak Gtk.ShadowType shadow_type { get; set; }
		public weak Gtk.Adjustment vadjustment { get; set construct; }
		[NoAccessorMethod]
		public weak Gtk.PolicyType vscrollbar_policy { get; set; }
		[NoAccessorMethod]
		public weak Gtk.CornerType window_placement { get; set; }
		[NoAccessorMethod]
		public weak bool window_placement_set { get; set; }
		public signal void move_focus_out (Gtk.DirectionType direction);
		public signal bool scroll_child (Gtk.ScrollType scroll, bool horizontal);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Separator : Gtk.Widget, Atk.Implementor, Gtk.Buildable {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SeparatorMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable {
		public SeparatorMenuItem ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SeparatorToolItem : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable {
		public bool get_draw ();
		public SeparatorToolItem ();
		public void set_draw (bool draw);
		public weak bool draw { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Settings : GLib.Object {
		public weak GLib.Data queued_settings;
		public weak Gtk.SettingsPropertyValue property_values;
		public weak Gtk.RcContext rc_context;
		public weak Gdk.Screen screen;
		public static weak Gtk.Settings get_default ();
		public static weak Gtk.Settings get_for_screen (Gdk.Screen screen);
		public static void install_property (GLib.ParamSpec pspec);
		public static void install_property_parser (GLib.ParamSpec pspec, Gtk.RcPropertyParser parser);
		public void set_double_property (string name, double v_double, string origin);
		public void set_long_property (string name, long v_long, string origin);
		public void set_property_value (string name, Gtk.SettingsValue svalue);
		public void set_string_property (string name, string v_string, string origin);
		[NoAccessorMethod]
		public weak GLib.HashTable color_hash { get; }
		[NoAccessorMethod]
		public weak bool gtk_alternative_button_order { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_alternative_sort_arrows { get; set; }
		[NoAccessorMethod]
		public weak string gtk_color_scheme { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_cursor_blink { get; set; }
		[NoAccessorMethod]
		public weak int gtk_cursor_blink_time { get; set; }
		[NoAccessorMethod]
		public weak int gtk_cursor_blink_timeout { get; set; }
		[NoAccessorMethod]
		public weak string gtk_cursor_theme_name { get; set; }
		[NoAccessorMethod]
		public weak int gtk_cursor_theme_size { get; set; }
		[NoAccessorMethod]
		public weak int gtk_dnd_drag_threshold { get; set; }
		[NoAccessorMethod]
		public weak int gtk_double_click_distance { get; set; }
		[NoAccessorMethod]
		public weak int gtk_double_click_time { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_enable_accels { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_enable_animations { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_enable_mnemonics { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_error_bell { get; set; }
		[NoAccessorMethod]
		public weak string gtk_fallback_icon_theme { get; set; }
		[NoAccessorMethod]
		public weak string gtk_file_chooser_backend { get; set; }
		[NoAccessorMethod]
		public weak string gtk_font_name { get; set; }
		[NoAccessorMethod]
		public weak string gtk_icon_sizes { get; set; }
		[NoAccessorMethod]
		public weak string gtk_icon_theme_name { get; set; }
		[NoAccessorMethod]
		public weak string gtk_key_theme_name { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_keynav_cursor_only { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_keynav_wrap_around { get; set; }
		[NoAccessorMethod]
		public weak string gtk_menu_bar_accel { get; set; }
		[NoAccessorMethod]
		public weak string gtk_modules { get; set; }
		[NoAccessorMethod]
		public weak string gtk_print_backends { get; set; }
		[NoAccessorMethod]
		public weak string gtk_print_preview_command { get; set; }
		[NoAccessorMethod]
		public weak int gtk_recent_files_limit { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_show_input_method_menu { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_show_unicode_menu { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_split_cursor { get; set; }
		[NoAccessorMethod]
		public weak string gtk_theme_name { get; set; }
		[NoAccessorMethod]
		public weak int gtk_timeout_expand { get; set; }
		[NoAccessorMethod]
		public weak int gtk_timeout_initial { get; set; }
		[NoAccessorMethod]
		public weak int gtk_timeout_repeat { get; set; }
		[NoAccessorMethod]
		public weak int gtk_tooltip_browse_mode_timeout { get; set; }
		[NoAccessorMethod]
		public weak int gtk_tooltip_browse_timeout { get; set; }
		[NoAccessorMethod]
		public weak int gtk_tooltip_timeout { get; set; }
		[NoAccessorMethod]
		public weak bool gtk_touchscreen_mode { get; set; }
		[NoAccessorMethod]
		public weak int gtk_xft_antialias { get; set; }
		[NoAccessorMethod]
		public weak int gtk_xft_dpi { get; set; }
		[NoAccessorMethod]
		public weak int gtk_xft_hinting { get; set; }
		[NoAccessorMethod]
		public weak string gtk_xft_hintstyle { get; set; }
		[NoAccessorMethod]
		public weak string gtk_xft_rgba { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SizeGroup : GLib.Object, Gtk.Buildable {
		public weak GLib.SList widgets;
		public uint have_width;
		public uint have_height;
		public Gtk.Requisition requisition;
		public void add_widget (Gtk.Widget widget);
		public bool get_ignore_hidden ();
		public Gtk.SizeGroupMode get_mode ();
		public weak GLib.SList get_widgets ();
		public SizeGroup (Gtk.SizeGroupMode mode);
		public void remove_widget (Gtk.Widget widget);
		public void set_ignore_hidden (bool ignore_hidden);
		public void set_mode (Gtk.SizeGroupMode mode);
		public weak bool ignore_hidden { get; set; }
		public weak Gtk.SizeGroupMode mode { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Socket : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public ushort request_width;
		public ushort request_height;
		public ushort current_width;
		public ushort current_height;
		public weak Gdk.Window plug_window;
		public weak Gtk.Widget plug_widget;
		public short xembed_version;
		public uint same_app;
		public uint focus_in;
		public uint have_size;
		public uint need_map;
		public uint is_mapped;
		public uint active;
		public weak Gtk.AccelGroup accel_group;
		public weak Gtk.Widget toplevel;
		public void add_id (Gdk.NativeWindow window_id);
		public weak Gdk.NativeWindow get_id ();
		public Socket ();
		public signal void plug_added ();
		public signal bool plug_removed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class SpinButton : Gtk.Entry, Atk.Implementor, Gtk.Buildable, Gtk.CellEditable, Gtk.Editable {
		public weak Gdk.Window panel;
		public uint timer;
		public double timer_step;
		public uint in_child;
		public uint click_child;
		public uint button;
		public uint need_timer;
		public uint timer_calls;
		public void configure (Gtk.Adjustment adjustment, double climb_rate, uint digits);
		public weak Gtk.Adjustment get_adjustment ();
		public uint get_digits ();
		public void get_increments (double step, double page);
		public bool get_numeric ();
		public void get_range (double min, double max);
		public bool get_snap_to_ticks ();
		public Gtk.SpinButtonUpdatePolicy get_update_policy ();
		public double get_value ();
		public int get_value_as_int ();
		public bool get_wrap ();
		public SpinButton (Gtk.Adjustment adjustment, double climb_rate, uint digits);
		public SpinButton.with_range (double min, double max, double step);
		public void set_adjustment (Gtk.Adjustment adjustment);
		public void set_digits (uint digits);
		public void set_increments (double step, double page);
		public void set_numeric (bool numeric);
		public void set_range (double min, double max);
		public void set_snap_to_ticks (bool snap_to_ticks);
		public void set_update_policy (Gtk.SpinButtonUpdatePolicy policy);
		public void set_value (double value);
		public void set_wrap (bool wrap);
		public void spin (Gtk.SpinType direction, double increment);
		public void update ();
		public weak Gtk.Adjustment adjustment { get; set; }
		[NoAccessorMethod]
		public weak double climb_rate { get; set; }
		public weak uint digits { get; set; }
		public weak bool numeric { get; set; }
		public weak bool snap_to_ticks { get; set; }
		public weak Gtk.SpinButtonUpdatePolicy update_policy { get; set; }
		public weak double value { get; set; }
		public weak bool wrap { get; set; }
		public signal void change_value (Gtk.ScrollType scroll);
		public signal int input (pointer new_value);
		public signal bool output ();
		public signal void value_changed ();
		public signal void wrapped ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class StatusIcon : GLib.Object {
		public bool get_blinking ();
		public bool get_geometry (out weak Gdk.Screen screen, out Gdk.Rectangle area, out Gtk.Orientation orientation);
		public weak string get_icon_name ();
		public weak Gdk.Pixbuf get_pixbuf ();
		public weak Gdk.Screen get_screen ();
		public int get_size ();
		public weak string get_stock ();
		public Gtk.ImageType get_storage_type ();
		public bool get_visible ();
		public bool is_embedded ();
		public StatusIcon ();
		public StatusIcon.from_file (string filename);
		public StatusIcon.from_icon_name (string icon_name);
		public StatusIcon.from_pixbuf (Gdk.Pixbuf pixbuf);
		public StatusIcon.from_stock (string stock_id);
		public static void position_menu (Gtk.Menu menu, int x, int y, bool push_in, pointer user_data);
		public void set_blinking (bool blinking);
		public void set_from_file (string filename);
		public void set_from_icon_name (string icon_name);
		public void set_from_pixbuf (Gdk.Pixbuf pixbuf);
		public void set_from_stock (string stock_id);
		public void set_screen (Gdk.Screen screen);
		public void set_tooltip (string tooltip_text);
		public void set_visible (bool visible);
		public weak bool blinking { get; set; }
		[NoAccessorMethod]
		public weak bool embedded { get; }
		[NoAccessorMethod]
		public weak string file { set; }
		[NoAccessorMethod]
		public weak string icon_name { get; set; }
		[NoAccessorMethod]
		public weak Gtk.Orientation orientation { get; }
		[NoAccessorMethod]
		public weak Gdk.Pixbuf pixbuf { get; set; }
		public weak Gdk.Screen screen { get; set; }
		public weak int size { get; }
		[NoAccessorMethod]
		public weak string stock { get; set; }
		public weak Gtk.ImageType storage_type { get; }
		public weak bool visible { get; set; }
		public signal void activate ();
		public signal void popup_menu (uint button, uint activate_time);
		public signal bool size_changed (int size);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Statusbar : Gtk.HBox, Atk.Implementor, Gtk.Buildable {
		public weak Gtk.Widget frame;
		public weak Gtk.Widget label;
		public weak GLib.SList messages;
		public weak GLib.SList keys;
		public uint seq_context_id;
		public uint seq_message_id;
		public weak Gdk.Window grip_window;
		public uint get_context_id (string context_description);
		public bool get_has_resize_grip ();
		public Statusbar ();
		public void pop (uint context_id);
		public uint push (uint context_id, string text);
		public void remove (uint context_id, uint message_id);
		public void set_has_resize_grip (bool setting);
		public weak bool has_resize_grip { get; set; }
		public signal void text_popped (uint context_id, string text);
		public signal void text_pushed (uint context_id, string text);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Style : GLib.Object {
		[NoArrayLength]
		public Gdk.Color[] fg;
		[NoArrayLength]
		public Gdk.Color[] bg;
		[NoArrayLength]
		public Gdk.Color[] light;
		[NoArrayLength]
		public Gdk.Color[] dark;
		[NoArrayLength]
		public Gdk.Color[] mid;
		[NoArrayLength]
		public Gdk.Color[] text;
		[NoArrayLength]
		public Gdk.Color[] @base;
		[NoArrayLength]
		public Gdk.Color[] text_aa;
		public Gdk.Color black;
		public Gdk.Color white;
		public weak Pango.FontDescription font_desc;
		public int xthickness;
		public int ythickness;
		[NoArrayLength]
		public Gdk.GC[] fg_gc;
		[NoArrayLength]
		public Gdk.GC[] bg_gc;
		[NoArrayLength]
		public Gdk.GC[] light_gc;
		[NoArrayLength]
		public Gdk.GC[] dark_gc;
		[NoArrayLength]
		public Gdk.GC[] mid_gc;
		[NoArrayLength]
		public Gdk.GC[] text_gc;
		[NoArrayLength]
		public Gdk.GC[] base_gc;
		[NoArrayLength]
		public Gdk.GC[] text_aa_gc;
		public weak Gdk.GC black_gc;
		public weak Gdk.GC white_gc;
		[NoArrayLength]
		public Gdk.Pixmap[] bg_pixmap;
		public int attach_count;
		public int depth;
		public weak Gdk.Colormap colormap;
		public weak Gtk.RcStyle rc_style;
		public weak GLib.SList styles;
		public weak GLib.Array property_cache;
		public weak GLib.SList icon_factories;
		public void apply_default_background (Gdk.Window window, bool set_bg, Gtk.StateType state_type, Gdk.Rectangle area, int x, int y, int width, int height);
		public weak Gtk.Style attach (Gdk.Window window);
		public void detach ();
		public bool lookup_color (string color_name, out Gdk.Color color);
		public weak Gtk.IconSet lookup_icon_set (string stock_id);
		public Style ();
		[NoWrapper]
		public virtual weak Gtk.Style clone ();
		public virtual void copy ();
		[NoWrapper]
		public virtual void draw_arrow (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_box (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_box_gap (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
		[NoWrapper]
		public virtual void draw_check (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_diamond (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_expander (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Gtk.ExpanderStyle expander_style);
		[NoWrapper]
		public virtual void draw_extension (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side);
		[NoWrapper]
		public virtual void draw_flat_box (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_focus (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_handle (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation);
		[NoWrapper]
		public virtual void draw_hline (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x1, int x2, int y);
		[NoWrapper]
		public virtual void draw_layout (Gdk.Window window, Gtk.StateType state_type, bool use_text, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Pango.Layout layout);
		[NoWrapper]
		public virtual void draw_option (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_polygon (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.Point point, int npoints, bool fill);
		[NoWrapper]
		public virtual void draw_resize_grip (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.WindowEdge edge, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_shadow (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_shadow_gap (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
		[NoWrapper]
		public virtual void draw_slider (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation);
		[NoWrapper]
		public virtual void draw_string (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, string string);
		[NoWrapper]
		public virtual void draw_tab (Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
		[NoWrapper]
		public virtual void draw_vline (Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int y1_, int y2_, int x);
		[NoWrapper]
		public virtual void init_from_rc (Gtk.RcStyle rc_style);
		public virtual weak Gdk.Pixbuf render_icon (Gtk.IconSource source, Gtk.TextDirection direction, Gtk.StateType state, Gtk.IconSize size, Gtk.Widget widget, string detail);
		public virtual void set_background (Gdk.Window window, Gtk.StateType state_type);
		public signal void realize ();
		public signal void unrealize ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Table : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public weak GLib.List children;
		public weak Gtk.TableRowCol rows;
		public weak Gtk.TableRowCol cols;
		public ushort nrows;
		public ushort ncols;
		public void attach (Gtk.Widget child, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach, Gtk.AttachOptions xoptions, Gtk.AttachOptions yoptions, uint xpadding, uint ypadding);
		public void attach_defaults (Gtk.Widget widget, uint left_attach, uint right_attach, uint top_attach, uint bottom_attach);
		public uint get_col_spacing (uint column);
		public uint get_default_col_spacing ();
		public uint get_default_row_spacing ();
		public bool get_homogeneous ();
		public uint get_row_spacing (uint row);
		public Table (uint rows, uint columns, bool homogeneous);
		public void resize (uint rows, uint columns);
		public void set_col_spacing (uint column, uint spacing);
		public void set_col_spacings (uint spacing);
		public void set_homogeneous (bool homogeneous);
		public void set_row_spacing (uint row, uint spacing);
		public void set_row_spacings (uint spacing);
		[NoAccessorMethod]
		public weak uint column_spacing { get; set; }
		public weak bool homogeneous { get; set; }
		[NoAccessorMethod]
		public weak uint n_columns { get; set; }
		[NoAccessorMethod]
		public weak uint n_rows { get; set; }
		public weak uint row_spacing { get; set; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TearoffMenuItem : Gtk.MenuItem, Atk.Implementor, Gtk.Buildable {
		public uint torn_off;
		public TearoffMenuItem ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextBuffer : GLib.Object {
		public weak Gtk.TextBTree btree;
		public weak GLib.SList clipboard_contents_buffers;
		public weak GLib.SList selection_clipboards;
		public weak Gtk.TextLogAttrCache log_attr_cache;
		public uint user_action_count;
		public uint modified;
		public void add_mark (Gtk.TextMark mark, Gtk.TextIter where);
		public void add_selection_clipboard (Gtk.Clipboard clipboard);
		public void apply_tag_by_name (string name, Gtk.TextIter start, Gtk.TextIter end);
		public bool backspace (Gtk.TextIter iter, bool interactive, bool default_editable);
		public void copy_clipboard (Gtk.Clipboard clipboard);
		public weak Gtk.TextChildAnchor create_child_anchor (Gtk.TextIter iter);
		public weak Gtk.TextMark create_mark (string mark_name, Gtk.TextIter where, bool left_gravity);
		public weak Gtk.TextTag create_tag (string tag_name, ...);
		public void cut_clipboard (Gtk.Clipboard clipboard, bool default_editable);
		public void delete (Gtk.TextIter start, Gtk.TextIter end);
		public bool delete_interactive (Gtk.TextIter start_iter, Gtk.TextIter end_iter, bool default_editable);
		public void delete_mark (Gtk.TextMark mark);
		public void delete_mark_by_name (string name);
		public bool delete_selection (bool interactive, bool default_editable);
		public bool deserialize (Gtk.TextBuffer content_buffer, Gdk.Atom format, Gtk.TextIter iter, uchar data, ulong length) throws GLib.Error;
		public bool deserialize_get_can_create_tags (Gdk.Atom format);
		public void deserialize_set_can_create_tags (Gdk.Atom format, bool can_create_tags);
		public void get_bounds (out Gtk.TextIter start, out Gtk.TextIter end);
		public int get_char_count ();
		public weak Gtk.TargetList get_copy_target_list ();
		public Gdk.Atom get_deserialize_formats (int n_formats);
		public void get_end_iter (out Gtk.TextIter iter);
		public bool get_has_selection ();
		public weak Gtk.TextMark get_insert ();
		public void get_iter_at_child_anchor (out Gtk.TextIter iter, Gtk.TextChildAnchor anchor);
		public void get_iter_at_line (out Gtk.TextIter iter, int line_number);
		public void get_iter_at_line_index (out Gtk.TextIter iter, int line_number, int byte_index);
		public void get_iter_at_line_offset (out Gtk.TextIter iter, int line_number, int char_offset);
		public void get_iter_at_mark (out Gtk.TextIter iter, Gtk.TextMark mark);
		public void get_iter_at_offset (out Gtk.TextIter iter, int char_offset);
		public int get_line_count ();
		public weak Gtk.TextMark get_mark (string name);
		public bool get_modified ();
		public weak Gtk.TargetList get_paste_target_list ();
		public weak Gtk.TextMark get_selection_bound ();
		public bool get_selection_bounds (out Gtk.TextIter start, out Gtk.TextIter end);
		public Gdk.Atom get_serialize_formats (int n_formats);
		public weak string get_slice (Gtk.TextIter start, Gtk.TextIter end, bool include_hidden_chars);
		public void get_start_iter (out Gtk.TextIter iter);
		public weak Gtk.TextTagTable get_tag_table ();
		public weak string get_text (Gtk.TextIter start, Gtk.TextIter end, bool include_hidden_chars);
		public void insert (Gtk.TextIter iter, string text, int len);
		public void insert_at_cursor (string text, int len);
		public bool insert_interactive (Gtk.TextIter iter, string text, int len, bool default_editable);
		public bool insert_interactive_at_cursor (string text, int len, bool default_editable);
		public void insert_range (Gtk.TextIter iter, Gtk.TextIter start, Gtk.TextIter end);
		public bool insert_range_interactive (Gtk.TextIter iter, Gtk.TextIter start, Gtk.TextIter end, bool default_editable);
		public void insert_with_tags (Gtk.TextIter iter, string text, int len, ...);
		public void insert_with_tags_by_name (Gtk.TextIter iter, string text, int len, ...);
		public void move_mark (Gtk.TextMark mark, Gtk.TextIter where);
		public void move_mark_by_name (string name, Gtk.TextIter where);
		public TextBuffer (Gtk.TextTagTable table);
		public void paste_clipboard (Gtk.Clipboard clipboard, Gtk.TextIter override_location, bool default_editable);
		public void place_cursor (Gtk.TextIter where);
		public Gdk.Atom register_deserialize_format (string mime_type, Gtk.TextBufferDeserializeFunc function, pointer user_data, GLib.DestroyNotify user_data_destroy);
		public Gdk.Atom register_deserialize_tagset (string tagset_name);
		public Gdk.Atom register_serialize_format (string mime_type, Gtk.TextBufferSerializeFunc function, pointer user_data, GLib.DestroyNotify user_data_destroy);
		public Gdk.Atom register_serialize_tagset (string tagset_name);
		public void remove_all_tags (Gtk.TextIter start, Gtk.TextIter end);
		public void remove_selection_clipboard (Gtk.Clipboard clipboard);
		public void remove_tag_by_name (string name, Gtk.TextIter start, Gtk.TextIter end);
		public void select_range (Gtk.TextIter ins, Gtk.TextIter bound);
		public uchar serialize (Gtk.TextBuffer content_buffer, Gdk.Atom format, Gtk.TextIter start, Gtk.TextIter end, ulong length);
		public void set_modified (bool setting);
		public void set_text (string text, int len);
		public void unregister_deserialize_format (Gdk.Atom format);
		public void unregister_serialize_format (Gdk.Atom format);
		public weak Gtk.TargetList copy_target_list { get; }
		[NoAccessorMethod]
		public weak int cursor_position { get; }
		public weak bool has_selection { get; }
		public weak Gtk.TargetList paste_target_list { get; }
		[NoAccessorMethod]
		public weak Gtk.TextTagTable tag_table { get; construct; }
		public weak string text { get; set; }
		[HasEmitter]
		public signal void apply_tag (Gtk.TextTag tag, Gtk.TextIter start_char, Gtk.TextIter end_char);
		[HasEmitter]
		public signal void begin_user_action ();
		public signal void changed ();
		public signal void delete_range (Gtk.TextIter start, Gtk.TextIter end);
		[HasEmitter]
		public signal void end_user_action ();
		[HasEmitter]
		public signal void insert_child_anchor (Gtk.TextIter pos, Gtk.TextChildAnchor anchor);
		[HasEmitter]
		public signal void insert_pixbuf (Gtk.TextIter pos, Gdk.Pixbuf pixbuf);
		public signal void insert_text (Gtk.TextIter pos, string text, int length);
		public signal void mark_deleted (Gtk.TextMark mark);
		public signal void mark_set (Gtk.TextIter location, Gtk.TextMark mark);
		public signal void modified_changed ();
		[HasEmitter]
		public signal void remove_tag (Gtk.TextTag tag, Gtk.TextIter start_char, Gtk.TextIter end_char);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextChildAnchor : GLib.Object {
		public pointer segment;
		public bool get_deleted ();
		public weak GLib.List get_widgets ();
		public TextChildAnchor ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextMark : GLib.Object {
		public pointer segment;
		public weak Gtk.TextBuffer get_buffer ();
		public bool get_deleted ();
		public bool get_left_gravity ();
		public weak string get_name ();
		public bool get_visible ();
		public TextMark (string name, bool left_gravity);
		public void set_visible (bool setting);
		[NoAccessorMethod]
		public weak bool left_gravity { get; construct; }
		[NoAccessorMethod]
		public weak string name { get; construct; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextTag : GLib.Object {
		public weak Gtk.TextTagTable table;
		public int priority;
		public weak Gtk.TextAttributes values;
		public uint bg_color_set;
		public uint bg_stipple_set;
		public uint fg_color_set;
		public uint fg_stipple_set;
		public uint bg_full_height_set;
		public uint pg_bg_color_set;
		public uint pad1;
		public int get_priority ();
		public TextTag (string name);
		public void set_priority (int priority);
		[NoAccessorMethod]
		public weak bool accumulative_margin { get; set; }
		[NoAccessorMethod]
		public weak string background { set; }
		[NoAccessorMethod]
		public weak bool background_full_height { get; set; }
		[NoAccessorMethod]
		public weak bool background_full_height_set { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Color background_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool background_set { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixmap background_stipple { get; set; }
		[NoAccessorMethod]
		public weak bool background_stipple_set { get; set; }
		[NoAccessorMethod]
		public weak Gtk.TextDirection direction { get; set; }
		[NoAccessorMethod]
		public weak bool editable { get; set; }
		[NoAccessorMethod]
		public weak bool editable_set { get; set; }
		[NoAccessorMethod]
		public weak string family { get; set; }
		[NoAccessorMethod]
		public weak bool family_set { get; set; }
		[NoAccessorMethod]
		public weak string font { get; set; }
		[NoAccessorMethod]
		public weak Pango.FontDescription font_desc { get; set; }
		[NoAccessorMethod]
		public weak string foreground { set; }
		[NoAccessorMethod]
		public weak Gdk.Color foreground_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool foreground_set { get; set; }
		[NoAccessorMethod]
		public weak Gdk.Pixmap foreground_stipple { get; set; }
		[NoAccessorMethod]
		public weak bool foreground_stipple_set { get; set; }
		[NoAccessorMethod]
		public weak int indent { get; set; }
		[NoAccessorMethod]
		public weak bool indent_set { get; set; }
		[NoAccessorMethod]
		public weak bool invisible { get; set; }
		[NoAccessorMethod]
		public weak bool invisible_set { get; set; }
		[NoAccessorMethod]
		public weak Gtk.Justification justification { get; set; }
		[NoAccessorMethod]
		public weak bool justification_set { get; set; }
		[NoAccessorMethod]
		public weak string language { get; set; }
		[NoAccessorMethod]
		public weak bool language_set { get; set; }
		[NoAccessorMethod]
		public weak int left_margin { get; set; }
		[NoAccessorMethod]
		public weak bool left_margin_set { get; set; }
		[NoAccessorMethod]
		public weak string name { get; construct; }
		[NoAccessorMethod]
		public weak string paragraph_background { set; }
		[NoAccessorMethod]
		public weak Gdk.Color paragraph_background_gdk { get; set; }
		[NoAccessorMethod]
		public weak bool paragraph_background_set { get; set; }
		[NoAccessorMethod]
		public weak int pixels_above_lines { get; set; }
		[NoAccessorMethod]
		public weak bool pixels_above_lines_set { get; set; }
		[NoAccessorMethod]
		public weak int pixels_below_lines { get; set; }
		[NoAccessorMethod]
		public weak bool pixels_below_lines_set { get; set; }
		[NoAccessorMethod]
		public weak int pixels_inside_wrap { get; set; }
		[NoAccessorMethod]
		public weak bool pixels_inside_wrap_set { get; set; }
		[NoAccessorMethod]
		public weak int right_margin { get; set; }
		[NoAccessorMethod]
		public weak bool right_margin_set { get; set; }
		[NoAccessorMethod]
		public weak int rise { get; set; }
		[NoAccessorMethod]
		public weak bool rise_set { get; set; }
		[NoAccessorMethod]
		public weak double scale { get; set; }
		[NoAccessorMethod]
		public weak bool scale_set { get; set; }
		[NoAccessorMethod]
		public weak int size { get; set; }
		[NoAccessorMethod]
		public weak double size_points { get; set; }
		[NoAccessorMethod]
		public weak bool size_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Stretch stretch { get; set; }
		[NoAccessorMethod]
		public weak bool stretch_set { get; set; }
		[NoAccessorMethod]
		public weak bool strikethrough { get; set; }
		[NoAccessorMethod]
		public weak bool strikethrough_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Style style { get; set; }
		[NoAccessorMethod]
		public weak bool style_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.TabArray tabs { get; set; }
		[NoAccessorMethod]
		public weak bool tabs_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Underline underline { get; set; }
		[NoAccessorMethod]
		public weak bool underline_set { get; set; }
		[NoAccessorMethod]
		public weak Pango.Variant variant { get; set; }
		[NoAccessorMethod]
		public weak bool variant_set { get; set; }
		[NoAccessorMethod]
		public weak int weight { get; set; }
		[NoAccessorMethod]
		public weak bool weight_set { get; set; }
		[NoAccessorMethod]
		public weak Gtk.WrapMode wrap_mode { get; set; }
		[NoAccessorMethod]
		public weak bool wrap_mode_set { get; set; }
		[HasEmitter]
		public signal bool event (GLib.Object event_object, Gdk.Event event, Gtk.TextIter iter);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextTagTable : GLib.Object {
		public weak GLib.HashTable hash;
		public weak GLib.SList anonymous;
		public int anon_count;
		public weak GLib.SList buffers;
		public void add (Gtk.TextTag tag);
		public void @foreach (Gtk.TextTagTableForeach func, pointer data);
		public int get_size ();
		public weak Gtk.TextTag lookup (string name);
		public TextTagTable ();
		public void remove (Gtk.TextTag tag);
		public signal void tag_added (Gtk.TextTag tag);
		public signal void tag_changed (Gtk.TextTag tag, bool size_changed);
		public signal void tag_removed (Gtk.TextTag tag);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TextView : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public uint selection_drag_handler;
		public uint scroll_timeout;
		public Gtk.Justification justify;
		public uint overwrite_mode;
		public uint need_im_reset;
		public uint width_changed;
		public uint onscreen_validated;
		public uint mouse_cursor_obscured;
		public weak Gtk.TextWindow text_window;
		public weak Gtk.TextWindow left_window;
		public weak Gtk.TextWindow right_window;
		public weak Gtk.TextWindow top_window;
		public weak Gtk.TextWindow bottom_window;
		public weak Gtk.Adjustment hadjustment;
		public weak Gtk.Adjustment vadjustment;
		public int xoffset;
		public int yoffset;
		public int width;
		public int height;
		public int virtual_cursor_x;
		public int virtual_cursor_y;
		public weak Gtk.TextMark first_para_mark;
		public int first_para_pixels;
		public weak Gtk.TextMark dnd_mark;
		public uint blink_timeout;
		public uint first_validate_idle;
		public uint incremental_validate_idle;
		public weak Gtk.IMContext im_context;
		public weak Gtk.Widget popup_menu;
		public int drag_start_x;
		public int drag_start_y;
		public weak GLib.SList children;
		public weak Gtk.TextPendingScroll pending_scroll;
		public int pending_place_cursor_button;
		public void add_child_at_anchor (Gtk.Widget child, Gtk.TextChildAnchor anchor);
		public void add_child_in_window (Gtk.Widget child, Gtk.TextWindowType which_window, int xpos, int ypos);
		public bool backward_display_line (Gtk.TextIter iter);
		public bool backward_display_line_start (Gtk.TextIter iter);
		public void buffer_to_window_coords (Gtk.TextWindowType win, int buffer_x, int buffer_y, int window_x, int window_y);
		public bool forward_display_line (Gtk.TextIter iter);
		public bool forward_display_line_end (Gtk.TextIter iter);
		public bool get_accepts_tab ();
		public int get_border_window_size (Gtk.TextWindowType type);
		public weak Gtk.TextBuffer get_buffer ();
		public bool get_cursor_visible ();
		public weak Gtk.TextAttributes get_default_attributes ();
		public bool get_editable ();
		public int get_indent ();
		public void get_iter_at_location (out Gtk.TextIter iter, int x, int y);
		public void get_iter_at_position (out Gtk.TextIter iter, out int trailing, int x, int y);
		public void get_iter_location (Gtk.TextIter iter, out Gdk.Rectangle location);
		public Gtk.Justification get_justification ();
		public int get_left_margin ();
		public void get_line_at_y (Gtk.TextIter target_iter, int y, int line_top);
		public void get_line_yrange (Gtk.TextIter iter, int y, int height);
		public bool get_overwrite ();
		public int get_pixels_above_lines ();
		public int get_pixels_below_lines ();
		public int get_pixels_inside_wrap ();
		public int get_right_margin ();
		public weak Pango.TabArray get_tabs ();
		public void get_visible_rect (out Gdk.Rectangle visible_rect);
		public weak Gdk.Window get_window (Gtk.TextWindowType win);
		public Gtk.TextWindowType get_window_type (Gdk.Window window);
		public Gtk.WrapMode get_wrap_mode ();
		public void move_child (Gtk.Widget child, int xpos, int ypos);
		public bool move_mark_onscreen (Gtk.TextMark mark);
		public bool move_visually (Gtk.TextIter iter, int count);
		public TextView ();
		public TextView.with_buffer (Gtk.TextBuffer buffer);
		public bool place_cursor_onscreen ();
		public void scroll_mark_onscreen (Gtk.TextMark mark);
		public bool scroll_to_iter (Gtk.TextIter iter, double within_margin, bool use_align, double xalign, double yalign);
		public void scroll_to_mark (Gtk.TextMark mark, double within_margin, bool use_align, double xalign, double yalign);
		public void set_accepts_tab (bool accepts_tab);
		public void set_border_window_size (Gtk.TextWindowType type, int size);
		public void set_buffer (Gtk.TextBuffer buffer);
		public void set_cursor_visible (bool setting);
		public void set_editable (bool setting);
		public void set_indent (int indent);
		public void set_justification (Gtk.Justification justification);
		public void set_left_margin (int left_margin);
		public void set_overwrite (bool overwrite);
		public void set_pixels_above_lines (int pixels_above_lines);
		public void set_pixels_below_lines (int pixels_below_lines);
		public void set_pixels_inside_wrap (int pixels_inside_wrap);
		public void set_right_margin (int right_margin);
		public void set_tabs (Pango.TabArray tabs);
		public void set_wrap_mode (Gtk.WrapMode wrap_mode);
		public bool starts_display_line (Gtk.TextIter iter);
		public void window_to_buffer_coords (Gtk.TextWindowType win, int window_x, int window_y, int buffer_x, int buffer_y);
		[NoWrapper]
		public virtual void move_focus (Gtk.DirectionType direction);
		public weak bool accepts_tab { get; set; }
		public weak Gtk.TextBuffer buffer { get; set; }
		public weak bool cursor_visible { get; set; }
		public weak bool editable { get; set; }
		public weak int indent { get; set; }
		public weak Gtk.Justification justification { get; set; }
		public weak int left_margin { get; set; }
		public weak bool overwrite { get; set; }
		public weak int pixels_above_lines { get; set; }
		public weak int pixels_below_lines { get; set; }
		public weak int pixels_inside_wrap { get; set; }
		public weak int right_margin { get; set; }
		public weak Pango.TabArray tabs { get; set; }
		public weak Gtk.WrapMode wrap_mode { get; set; }
		public signal void backspace ();
		public signal void copy_clipboard ();
		public signal void cut_clipboard ();
		public signal void delete_from_cursor (Gtk.DeleteType type, int count);
		public signal void insert_at_cursor (string str);
		public signal void move_cursor (Gtk.MovementStep step, int count, bool extend_selection);
		public signal void move_viewport (Gtk.ScrollStep p0, int p1);
		public signal void page_horizontally (int count, bool extend_selection);
		public signal void paste_clipboard ();
		public signal void populate_popup (Gtk.Menu menu);
		public signal void select_all (bool p0);
		public signal void set_anchor ();
		public signal void set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public signal void toggle_cursor_visible ();
		public signal void toggle_overwrite ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ToggleAction : Gtk.Action, Gtk.Buildable {
		public bool get_active ();
		public bool get_draw_as_radio ();
		public ToggleAction (string name, string label, string tooltip, string stock_id);
		public void set_active (bool is_active);
		public void set_draw_as_radio (bool draw_as_radio);
		public weak bool active { get; set; }
		public weak bool draw_as_radio { get; set; }
		[HasEmitter]
		public signal void toggled ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ToggleButton : Gtk.Button, Atk.Implementor, Gtk.Buildable {
		public bool get_active ();
		public bool get_inconsistent ();
		public bool get_mode ();
		public ToggleButton ();
		public ToggleButton.with_label (string label);
		public ToggleButton.with_mnemonic (string label);
		public void set_active (bool is_active);
		public void set_inconsistent (bool setting);
		public void set_mode (bool draw_indicator);
		public weak bool active { get; set; }
		[NoAccessorMethod]
		public weak bool draw_indicator { get; set; }
		public weak bool inconsistent { get; set; }
		[HasEmitter]
		public signal void toggled ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ToggleToolButton : Gtk.ToolButton, Atk.Implementor, Gtk.Buildable {
		public bool get_active ();
		public ToggleToolButton ();
		public ToggleToolButton.from_stock (string stock_id);
		public void set_active (bool is_active);
		public weak bool active { get; set; }
		public signal void toggled ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ToolButton : Gtk.ToolItem, Atk.Implementor, Gtk.Buildable {
		public weak string get_icon_name ();
		public weak Gtk.Widget get_icon_widget ();
		public weak string get_label ();
		public weak Gtk.Widget get_label_widget ();
		public weak string get_stock_id ();
		public bool get_use_underline ();
		public ToolButton (Gtk.Widget icon_widget, string label);
		public ToolButton.from_stock (string stock_id);
		public void set_icon_name (string icon_name);
		public void set_icon_widget (Gtk.Widget icon_widget);
		public void set_label (string label);
		public void set_label_widget (Gtk.Widget label_widget);
		public void set_stock_id (string stock_id);
		public void set_use_underline (bool use_underline);
		public weak string icon_name { get; set; }
		public weak Gtk.Widget icon_widget { get; set; }
		public weak string label { get; set; }
		public weak Gtk.Widget label_widget { get; set; }
		public weak string stock_id { get; set; }
		public weak bool use_underline { get; set; }
		public signal void clicked ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class ToolItem : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public bool get_expand ();
		public bool get_homogeneous ();
		public Gtk.IconSize get_icon_size ();
		public bool get_is_important ();
		public Gtk.Orientation get_orientation ();
		public weak Gtk.Widget get_proxy_menu_item (string menu_item_id);
		public Gtk.ReliefStyle get_relief_style ();
		public Gtk.ToolbarStyle get_toolbar_style ();
		public bool get_use_drag_window ();
		public bool get_visible_horizontal ();
		public bool get_visible_vertical ();
		public ToolItem ();
		public void rebuild_menu ();
		public weak Gtk.Widget retrieve_proxy_menu_item ();
		public void set_expand (bool expand);
		public void set_homogeneous (bool homogeneous);
		public void set_is_important (bool is_important);
		public void set_proxy_menu_item (string menu_item_id, Gtk.Widget menu_item);
		public void set_tooltip_markup (string markup);
		public void set_tooltip_text (string text);
		public void set_use_drag_window (bool use_drag_window);
		public void set_visible_horizontal (bool visible_horizontal);
		public void set_visible_vertical (bool visible_vertical);
		public weak bool is_important { get; set; }
		public weak bool visible_horizontal { get; set; }
		public weak bool visible_vertical { get; set; }
		public signal bool create_menu_proxy ();
		public signal void toolbar_reconfigured ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Toolbar : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public int num_children;
		public weak GLib.List children;
		public Gtk.ToolbarStyle style;
		public int button_maxw;
		public int button_maxh;
		public uint style_set;
		public int get_drop_index (int x, int y);
		public Gtk.IconSize get_icon_size ();
		public int get_item_index (Gtk.ToolItem item);
		public int get_n_items ();
		public weak Gtk.ToolItem get_nth_item (int n);
		public Gtk.Orientation get_orientation ();
		public Gtk.ReliefStyle get_relief_style ();
		public bool get_show_arrow ();
		public Gtk.ToolbarStyle get_style ();
		public bool get_tooltips ();
		public void insert (Gtk.ToolItem item, int pos);
		public Toolbar ();
		public void set_drop_highlight_item (Gtk.ToolItem tool_item, int index_);
		public void set_icon_size (Gtk.IconSize icon_size);
		public void set_orientation (Gtk.Orientation orientation);
		public void set_show_arrow (bool show_arrow);
		public void set_style (Gtk.ToolbarStyle style);
		public void set_tooltips (bool enable);
		public void unset_icon_size ();
		public void unset_style ();
		public weak Gtk.IconSize icon_size { get; set; }
		[NoAccessorMethod]
		public weak bool icon_size_set { get; set; }
		public weak Gtk.Orientation orientation { get; set; }
		public weak bool show_arrow { get; set; }
		[NoAccessorMethod]
		public weak Gtk.ToolbarStyle toolbar_style { get; set; }
		public weak bool tooltips { get; set; }
		public signal bool focus_home_or_end (bool p0);
		public signal void orientation_changed (Gtk.Orientation orientation);
		public signal bool popup_context_menu (int x, int y, int button_number);
		public signal void style_changed (Gtk.ToolbarStyle style);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Tooltip : GLib.Object {
		public void set_custom (Gtk.Widget custom_widget);
		public void set_icon (Gdk.Pixbuf pixbuf);
		public void set_icon_from_stock (string stock_id, Gtk.IconSize size);
		public void set_markup (string markup);
		public void set_text (string text);
		public void set_tip_area (Gdk.Rectangle rect);
		public static void trigger_tooltip_query (Gdk.Display display);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeModelFilter : GLib.Object, Gtk.TreeModel, Gtk.TreeDragSource {
		public void clear_cache ();
		public bool convert_child_iter_to_iter (out Gtk.TreeIter filter_iter, Gtk.TreeIter child_iter);
		public weak Gtk.TreePath convert_child_path_to_path (Gtk.TreePath child_path);
		public void convert_iter_to_child_iter (out Gtk.TreeIter child_iter, Gtk.TreeIter filter_iter);
		public weak Gtk.TreePath convert_path_to_child_path (Gtk.TreePath filter_path);
		public weak Gtk.TreeModel get_model ();
		public TreeModelFilter (Gtk.TreeModel child_model, Gtk.TreePath root);
		public void refilter ();
		public void set_modify_func (int n_columns, GLib.Type[] types, Gtk.TreeModelFilterModifyFunc func, pointer data, Gtk.DestroyNotify destroy);
		public void set_visible_column (int column);
		public void set_visible_func (Gtk.TreeModelFilterVisibleFunc func, pointer data, Gtk.DestroyNotify destroy);
		[NoAccessorMethod]
		public weak Gtk.TreeModel child_model { get; construct; }
		[NoAccessorMethod]
		public weak Gtk.TreePath virtual_root { get; construct; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeModelSort : GLib.Object, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource {
		public pointer root;
		public int stamp;
		public uint child_flags;
		public weak Gtk.TreeModel child_model;
		public int zero_ref_count;
		public weak GLib.List sort_list;
		public int sort_column_id;
		public Gtk.SortType order;
		public Gtk.TreeIterCompareFunc default_sort_func;
		public pointer default_sort_data;
		public Gtk.DestroyNotify default_sort_destroy;
		public uint changed_id;
		public uint inserted_id;
		public uint has_child_toggled_id;
		public uint deleted_id;
		public uint reordered_id;
		public void clear_cache ();
		public void convert_child_iter_to_iter (out Gtk.TreeIter sort_iter, Gtk.TreeIter child_iter);
		public weak Gtk.TreePath convert_child_path_to_path (Gtk.TreePath child_path);
		public void convert_iter_to_child_iter (out Gtk.TreeIter child_iter, Gtk.TreeIter sorted_iter);
		public weak Gtk.TreePath convert_path_to_child_path (Gtk.TreePath sorted_path);
		public weak Gtk.TreeModel get_model ();
		public bool iter_is_valid (Gtk.TreeIter iter);
		public TreeModelSort.with_model (Gtk.TreeModel child_model);
		public void reset_default_sort_func ();
		[NoAccessorMethod]
		public weak Gtk.TreeModel model { get; construct; }
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeSelection : GLib.Object {
		public weak Gtk.TreeView tree_view;
		public Gtk.SelectionMode type;
		public Gtk.TreeSelectionFunc user_func;
		public pointer user_data;
		public Gtk.DestroyNotify destroy;
		public int count_selected_rows ();
		public Gtk.SelectionMode get_mode ();
		public bool get_selected (out weak Gtk.TreeModel model, out Gtk.TreeIter iter);
		public weak GLib.List get_selected_rows (out weak Gtk.TreeModel model);
		public weak Gtk.TreeView get_tree_view ();
		public pointer get_user_data ();
		public bool iter_is_selected (Gtk.TreeIter iter);
		public bool path_is_selected (Gtk.TreePath path);
		public void select_all ();
		public void select_iter (Gtk.TreeIter iter);
		public void select_path (Gtk.TreePath path);
		public void select_range (Gtk.TreePath start_path, Gtk.TreePath end_path);
		public void selected_foreach (Gtk.TreeSelectionForeachFunc func, pointer data);
		public void set_mode (Gtk.SelectionMode type);
		public void set_select_function (Gtk.TreeSelectionFunc func, pointer data, Gtk.DestroyNotify destroy);
		public void unselect_all ();
		public void unselect_iter (Gtk.TreeIter iter);
		public void unselect_path (Gtk.TreePath path);
		public void unselect_range (Gtk.TreePath start_path, Gtk.TreePath end_path);
		public signal void changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeStore : GLib.Object, Gtk.Buildable, Gtk.TreeModel, Gtk.TreeSortable, Gtk.TreeDragSource, Gtk.TreeDragDest {
		public int stamp;
		public pointer root;
		public pointer last;
		public int n_columns;
		public int sort_column_id;
		public weak GLib.List sort_list;
		public Gtk.SortType order;
		[NoArrayLength]
		public weak GLib.Type[] column_headers;
		public Gtk.TreeIterCompareFunc default_sort_func;
		public pointer default_sort_data;
		public Gtk.DestroyNotify default_sort_destroy;
		public uint columns_dirty;
		public void append (out Gtk.TreeIter iter, Gtk.TreeIter? parent);
		public void clear ();
		public void insert (out Gtk.TreeIter iter, Gtk.TreeIter? parent, int position);
		public void insert_after (out Gtk.TreeIter iter, Gtk.TreeIter? parent, Gtk.TreeIter? sibling);
		public void insert_before (out Gtk.TreeIter iter, Gtk.TreeIter? parent, Gtk.TreeIter? sibling);
		[CCode (sentinel = "-1")]
		public void insert_with_values (out Gtk.TreeIter iter, Gtk.TreeIter? parent, int position, ...);
		public void insert_with_valuesv (out Gtk.TreeIter iter, Gtk.TreeIter? parent, int position, int columns, GLib.Value[] values);
		public bool is_ancestor (Gtk.TreeIter iter, Gtk.TreeIter descendant);
		public int iter_depth (Gtk.TreeIter iter);
		public bool iter_is_valid (Gtk.TreeIter iter);
		public void move_after (Gtk.TreeIter iter, Gtk.TreeIter? position);
		public void move_before (Gtk.TreeIter iter, Gtk.TreeIter? position);
		public TreeStore (int n_columns, ...);
		[CCode (cname = "gtk_tree_store_newv")]
		public TreeStore.newv (int n_columns, GLib.Type[] types);
		public void prepend (out Gtk.TreeIter iter, Gtk.TreeIter? parent);
		public bool remove (Gtk.TreeIter iter);
		public void reorder (Gtk.TreeIter? parent, int new_order);
		[CCode (sentinel = "-1")]
		public void set (Gtk.TreeIter iter, ...);
		public void set_column_types (int n_columns, GLib.Type[] types);
		public void set_valist (Gtk.TreeIter iter, pointer var_args);
		public void set_value (Gtk.TreeIter iter, int column, GLib.Value value);
		public void set_valuesv (Gtk.TreeIter iter, int columns, GLib.Value[] values);
		public void swap (Gtk.TreeIter a, Gtk.TreeIter b);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeView : Gtk.Container, Atk.Implementor, Gtk.Buildable {
		public int append_column (Gtk.TreeViewColumn column);
		public void collapse_all ();
		public bool collapse_row (Gtk.TreePath path);
		public void columns_autosize ();
		public void convert_bin_window_to_tree_coords (int bx, int by, int tx, int ty);
		public void convert_bin_window_to_widget_coords (int bx, int by, int wx, int wy);
		public void convert_tree_to_bin_window_coords (int tx, int ty, int bx, int by);
		public void convert_tree_to_widget_coords (int tx, int ty, int wx, int wy);
		public void convert_widget_to_bin_window_coords (int wx, int wy, int bx, int by);
		public void convert_widget_to_tree_coords (int wx, int wy, int tx, int ty);
		public weak Gdk.Pixmap create_row_drag_icon (Gtk.TreePath path);
		public void enable_model_drag_dest (Gtk.TargetEntry[] targets, Gdk.DragAction actions);
		public void enable_model_drag_source (Gdk.ModifierType start_button_mask, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
		public void expand_all ();
		public bool expand_row (Gtk.TreePath path, bool open_all);
		public void expand_to_path (Gtk.TreePath path);
		public void get_background_area (Gtk.TreePath path, Gtk.TreeViewColumn column, out Gdk.Rectangle rect);
		public weak Gdk.Window get_bin_window ();
		public void get_cell_area (Gtk.TreePath path, Gtk.TreeViewColumn column, out Gdk.Rectangle rect);
		public weak Gtk.TreeViewColumn get_column (int n);
		public weak GLib.List get_columns ();
		public void get_cursor (out weak Gtk.TreePath path, out weak Gtk.TreeViewColumn focus_column);
		public bool get_dest_row_at_pos (int drag_x, int drag_y, out weak Gtk.TreePath path, out Gtk.TreeViewDropPosition pos);
		public void get_drag_dest_row (out weak Gtk.TreePath path, out Gtk.TreeViewDropPosition pos);
		public bool get_enable_search ();
		public bool get_enable_tree_lines ();
		public weak Gtk.TreeViewColumn get_expander_column ();
		public bool get_fixed_height_mode ();
		public Gtk.TreeViewGridLines get_grid_lines ();
		public weak Gtk.Adjustment get_hadjustment ();
		public bool get_headers_clickable ();
		public bool get_headers_visible ();
		public bool get_hover_expand ();
		public bool get_hover_selection ();
		public int get_level_indentation ();
		public weak Gtk.TreeModel get_model ();
		public bool get_path_at_pos (int x, int y, out weak Gtk.TreePath path, out weak Gtk.TreeViewColumn column, int cell_x, int cell_y);
		public bool get_reorderable ();
		public Gtk.TreeViewRowSeparatorFunc get_row_separator_func ();
		public bool get_rubber_banding ();
		public bool get_rules_hint ();
		public int get_search_column ();
		public weak Gtk.Entry get_search_entry ();
		public Gtk.TreeViewSearchEqualFunc get_search_equal_func ();
		public Gtk.TreeViewSearchPositionFunc get_search_position_func ();
		public weak Gtk.TreeSelection get_selection ();
		public bool get_show_expanders ();
		public int get_tooltip_column ();
		public bool get_tooltip_context (int x, int y, bool keyboard_tip, out weak Gtk.TreeModel model, out weak Gtk.TreePath path, out Gtk.TreeIter iter);
		public weak Gtk.Adjustment get_vadjustment ();
		public bool get_visible_range (out weak Gtk.TreePath start_path, out weak Gtk.TreePath end_path);
		public void get_visible_rect (out Gdk.Rectangle visible_rect);
		public int insert_column (Gtk.TreeViewColumn column, int position);
		public int insert_column_with_attributes (int position, string title, Gtk.CellRenderer cell, ...);
		public int insert_column_with_data_func (int position, string title, Gtk.CellRenderer cell, Gtk.TreeCellDataFunc func, pointer data, GLib.DestroyNotify dnotify);
		public bool is_rubber_banding_active ();
		public void map_expanded_rows (Gtk.TreeViewMappingFunc func, pointer data);
		public void move_column_after (Gtk.TreeViewColumn column, Gtk.TreeViewColumn base_column);
		public TreeView ();
		public TreeView.with_model (Gtk.TreeModel model);
		public int remove_column (Gtk.TreeViewColumn column);
		public void scroll_to_cell (Gtk.TreePath path, Gtk.TreeViewColumn column, bool use_align, float row_align, float col_align);
		public void scroll_to_point (int tree_x, int tree_y);
		public void set_column_drag_function (Gtk.TreeViewColumnDropFunc func, pointer user_data, Gtk.DestroyNotify destroy);
		public void set_cursor (Gtk.TreePath path, Gtk.TreeViewColumn focus_column, bool start_editing);
		public void set_cursor_on_cell (Gtk.TreePath path, Gtk.TreeViewColumn focus_column, Gtk.CellRenderer focus_cell, bool start_editing);
		public void set_destroy_count_func (Gtk.TreeDestroyCountFunc func, pointer data, Gtk.DestroyNotify destroy);
		public void set_drag_dest_row (Gtk.TreePath path, Gtk.TreeViewDropPosition pos);
		public void set_enable_search (bool enable_search);
		public void set_enable_tree_lines (bool enabled);
		public void set_expander_column (Gtk.TreeViewColumn column);
		public void set_fixed_height_mode (bool enable);
		public void set_grid_lines (Gtk.TreeViewGridLines grid_lines);
		public void set_hadjustment (Gtk.Adjustment adjustment);
		public void set_headers_clickable (bool setting);
		public void set_headers_visible (bool headers_visible);
		public void set_hover_expand (bool expand);
		public void set_hover_selection (bool hover);
		public void set_level_indentation (int indentation);
		public void set_model (Gtk.TreeModel model);
		public void set_reorderable (bool reorderable);
		public void set_row_separator_func (Gtk.TreeViewRowSeparatorFunc func, pointer data, Gtk.DestroyNotify destroy);
		public void set_rubber_banding (bool enable);
		public void set_rules_hint (bool setting);
		public void set_search_column (int column);
		public void set_search_entry (Gtk.Entry entry);
		public void set_search_equal_func (Gtk.TreeViewSearchEqualFunc search_equal_func, pointer search_user_data, Gtk.DestroyNotify search_destroy);
		public void set_search_position_func (Gtk.TreeViewSearchPositionFunc func, pointer data, GLib.DestroyNotify destroy);
		public void set_show_expanders (bool enabled);
		public void set_tooltip_cell (Gtk.Tooltip tooltip, Gtk.TreePath path, Gtk.TreeViewColumn column, Gtk.CellRenderer cell);
		public void set_tooltip_column (int column);
		public void set_tooltip_row (Gtk.Tooltip tooltip, Gtk.TreePath path);
		public void set_vadjustment (Gtk.Adjustment adjustment);
		public void unset_rows_drag_dest ();
		public void unset_rows_drag_source ();
		[NoAccessorMethod]
		public weak Gtk.TreeViewGridLines enable_grid_lines { get; set; }
		public weak bool enable_search { get; set; }
		public weak bool enable_tree_lines { get; set; }
		public weak Gtk.TreeViewColumn expander_column { get; set; }
		public weak bool fixed_height_mode { get; set; }
		public weak Gtk.Adjustment hadjustment { get; set; }
		public weak bool headers_clickable { get; set; }
		public weak bool headers_visible { get; set; }
		public weak bool hover_expand { get; set; }
		public weak bool hover_selection { get; set; }
		public weak int level_indentation { get; set; }
		public weak Gtk.TreeModel model { get; set; }
		public weak bool reorderable { get; set; }
		public weak bool rubber_banding { get; set; }
		public weak bool rules_hint { get; set; }
		public weak int search_column { get; set; }
		public weak bool show_expanders { get; set; }
		public weak int tooltip_column { get; set; }
		public weak Gtk.Adjustment vadjustment { get; set; }
		public signal void columns_changed ();
		public signal void cursor_changed ();
		public signal bool expand_collapse_cursor_row (bool logical, bool expand, bool open_all);
		public signal bool move_cursor (Gtk.MovementStep step, int count);
		[HasEmitter]
		public signal void row_activated (Gtk.TreePath path, Gtk.TreeViewColumn column);
		public signal void row_collapsed (Gtk.TreeIter iter, Gtk.TreePath path);
		[HasEmitter]
		public signal void row_expanded (Gtk.TreeIter iter, Gtk.TreePath path);
		public signal bool select_all ();
		public signal bool select_cursor_parent ();
		public signal bool select_cursor_row (bool start_editing);
		public signal void set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public signal bool start_interactive_search ();
		public signal bool test_collapse_row (Gtk.TreeIter iter, Gtk.TreePath path);
		public signal bool test_expand_row (Gtk.TreeIter iter, Gtk.TreePath path);
		public signal bool toggle_cursor_row ();
		public signal bool unselect_all ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class TreeViewColumn : Gtk.Object, Gtk.Buildable, Gtk.CellLayout {
		public weak Gtk.Widget tree_view;
		public weak Gtk.Widget button;
		public weak Gtk.Widget child;
		public weak Gtk.Widget arrow;
		public weak Gdk.Window window;
		public weak Gtk.CellEditable editable_widget;
		public float xalign;
		public uint property_changed_signal;
		public Gtk.TreeViewColumnSizing column_type;
		public int requested_width;
		public int button_request;
		public int resized_width;
		public int drag_x;
		public int drag_y;
		public weak GLib.List cell_list;
		public uint sort_clicked_signal;
		public uint sort_column_changed_signal;
		public int sort_column_id;
		public uint dirty;
		public uint show_sort_indicator;
		public uint maybe_reordered;
		public uint use_resized_width;
		public void add_attribute (Gtk.CellRenderer cell_renderer, string attribute, int column);
		public bool cell_get_position (Gtk.CellRenderer cell_renderer, int start_pos, int width);
		public void cell_get_size (out Gdk.Rectangle cell_area, out int x_offset, out int y_offset, out int width, out int height);
		public bool cell_is_visible ();
		public void cell_set_cell_data (Gtk.TreeModel tree_model, Gtk.TreeIter iter, bool is_expander, bool is_expanded);
		public void clear ();
		public void clear_attributes (Gtk.CellRenderer cell_renderer);
		public void focus_cell (Gtk.CellRenderer cell);
		public float get_alignment ();
		public weak GLib.List get_cell_renderers ();
		public bool get_clickable ();
		public bool get_expand ();
		public int get_fixed_width ();
		public int get_max_width ();
		public int get_min_width ();
		public bool get_reorderable ();
		public bool get_resizable ();
		public Gtk.TreeViewColumnSizing get_sizing ();
		public int get_sort_column_id ();
		public bool get_sort_indicator ();
		public Gtk.SortType get_sort_order ();
		public int get_spacing ();
		public weak string get_title ();
		public weak Gtk.Widget get_tree_view ();
		public bool get_visible ();
		public weak Gtk.Widget get_widget ();
		public int get_width ();
		public TreeViewColumn ();
		public TreeViewColumn.with_attributes (string title, Gtk.CellRenderer cell, ...);
		public void pack_end (Gtk.CellRenderer cell, bool expand);
		public void pack_start (Gtk.CellRenderer cell, bool expand);
		public void queue_resize ();
		public void set_alignment (float xalign);
		public void set_attributes (Gtk.CellRenderer cell_renderer, ...);
		public void set_cell_data_func (Gtk.CellRenderer cell_renderer, Gtk.TreeCellDataFunc func, pointer func_data, Gtk.DestroyNotify destroy);
		public void set_clickable (bool clickable);
		public void set_expand (bool expand);
		public void set_fixed_width (int fixed_width);
		public void set_max_width (int max_width);
		public void set_min_width (int min_width);
		public void set_reorderable (bool reorderable);
		public void set_resizable (bool resizable);
		public void set_sizing (Gtk.TreeViewColumnSizing type);
		public void set_sort_column_id (int sort_column_id);
		public void set_sort_indicator (bool setting);
		public void set_sort_order (Gtk.SortType order);
		public void set_spacing (int spacing);
		public void set_title (string title);
		public void set_visible (bool visible);
		public void set_widget (Gtk.Widget widget);
		public weak float alignment { get; set; }
		public weak bool clickable { get; set; }
		public weak bool expand { get; set; }
		public weak int fixed_width { get; set; }
		public weak int max_width { get; set; }
		public weak int min_width { get; set; }
		public weak bool reorderable { get; set; }
		public weak bool resizable { get; set; }
		public weak Gtk.TreeViewColumnSizing sizing { get; set; }
		public weak bool sort_indicator { get; set; }
		public weak Gtk.SortType sort_order { get; set; }
		public weak int spacing { get; set; }
		public weak string title { get; set; }
		public weak bool visible { get; set; }
		public weak Gtk.Widget widget { get; set; }
		public weak int width { get; }
		[HasEmitter]
		public signal void clicked ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class UIManager : GLib.Object, Gtk.Buildable {
		public void add_ui (uint merge_id, string path, string name, string action, Gtk.UIManagerItemType type, bool top);
		public uint add_ui_from_file (string filename) throws GLib.Error;
		public uint add_ui_from_string (string buffer, long length) throws GLib.Error;
		public void ensure_update ();
		public weak Gtk.AccelGroup get_accel_group ();
		public weak GLib.List get_action_groups ();
		public bool get_add_tearoffs ();
		public weak GLib.SList get_toplevels (Gtk.UIManagerItemType types);
		public weak string get_ui ();
		public void insert_action_group (Gtk.ActionGroup action_group, int pos);
		public UIManager ();
		public UIManager.merge_id (Gtk.UIManager self);
		public void remove_action_group (Gtk.ActionGroup action_group);
		public void remove_ui (uint merge_id);
		public void set_add_tearoffs (bool add_tearoffs);
		public virtual weak Gtk.Action get_action (string path);
		public virtual weak Gtk.Widget get_widget (string path);
		public weak bool add_tearoffs { get; set; }
		public weak string ui { get; }
		public signal void actions_changed ();
		public signal void add_widget (Gtk.Widget widget);
		public signal void connect_proxy (Gtk.Action action, Gtk.Widget proxy);
		public signal void disconnect_proxy (Gtk.Action action, Gtk.Widget proxy);
		public signal void post_activate (Gtk.Action action);
		public signal void pre_activate (Gtk.Action action);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VBox : Gtk.Box, Atk.Implementor, Gtk.Buildable {
		public VBox (bool homogeneous, int spacing);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VButtonBox : Gtk.ButtonBox, Atk.Implementor, Gtk.Buildable {
		public VButtonBox ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VPaned : Gtk.Paned, Atk.Implementor, Gtk.Buildable {
		public VPaned ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VRuler : Gtk.Ruler, Atk.Implementor, Gtk.Buildable {
		public VRuler ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VScale : Gtk.Scale, Atk.Implementor, Gtk.Buildable {
		public VScale (Gtk.Adjustment adjustment);
		public VScale.with_range (double min, double max, double step);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VScrollbar : Gtk.Scrollbar, Atk.Implementor, Gtk.Buildable {
		public VScrollbar (Gtk.Adjustment adjustment);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VSeparator : Gtk.Separator, Atk.Implementor, Gtk.Buildable {
		public VSeparator ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Viewport : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public weak Gdk.Window view_window;
		public weak Gdk.Window bin_window;
		public weak Gtk.Adjustment get_hadjustment ();
		public Gtk.ShadowType get_shadow_type ();
		public weak Gtk.Adjustment get_vadjustment ();
		public Viewport (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
		public void set_hadjustment (Gtk.Adjustment adjustment);
		public void set_shadow_type (Gtk.ShadowType type);
		public void set_vadjustment (Gtk.Adjustment adjustment);
		public weak Gtk.Adjustment hadjustment { get; set construct; }
		public weak Gtk.ShadowType shadow_type { get; set; }
		public weak Gtk.Adjustment vadjustment { get; set construct; }
		public signal void set_scroll_adjustments (Gtk.Adjustment hadjustment, Gtk.Adjustment vadjustment);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class VolumeButton : Gtk.ScaleButton, Atk.Implementor, Gtk.Buildable {
		public VolumeButton ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class Window : Gtk.Bin, Atk.Implementor, Gtk.Buildable {
		public weak string wmclass_name;
		public weak string wmclass_class;
		public weak string wm_role;
		public weak Gtk.Widget focus_widget;
		public weak Gtk.Widget default_widget;
		public weak Gtk.Window transient_parent;
		public weak Gtk.WindowGeometryInfo geometry_info;
		public weak Gdk.Window frame;
		public weak Gtk.WindowGroup group;
		public ushort configure_request_count;
		public uint configure_notify_received;
		public uint need_default_position;
		public uint need_default_size;
		public uint position;
		public uint has_user_ref_count;
		public uint has_focus;
		public uint has_frame;
		public uint iconify_initially;
		public uint stick_initially;
		public uint maximize_initially;
		public uint frame_left;
		public uint frame_top;
		public uint frame_right;
		public uint frame_bottom;
		public uint keys_changed_handler;
		public Gdk.ModifierType mnemonic_modifier;
		public bool activate_default ();
		public bool activate_focus ();
		public bool activate_key (Gdk.EventKey event);
		public void add_accel_group (Gtk.AccelGroup accel_group);
		public void add_embedded_xid (uint xid);
		public void add_mnemonic (uint keyval, Gtk.Widget target);
		public void begin_move_drag (int button, int root_x, int root_y, uint timestamp);
		public void begin_resize_drag (Gdk.WindowEdge edge, int button, int root_x, int root_y, uint timestamp);
		public void deiconify ();
		public void fullscreen ();
		public bool get_accept_focus ();
		public bool get_decorated ();
		public static weak GLib.List get_default_icon_list ();
		public void get_default_size (int width, int height);
		public bool get_deletable ();
		public bool get_destroy_with_parent ();
		public weak Gtk.Widget get_focus ();
		public bool get_focus_on_map ();
		public void get_frame_dimensions (int left, int top, int right, int bottom);
		public Gdk.Gravity get_gravity ();
		public weak Gtk.WindowGroup get_group ();
		public bool get_has_frame ();
		public weak Gdk.Pixbuf get_icon ();
		public weak GLib.List get_icon_list ();
		public weak string get_icon_name ();
		public Gdk.ModifierType get_mnemonic_modifier ();
		public bool get_modal ();
		public double get_opacity ();
		public void get_position (out int root_x, out int root_y);
		public bool get_resizable ();
		public weak string get_role ();
		public weak Gdk.Screen get_screen ();
		public void get_size (out int width, out int height);
		public bool get_skip_pager_hint ();
		public bool get_skip_taskbar_hint ();
		public weak string get_title ();
		public weak Gtk.Window get_transient_for ();
		public Gdk.WindowTypeHint get_type_hint ();
		public bool get_urgency_hint ();
		public void iconify ();
		public static weak GLib.List list_toplevels ();
		public void maximize ();
		public bool mnemonic_activate (uint keyval, Gdk.ModifierType modifier);
		public void move (int x, int y);
		public Window (Gtk.WindowType type);
		public bool parse_geometry (string geometry);
		public void present ();
		public void present_with_time (uint timestamp);
		public bool propagate_key_event (Gdk.EventKey event);
		public void remove_accel_group (Gtk.AccelGroup accel_group);
		public void remove_embedded_xid (uint xid);
		public void remove_mnemonic (uint keyval, Gtk.Widget target);
		public void reshow_with_initial_size ();
		public void resize (int width, int height);
		public void set_accept_focus (bool setting);
		public static void set_auto_startup_notification (bool setting);
		public void set_decorated (bool setting);
		public void set_default (Gtk.Widget default_widget);
		public static void set_default_icon (Gdk.Pixbuf icon);
		public static bool set_default_icon_from_file (string filename) throws GLib.Error;
		public static void set_default_icon_list (GLib.List list);
		public static void set_default_icon_name (string name);
		public void set_default_size (int width, int height);
		public void set_deletable (bool setting);
		public void set_destroy_with_parent (bool setting);
		public void set_focus_on_map (bool setting);
		public void set_frame_dimensions (int left, int top, int right, int bottom);
		public void set_geometry_hints (Gtk.Widget geometry_widget, Gdk.Geometry geometry, Gdk.WindowHints geom_mask);
		public void set_gravity (Gdk.Gravity gravity);
		public void set_has_frame (bool setting);
		public void set_icon (Gdk.Pixbuf icon);
		public bool set_icon_from_file (string filename) throws GLib.Error;
		public void set_icon_list (GLib.List list);
		public void set_icon_name (string name);
		public void set_keep_above (bool setting);
		public void set_keep_below (bool setting);
		public void set_mnemonic_modifier (Gdk.ModifierType modifier);
		public void set_modal (bool modal);
		public void set_opacity (double opacity);
		public void set_position (Gtk.WindowPosition position);
		public void set_resizable (bool resizable);
		public void set_role (string role);
		public void set_screen (Gdk.Screen screen);
		public void set_skip_pager_hint (bool setting);
		public void set_skip_taskbar_hint (bool setting);
		public void set_startup_id (string startup_id);
		public void set_title (string title);
		public void set_transient_for (Gtk.Window parent);
		public void set_type_hint (Gdk.WindowTypeHint hint);
		public void set_urgency_hint (bool setting);
		public void set_wmclass (string wmclass_name, string wmclass_class);
		public void stick ();
		public void unfullscreen ();
		public void unmaximize ();
		public void unstick ();
		[NoWrapper]
		public virtual void move_focus (Gtk.DirectionType direction);
		public weak bool accept_focus { get; set; }
		[NoAccessorMethod]
		public weak bool allow_grow { get; set; }
		[NoAccessorMethod]
		public weak bool allow_shrink { get; set; }
		public weak bool decorated { get; set; }
		[NoAccessorMethod]
		public weak int default_height { get; set; }
		[NoAccessorMethod]
		public weak int default_width { get; set; }
		public weak bool deletable { get; set; }
		public weak bool destroy_with_parent { get; set; }
		public weak bool focus_on_map { get; set; }
		public weak Gdk.Gravity gravity { get; set; }
		[NoAccessorMethod]
		public weak bool has_toplevel_focus { get; }
		public weak Gdk.Pixbuf icon { get; set; }
		public weak string icon_name { get; set; }
		[NoAccessorMethod]
		public weak bool is_active { get; }
		public weak bool modal { get; set; }
		public weak double opacity { get; set; }
		public weak bool resizable { get; set; }
		public weak string role { get; set; }
		public weak Gdk.Screen screen { get; set; }
		public weak bool skip_pager_hint { get; set; }
		public weak bool skip_taskbar_hint { get; set; }
		public weak string startup_id { set; }
		public weak string title { get; set; }
		public weak Gtk.Window transient_for { get; set construct; }
		[NoAccessorMethod]
		public weak Gtk.WindowType type { get; construct; }
		public weak Gdk.WindowTypeHint type_hint { get; set; }
		public weak bool urgency_hint { get; set; }
		[NoAccessorMethod]
		public weak Gtk.WindowPosition window_position { get; set; }
		public signal void default_activated ();
		public signal void focus_activated ();
		public signal bool frame_event (Gdk.Event event);
		public signal void keys_changed ();
		[HasEmitter]
		public signal void set_focus (Gtk.Widget focus);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public class WindowGroup : GLib.Object {
		public weak GLib.SList grabs;
		public void add_window (Gtk.Window window);
		public WindowGroup ();
		public void remove_window (Gtk.Window window);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface FileChooserEmbed {
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface Buildable {
		public abstract void add_child (Gtk.Builder builder, GLib.Object child, string type);
		public abstract weak GLib.Object construct_child (Gtk.Builder builder, string name);
		public abstract void custom_finished (Gtk.Builder builder, GLib.Object child, string tagname, pointer data);
		public abstract void custom_tag_end (Gtk.Builder builder, GLib.Object child, string tagname, pointer data);
		public abstract bool custom_tag_start (Gtk.Builder builder, GLib.Object child, string tagname, GLib.MarkupParser parser, pointer data);
		public abstract weak GLib.Object get_internal_child (Gtk.Builder builder, string childname);
		public abstract weak string get_name ();
		public abstract void parser_finished (Gtk.Builder builder);
		public abstract void set_buildable_property (Gtk.Builder builder, string name, GLib.Value value);
		public abstract void set_name (string name);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface CellEditable : Gtk.Widget {
		[HasEmitter]
		public signal void editing_done ();
		[HasEmitter]
		public signal void remove_widget ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface CellLayout : GLib.Object {
		public void set_attributes (Gtk.CellRenderer cell, ...);
		public abstract void add_attribute (Gtk.CellRenderer cell, string attribute, int column);
		public abstract void clear ();
		public abstract void clear_attributes (Gtk.CellRenderer cell);
		public abstract weak GLib.List get_cells ();
		public abstract void pack_end (Gtk.CellRenderer cell, bool expand);
		public abstract void pack_start (Gtk.CellRenderer cell, bool expand);
		public abstract void reorder (Gtk.CellRenderer cell, int position);
		public abstract void set_cell_data_func (Gtk.CellRenderer cell, Gtk.CellLayoutDataFunc func, pointer func_data, GLib.DestroyNotify destroy);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface Editable {
		public void copy_clipboard ();
		public void cut_clipboard ();
		public void delete_selection ();
		public bool get_editable ();
		public void paste_clipboard ();
		public void select_region (int start, int end);
		public void set_editable (bool is_editable);
		[NoWrapper]
		public abstract void do_delete_text (int start_pos, int end_pos);
		[NoWrapper]
		public abstract void do_insert_text (string text, int length, int position);
		public abstract weak string get_chars (int start_pos, int end_pos);
		public abstract int get_position ();
		public abstract bool get_selection_bounds (int start, int end);
		public abstract void set_position (int position);
		[NoWrapper]
		public abstract void set_selection_bounds (int start_pos, int end_pos);
		public signal void changed ();
		[HasEmitter]
		public signal void delete_text (int start_pos, int end_pos);
		[HasEmitter]
		public signal void insert_text (string text, int length, pointer position);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface FileChooser : Gtk.Widget {
		public void add_filter (Gtk.FileFilter filter);
		public bool add_shortcut_folder (string folder) throws GLib.Error;
		public bool add_shortcut_folder_uri (string uri) throws GLib.Error;
		public static GLib.Quark error_quark ();
		public Gtk.FileChooserAction get_action ();
		public weak string get_current_folder ();
		public weak string get_current_folder_uri ();
		public bool get_do_overwrite_confirmation ();
		public weak Gtk.Widget get_extra_widget ();
		public weak string get_filename ();
		public weak GLib.SList get_filenames ();
		public weak Gtk.FileFilter get_filter ();
		public bool get_local_only ();
		public weak string get_preview_filename ();
		public weak string get_preview_uri ();
		public weak Gtk.Widget get_preview_widget ();
		public bool get_preview_widget_active ();
		public bool get_select_multiple ();
		public bool get_show_hidden ();
		public weak string get_uri ();
		public weak GLib.SList get_uris ();
		public bool get_use_preview_label ();
		public weak GLib.SList list_filters ();
		public weak GLib.SList list_shortcut_folder_uris ();
		public weak GLib.SList list_shortcut_folders ();
		public void remove_filter (Gtk.FileFilter filter);
		public bool remove_shortcut_folder (string folder) throws GLib.Error;
		public bool remove_shortcut_folder_uri (string uri) throws GLib.Error;
		public void select_all ();
		public bool select_filename (string filename);
		public bool select_uri (string uri);
		public void set_action (Gtk.FileChooserAction action);
		public bool set_current_folder (string filename);
		public bool set_current_folder_uri (string uri);
		public void set_current_name (string name);
		public void set_do_overwrite_confirmation (bool do_overwrite_confirmation);
		public void set_extra_widget (Gtk.Widget extra_widget);
		public bool set_filename (string filename);
		public void set_filter (Gtk.FileFilter filter);
		public void set_local_only (bool local_only);
		public void set_preview_widget (Gtk.Widget preview_widget);
		public void set_preview_widget_active (bool active);
		public void set_select_multiple (bool select_multiple);
		public void set_show_hidden (bool show_hidden);
		public bool set_uri (string uri);
		public void set_use_preview_label (bool use_label);
		public void unselect_all ();
		public void unselect_filename (string filename);
		public void unselect_uri (string uri);
		public weak Gtk.FileChooserAction action { get; set; }
		public weak bool do_overwrite_confirmation { get; set; }
		public weak Gtk.Widget extra_widget { get; set; }
		public weak string file_system_backend { construct; }
		public weak Gtk.FileFilter filter { get; set; }
		public weak bool local_only { get; set; }
		public weak Gtk.Widget preview_widget { get; set; }
		public weak bool preview_widget_active { get; set; }
		public weak bool select_multiple { get; set; }
		public weak bool show_hidden { get; set; }
		public weak bool use_preview_label { get; set; }
		public signal Gtk.FileChooserConfirmation confirm_overwrite ();
		public signal void current_folder_changed ();
		public signal void file_activated ();
		public signal void selection_changed ();
		public signal void update_preview ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface PrintOperationPreview : GLib.Object {
		public abstract void end_preview ();
		public abstract bool is_selected (int page_nr);
		public abstract void render_page (int page_nr);
		public signal void got_page_size (Gtk.PrintContext context, Gtk.PageSetup page_setup);
		public signal void ready (Gtk.PrintContext context);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface RecentChooser : GLib.Object {
		public static GLib.Quark error_quark ();
		public weak Gtk.RecentInfo get_current_item ();
		public weak Gtk.RecentFilter get_filter ();
		public int get_limit ();
		public bool get_local_only ();
		public bool get_select_multiple ();
		public bool get_show_icons ();
		public bool get_show_not_found ();
		public bool get_show_private ();
		public bool get_show_tips ();
		public Gtk.RecentSortType get_sort_type ();
		public weak string get_uris (ulong length);
		public void set_filter (Gtk.RecentFilter filter);
		public void set_limit (int limit);
		public void set_local_only (bool local_only);
		public void set_select_multiple (bool select_multiple);
		public void set_show_icons (bool show_icons);
		public void set_show_not_found (bool show_not_found);
		public void set_show_private (bool show_private);
		public void set_show_tips (bool show_tips);
		public void set_sort_type (Gtk.RecentSortType sort_type);
		public abstract void add_filter (Gtk.RecentFilter filter);
		public abstract weak string get_current_uri ();
		public abstract weak GLib.List get_items ();
		[NoWrapper]
		public abstract weak Gtk.RecentManager get_recent_manager ();
		public abstract weak GLib.SList list_filters ();
		public abstract void remove_filter (Gtk.RecentFilter filter);
		public abstract void select_all ();
		public abstract bool select_uri (string uri) throws GLib.Error;
		public abstract bool set_current_uri (string uri) throws GLib.Error;
		public abstract void set_sort_func (Gtk.RecentSortFunc sort_func, pointer sort_data, GLib.DestroyNotify data_destroy);
		public abstract void unselect_all ();
		public abstract void unselect_uri (string uri);
		public weak Gtk.RecentFilter filter { get; set; }
		public weak int limit { get; set; }
		public weak bool local_only { get; set; }
		public weak Gtk.RecentManager recent_manager { construct; }
		public weak bool select_multiple { get; set; }
		public weak bool show_icons { get; set; }
		public weak bool show_not_found { get; set; }
		public weak bool show_private { get; set; }
		public weak bool show_tips { get; set; }
		public weak Gtk.RecentSortType sort_type { get; set; }
		public signal void item_activated ();
		public signal void selection_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface TreeDragDest {
		public abstract bool drag_data_received (Gtk.TreePath dest, Gtk.SelectionData selection_data);
		public abstract bool row_drop_possible (Gtk.TreePath dest_path, Gtk.SelectionData selection_data);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface TreeDragSource {
		public abstract bool drag_data_delete (Gtk.TreePath path);
		public abstract bool drag_data_get (Gtk.TreePath path, Gtk.SelectionData selection_data);
		public abstract bool row_draggable (Gtk.TreePath path);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface TreeModel : GLib.Object {
		public void @foreach (Gtk.TreeModelForeachFunc func, pointer user_data);
		[CCode (sentinel = "-1")]
		public void get (Gtk.TreeIter iter, ...);
		public bool get_iter_first (out Gtk.TreeIter iter);
		public bool get_iter_from_string (out Gtk.TreeIter iter, string path_string);
		public string get_string_from_iter (Gtk.TreeIter iter);
		public void get_valist (Gtk.TreeIter iter, pointer var_args);
		public abstract GLib.Type get_column_type (int index_);
		public abstract Gtk.TreeModelFlags get_flags ();
		public abstract bool get_iter (out Gtk.TreeIter iter, Gtk.TreePath path);
		public abstract int get_n_columns ();
		public abstract Gtk.TreePath get_path (Gtk.TreeIter iter);
		public abstract void get_value (Gtk.TreeIter iter, int column, GLib.Value value);
		public abstract bool iter_children (out Gtk.TreeIter iter, Gtk.TreeIter? parent);
		public abstract bool iter_has_child (Gtk.TreeIter iter);
		public abstract int iter_n_children (Gtk.TreeIter? iter);
		public abstract bool iter_next (ref Gtk.TreeIter iter);
		public abstract bool iter_nth_child (out Gtk.TreeIter iter, Gtk.TreeIter parent, int n);
		public abstract bool iter_parent (out Gtk.TreeIter iter, Gtk.TreeIter child);
		public abstract void ref_node (Gtk.TreeIter iter);
		public abstract void unref_node (Gtk.TreeIter iter);
		[HasEmitter]
		public signal void row_changed (Gtk.TreePath path, Gtk.TreeIter iter);
		[HasEmitter]
		public signal void row_deleted (Gtk.TreePath path);
		[HasEmitter]
		public signal void row_has_child_toggled (Gtk.TreePath path, Gtk.TreeIter iter);
		[HasEmitter]
		public signal void row_inserted (Gtk.TreePath path, Gtk.TreeIter iter);
		[HasEmitter]
		public signal void rows_reordered (Gtk.TreePath path, Gtk.TreeIter iter, pointer new_order);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public interface TreeSortable : Gtk.TreeModel, GLib.Object {
		public abstract bool get_sort_column_id (int sort_column_id, Gtk.SortType order);
		public abstract bool has_default_sort_func ();
		public abstract void set_default_sort_func (Gtk.TreeIterCompareFunc sort_func, pointer user_data, Gtk.DestroyNotify destroy);
		public abstract void set_sort_column_id (int sort_column_id, Gtk.SortType order);
		public abstract void set_sort_func (int sort_column_id, Gtk.TreeIterCompareFunc sort_func, pointer user_data, Gtk.DestroyNotify destroy);
		[HasEmitter]
		public signal void sort_column_changed ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct Allocation {
		public int x;
		public int y;
		public int width;
		public int height;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct ActionEntry {
		public weak string name;
		public weak string stock_id;
		public weak string label;
		public weak string accelerator;
		public weak string tooltip;
		public GLib.Callback callback;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct RadioActionEntry {
		public weak string name;
		public weak string stock_id;
		public weak string label;
		public weak string accelerator;
		public weak string tooltip;
		public int value;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct RecentData {
		public string display_name;
		public string description;
		public string mime_type;
		public string app_name;
		public string app_exec;
		[NoArrayLength]
		public string[] groups;
		public bool is_private;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct TargetEntry {
		public weak string target;
		public uint flags;
		public uint info;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct ToggleActionEntry {
		public weak string name;
		public weak string stock_id;
		public weak string label;
		public weak string accelerator;
		public weak string tooltip;
		public GLib.Callback callback;
		public bool is_active;
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct Border {
		public int left;
		public int right;
		public int top;
		public int bottom;
		public Gtk.Border copy ();
		public void free ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct Requisition {
		public int width;
		public int height;
		public Gtk.Requisition copy ();
		public void free ();
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct TextIter {
		public pointer dummy1;
		public pointer dummy2;
		public int dummy3;
		public int dummy4;
		public int dummy5;
		public int dummy6;
		public int dummy7;
		public int dummy8;
		public pointer dummy9;
		public pointer dummy10;
		public int dummy11;
		public int dummy12;
		public int dummy13;
		public pointer dummy14;
		public bool backward_char ();
		public bool backward_chars (int count);
		public bool backward_cursor_position ();
		public bool backward_cursor_positions (int count);
		public bool backward_find_char (Gtk.TextCharPredicate pred, pointer user_data, Gtk.TextIter limit);
		public bool backward_line ();
		public bool backward_lines (int count);
		public bool backward_search (string str, Gtk.TextSearchFlags flags, Gtk.TextIter match_start, Gtk.TextIter match_end, Gtk.TextIter limit);
		public bool backward_sentence_start ();
		public bool backward_sentence_starts (int count);
		public bool backward_to_tag_toggle (Gtk.TextTag tag);
		public bool backward_visible_cursor_position ();
		public bool backward_visible_cursor_positions (int count);
		public bool backward_visible_line ();
		public bool backward_visible_lines (int count);
		public bool backward_visible_word_start ();
		public bool backward_visible_word_starts (int count);
		public bool backward_word_start ();
		public bool backward_word_starts (int count);
		public bool begins_tag (Gtk.TextTag tag);
		public bool can_insert (bool default_editability);
		public int compare (Gtk.TextIter rhs);
		public Gtk.TextIter copy ();
		public bool editable (bool default_setting);
		public bool ends_line ();
		public bool ends_sentence ();
		public bool ends_tag (Gtk.TextTag tag);
		public bool ends_word ();
		public bool equal (Gtk.TextIter rhs);
		public bool forward_char ();
		public bool forward_chars (int count);
		public bool forward_cursor_position ();
		public bool forward_cursor_positions (int count);
		public bool forward_find_char (Gtk.TextCharPredicate pred, pointer user_data, Gtk.TextIter limit);
		public bool forward_line ();
		public bool forward_lines (int count);
		public bool forward_search (string str, Gtk.TextSearchFlags flags, Gtk.TextIter match_start, Gtk.TextIter match_end, Gtk.TextIter limit);
		public bool forward_sentence_end ();
		public bool forward_sentence_ends (int count);
		public void forward_to_end ();
		public bool forward_to_line_end ();
		public bool forward_to_tag_toggle (Gtk.TextTag tag);
		public bool forward_visible_cursor_position ();
		public bool forward_visible_cursor_positions (int count);
		public bool forward_visible_line ();
		public bool forward_visible_lines (int count);
		public bool forward_visible_word_end ();
		public bool forward_visible_word_ends (int count);
		public bool forward_word_end ();
		public bool forward_word_ends (int count);
		public void free ();
		public bool get_attributes (Gtk.TextAttributes values);
		public weak Gtk.TextBuffer get_buffer ();
		public int get_bytes_in_line ();
		public unichar get_char ();
		public int get_chars_in_line ();
		public weak Gtk.TextChildAnchor get_child_anchor ();
		public weak Pango.Language get_language ();
		public int get_line ();
		public int get_line_index ();
		public int get_line_offset ();
		public weak GLib.SList get_marks ();
		public int get_offset ();
		public weak Gdk.Pixbuf get_pixbuf ();
		public weak string get_slice (Gtk.TextIter end);
		public weak GLib.SList get_tags ();
		public weak string get_text (Gtk.TextIter end);
		public weak GLib.SList get_toggled_tags (bool toggled_on);
		public int get_visible_line_index ();
		public int get_visible_line_offset ();
		public weak string get_visible_slice (Gtk.TextIter end);
		public weak string get_visible_text (Gtk.TextIter end);
		public bool has_tag (Gtk.TextTag tag);
		public bool in_range (Gtk.TextIter start, Gtk.TextIter end);
		public bool inside_sentence ();
		public bool inside_word ();
		public bool is_cursor_position ();
		public bool is_end ();
		public bool is_start ();
		public void order (Gtk.TextIter second);
		public void set_line (int line_number);
		public void set_line_index (int byte_on_line);
		public void set_line_offset (int char_on_line);
		public void set_offset (int char_offset);
		public void set_visible_line_index (int byte_on_line);
		public void set_visible_line_offset (int char_on_line);
		public bool starts_line ();
		public bool starts_sentence ();
		public bool starts_word ();
		public bool toggles_tag (Gtk.TextTag tag);
	}
	[CCode (cheader_filename = "gtk/gtk.h")]
	public struct TreeIter {
		public int stamp;
		public pointer user_data;
		public pointer user_data2;
		public pointer user_data3;
		public Gtk.TreeIter copy ();
		public void free ();
	}
	public static delegate void CallbackMarshal (Gtk.Object object, pointer data, Gtk.Arg[] args);
	public static delegate void AboutDialogActivateLinkFunc (Gtk.AboutDialog about, string link_, pointer data);
	public static delegate bool AccelGroupActivate (Gtk.AccelGroup accel_group, GLib.Object acceleratable, uint keyval, Gdk.ModifierType modifier);
	public static delegate bool AccelGroupFindFunc (Gtk.AccelKey key, GLib.Closure closure, pointer data);
	public static delegate void AccelMapForeach (pointer data, string accel_path, uint accel_key, Gdk.ModifierType accel_mods, bool changed);
	public static delegate int AssistantPageFunc (int current_page, pointer data);
	public static delegate void BuilderConnectFunc (Gtk.Builder builder, GLib.Object object, string signal_name, string handler_name, GLib.Object connect_object, GLib.ConnectFlags flags, pointer user_data);
	public static delegate void Callback (Gtk.Widget widget, pointer data);
	public static delegate void CellLayoutDataFunc (Gtk.CellLayout cell_layout, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter, pointer data);
	public static delegate void ClipboardClearFunc (Gtk.Clipboard clipboard, pointer user_data_or_owner);
	public static delegate void ClipboardGetFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data, uint info, pointer user_data_or_owner);
	public static delegate void ClipboardImageReceivedFunc (Gtk.Clipboard clipboard, Gdk.Pixbuf pixbuf, pointer data);
	public static delegate void ClipboardReceivedFunc (Gtk.Clipboard clipboard, Gtk.SelectionData selection_data, pointer data);
	public static delegate void ClipboardRichTextReceivedFunc (Gtk.Clipboard clipboard, Gdk.Atom format, uchar text, ulong length, pointer data);
	public static delegate void ClipboardTargetsReceivedFunc (Gtk.Clipboard clipboard, out Gdk.Atom atoms, int n_atoms, pointer data);
	public static delegate void ClipboardTextReceivedFunc (Gtk.Clipboard clipboard, string text, pointer data);
	public static delegate void ColorSelectionChangePaletteFunc (Gdk.Color colors, int n_colors);
	public static delegate void ColorSelectionChangePaletteWithScreenFunc (Gdk.Screen screen, Gdk.Color colors, int n_colors);
	public static delegate void DestroyNotify (pointer data);
	public static delegate bool EntryCompletionMatchFunc (Gtk.EntryCompletion completion, string key, Gtk.TreeIter iter, pointer user_data);
	public static delegate bool FileFilterFunc (Gtk.FileFilterInfo filter_info, pointer data);
	public static delegate bool Function (pointer data);
	public static delegate void IconViewForeachFunc (Gtk.IconView icon_view, Gtk.TreePath path, pointer data);
	public static delegate int KeySnoopFunc (Gtk.Widget grab_widget, Gdk.EventKey event, pointer func_data);
	public static delegate void LinkButtonUriFunc (Gtk.LinkButton button, string link_, pointer user_data);
	public static delegate void MenuDetachFunc (Gtk.Widget attach_widget, Gtk.Menu menu);
	public static delegate void MenuPositionFunc (Gtk.Menu menu, int x, int y, bool push_in, pointer user_data);
	public static delegate void ModuleDisplayInitFunc (Gdk.Display display);
	public static delegate void ModuleInitFunc (int argc, string argv);
	public static delegate weak Gtk.Notebook NotebookWindowCreationFunc (Gtk.Notebook source, Gtk.Widget page, int x, int y, pointer data);
	public static delegate void PageSetupDoneFunc (Gtk.PageSetup page_setup, pointer data);
	public static delegate void PrintSettingsFunc (string key, string value, pointer user_data);
	public static delegate bool RcPropertyParser (GLib.ParamSpec pspec, GLib.StringBuilder rc_string, GLib.Value property_value);
	public static delegate bool RecentFilterFunc (Gtk.RecentFilterInfo filter_info, pointer user_data);
	public static delegate int RecentSortFunc (Gtk.RecentInfo a, Gtk.RecentInfo b, pointer user_data);
	public static delegate void SignalFunc ();
	public static delegate bool TextBufferDeserializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter iter, uchar data, ulong length, bool create_tags, pointer user_data, GLib.Error error);
	public static delegate uchar TextBufferSerializeFunc (Gtk.TextBuffer register_buffer, Gtk.TextBuffer content_buffer, Gtk.TextIter start, Gtk.TextIter end, ulong length, pointer user_data);
	public static delegate bool TextCharPredicate (unichar ch, pointer user_data);
	public static delegate void TextTagTableForeach (Gtk.TextTag tag, pointer data);
	public static delegate weak string TranslateFunc (string path, pointer func_data);
	public static delegate void TreeCellDataFunc (Gtk.TreeViewColumn tree_column, Gtk.CellRenderer cell, Gtk.TreeModel tree_model, Gtk.TreeIter iter, pointer data);
	public static delegate void TreeDestroyCountFunc (Gtk.TreeView tree_view, Gtk.TreePath path, int children, pointer user_data);
	public static delegate int TreeIterCompareFunc (Gtk.TreeModel model, Gtk.TreeIter a, Gtk.TreeIter b, pointer user_data);
	public static delegate void TreeModelFilterModifyFunc (Gtk.TreeModel model, Gtk.TreeIter iter, GLib.Value value, int column, pointer data);
	public static delegate bool TreeModelFilterVisibleFunc (Gtk.TreeModel model, Gtk.TreeIter iter, pointer data);
	public static delegate bool TreeModelForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter, pointer data);
	public static delegate void TreeSelectionForeachFunc (Gtk.TreeModel model, Gtk.TreePath path, Gtk.TreeIter iter, pointer data);
	public static delegate bool TreeSelectionFunc (Gtk.TreeSelection selection, Gtk.TreeModel model, Gtk.TreePath path, bool path_currently_selected, pointer data);
	public static delegate bool TreeViewColumnDropFunc (Gtk.TreeView tree_view, Gtk.TreeViewColumn column, Gtk.TreeViewColumn prev_column, Gtk.TreeViewColumn next_column, pointer data);
	public static delegate void TreeViewMappingFunc (Gtk.TreeView tree_view, Gtk.TreePath path, pointer user_data);
	public static delegate bool TreeViewRowSeparatorFunc (Gtk.TreeModel model, Gtk.TreeIter iter, pointer data);
	public static delegate bool TreeViewSearchEqualFunc (Gtk.TreeModel model, int column, string key, Gtk.TreeIter iter, pointer search_data);
	public static delegate void TreeViewSearchPositionFunc (Gtk.TreeView tree_view, Gtk.Widget search_dialog, pointer user_data);
	public static delegate void WindowKeysForeachFunc (Gtk.Window window, uint keyval, Gdk.ModifierType modifiers, bool is_mnemonic, pointer data);
	public const int ARG_READWRITE;
	public const int BINARY_AGE;
	public const int BUTTONBOX_DEFAULT;
	public const int INPUT_ERROR;
	public const int INTERFACE_AGE;
	public const int MAJOR_VERSION;
	public const int MAX_COMPOSE_LEN;
	public const int MICRO_VERSION;
	public const int MINOR_VERSION;
	public const string PAPER_NAME_A3;
	public const string PAPER_NAME_A4;
	public const string PAPER_NAME_A5;
	public const string PAPER_NAME_B5;
	public const string PAPER_NAME_EXECUTIVE;
	public const string PAPER_NAME_LEGAL;
	public const string PAPER_NAME_LETTER;
	public const int PARAM_READABLE;
	public const int PARAM_READWRITE;
	public const int PARAM_WRITABLE;
	public const int PATH_PRIO_MASK;
	public const string PRINT_SETTINGS_COLLATE;
	public const string PRINT_SETTINGS_DEFAULT_SOURCE;
	public const string PRINT_SETTINGS_DITHER;
	public const string PRINT_SETTINGS_DUPLEX;
	public const string PRINT_SETTINGS_FINISHINGS;
	public const string PRINT_SETTINGS_MEDIA_TYPE;
	public const string PRINT_SETTINGS_NUMBER_UP;
	public const string PRINT_SETTINGS_N_COPIES;
	public const string PRINT_SETTINGS_ORIENTATION;
	public const string PRINT_SETTINGS_OUTPUT_BIN;
	public const string PRINT_SETTINGS_OUTPUT_FILE_FORMAT;
	public const string PRINT_SETTINGS_OUTPUT_URI;
	public const string PRINT_SETTINGS_PAGE_RANGES;
	public const string PRINT_SETTINGS_PAGE_SET;
	public const string PRINT_SETTINGS_PAPER_FORMAT;
	public const string PRINT_SETTINGS_PAPER_HEIGHT;
	public const string PRINT_SETTINGS_PAPER_WIDTH;
	public const string PRINT_SETTINGS_PRINTER;
	public const string PRINT_SETTINGS_PRINT_PAGES;
	public const string PRINT_SETTINGS_QUALITY;
	public const string PRINT_SETTINGS_RESOLUTION;
	public const string PRINT_SETTINGS_REVERSE;
	public const string PRINT_SETTINGS_SCALE;
	public const string PRINT_SETTINGS_USE_COLOR;
	public const string PRINT_SETTINGS_WIN32_DRIVER_EXTRA;
	public const string PRINT_SETTINGS_WIN32_DRIVER_VERSION;
	public const int PRIORITY_REDRAW;
	public const int PRIORITY_RESIZE;
	public const string STOCK_ABOUT;
	public const string STOCK_ADD;
	public const string STOCK_APPLY;
	public const string STOCK_BOLD;
	public const string STOCK_CANCEL;
	public const string STOCK_CDROM;
	public const string STOCK_CLEAR;
	public const string STOCK_CLOSE;
	public const string STOCK_COLOR_PICKER;
	public const string STOCK_CONNECT;
	public const string STOCK_CONVERT;
	public const string STOCK_COPY;
	public const string STOCK_CUT;
	public const string STOCK_DELETE;
	public const string STOCK_DIALOG_AUTHENTICATION;
	public const string STOCK_DIALOG_ERROR;
	public const string STOCK_DIALOG_INFO;
	public const string STOCK_DIALOG_QUESTION;
	public const string STOCK_DIALOG_WARNING;
	public const string STOCK_DIRECTORY;
	public const string STOCK_DISCARD;
	public const string STOCK_DISCONNECT;
	public const string STOCK_DND;
	public const string STOCK_DND_MULTIPLE;
	public const string STOCK_EDIT;
	public const string STOCK_EXECUTE;
	public const string STOCK_FILE;
	public const string STOCK_FIND;
	public const string STOCK_FIND_AND_REPLACE;
	public const string STOCK_FLOPPY;
	public const string STOCK_FULLSCREEN;
	public const string STOCK_GOTO_BOTTOM;
	public const string STOCK_GOTO_FIRST;
	public const string STOCK_GOTO_LAST;
	public const string STOCK_GOTO_TOP;
	public const string STOCK_GO_BACK;
	public const string STOCK_GO_DOWN;
	public const string STOCK_GO_FORWARD;
	public const string STOCK_GO_UP;
	public const string STOCK_HARDDISK;
	public const string STOCK_HELP;
	public const string STOCK_HOME;
	public const string STOCK_INDENT;
	public const string STOCK_INDEX;
	public const string STOCK_INFO;
	public const string STOCK_ITALIC;
	public const string STOCK_JUMP_TO;
	public const string STOCK_JUSTIFY_CENTER;
	public const string STOCK_JUSTIFY_FILL;
	public const string STOCK_JUSTIFY_LEFT;
	public const string STOCK_JUSTIFY_RIGHT;
	public const string STOCK_LEAVE_FULLSCREEN;
	public const string STOCK_MEDIA_FORWARD;
	public const string STOCK_MEDIA_NEXT;
	public const string STOCK_MEDIA_PAUSE;
	public const string STOCK_MEDIA_PLAY;
	public const string STOCK_MEDIA_PREVIOUS;
	public const string STOCK_MEDIA_RECORD;
	public const string STOCK_MEDIA_REWIND;
	public const string STOCK_MEDIA_STOP;
	public const string STOCK_MISSING_IMAGE;
	public const string STOCK_NETWORK;
	public const string STOCK_NEW;
	public const string STOCK_NO;
	public const string STOCK_OK;
	public const string STOCK_OPEN;
	public const string STOCK_ORIENTATION_LANDSCAPE;
	public const string STOCK_ORIENTATION_PORTRAIT;
	public const string STOCK_ORIENTATION_REVERSE_LANDSCAPE;
	public const string STOCK_ORIENTATION_REVERSE_PORTRAIT;
	public const string STOCK_PASTE;
	public const string STOCK_PREFERENCES;
	public const string STOCK_PRINT;
	public const string STOCK_PRINT_PREVIEW;
	public const string STOCK_PROPERTIES;
	public const string STOCK_QUIT;
	public const string STOCK_REDO;
	public const string STOCK_REFRESH;
	public const string STOCK_REMOVE;
	public const string STOCK_REVERT_TO_SAVED;
	public const string STOCK_SAVE;
	public const string STOCK_SAVE_AS;
	public const string STOCK_SELECT_ALL;
	public const string STOCK_SELECT_COLOR;
	public const string STOCK_SELECT_FONT;
	public const string STOCK_SORT_ASCENDING;
	public const string STOCK_SORT_DESCENDING;
	public const string STOCK_SPELL_CHECK;
	public const string STOCK_STOP;
	public const string STOCK_STRIKETHROUGH;
	public const string STOCK_UNDELETE;
	public const string STOCK_UNDERLINE;
	public const string STOCK_UNDO;
	public const string STOCK_UNINDENT;
	public const string STOCK_YES;
	public const string STOCK_ZOOM_100;
	public const string STOCK_ZOOM_FIT;
	public const string STOCK_ZOOM_IN;
	public const string STOCK_ZOOM_OUT;
	public const int TEXT_VIEW_PRIORITY_VALIDATE;
	public const int TYPE_FUNDAMENTAL_LAST;
	public static void init ([CCode (array_length_pos = 0.9)] ref string[] args);
	public static bool accel_groups_activate (GLib.Object object, uint accel_key, Gdk.ModifierType accel_mods);
	public static weak GLib.SList accel_groups_from_object (GLib.Object object);
	public static uint accelerator_get_default_mod_mask ();
	public static weak string accelerator_get_label (uint accelerator_key, Gdk.ModifierType accelerator_mods);
	public static weak string accelerator_name (uint accelerator_key, Gdk.ModifierType accelerator_mods);
	public static void accelerator_parse (string accelerator, out uint accelerator_key, out Gdk.ModifierType accelerator_mods);
	public static void accelerator_set_default_mod_mask (Gdk.ModifierType default_mod_mask);
	public static bool accelerator_valid (uint keyval, Gdk.ModifierType modifiers);
	public static bool alternative_dialog_button_order (Gdk.Screen screen);
	public static bool bindings_activate (Gtk.Object object, uint keyval, Gdk.ModifierType modifiers);
	public static bool bindings_activate_event (Gtk.Object object, Gdk.EventKey event);
	public static weak string check_version (uint required_major, uint required_minor, uint required_micro);
	public static void disable_setlocale ();
	public static weak Gdk.DragContext drag_begin (Gtk.Widget widget, Gtk.TargetList targets, Gdk.DragAction actions, int button, Gdk.Event event);
	public static bool drag_check_threshold (Gtk.Widget widget, int start_x, int start_y, int current_x, int current_y);
	public static void drag_dest_add_image_targets (Gtk.Widget widget);
	public static void drag_dest_add_text_targets (Gtk.Widget widget);
	public static void drag_dest_add_uri_targets (Gtk.Widget widget);
	public static Gdk.Atom drag_dest_find_target (Gtk.Widget widget, Gdk.DragContext context, Gtk.TargetList target_list);
	public static weak Gtk.TargetList drag_dest_get_target_list (Gtk.Widget widget);
	public static bool drag_dest_get_track_motion (Gtk.Widget widget);
	public static void drag_dest_set (Gtk.Widget widget, Gtk.DestDefaults flags, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
	public static void drag_dest_set_proxy (Gtk.Widget widget, Gdk.Window proxy_window, Gdk.DragProtocol protocol, bool use_coordinates);
	public static void drag_dest_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
	public static void drag_dest_set_track_motion (Gtk.Widget widget, bool track_motion);
	public static void drag_dest_unset (Gtk.Widget widget);
	public static void drag_finish (Gdk.DragContext context, bool success, bool del, uint time_);
	public static void drag_get_data (Gtk.Widget widget, Gdk.DragContext context, Gdk.Atom target, uint time_);
	public static weak Gtk.Widget drag_get_source_widget (Gdk.DragContext context);
	public static void drag_highlight (Gtk.Widget widget);
	public static void drag_set_icon_default (Gdk.DragContext context);
	public static void drag_set_icon_name (Gdk.DragContext context, string icon_name, int hot_x, int hot_y);
	public static void drag_set_icon_pixbuf (Gdk.DragContext context, Gdk.Pixbuf pixbuf, int hot_x, int hot_y);
	public static void drag_set_icon_pixmap (Gdk.DragContext context, Gdk.Colormap colormap, Gdk.Pixmap pixmap, Gdk.Bitmap mask, int hot_x, int hot_y);
	public static void drag_set_icon_stock (Gdk.DragContext context, string stock_id, int hot_x, int hot_y);
	public static void drag_set_icon_widget (Gdk.DragContext context, Gtk.Widget widget, int hot_x, int hot_y);
	public static void drag_source_add_image_targets (Gtk.Widget widget);
	public static void drag_source_add_text_targets (Gtk.Widget widget);
	public static void drag_source_add_uri_targets (Gtk.Widget widget);
	public static weak Gtk.TargetList drag_source_get_target_list (Gtk.Widget widget);
	public static void drag_source_set (Gtk.Widget widget, Gdk.ModifierType start_button_mask, Gtk.TargetEntry[] targets, Gdk.DragAction actions);
	public static void drag_source_set_icon (Gtk.Widget widget, Gdk.Colormap colormap, Gdk.Pixmap pixmap, Gdk.Bitmap mask);
	public static void drag_source_set_icon_name (Gtk.Widget widget, string icon_name);
	public static void drag_source_set_icon_pixbuf (Gtk.Widget widget, Gdk.Pixbuf pixbuf);
	public static void drag_source_set_icon_stock (Gtk.Widget widget, string stock_id);
	public static void drag_source_set_target_list (Gtk.Widget widget, Gtk.TargetList target_list);
	public static void drag_source_unset (Gtk.Widget widget);
	public static void drag_unhighlight (Gtk.Widget widget);
	public static void draw_insertion_cursor (Gtk.Widget widget, Gdk.Drawable drawable, Gdk.Rectangle area, Gdk.Rectangle location, bool is_primary, Gtk.TextDirection direction, bool draw_arrow);
	public static bool events_pending ();
	public static weak Gdk.GC gc_get (int depth, Gdk.Colormap colormap, Gdk.GCValues values, Gdk.GCValuesMask values_mask);
	public static void gc_release (Gdk.GC gc);
	public static weak Gdk.Event get_current_event ();
	public static bool get_current_event_state (Gdk.ModifierType state);
	public static uint get_current_event_time ();
	public static weak Pango.Language get_default_language ();
	public static weak Gtk.Widget get_event_widget (Gdk.Event event);
	public static weak GLib.OptionGroup get_option_group (bool open_default_display);
	public static void grab_add (Gtk.Widget widget);
	public static weak Gtk.Widget grab_get_current ();
	public static void grab_remove (Gtk.Widget widget);
	public static Gtk.IconSize icon_size_from_name (string name);
	public static weak string icon_size_get_name (Gtk.IconSize size);
	public static bool icon_size_lookup (Gtk.IconSize size, int width, int height);
	public static bool icon_size_lookup_for_settings (Gtk.Settings settings, Gtk.IconSize size, int width, int height);
	public static Gtk.IconSize icon_size_register (string name, int width, int height);
	public static void icon_size_register_alias (string alias, Gtk.IconSize target);
	public static GLib.Type identifier_get_type ();
	public static void init_add (Gtk.Function function, pointer data);
	public static bool init_check (int argc, string[] argv);
	public static bool init_with_args (int argc, string[] argv, string parameter_string, GLib.OptionEntry[] entries, string translation_domain) throws GLib.Error;
	public static uint key_snooper_install (Gtk.KeySnoopFunc snooper, pointer func_data);
	public static void key_snooper_remove (uint snooper_handler_id);
	public static void main ();
	public static void main_do_event (Gdk.Event event);
	public static bool main_iteration ();
	public static bool main_iteration_do (bool blocking);
	public static uint main_level ();
	public static void main_quit ();
	public static void paint_arrow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gtk.ArrowType arrow_type, bool fill, int x, int y, int width, int height);
	public static void paint_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_box_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
	public static void paint_check (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_diamond (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_expander (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Gtk.ExpanderStyle expander_style);
	public static void paint_extension (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side);
	public static void paint_flat_box (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_focus (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_handle (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation);
	public static void paint_hline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x1, int x2, int y);
	public static void paint_layout (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, bool use_text, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, Pango.Layout layout);
	public static void paint_option (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_polygon (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.Point points, int npoints, bool fill);
	public static void paint_resize_grip (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, Gdk.WindowEdge edge, int x, int y, int width, int height);
	public static void paint_shadow (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_shadow_gap (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.PositionType gap_side, int gap_x, int gap_width);
	public static void paint_slider (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height, Gtk.Orientation orientation);
	public static void paint_tab (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gtk.ShadowType shadow_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, int width, int height);
	public static void paint_vline (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int y1_, int y2_, int x);
	public static bool parse_args (int argc, string[] argv);
	public static GLib.Quark print_error_quark ();
	public static weak Gtk.PageSetup print_run_page_setup_dialog (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings);
	public static void print_run_page_setup_dialog_async (Gtk.Window parent, Gtk.PageSetup page_setup, Gtk.PrintSettings settings, Gtk.PageSetupDoneFunc done_cb, pointer data);
	public static void propagate_event (Gtk.Widget widget, Gdk.Event event);
	public static uint quit_add (uint main_level, Gtk.Function function, pointer data);
	public static void quit_add_destroy (uint main_level, Gtk.Object object);
	public static void quit_remove (uint quit_handler_id);
	public static void quit_remove_by_data (pointer data);
	public static void rc_add_default_file (string filename);
	public static weak string rc_find_module_in_path (string module_file);
	public static weak string rc_find_pixmap_in_path (Gtk.Settings settings, GLib.Scanner scanner, string pixmap_file);
	public static weak string rc_get_default_files ();
	public static weak string rc_get_im_module_file ();
	public static weak string rc_get_im_module_path ();
	public static weak string rc_get_module_dir ();
	public static weak Gtk.Style rc_get_style (Gtk.Widget widget);
	public static weak Gtk.Style rc_get_style_by_paths (Gtk.Settings settings, string widget_path, string class_path, GLib.Type type);
	public static weak string rc_get_theme_dir ();
	public static void rc_parse (string filename);
	public static uint rc_parse_color (GLib.Scanner scanner, Gdk.Color color);
	public static uint rc_parse_color_full (GLib.Scanner scanner, Gtk.RcStyle style, Gdk.Color color);
	public static uint rc_parse_priority (GLib.Scanner scanner, Gtk.PathPriorityType priority);
	public static uint rc_parse_state (GLib.Scanner scanner, Gtk.StateType state);
	public static void rc_parse_string (string rc_string);
	public static bool rc_reparse_all ();
	public static bool rc_reparse_all_for_settings (Gtk.Settings settings, bool force_load);
	public static void rc_reset_styles (Gtk.Settings settings);
	public static weak GLib.Scanner rc_scanner_new ();
	public static void rc_set_default_files (string filenames);
	public static void selection_add_target (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint info);
	public static void selection_add_targets (Gtk.Widget widget, Gdk.Atom selection, Gtk.TargetEntry[] targets, uint ntargets);
	public static void selection_clear_targets (Gtk.Widget widget, Gdk.Atom selection);
	public static bool selection_convert (Gtk.Widget widget, Gdk.Atom selection, Gdk.Atom target, uint time_);
	public static bool selection_owner_set (Gtk.Widget widget, Gdk.Atom selection, uint time_);
	public static bool selection_owner_set_for_display (Gdk.Display display, Gtk.Widget widget, Gdk.Atom selection, uint time_);
	public static void selection_remove_all (Gtk.Widget widget);
	public static weak string set_locale ();
	public static void show_about_dialog (Gtk.Window parent, ...);
	public static void stock_add (Gtk.StockItem[] items);
	public static void stock_add_static (Gtk.StockItem[] items);
	public static weak GLib.SList stock_list_ids ();
	public static bool stock_lookup (string stock_id, Gtk.StockItem item);
	public static void stock_set_translate_func (string domain, Gtk.TranslateFunc func, pointer data, Gtk.DestroyNotify notify);
	public static void target_table_free (Gtk.TargetEntry[] targets);
	public static Gtk.TargetEntry target_table_new_from_list (Gtk.TargetList list, int n_targets);
	public static bool targets_include_image (Gdk.Atom[] targets, bool writable);
	public static bool targets_include_rich_text (Gdk.Atom[] targets, Gtk.TextBuffer buffer);
	public static bool targets_include_text (Gdk.Atom[] targets);
	public static bool targets_include_uri (Gdk.Atom[] targets);
	public static bool tree_get_row_drag_data (Gtk.SelectionData selection_data, out weak Gtk.TreeModel tree_model, out weak Gtk.TreePath path);
	public static bool tree_set_row_drag_data (Gtk.SelectionData selection_data, Gtk.TreeModel tree_model, Gtk.TreePath path);
}