File: namespaceGFC_1_1Gtk.html

package info (click to toggle)
gfcui 2.3.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 43,420 kB
  • ctags: 18,023
  • sloc: cpp: 53,967; sh: 31,555; makefile: 1,322; perl: 108
file content (3854 lines) | stat: -rw-r--r-- 246,201 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>GTK+ Foundation Classes</title>
  <link href="gfc.css" rel="stylesheet" type="text/css">
  <meta content="The GFC Development Team" name="author">
  <meta content="Core Library Reference Manual" name="description">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(243, 244, 248);"
 alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 1227px; height: 117px;"
 border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <td
 style="text-align: center; background-color: rgb(255, 255, 255); width: 220px; vertical-align: top;"><img
 alt="GFC Logo" src="../images/gfc.png"
 style="width: 207px; height: 92px;"></td>
      <td
 style="text-align: center; background-color: rgb(87, 107, 152); vertical-align: middle;"><img
 alt="GFC Title Logo" src="../images/gfc-title.png"
 style="width: 418px; height: 76px;"><br>
      </td>
    </tr>
    <tr>
      <td
 style="text-align: center; background-color: rgb(65, 77, 104); vertical-align: middle;"><big><span
 style="color: rgb(255, 255, 153); font-weight: bold;">Reference Manual</span></big><br>
      </td>
      <td
 style="text-align: center; background-color: rgb(148, 164, 200); vertical-align: middle;"><small
 style="font-family: helvetica,arial,sans-serif;"><a
 href="../html/index.html">Main Page</a>&nbsp; |&nbsp; <a
 href="../html/namespaces.html">Namespace List</a>&nbsp; |&nbsp; <a
 href="classes.html">Alphabetical List</a>&nbsp; |&nbsp; <a
 href="../html/annotated.html">Class List</a>&nbsp; |&nbsp; <a
 href="../html/files.html">File List</a></small><br>
      </td>
    </tr>
  </tbody>
</table>
<small> </small>
</body>
</html>
<!-- Generated by Doxygen 1.3.8 -->
<h1></h1>The C++ framework for the GTK GUI library.  
<a href="#_details">More...</a>
<p>
<h2>Classes</h2>
<ul>
<li>class <a class="el" href="classGFC_1_1Gtk_1_1AccelGroup.html">GFC::Gtk::AccelGroup</a>
<dl class="el"><dd class="mdescRight">GtkAccelGroup C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1AccelGroup.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AccelGroupSignals.html">GFC::Gtk::AccelGroupSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1AccelGroup.html">Gtk::AccelGroup</a>.  <a href="classGFC_1_1Gtk_1_1AccelGroupSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">GFC::Gtk::AccelKey</a>
<dl class="el"><dd class="mdescRight">An accelerator key value, modifier and flag class.  <a href="classGFC_1_1Gtk_1_1AccelKey.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AccelLabel.html">GFC::Gtk::AccelLabel</a>
<dl class="el"><dd class="mdescRight">A GtkAccelLabel C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1AccelLabel.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AccelMap.html">GFC::Gtk::AccelMap</a>
<dl class="el"><dd class="mdescRight">A GtkAccelMap C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1AccelMap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Accessible.html">GFC::Gtk::Accessible</a>
<dl class="el"><dd class="mdescRight">A GtkAccessible C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Accessible.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Action.html">GFC::Gtk::Action</a>
<dl class="el"><dd class="mdescRight">A GtkAction C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Action.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ActionGroup.html">GFC::Gtk::ActionGroup</a>
<dl class="el"><dd class="mdescRight">A GtkActionGroup C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ActionGroup.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ActionSignals.html">GFC::Gtk::ActionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Action.html">Gtk::Action</a>.  <a href="classGFC_1_1Gtk_1_1ActionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Adjustment.html">GFC::Gtk::Adjustment</a>
<dl class="el"><dd class="mdescRight">A GtkAdjustment C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Adjustment.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AdjustmentSignals.html">GFC::Gtk::AdjustmentSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Adjustment.html">Gtk::Adjustment</a>.  <a href="classGFC_1_1Gtk_1_1AdjustmentSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Alignment.html">GFC::Gtk::Alignment</a>
<dl class="el"><dd class="mdescRight">A GtkAlignment C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Alignment.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Arrow.html">GFC::Gtk::Arrow</a>
<dl class="el"><dd class="mdescRight">A GtkArrow C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Arrow.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1AspectFrame.html">GFC::Gtk::AspectFrame</a>
<dl class="el"><dd class="mdescRight">A GtkAspectFrame C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1AspectFrame.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Bin.html">GFC::Gtk::Bin</a>
<dl class="el"><dd class="mdescRight">A GtkBin C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Bin.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Box.html">GFC::Gtk::Box</a>
<dl class="el"><dd class="mdescRight">A GtkBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Box.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HBox.html">GFC::Gtk::HBox</a>
<dl class="el"><dd class="mdescRight">A GtkHBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VBox.html">GFC::Gtk::VBox</a>
<dl class="el"><dd class="mdescRight">A GtkVBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1BoxChild.html">GFC::Gtk::BoxChild</a>
<dl class="el"><dd class="mdescRight">A GtkBoxChild C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1BoxChild.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Button.html">GFC::Gtk::Button</a>
<dl class="el"><dd class="mdescRight">A GtkButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Button.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">GFC::Gtk::ButtonBox</a>
<dl class="el"><dd class="mdescRight">A GtkButtonBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ButtonBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HButtonBox.html">GFC::Gtk::HButtonBox</a>
<dl class="el"><dd class="mdescRight">A GtkHButtonBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HButtonBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VButtonBox.html">GFC::Gtk::VButtonBox</a>
<dl class="el"><dd class="mdescRight">A GtkVButtonBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VButtonBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ButtonSignals.html">GFC::Gtk::ButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Button.html">Gtk::Button</a>.  <a href="classGFC_1_1Gtk_1_1ButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Calendar.html">GFC::Gtk::Calendar</a>
<dl class="el"><dd class="mdescRight">A GtkCalendar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Calendar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CalendarSignals.html">GFC::Gtk::CalendarSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Calendar.html">Gtk::Calendar</a>.  <a href="classGFC_1_1Gtk_1_1CalendarSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellEditable.html">GFC::Gtk::CellEditable</a>
<dl class="el"><dd class="mdescRight">A GtkCellEditable C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellEditable.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellEditableSignals.html">GFC::Gtk::CellEditableSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1CellEditable.html">Gtk::CellEditable</a>.  <a href="classGFC_1_1Gtk_1_1CellEditableSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellColumnAttributes.html">GFC::Gtk::CellColumnAttributes</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper for setting multiple attributes on a column of cells.  <a href="classGFC_1_1Gtk_1_1CellColumnAttributes.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellLayout.html">GFC::Gtk::CellLayout</a>
<dl class="el"><dd class="mdescRight">A GtkCellLayout C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellLayout.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRenderer.html">GFC::Gtk::CellRenderer</a>
<dl class="el"><dd class="mdescRight">A GtkCellRenderer C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellRenderer.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererPixbuf.html">GFC::Gtk::CellRendererPixbuf</a>
<dl class="el"><dd class="mdescRight">A GtkCellRendererPixbuf C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellRendererPixbuf.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererSignals.html">GFC::Gtk::CellRendererSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1CellRenderer.html">Gtk::CellRenderer</a>.  <a href="classGFC_1_1Gtk_1_1CellRendererSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererText.html">GFC::Gtk::CellRendererText</a>
<dl class="el"><dd class="mdescRight">A GtkCellRendererText C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellRendererText.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererTextSignals.html">GFC::Gtk::CellRendererTextSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1CellRendererText.html">Gtk::CellRendererText</a>.  <a href="classGFC_1_1Gtk_1_1CellRendererTextSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererToggle.html">GFC::Gtk::CellRendererToggle</a>
<dl class="el"><dd class="mdescRight">A GtkCellRendererToggle C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CellRendererToggle.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CellRendererToggleSignals.html">GFC::Gtk::CellRendererToggleSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1CellRendererToggle.html">Gtk::CellRendererToggle</a>.  <a href="classGFC_1_1Gtk_1_1CellRendererToggleSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CheckButton.html">GFC::Gtk::CheckButton</a>
<dl class="el"><dd class="mdescRight">A GtkCheckButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CheckButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CheckMenuItem.html">GFC::Gtk::CheckMenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkCheckMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1CheckMenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CheckMenuItemSignals.html">GFC::Gtk::CheckMenuItemSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1CheckMenuItem.html">Gtk::CheckMenuItem</a>.  <a href="classGFC_1_1Gtk_1_1CheckMenuItemSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Clipboard.html">GFC::Gtk::Clipboard</a>
<dl class="el"><dd class="mdescRight">A GtkClipboard C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Clipboard.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ColorButton.html">GFC::Gtk::ColorButton</a>
<dl class="el"><dd class="mdescRight">A GtkColorButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ColorButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ColorButtonSignals.html">GFC::Gtk::ColorButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ColorButton.html">Gtk::ColorButton</a>.  <a href="classGFC_1_1Gtk_1_1ColorButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ColorSelection.html">GFC::Gtk::ColorSelection</a>
<dl class="el"><dd class="mdescRight">A GtkColorSelection C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ColorSelection.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ColorSelectionDialog.html">GFC::Gtk::ColorSelectionDialog</a>
<dl class="el"><dd class="mdescRight">A GtkColorSelectionDialog C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ColorSelectionDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ColorSelectionSignals.html">GFC::Gtk::ColorSelectionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ColorSelection.html">Gtk::ColorSelection</a>.  <a href="classGFC_1_1Gtk_1_1ColorSelectionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ComboBox.html">GFC::Gtk::ComboBox</a>
<dl class="el"><dd class="mdescRight">A GtkComboBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ComboBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ComboBoxText.html">GFC::Gtk::ComboBoxText</a>
<dl class="el"><dd class="mdescRight">A Text <a class="el" href="classGFC_1_1Gtk_1_1ComboBox.html">Gtk::ComboBox</a> class.  <a href="classGFC_1_1Gtk_1_1ComboBoxText.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ComboBoxEntry.html">GFC::Gtk::ComboBoxEntry</a>
<dl class="el"><dd class="mdescRight">A GtkComboBoxEntry C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ComboBoxEntry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ComboBoxEntryText.html">GFC::Gtk::ComboBoxEntryText</a>
<dl class="el"><dd class="mdescRight">A Text <a class="el" href="classGFC_1_1Gtk_1_1ComboBoxEntry.html">Gtk::ComboBoxEntry</a> class.  <a href="classGFC_1_1Gtk_1_1ComboBoxEntryText.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ComboBoxSignals.html">GFC::Gtk::ComboBoxSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ComboBox.html">Gtk::ComboBox</a>.  <a href="classGFC_1_1Gtk_1_1ComboBoxSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Container.html">GFC::Gtk::Container</a>
<dl class="el"><dd class="mdescRight">A GtkContainer C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Container.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ContainerSignals.html">GFC::Gtk::ContainerSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Container.html">Gtk::Container</a>.  <a href="classGFC_1_1Gtk_1_1ContainerSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Curve.html">GFC::Gtk::Curve</a>
<dl class="el"><dd class="mdescRight">A GtkCurve C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Curve.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1CurveSignals.html">GFC::Gtk::CurveSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Curve.html">Gtk::Curve</a>.  <a href="classGFC_1_1Gtk_1_1CurveSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Dialog.html">GFC::Gtk::Dialog</a>
<dl class="el"><dd class="mdescRight">A GtkDialog C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Dialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1DialogSignals.html">GFC::Gtk::DialogSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Dialog.html">Gtk::Dialog</a>.  <a href="classGFC_1_1Gtk_1_1DialogSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1DragContext.html">GFC::Gtk::DragContext</a>
<dl class="el"><dd class="mdescRight">A GTK+ Drag and Drop C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1DragContext.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1DrawingArea.html">GFC::Gtk::DrawingArea</a>
<dl class="el"><dd class="mdescRight">A GtkDrawingArea C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1DrawingArea.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Editable.html">GFC::Gtk::Editable</a>
<dl class="el"><dd class="mdescRight">A GtkDrawingArea C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Editable.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1EditableSignals.html">GFC::Gtk::EditableSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Editable.html">Gtk::Editable</a>.  <a href="classGFC_1_1Gtk_1_1EditableSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">GFC::Gtk::Entry</a>
<dl class="el"><dd class="mdescRight">A GtkEntry C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Entry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1EntryCompletion.html">GFC::Gtk::EntryCompletion</a>
<dl class="el"><dd class="mdescRight">A GtkEntryCompletion C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1EntryCompletion.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1EntryCompletionSignals.html">GFC::Gtk::EntryCompletionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1EntryCompletion.html">Gtk::EntryCompletion</a>.  <a href="classGFC_1_1Gtk_1_1EntryCompletionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1EntrySignals.html">GFC::Gtk::EntrySignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">Gtk::Entry</a>.  <a href="classGFC_1_1Gtk_1_1EntrySignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1EventBox.html">GFC::Gtk::EventBox</a>
<dl class="el"><dd class="mdescRight">A GtkEventBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1EventBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Expander.html">GFC::Gtk::Expander</a>
<dl class="el"><dd class="mdescRight">A GtkExpander C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Expander.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileChooser.html">GFC::Gtk::FileChooser</a>
<dl class="el"><dd class="mdescRight">A GtkFileChooser C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileChooser.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileChooserDialog.html">GFC::Gtk::FileChooserDialog</a>
<dl class="el"><dd class="mdescRight">A GtkFileChooserDialog C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileChooserDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileChooserOpenDialog.html">GFC::Gtk::FileChooserOpenDialog</a>
<dl class="el"><dd class="mdescRight">A GtkFileChooserDialog "File/Open" C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileChooserOpenDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileChooserSaveAsDialog.html">GFC::Gtk::FileChooserSaveAsDialog</a>
<dl class="el"><dd class="mdescRight">A GtkFileChooserDialog "File/Save as" C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileChooserSaveAsDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileChooserWidget.html">GFC::Gtk::FileChooserWidget</a>
<dl class="el"><dd class="mdescRight">A GtkFileChooserWidget C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileChooserWidget.html#_details">More...</a><br></dl><li>struct <a class="el" href="structGFC_1_1Gtk_1_1FileFilterInfo.html">GFC::Gtk::FileFilterInfo</a>
<dl class="el"><dd class="mdescRight">A GtkFileFilterInfo C++ wrapper class.  <a href="structGFC_1_1Gtk_1_1FileFilterInfo.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FileFilter.html">GFC::Gtk::FileFilter</a>
<dl class="el"><dd class="mdescRight">A GtkFileFilter C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FileFilter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Fixed.html">GFC::Gtk::Fixed</a>
<dl class="el"><dd class="mdescRight">A GtkFixed C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Fixed.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FontButton.html">GFC::Gtk::FontButton</a>
<dl class="el"><dd class="mdescRight">A GtkFontButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FontButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FontButtonSignals.html">GFC::Gtk::FontButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1FontButton.html">Gtk::FontButton</a>.  <a href="classGFC_1_1Gtk_1_1FontButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FontSelection.html">GFC::Gtk::FontSelection</a>
<dl class="el"><dd class="mdescRight">A GtkFontSelection C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FontSelection.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1FontSelectionDialog.html">GFC::Gtk::FontSelectionDialog</a>
<dl class="el"><dd class="mdescRight">A GtkFontSelectionDialog C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1FontSelectionDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Frame.html">GFC::Gtk::Frame</a>
<dl class="el"><dd class="mdescRight">A GtkFrame C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Frame.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1GammaCurve.html">GFC::Gtk::GammaCurve</a>
<dl class="el"><dd class="mdescRight">A GtkGammaCurve C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1GammaCurve.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1GC.html">GFC::Gtk::GC</a>
<dl class="el"><dd class="mdescRight">A convenient gtk_gc_get() and gtk_gc_release() C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1GC.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HandleBox.html">GFC::Gtk::HandleBox</a>
<dl class="el"><dd class="mdescRight">A GtkHandleBox C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HandleBox.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HandleBoxSignals.html">GFC::Gtk::HandleBoxSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1HandleBox.html">Gtk::HandleBox</a>.  <a href="classGFC_1_1Gtk_1_1HandleBoxSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconFactory.html">GFC::Gtk::IconFactory</a>
<dl class="el"><dd class="mdescRight">A GtkIconFactory C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1IconFactory.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconSet.html">GFC::Gtk::IconSet</a>
<dl class="el"><dd class="mdescRight">A GtkIconSet C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1IconSet.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconSource.html">GFC::Gtk::IconSource</a>
<dl class="el"><dd class="mdescRight">A GtkIconSource C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1IconSource.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconInfo.html">GFC::Gtk::IconInfo</a>
<dl class="el"><dd class="mdescRight">A GtkIconInfo C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1IconInfo.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconTheme.html">GFC::Gtk::IconTheme</a>
<dl class="el"><dd class="mdescRight">A GtkIconTheme C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1IconTheme.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1IconThemeSignals.html">GFC::Gtk::IconThemeSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1IconTheme.html">Gtk::IconTheme</a>.  <a href="classGFC_1_1Gtk_1_1IconThemeSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Image.html">GFC::Gtk::Image</a>
<dl class="el"><dd class="mdescRight">A GtkImage C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Image.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ImageMenuItem.html">GFC::Gtk::ImageMenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkImageMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ImageMenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Invisible.html">GFC::Gtk::Invisible</a>
<dl class="el"><dd class="mdescRight">A GtkInvisible C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Invisible.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Item.html">GFC::Gtk::Item</a>
<dl class="el"><dd class="mdescRight">A GtkItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Item.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ItemSignals.html">GFC::Gtk::ItemSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Item.html">Gtk::Item</a>.  <a href="classGFC_1_1Gtk_1_1ItemSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Label.html">GFC::Gtk::Label</a>
<dl class="el"><dd class="mdescRight">A GtkLabel C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Label.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1LabelSignals.html">GFC::Gtk::LabelSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Label.html">Gtk::Label</a>.  <a href="classGFC_1_1Gtk_1_1LabelSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Layout.html">GFC::Gtk::Layout</a>
<dl class="el"><dd class="mdescRight">A GtkLayout C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Layout.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1LayoutSignals.html">GFC::Gtk::LayoutSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Layout.html">Gtk::Layout</a>.  <a href="classGFC_1_1Gtk_1_1LayoutSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ListStore.html">GFC::Gtk::ListStore</a>
<dl class="el"><dd class="mdescRight">A GtkListStore C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ListStore.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Menu.html">GFC::Gtk::Menu</a>
<dl class="el"><dd class="mdescRight">A GtkMenu C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Menu.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MenuBar.html">GFC::Gtk::MenuBar</a>
<dl class="el"><dd class="mdescRight">A GtkMenuBar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1MenuBar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MenuItem.html">GFC::Gtk::MenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1MenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MenuItemSignals.html">GFC::Gtk::MenuItemSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1MenuItem.html">Gtk::MenuItem</a>.  <a href="classGFC_1_1Gtk_1_1MenuItemSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MenuShell.html">GFC::Gtk::MenuShell</a>
<dl class="el"><dd class="mdescRight">A GtkMenuShell C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1MenuShell.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MenuShellSignals.html">GFC::Gtk::MenuShellSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1MenuShell.html">Gtk::MenuShell</a>.  <a href="classGFC_1_1Gtk_1_1MenuShellSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1MessageDialog.html">GFC::Gtk::MessageDialog</a>
<dl class="el"><dd class="mdescRight">A GtkMessageDialog C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1MessageDialog.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Misc.html">GFC::Gtk::Misc</a>
<dl class="el"><dd class="mdescRight">A GtkMisc C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Misc.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Notebook.html">GFC::Gtk::Notebook</a>
<dl class="el"><dd class="mdescRight">A GtkNotebook C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Notebook.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1NotebookSignals.html">GFC::Gtk::NotebookSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Notebook.html">Gtk::Notebook</a>.  <a href="classGFC_1_1Gtk_1_1NotebookSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Object.html">GFC::Gtk::Object</a>
<dl class="el"><dd class="mdescRight">A GtkObject C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Object.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ObjectSignals.html">GFC::Gtk::ObjectSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Object.html">Gtk::Object</a>.  <a href="classGFC_1_1Gtk_1_1ObjectSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Paned.html">GFC::Gtk::Paned</a>
<dl class="el"><dd class="mdescRight">A GtkPaned C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Paned.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HPaned.html">GFC::Gtk::HPaned</a>
<dl class="el"><dd class="mdescRight">A GtkHPaned C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HPaned.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VPaned.html">GFC::Gtk::VPaned</a>
<dl class="el"><dd class="mdescRight">A GtkVPaned C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VPaned.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Plug.html">GFC::Gtk::Plug</a>
<dl class="el"><dd class="mdescRight">A GtkPlug C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Plug.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1PlugSignals.html">GFC::Gtk::PlugSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Plug.html">Gtk::Plug</a>.  <a href="classGFC_1_1Gtk_1_1PlugSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ProgressBar.html">GFC::Gtk::ProgressBar</a>
<dl class="el"><dd class="mdescRight">A GtkProgressBar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ProgressBar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioAction.html">GFC::Gtk::RadioAction</a>
<dl class="el"><dd class="mdescRight">A GtkRadioAction C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1RadioAction.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioActions.html">GFC::Gtk::RadioActions</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper class for a group of radio actions.  <a href="classGFC_1_1Gtk_1_1RadioActions.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioActionSignals.html">GFC::Gtk::RadioActionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1RadioAction.html">Gtk::RadioAction</a>.  <a href="classGFC_1_1Gtk_1_1RadioActionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioButton.html">GFC::Gtk::RadioButton</a>
<dl class="el"><dd class="mdescRight">A GtkRadioButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1RadioButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioButtonSignals.html">GFC::Gtk::RadioButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1RadioButton.html">Gtk::RadioButton</a>.  <a href="classGFC_1_1Gtk_1_1RadioButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioMenuItem.html">GFC::Gtk::RadioMenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkRadioMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1RadioMenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioMenuItemSignals.html">GFC::Gtk::RadioMenuItemSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1RadioMenuItem.html">Gtk::RadioMenuItem</a>.  <a href="classGFC_1_1Gtk_1_1RadioMenuItemSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RadioToolButton.html">GFC::Gtk::RadioToolButton</a>
<dl class="el"><dd class="mdescRight">A GtkRadioToolButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1RadioToolButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Range.html">GFC::Gtk::Range</a>
<dl class="el"><dd class="mdescRight">A GtkRange C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Range.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RangeSignals.html">GFC::Gtk::RangeSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Range.html">Gtk::Range</a>.  <a href="classGFC_1_1Gtk_1_1RangeSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RC.html">GFC::Gtk::RC</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper class for the various resource file functions.  <a href="classGFC_1_1Gtk_1_1RC.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1RcStyle.html">GFC::Gtk::RcStyle</a>
<dl class="el"><dd class="mdescRight">A GtkRcStyle C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1RcStyle.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Ruler.html">GFC::Gtk::Ruler</a>
<dl class="el"><dd class="mdescRight">A GtkRuler C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Ruler.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HRuler.html">GFC::Gtk::HRuler</a>
<dl class="el"><dd class="mdescRight">A GtkHRuler C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HRuler.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VRuler.html">GFC::Gtk::VRuler</a>
<dl class="el"><dd class="mdescRight">A GtkVRuler C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VRuler.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Scale.html">GFC::Gtk::Scale</a>
<dl class="el"><dd class="mdescRight">A GtkScale C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Scale.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HScale.html">GFC::Gtk::HScale</a>
<dl class="el"><dd class="mdescRight">A GtkHScale C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HScale.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VScale.html">GFC::Gtk::VScale</a>
<dl class="el"><dd class="mdescRight">A GtkVScale C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VScale.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ScaleSignals.html">GFC::Gtk::ScaleSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Scale.html">Gtk::Scale</a>.  <a href="classGFC_1_1Gtk_1_1ScaleSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Scrollbar.html">GFC::Gtk::Scrollbar</a>
<dl class="el"><dd class="mdescRight">A GtkScrollbar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Scrollbar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HScrollbar.html">GFC::Gtk::HScrollbar</a>
<dl class="el"><dd class="mdescRight">A GtkHScrollbar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HScrollbar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VScrollbar.html">GFC::Gtk::VScrollbar</a>
<dl class="el"><dd class="mdescRight">A GtkVScrollbar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VScrollbar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ScrolledWindow.html">GFC::Gtk::ScrolledWindow</a>
<dl class="el"><dd class="mdescRight">A GtkScrolledWindow C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ScrolledWindow.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SelectionData.html">GFC::Gtk::SelectionData</a>
<dl class="el"><dd class="mdescRight">A GtkSelectionData C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1SelectionData.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TargetEntry.html">GFC::Gtk::TargetEntry</a>
<dl class="el"><dd class="mdescRight">A GtkTargetEntry C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TargetEntry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TargetList.html">GFC::Gtk::TargetList</a>
<dl class="el"><dd class="mdescRight">A GtkTargetList C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TargetList.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Separator.html">GFC::Gtk::Separator</a>
<dl class="el"><dd class="mdescRight">A GtkSeparator C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Separator.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1HSeparator.html">GFC::Gtk::HSeparator</a>
<dl class="el"><dd class="mdescRight">A GtkHSeparator C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1HSeparator.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1VSeparator.html">GFC::Gtk::VSeparator</a>
<dl class="el"><dd class="mdescRight">A GtkVSeparator C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1VSeparator.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SeparatorMenuItem.html">GFC::Gtk::SeparatorMenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkSeparatorMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1SeparatorMenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SeparatorToolItem.html">GFC::Gtk::SeparatorToolItem</a>
<dl class="el"><dd class="mdescRight">A GtkSeparatorToolItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1SeparatorToolItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Settings.html">GFC::Gtk::Settings</a>
<dl class="el"><dd class="mdescRight">A GtkSettings C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Settings.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SizeGroup.html">GFC::Gtk::SizeGroup</a>
<dl class="el"><dd class="mdescRight">A GtkSizeGroup C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1SizeGroup.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Socket.html">GFC::Gtk::Socket</a>
<dl class="el"><dd class="mdescRight">A GtkSocket C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Socket.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SocketSignals.html">GFC::Gtk::SocketSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Socket.html">Gtk::Socket</a>.  <a href="classGFC_1_1Gtk_1_1SocketSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SpinButton.html">GFC::Gtk::SpinButton</a>
<dl class="el"><dd class="mdescRight">A GtkSpinButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1SpinButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1SpinButtonSignals.html">GFC::Gtk::SpinButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1SpinButton.html">Gtk::SpinButton</a>.  <a href="classGFC_1_1Gtk_1_1SpinButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Statusbar.html">GFC::Gtk::Statusbar</a>
<dl class="el"><dd class="mdescRight">A GtkStatusbar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Statusbar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1StatusbarSignals.html">GFC::Gtk::StatusbarSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Statusbar.html">Gtk::Statusbar</a>.  <a href="classGFC_1_1Gtk_1_1StatusbarSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1StockItem.html">GFC::Gtk::StockItem</a>
<dl class="el"><dd class="mdescRight">A GtkStockItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1StockItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Stock.html">GFC::Gtk::Stock</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper class for various stock methods.  <a href="classGFC_1_1Gtk_1_1Stock.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1StockId.html">GFC::Gtk::StockId</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper class for GTK+ stock IDs.  <a href="classGFC_1_1Gtk_1_1StockId.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Style.html">GFC::Gtk::Style</a>
<dl class="el"><dd class="mdescRight">A GtkStyle C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Style.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Table.html">GFC::Gtk::Table</a>
<dl class="el"><dd class="mdescRight">A GtkTable C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Table.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TearoffMenuItem.html">GFC::Gtk::TearoffMenuItem</a>
<dl class="el"><dd class="mdescRight">A GtkTearoffMenuItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TearoffMenuItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextMark.html">GFC::Gtk::TextMark</a>
<dl class="el"><dd class="mdescRight">A GtkTextMark C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextMark.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextChildAnchor.html">GFC::Gtk::TextChildAnchor</a>
<dl class="el"><dd class="mdescRight">A GtkTextChildAnchor C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextChildAnchor.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextBuffer.html">GFC::Gtk::TextBuffer</a>
<dl class="el"><dd class="mdescRight">A GtkTextBuffer C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextBuffer.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextBufferSignals.html">GFC::Gtk::TextBufferSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TextBuffer.html">Gtk::TextBuffer</a>.  <a href="classGFC_1_1Gtk_1_1TextBufferSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextIter.html">GFC::Gtk::TextIter</a>
<dl class="el"><dd class="mdescRight">A GtkTextIter C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextIter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextAppearance.html">GFC::Gtk::TextAppearance</a>
<dl class="el"><dd class="mdescRight">A GtkTextAppearance C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextAppearance.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextAttributes.html">GFC::Gtk::TextAttributes</a>
<dl class="el"><dd class="mdescRight">A GtkTextAttributes C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextAttributes.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextTag.html">GFC::Gtk::TextTag</a>
<dl class="el"><dd class="mdescRight">A GtkTextTag C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextTag.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextTagTable.html">GFC::Gtk::TextTagTable</a>
<dl class="el"><dd class="mdescRight">A GtkTextTagTable C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextTagTable.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextTagSignals.html">GFC::Gtk::TextTagSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TextTag.html">Gtk::TextTag</a>.  <a href="classGFC_1_1Gtk_1_1TextTagSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextTagTableSignals.html">GFC::Gtk::TextTagTableSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TextTagTable.html">Gtk::TextTagTable</a>.  <a href="classGFC_1_1Gtk_1_1TextTagTableSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextView.html">GFC::Gtk::TextView</a>
<dl class="el"><dd class="mdescRight">A GtkTextView C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TextView.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TextViewSignals.html">GFC::Gtk::TextViewSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TextView.html">Gtk::TextView</a>.  <a href="classGFC_1_1Gtk_1_1TextViewSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleAction.html">GFC::Gtk::ToggleAction</a>
<dl class="el"><dd class="mdescRight">A GtkToggleAction C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ToggleAction.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleActionSignals.html">GFC::Gtk::ToggleActionSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ToggleAction.html">Gtk::ToggleAction</a>.  <a href="classGFC_1_1Gtk_1_1ToggleActionSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleButton.html">GFC::Gtk::ToggleButton</a>
<dl class="el"><dd class="mdescRight">A GtkToggleButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ToggleButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleButtonSignals.html">GFC::Gtk::ToggleButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ToggleButton.html">Gtk::ToggleButton</a>.  <a href="classGFC_1_1Gtk_1_1ToggleButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleToolButton.html">GFC::Gtk::ToggleToolButton</a>
<dl class="el"><dd class="mdescRight">A GtkToggleToolButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ToggleToolButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToggleToolButtonSignals.html">GFC::Gtk::ToggleToolButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ToggleToolButton.html">Gtk::ToggleToolButton</a>.  <a href="classGFC_1_1Gtk_1_1ToggleToolButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Toolbar.html">GFC::Gtk::Toolbar</a>
<dl class="el"><dd class="mdescRight">A GtkToolbar C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Toolbar.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToolbarSignals.html">GFC::Gtk::ToolbarSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Toolbar.html">Gtk::Toolbar</a>.  <a href="classGFC_1_1Gtk_1_1ToolbarSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToolButton.html">GFC::Gtk::ToolButton</a>
<dl class="el"><dd class="mdescRight">A GtkToolButton C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ToolButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToolButtonSignals.html">GFC::Gtk::ToolButtonSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ToolButton.html">Gtk::ToolButton</a>.  <a href="classGFC_1_1Gtk_1_1ToolButtonSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToolItem.html">GFC::Gtk::ToolItem</a>
<dl class="el"><dd class="mdescRight">A GtkToolItem C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1ToolItem.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ToolItemSignals.html">GFC::Gtk::ToolItemSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1ToolItem.html">Gtk::ToolItem</a>.  <a href="classGFC_1_1Gtk_1_1ToolItemSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TooltipsData.html">GFC::Gtk::TooltipsData</a>
<dl class="el"><dd class="mdescRight">A GtkTooltipsData C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TooltipsData.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Tooltips.html">GFC::Gtk::Tooltips</a>
<dl class="el"><dd class="mdescRight">A GtkTooltips C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Tooltips.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeDragSource.html">GFC::Gtk::TreeDragSource</a>
<dl class="el"><dd class="mdescRight">A GtkTreeDragSource C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeDragSource.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeDragDest.html">GFC::Gtk::TreeDragDest</a>
<dl class="el"><dd class="mdescRight">A GtkTreeDragDest C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeDragDest.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreePath.html">GFC::Gtk::TreePath</a>
<dl class="el"><dd class="mdescRight">A GtkTreePath C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreePath.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeIter.html">GFC::Gtk::TreeIter</a>
<dl class="el"><dd class="mdescRight">A GtkTreeIter C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeIter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeModel.html">GFC::Gtk::TreeModel</a>
<dl class="el"><dd class="mdescRight">A GtkTreeModel C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeModel.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeRowReference.html">GFC::Gtk::TreeRowReference</a>
<dl class="el"><dd class="mdescRight">A GtkTreeRowReference C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeRowReference.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeModelFilter.html">GFC::Gtk::TreeModelFilter</a>
<dl class="el"><dd class="mdescRight">A GtkTreeModelFilter C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeModelFilter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeModelSignals.html">GFC::Gtk::TreeModelSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TreeModel.html">Gtk::TreeModel</a>.  <a href="classGFC_1_1Gtk_1_1TreeModelSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeModelSort.html">GFC::Gtk::TreeModelSort</a>
<dl class="el"><dd class="mdescRight">A GtkTreeModelSort C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeModelSort.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeSelection.html">GFC::Gtk::TreeSelection</a>
<dl class="el"><dd class="mdescRight">A GtkTreeSelection C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeSelection.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeSortable.html">GFC::Gtk::TreeSortable</a>
<dl class="el"><dd class="mdescRight">A GtkTreeSortable C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeSortable.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeSortableSignals.html">GFC::Gtk::TreeSortableSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TreeSortable.html">Gtk::TreeSortable</a>.  <a href="classGFC_1_1Gtk_1_1TreeSortableSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeStore.html">GFC::Gtk::TreeStore</a>
<dl class="el"><dd class="mdescRight">A GtkTreeStore C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeStore.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeView.html">GFC::Gtk::TreeView</a>
<dl class="el"><dd class="mdescRight">A GtkTreeView C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeView.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeViewColumn.html">GFC::Gtk::TreeViewColumn</a>
<dl class="el"><dd class="mdescRight">A GtkTreeViewColumn C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1TreeViewColumn.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeViewColumnSignals.html">GFC::Gtk::TreeViewColumnSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TreeViewColumn.html">Gtk::TreeViewColumn</a>.  <a href="classGFC_1_1Gtk_1_1TreeViewColumnSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1TreeViewSignals.html">GFC::Gtk::TreeViewSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1TreeView.html">Gtk::TreeView</a>.  <a href="classGFC_1_1Gtk_1_1TreeViewSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1UIManager.html">GFC::Gtk::UIManager</a>
<dl class="el"><dd class="mdescRight">A GtkUIManager C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1UIManager.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1UIManagerSignals.html">GFC::Gtk::UIManagerSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1UIManager.html">Gtk::UIManager</a>.  <a href="classGFC_1_1Gtk_1_1UIManagerSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Viewport.html">GFC::Gtk::Viewport</a>
<dl class="el"><dd class="mdescRight">A GtkViewport C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Viewport.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1ViewportSignals.html">GFC::Gtk::ViewportSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Viewport.html">Gtk::Viewport</a>.  <a href="classGFC_1_1Gtk_1_1ViewportSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Allocation.html">GFC::Gtk::Allocation</a>
<dl class="el"><dd class="mdescRight">A GtkAllocation C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Allocation.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Requisition.html">GFC::Gtk::Requisition</a>
<dl class="el"><dd class="mdescRight">A GtkRequisition C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Requisition.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Widget.html">GFC::Gtk::Widget</a>
<dl class="el"><dd class="mdescRight">A GtkWidget C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Widget.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1WidgetSignals.html">GFC::Gtk::WidgetSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Widget.html">Gtk::Widget</a>.  <a href="classGFC_1_1Gtk_1_1WidgetSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1Window.html">GFC::Gtk::Window</a>
<dl class="el"><dd class="mdescRight">A GtkWindow C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1Window.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1WindowGroup.html">GFC::Gtk::WindowGroup</a>
<dl class="el"><dd class="mdescRight">A GtkWindowGroup C++ wrapper class.  <a href="classGFC_1_1Gtk_1_1WindowGroup.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gtk_1_1WindowSignals.html">GFC::Gtk::WindowSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gtk_1_1Window.html">Gtk::Window</a>.  <a href="classGFC_1_1Gtk_1_1WindowSignals.html#_details">More...</a><br></dl></ul>
<h2>Accelerator Methods</h2>
<ul>
<li>bool <a class="el" href="namespaceGFC_1_1Gtk.html#a292">accel_groups_activate</a> (<a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Object.html">G::Object</a> &amp;object, const <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> &amp;accel_key)
<dl class="el"><dd class="mdescRight">Finds the first accelerator in any <a class="el" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a> attached to <em>object</em> that matches the key value and modifiers, and activates that accelerator.  <a href="#a292"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a293">accelerator_get_default_mod_mask</a> ()
<dl class="el"><dd class="mdescRight">Gets the value set by set_default_mod_mask().  <a href="#a293"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Gtk.html#a294">accelerator_set_default_mod_mask</a> (<a class="el" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a> default_mod_mask)
<dl class="el"><dd class="mdescRight">Sets the modifiers that will be considered significant for keyboard accelerators.  <a href="#a294"></a><br></dl><li>bool <a class="el" href="namespaceGFC_1_1Gtk.html#a295">accelerator_valid</a> (const <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> &amp;accel_key)
<dl class="el"><dd class="mdescRight">Determines whether a given <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> is a valid keyboard accelerator.  <a href="#a295"></a><br></dl><li><a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a297">accelerator_parse</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &amp;accelerator, <a class="el" href="namespaceGFC_1_1Gtk.html#a53">AccelFlagsField</a> accel_flags=Gtk::ACCEL_VISIBLE)
<dl class="el"><dd class="mdescRight">Construct an <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> from a string representing an accelerator.  <a href="#a297"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a298">accelerator_name</a> (const <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> &amp;accel_key)
<dl class="el"><dd class="mdescRight">Converts an AccelKey's key value and modifier mask into a string parseable by parse().  <a href="#a298"></a><br></dl></ul>
<h2>Icon Size Methods</h2>
<ul>
<li>bool <a class="el" href="namespaceGFC_1_1Gtk.html#a299">icon_size_lookup</a> (<a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> size, int *width, int *height, <a class="el" href="classGFC_1_1Gtk_1_1Settings.html">Settings</a> *settings=0)
<dl class="el"><dd class="mdescRight">Obtains the pixel size of a semantic icon size, possibly modified by user preferences for a particular <a class="el" href="classGFC_1_1Gtk_1_1Settings.html">Settings</a>.  <a href="#a299"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a301">icon_size_register</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &amp;name, int width, int height)
<dl class="el"><dd class="mdescRight">Registers a new icon size, along the same lines as ICON_SIZE_MENU, etc.  <a href="#a301"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Gtk.html#a303">icon_size_register_alias</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &amp;alias, <a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> target)
<dl class="el"><dd class="mdescRight">Registers <em>alias</em> as another name for <em>target</em>.  <a href="#a303"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a305">icon_size_from_name</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &amp;name)
<dl class="el"><dd class="mdescRight">Looks up the icon size associated with <em>name</em>.  <a href="#a305"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="namespaceGFC_1_1Gtk.html#a306">icon_size_get_name</a> (<a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> size)
<dl class="el"><dd class="mdescRight">Gets the canonical name of the given icon size.  <a href="#a306"></a><br></dl></ul>
<h2>Drawing Methods</h2>
<ul>
<li>void <a class="el" href="namespaceGFC_1_1Gtk.html#a307">draw_insertion_cursor</a> (<a class="el" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a> &amp;widget, <a class="el" href="classGFC_1_1Gdk_1_1Drawable.html">Gdk::Drawable</a> &amp;drawable, const <a class="el" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a> &amp;location, bool is_primary, <a class="el" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a> direction, bool draw_arrow, const <a class="el" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a> *area=0)
<dl class="el"><dd class="mdescRight">Draws a text caret on a drawable at the specified <em>location</em>.  <a href="#a307"></a><br></dl></ul>
<h2>Typedefs</h2>
<ul>
<li><a class="anchor" name="a5" doxytag="GFC::Gtk::CalendarDisplayOptionsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a5">CalendarDisplayOptionsField</a>
<dl class="el"><dd class="mdescRight">CalendarDisplayOptionsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a309">Gtk::CalendarDisplayOptions</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a11" doxytag="GFC::Gtk::CellRendererStateField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a11">CellRendererStateField</a>
<dl class="el"><dd class="mdescRight">CellRendererStateField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a310">Gtk::CellRendererState</a> enum OR'd together. <br></dl><li><a class="anchor" name="a23" doxytag="GFC::Gtk::DialogFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a23">DialogFlagsField</a>
<dl class="el"><dd class="mdescRight">DialogFlagsField holds one or more flags from the <a class="el" href="namespaceGFC_1_1Gtk.html#a313">Gdk::DialogFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a45" doxytag="GFC::Gtk::DestDefaultsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a45">DestDefaultsField</a>
<dl class="el"><dd class="mdescRight">DestDefaultsField holds one or more flags from the <a class="el" href="namespaceGFC_1_1Gtk.html#a316">Gtk::DestDefaults</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a46" doxytag="GFC::Gtk::TargetFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a46">TargetFlagsField</a>
<dl class="el"><dd class="mdescRight">TargetFlagsField holds one or more flags from the <a class="el" href="namespaceGFC_1_1Gtk.html#a317">Gtk::TargetFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a53" doxytag="GFC::Gtk::AccelFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a53">AccelFlagsField</a>
<dl class="el"><dd class="mdescRight">AccelFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a318">Gtk::AccelFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a54" doxytag="GFC::Gtk::AttachOptionsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a54">AttachOptionsField</a>
<dl class="el"><dd class="mdescRight">AttachOptionsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a320">Gtk::AttachOptions</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a192" doxytag="GFC::Gtk::FileFilterFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a192">FileFilterFlagsField</a>
<dl class="el"><dd class="mdescRight">FileFilterFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a349">Gtk::FileFilterFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a197" doxytag="GFC::Gtk::IconLookupFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a197">IconLookupFlagsField</a>
<dl class="el"><dd class="mdescRight">IconLookupFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a350">Gtk::IconLookupFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a239" doxytag="GFC::Gtk::TextSearchFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a239">TextSearchFlagsField</a>
<dl class="el"><dd class="mdescRight">TextSearchFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a360">Gtk::TextSearchFlags</a> enumeration. <br></dl><li><a class="anchor" name="a249" doxytag="GFC::Gtk::TreeModelFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a249">TreeModelFlagsField</a>
<dl class="el"><dd class="mdescRight">TreeModelFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a362">Gtk::TreeModelFlags</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a259" doxytag="GFC::Gtk::UIManagerItemTypeField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a259">UIManagerItemTypeField</a>
<dl class="el"><dd class="mdescRight">UIManagerItemTypeField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a365">Gtk::UIManagerItemType</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a270" doxytag="GFC::Gtk::WidgetFlagsField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gtk.html#a270">WidgetFlagsField</a>
<dl class="el"><dd class="mdescRight">WidgetFlagsField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gtk.html#a366">Gtk::WidgetFlags</a> enumeration OR'd together. <br></dl></ul>
<h2>Enumerations</h2>
<ul>
<li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a308">ButtonBoxStyle</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a308a0">BUTTONBOX_DEFAULT_STYLE</a> =  GTK_BUTTONBOX_DEFAULT_STYLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a308a1">BUTTONBOX_SPREAD</a> =  GTK_BUTTONBOX_SPREAD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a308a2">BUTTONBOX_EDGE</a> =  GTK_BUTTONBOX_EDGE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a308a3">BUTTONBOX_START</a> =  GTK_BUTTONBOX_START, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a308a4">BUTTONBOX_END</a> =  GTK_BUTTONBOX_END
<br>
 }
<dl class="el"><dd class="mdescRight">ButtonBoxStyle is used to dictate the style that a ButtonBox uses to layout the buttons it contains.  <a href="#a308">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a309">CalendarDisplayOptions</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a309a6">CALENDAR_SHOW_HEADING</a> =  GTK_CALENDAR_SHOW_HEADING, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a309a7">CALENDAR_SHOW_DAY_NAMES</a> =  GTK_CALENDAR_SHOW_DAY_NAMES, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a309a8">CALENDAR_NO_MONTH_CHANGE</a> =  GTK_CALENDAR_NO_MONTH_CHANGE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a309a9">CALENDAR_SHOW_WEEK_NUMBERS</a> =  GTK_CALENDAR_SHOW_WEEK_NUMBERS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a309a10">CALENDAR_WEEK_START_MONDAY</a> =  GTK_CALENDAR_WEEK_START_MONDAY
<br>
 }
<dl class="el"><dd class="mdescRight">The display options that specify how the calendar itself is displayed.  <a href="#a309">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a310">CellRendererState</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a310a12">CELL_RENDERER_SELECTED</a> =  GTK_CELL_RENDERER_SELECTED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a310a13">CELL_RENDERER_PRELIT</a> =  GTK_CELL_RENDERER_PRELIT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a310a14">CELL_RENDERER_INSENSITIVE</a> =  GTK_CELL_RENDERER_INSENSITIVE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a310a15">CELL_RENDERER_SORTED</a> =  GTK_CELL_RENDERER_SORTED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a310a16">CELL_RENDERER_FOCUSED</a> =  GTK_CELL_RENDERER_FOCUSED
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies how the CellRenderer should render a cell.  <a href="#a310">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a311">CellRendererMode</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a311a17">INERT</a> =  GTK_CELL_RENDERER_MODE_INERT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a311a18">ACTIVATABLE</a> =  GTK_CELL_RENDERER_MODE_ACTIVATABLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a311a19">EDITABLE</a> =  GTK_CELL_RENDERER_MODE_EDITABLE
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the editable mode of the CellRenderer.  <a href="#a311">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a312">CurveType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a312a20">CURVE_TYPE_LINEAR</a> =  GTK_CURVE_TYPE_LINEAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a312a21">CURVE_TYPE_SPLINE</a> =  GTK_CURVE_TYPE_SPLINE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a312a22">CURVE_TYPE_FREE</a> =  GTK_CURVE_TYPE_FREE
<br>
 }
<dl class="el"><dd class="mdescRight">The type of curve.  <a href="#a312">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a313">DialogFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a313a24">DIALOG_MODAL</a> =  GTK_DIALOG_MODAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a313a25">DIALOG_DESTROY_WITH_PARENT</a> =  GTK_DIALOG_DESTROY_WITH_PARENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a313a26">DIALOG_NO_SEPARATOR</a> =  GTK_DIALOG_NO_SEPARATOR
<br>
 }
<dl class="el"><dd class="mdescRight">Construction/destruction flags.  <a href="#a313">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a314">ResponseType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a27">RESPONSE_NONE</a> =  GTK_RESPONSE_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a28">RESPONSE_REJECT</a> =  GTK_RESPONSE_REJECT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a29">RESPONSE_ACCEPT</a> =  GTK_RESPONSE_ACCEPT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a30">RESPONSE_DELETE_EVENT</a> =  GTK_RESPONSE_DELETE_EVENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a31">RESPONSE_OK</a> =  GTK_RESPONSE_OK, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a32">RESPONSE_CANCEL</a> =  GTK_RESPONSE_CANCEL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a33">RESPONSE_CLOSE</a> =  GTK_RESPONSE_CLOSE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a34">RESPONSE_YES</a> =  GTK_RESPONSE_YES, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a35">RESPONSE_NO</a> =  GTK_RESPONSE_NO, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a36">RESPONSE_APPLY</a> =  GTK_RESPONSE_APPLY, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a314a37">RESPONSE_HELP</a> =  GTK_RESPONSE_HELP
<br>
 }
<dl class="el"><dd class="mdescRight">Used to indicate the response_id of the action widget.  <a href="#a314">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a315">StockButtonType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a38">STOCK_BUTTON_OK</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a39">STOCK_BUTTON_CANCEL</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a40">STOCK_BUTTON_CLOSE</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a41">STOCK_BUTTON_YES</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a42">STOCK_BUTTON_NO</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a43">STOCK_BUTTON_APPLY</a>, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a315a44">STOCK_BUTTON_HELP</a>
<br>
 }
<dl class="el"><dd class="mdescRight">Used to indicate a stock button and response_id to add to the dialog.  <a href="#a315">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a316">DestDefaults</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a316a47">DEST_DEFAULT_MOTION</a> =  GTK_DEST_DEFAULT_MOTION, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a316a48">DEST_DEFAULT_HIGHLIGHT</a> =  GTK_DEST_DEFAULT_HIGHLIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a316a49">DEST_DEFAULT_DROP</a> =  GTK_DEST_DEFAULT_DROP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a316a50">DEST_DEFAULT_ALL</a> =  GTK_DEST_DEFAULT_ALL
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the various types of action that will be taken on behalf of the user for a drag destination site.  <a href="#a316">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a317">TargetFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a317a51">TARGET_SAME_APP</a> =  GTK_TARGET_SAME_APP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a317a52">TARGET_SAME_WIDGET</a> =  GTK_TARGET_SAME_WIDGET
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the constraints on an entry in a TargetTable.  <a href="#a317">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a318">AccelFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a318a55">ACCEL_VISIBLE</a> =  GTK_ACCEL_VISIBLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a318a56">ACCEL_LOCKED</a> =  GTK_ACCEL_LOCKED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a318a57">ACCEL_MASK</a> =  GTK_ACCEL_MASK
<br>
 }
<dl class="el"><dd class="mdescRight">Accelerator flags.  <a href="#a318">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a319">ArrowType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a319a58">ARROW_UP</a> =  GTK_ARROW_UP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a319a59">ARROW_DOWN</a> =  GTK_ARROW_DOWN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a319a60">ARROW_LEFT</a> =  GTK_ARROW_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a319a61">ARROW_RIGHT</a> =  GTK_ARROW_RIGHT
<br>
 }
<dl class="el"><dd class="mdescRight">Used to indicate the direction in which an Arrow should point.  <a href="#a319">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a320">AttachOptions</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a320a62">EXPAND</a> =  GTK_EXPAND, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a320a63">SHRINK</a> =  GTK_SHRINK, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a320a64">FILL</a> =  GTK_FILL
<br>
 }
<dl class="el"><dd class="mdescRight">Denotes the expansion properties that a widget will have when it (or it's parent) is resized.  <a href="#a320">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a321">CornerType</a> { , <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a321a66">CORNER_BOTTOM_LEFT</a> =  GTK_CORNER_BOTTOM_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a321a67">CORNER_TOP_RIGHT</a> =  GTK_CORNER_TOP_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a321a68">CORNER_BOTTOM_RIGHT</a> =  GTK_CORNER_BOTTOM_RIGHT
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies which corner a child widget should be placed in when packed into a ScrolledWindow.  <a href="#a321">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a322">DeleteType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a69">DELETE_CHARS</a> =  GTK_DELETE_CHARS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a70">DELETE_WORD_ENDS</a> =  GTK_DELETE_WORD_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a71">DELETE_WORDS</a> =  GTK_DELETE_WORDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a72">DELETE_DISPLAY_LINES</a> =  GTK_DELETE_DISPLAY_LINES, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a73">DELETE_DISPLAY_LINE_ENDS</a> =  GTK_DELETE_DISPLAY_LINE_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a74">DELETE_PARAGRAPH_ENDS</a> =  GTK_DELETE_PARAGRAPH_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a75">DELETE_PARAGRPHS</a> =  GTK_DELETE_PARAGRAPHS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a322a76">DELETE_WHITESPACE</a> =  GTK_DELETE_WHITESPACE
<br>
 }
<dl class="el"><dd class="mdescRight">Indicates the text deletion type; used by the Entry and Textview widgets.  <a href="#a322">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a323">DirectionType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a77">DIR_TAB_FORWARD</a> =  GTK_DIR_TAB_FORWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a78">DIR_TAB_BACKWARD</a> =  GTK_DIR_TAB_BACKWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a79">DIR_UP</a> =  GTK_DIR_UP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a80">DIR_DOWN</a> =  GTK_DIR_DOWN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a81">DIR_LEFT</a> =  GTK_DIR_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a323a82">DIR_RIGHT</a> =  GTK_DIR_RIGHT
<br>
 }
<dl class="el"><dd class="mdescRight">Indicates direction; used by widgets such as Menu, Notebook, ScrollWindow and TextView.  <a href="#a323">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a324">ExpanderStyle</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a324a83">EXPANDER_COLLAPSED</a> =  GTK_EXPANDER_COLLAPSED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a324a84">EXPANDER_SEMI_COLLAPSED</a> =  GTK_EXPANDER_SEMI_COLLAPSED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a324a85">EXPANDER_SEMI_EXPANDED</a> =  GTK_EXPANDER_SEMI_EXPANDED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a324a86">EXPANDER_EXPANDED</a> =  GTK_EXPANDER_EXPANDED
<br>
 }
<dl class="el"><dd class="mdescRight">ExpanderStyle is used by Style::draw_expander() to indicate the type of expander to draw.  <a href="#a324">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a87">ICON_SIZE_INVALID</a> =  GTK_ICON_SIZE_INVALID, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a88">ICON_SIZE_MENU</a> =  GTK_ICON_SIZE_MENU, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a89">ICON_SIZE_SMALL_TOOLBAR</a> =  GTK_ICON_SIZE_SMALL_TOOLBAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a90">ICON_SIZE_LARGE_TOOLBAR</a> =  GTK_ICON_SIZE_LARGE_TOOLBAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a91">ICON_SIZE_BUTTON</a> =  GTK_ICON_SIZE_BUTTON, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a92">ICON_SIZE_DND</a> =  GTK_ICON_SIZE_DND, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a325a93">ICON_SIZE_DIALOG</a> =  GTK_ICON_SIZE_DIALOG
<br>
 }
<dl class="el"><dd class="mdescRight">The Icon size to render.  <a href="#a325">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a326">Justification</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a326a94">JUSTIFY_LEFT</a> =  GTK_JUSTIFY_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a326a95">JUSTIFY_RIGHT</a> =  GTK_JUSTIFY_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a326a96">JUSTIFY_CENTER</a> =  GTK_JUSTIFY_CENTER, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a326a97">JUSTIFY_FILL</a> =  GTK_JUSTIFY_FILL
<br>
 }
<dl class="el"><dd class="mdescRight">Used for justifying the text inside a Label widget (see also Alignment).  <a href="#a326">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a327">MetricType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a327a98">PIXELS</a> =  GTK_PIXELS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a327a99">INCHES</a> =  GTK_INCHES
<br>
 }
<dl class="el"><dd class="mdescRight">Used to define the unit type for Ruler.  <a href="#a327">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a328">MovementStep</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a101">MOVEMENT_LOGICAL_POSITIONS</a> =  GTK_MOVEMENT_LOGICAL_POSITIONS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a102">MOVEMENT_VISUAL_POSITIONS</a> =  GTK_MOVEMENT_VISUAL_POSITIONS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a103">MOVEMENT_WORDS</a> =  GTK_MOVEMENT_WORDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a104">MOVEMENT_DISPLAY_LINES</a> =  GTK_MOVEMENT_DISPLAY_LINES, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a105">MOVEMENT_DISPLAY_LINE_ENDS</a> =  GTK_MOVEMENT_DISPLAY_LINE_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a106">MOVEMENT_PARAGRAPHS</a> =  GTK_MOVEMENT_PARAGRAPHS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a107">MOVEMENT_PARAGRAPHS_ENDS</a> =  GTK_MOVEMENT_PARAGRAPH_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a108">MOVEMENT_PAGES</a> =  GTK_MOVEMENT_PAGES, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a109">MOVEMENT_BUFFER_ENDS</a> =  GTK_MOVEMENT_BUFFER_ENDS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a328a110">MOVEMENT_HORIZONTAL_PAGES</a> =  GTK_MOVEMENT_HORIZONTAL_PAGES
<br>
 }
<dl class="el"><dd class="mdescRight">Describes the movement of the insertion point (cursor).  <a href="#a328">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a329">Orientation</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a329a111">ORIENTATION_HORIZONTAL</a> =  GTK_ORIENTATION_HORIZONTAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a329a112">ORIENTATION_VERTICAL</a> =  GTK_ORIENTATION_VERTICAL
<br>
 }
<dl class="el"><dd class="mdescRight">Used by Range and Toolbar to indicate the orientation of the widget.  <a href="#a329">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a330">PackType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a330a113">PACK_START</a> =  GTK_PACK_START, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a330a114">PACK_END</a> =  GTK_PACK_END
<br>
 }
<dl class="el"><dd class="mdescRight">Represents the packing location of Box children (see VBox, HBox and ButtonBox).  <a href="#a330">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a331">PolicyType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a331a115">POLICY_ALWAYS</a> =  GTK_POLICY_ALWAYS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a331a116">POLICY_AUTOMATIC</a> =  GTK_POLICY_AUTOMATIC, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a331a117">POLICY_NEVER</a> =  GTK_POLICY_NEVER
<br>
 }
<dl class="el"><dd class="mdescRight">Determines when a scroll bar will be visible.  <a href="#a331">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a332">PositionType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a332a118">POS_LEFT</a> =  GTK_POS_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a332a119">POS_RIGHT</a> =  GTK_POS_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a332a120">POS_TOP</a> =  GTK_POS_TOP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a332a121">POS_BOTTOM</a> =  GTK_POS_BOTTOM
<br>
 }
<dl class="el"><dd class="mdescRight">Indicates edge position.  <a href="#a332">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a333">ReliefStyle</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a333a122">RELIEF_NORMAL</a> =  GTK_RELIEF_NORMAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a333a123">RELIEF_HALF</a> =  GTK_RELIEF_HALF, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a333a124">RELIEF_NONE</a> =  GTK_RELIEF_NONE
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the relief style of the edges a Button.  <a href="#a333">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a334">ResizeMode</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a334a125">RESIZE_PARENT</a> =  GTK_RESIZE_PARENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a334a126">RESIZE_QUEUE</a> =  GTK_RESIZE_QUEUE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a334a127">RESIZE_IMMEDIATE</a> =  GTK_RESIZE_IMMEDIATE
<br>
 }
<dl class="el"><dd class="mdescRight">Determines whether a resize request will be passed to a container's parent, queued for later execution or executed immediately.  <a href="#a334">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a335">ScrollType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a128">SCROLL_NONE</a> =  GTK_SCROLL_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a129">SCROLL_JUMP</a> =  GTK_SCROLL_JUMP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a130">SCROLL_STEP_BACKWARD</a> =  GTK_SCROLL_STEP_BACKWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a131">SCROLL_STEP_FORWARD</a> =  GTK_SCROLL_STEP_FORWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a132">SCROLL_PAGE_BACKWARD</a> =  GTK_SCROLL_PAGE_BACKWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a133">SCROLL_PAGE_FORWARD</a> =  GTK_SCROLL_PAGE_FORWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a134">SCROLL_STEP_UP</a> =  GTK_SCROLL_STEP_UP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a135">SCROLL_STEP_DOWN</a> =  GTK_SCROLL_STEP_DOWN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a136">SCROLL_PAGE_UP</a> =  GTK_SCROLL_PAGE_UP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a137">SCROLL_PAGE_DOWN</a> =  GTK_SCROLL_PAGE_DOWN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a138">SCROLL_STEP_LEFT</a> =  GTK_SCROLL_STEP_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a139">SCROLL_STEP_RIGHT</a> =  GTK_SCROLL_STEP_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a140">SCROLL_PAGE_LEFT</a> =  GTK_SCROLL_PAGE_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a141">SCROLL_PAGE_RIGHT</a> =  GTK_SCROLL_PAGE_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a142">SCROLL_START</a> =  GTK_SCROLL_START, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a335a143">SCROLL_END</a> =  GTK_SCROLL_END
<br>
 }
<dl class="el"><dd class="mdescRight">Passed as a signal argument by Range, Scrollbar, SpinButton and ScrolledWindow widgets to indicate the way the user has moved the slider or thumb.  <a href="#a335">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a336">SelectionMode</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a336a144">SELECTION_NONE</a> =  GTK_SELECTION_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a336a145">SELECTION_SINGLE</a> =  GTK_SELECTION_SINGLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a336a146">SELECTION_BROWSE</a> =  GTK_SELECTION_BROWSE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a336a147">SELECTION_MULTIPLE</a> =  GTK_SELECTION_MULTIPLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a336a148">SELECTION_EXTENDED</a> =  GTK_SELECTION_EXTENDED
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the selection mode for a TreeView widget.  <a href="#a336">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a337">ShadowType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a337a149">SHADOW_NONE</a> =  GTK_SHADOW_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a337a150">SHADOW_IN</a> =  GTK_SHADOW_IN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a337a151">SHADOW_OUT</a> =  GTK_SHADOW_OUT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a337a152">SHADOW_ETCHED_IN</a> =  GTK_SHADOW_ETCHED_IN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a337a153">SHADOW_ETCHED_OUT</a> =  GTK_SHADOW_ETCHED_OUT
<br>
 }
<dl class="el"><dd class="mdescRight">Used to change the appearance of an outline typically provided by a Frame.  <a href="#a337">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a338">SizeGroupMode</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a338a154">SIZE_GROUP_NONE</a> =  GTK_SIZE_GROUP_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a338a155">SIZE_GROUP_HORIZONTAL</a> =  GTK_SIZE_GROUP_HORIZONTAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a338a156">SIZE_GROUP_VERTICAL</a> =  GTK_SIZE_GROUP_VERTICAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a338a157">SIZE_GROUP_BOTH</a> =  GTK_SIZE_GROUP_BOTH
<br>
 }
<dl class="el"><dd class="mdescRight">The mode of the size group determines the directions in which the size group effects the requested sizes of its component widgets.  <a href="#a338">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a339">SortType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a339a158">SORT_ASCENDING</a> =  GTK_SORT_ASCENDING, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a339a159">SORT_DESCENDING</a> =  GTK_SORT_DESCENDING
<br>
 }
<dl class="el"><dd class="mdescRight">Determines the direction of a sort.  <a href="#a339">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a340">StateType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a340a160">STATE_NORMAL</a> =  GTK_STATE_NORMAL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a340a161">STATE_ACTIVE</a> =  GTK_STATE_ACTIVE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a340a162">STATE_PRELIGHT</a> =  GTK_STATE_PRELIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a340a163">STATE_SELECTED</a> =  GTK_STATE_SELECTED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a340a164">STATE_INSENSITIVE</a> =  GTK_STATE_INSENSITIVE
<br>
 }
<dl class="el"><dd class="mdescRight">This type indicates the current state of a widget; the state determines how the widget is drawn.  <a href="#a340">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a341a165">TEXT_DIR_NONE</a> =  GTK_TEXT_DIR_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a341a166">TEXT_DIR_LTR</a> =  GTK_TEXT_DIR_LTR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a341a167">TEXT_DIR_RTL</a> =  GTK_TEXT_DIR_RTL
<br>
 }
<dl class="el"><dd class="mdescRight">Text direction (right-to-left or left-to-right).  <a href="#a341">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a342">ToolbarStyle</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a342a168">TOOLBAR_ICONS</a> =  GTK_TOOLBAR_ICONS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a342a169">TOOLBAR_TEXT</a> =  GTK_TOOLBAR_TEXT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a342a170">TOOLBAR_BOTH</a> =  GTK_TOOLBAR_BOTH, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a342a171">TOOLBAR_BOTH_HORIZ</a> =  GTK_TOOLBAR_BOTH_HORIZ
<br>
 }
<dl class="el"><dd class="mdescRight">ToolbarStyle is used to customize the appearance of a Toolbar.  <a href="#a342">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a343">UpdateType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a343a172">UPDATE_CONTINUOUS</a> =  GTK_UPDATE_CONTINUOUS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a343a173">UPDATE_DISCONTINUOUS</a> =  GTK_UPDATE_DISCONTINUOUS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a343a174">UPDATE_DELAYED</a> =  GTK_UPDATE_DELAYED
<br>
 }
<dl class="el"><dd class="mdescRight">Used by Range widgets to set the update policy for the range.  <a href="#a343">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a344">WindowPosition</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a344a175">WIN_POS_NONE</a> =  GTK_WIN_POS_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a344a176">WIN_POS_CENTER</a> =  GTK_WIN_POS_CENTER, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a344a177">WIN_POS_MOUSE</a> =  GTK_WIN_POS_MOUSE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a344a178">WIN_POS_CENTER_ALWAYS</a> =  GTK_WIN_POS_CENTER_ALWAYS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a344a179">WIN_POS_CENTER_ON_PARENT</a> =  GTK_WIN_POS_CENTER_ON_PARENT
<br>
 }
<dl class="el"><dd class="mdescRight">Window placement can be influenced using this enumeration.  <a href="#a344">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a345">WrapMode</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a345a180">WRAP_NONE</a> =  GTK_WRAP_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a345a181">WRAP_CHAR</a> =  GTK_WRAP_CHAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a345a182">WRAP_WORD</a> =  GTK_WRAP_WORD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a345a183">WRAP_WORD_CHAR</a> =  GTK_WRAP_WORD_CHAR
<br>
 }
<dl class="el"><dd class="mdescRight">Describes how to wrap the lines of a Layout to the desired width.  <a href="#a345">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a346">WindowType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a346a184">WINDOW_TOPLEVEL</a> =  GTK_WINDOW_TOPLEVEL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a346a185">WINDOW_POPUP</a> =  GTK_WINDOW_POPUP
<br>
 }
<dl class="el"><dd class="mdescRight">Specifies the window type to create.  <a href="#a346">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a347">FileChooserAction</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a347a186">FILE_CHOOSER_ACTION_OPEN</a> =  GTK_FILE_CHOOSER_ACTION_OPEN, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a347a187">FILE_CHOOSER_ACTION_SAVE</a> =  GTK_FILE_CHOOSER_ACTION_SAVE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a347a188">FILE_CHOOSER_ACTION_SELECT_FOLDER</a> =  GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a347a189">FILE_CHOOSER_ACTION_CREATE_FOLDER</a> =  GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
<br>
 }
<dl class="el"><dd class="mdescRight">Describes whether a FileChooser is being used to open existing files or to save to a possibly new file.  <a href="#a347">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a348">FileChooserError</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a348a190">FILE_CHOOSER_ERROR_NONEXISTENT</a> =  GTK_FILE_CHOOSER_ERROR_NONEXISTENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a348a191">FILE_CHOOSER_ERROR_BAD_FILENAME</a> =  GTK_FILE_CHOOSER_ERROR_BAD_FILENAME
<br>
 }
<dl class="el"><dd class="mdescRight">These identify the various errors that can occur while calling FileChooser functions.  <a href="#a348">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a349">FileFilterFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a349a193">FILE_FILTER_FILENAME</a> =  GTK_FILE_FILTER_FILENAME, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a349a194">FILE_FILTER_URI</a> =  GTK_FILE_FILTER_URI, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a349a195">FILE_FILTER_DISPLAY_NAME</a> =  GTK_FILE_FILTER_DISPLAY_NAME, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a349a196">FILE_FILTER_MIME_TYPE</a> =  GTK_FILE_FILTER_MIME_TYPE
<br>
 }
<dl class="el"><dd class="mdescRight">Used by Gtk::FileFilter::add_custom() to let GTK+ know what file information needs to be retrieved.  <a href="#a349">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a350">IconLookupFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a350a198">ICON_LOOKUP_NO_SVG</a> =  GTK_ICON_LOOKUP_NO_SVG, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a350a199">ICON_LOOKUP_FORCE_SVG</a> =  GTK_ICON_LOOKUP_FORCE_SVG, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a350a200">ICON_LOOKUP_USE_BUILTIN</a> =  GTK_ICON_LOOKUP_USE_BUILTIN
<br>
 }
<dl class="el"><dd class="mdescRight">The flags used to specify options for Gtk::IconTheme::lookup_icon().  <a href="#a350">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a351">IconThemeError</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a351a201">ICON_THEME_NOT_FOUND</a> =  GTK_ICON_THEME_NOT_FOUND, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a351a202">ICON_THEME_FAILED</a> =  GTK_ICON_THEME_FAILED
<br>
 }
<dl class="el"><dd class="mdescRight">Error codes for Gtk::IconTheme operations.  <a href="#a351">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a352">ImageType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a203">IMAGE_EMPTY</a> =  GTK_IMAGE_EMPTY, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a204">IMAGE_PIXMAP</a> =  GTK_IMAGE_PIXMAP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a205">IMAGE_IMAGE</a> =  GTK_IMAGE_IMAGE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a206">IMAGE_PIXBUF</a> =  GTK_IMAGE_PIXBUF, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a207">IMAGE_STOCK</a> =  GTK_IMAGE_STOCK, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a208">IMAGE_ICON_SET</a> =  GTK_IMAGE_ICON_SET, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a352a209">IMAGE_ANIMATION</a> =  GTK_IMAGE_ANIMATION
<br>
 }
<dl class="el"><dd class="mdescRight">Describes the image data representation used by a GtkImage.  <a href="#a352">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a353">MenuDirectionType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a353a210">MENU_DIR_PARENT</a> =  GTK_MENU_DIR_PARENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a353a211">MENU_DIR_CHILD</a> =  GTK_MENU_DIR_CHILD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a353a212">MENU_DIR_NEXT</a> =  GTK_MENU_DIR_NEXT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a353a213">MENU_DIR_PREV</a> =  GTK_MENU_DIR_PREV
<br>
 }
<dl class="el"><dd class="mdescRight">MenuDirectionType represents the directional movements within a menu.  <a href="#a353">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a354">MessageType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a354a214">MESSAGE_INFO</a> =  GTK_MESSAGE_INFO, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a354a215">MESSAGE_WARNING</a> =  GTK_MESSAGE_WARNING, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a354a216">MESSAGE_QUESTION</a> =  GTK_MESSAGE_QUESTION, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a354a217">MESSAGE_ERROR</a> =  GTK_MESSAGE_ERROR
<br>
 }
<dl class="el"><dd class="mdescRight">The type of message being displayed in the dialog.  <a href="#a354">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a355">ButtonType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a218">BUTTONS_NONE</a> =  GTK_BUTTONS_NONE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a219">BUTTONS_OK</a> =  GTK_BUTTONS_OK, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a220">BUTTONS_CLOSE</a> =  GTK_BUTTONS_CLOSE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a221">BUTTONS_CANCEL</a> =  GTK_BUTTONS_CANCEL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a222">BUTTONS_YES_NO</a> =  GTK_BUTTONS_YES_NO, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a355a223">BUTTONS_OK_CANCEL</a> =  GTK_BUTTONS_OK_CANCEL
<br>
 }
<dl class="el"><dd class="mdescRight">Prebuilt sets of buttons for the dialog.  <a href="#a355">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a356">NotebookTab</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a356a224">NOTEBOOK_TAB_FIRST</a> =  GTK_NOTEBOOK_TAB_FIRST, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a356a225">NOTEBOOK_TAB_LAST</a> =  GTK_NOTEBOOK_TAB_LAST
<br>
 }
<dl class="el"><dd class="mdescRight">NotebookTab defines the notebook tab which received the focus when a home or end key is pressed on the keyboard.  <a href="#a356">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a357">ProgressBarOrientation</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a357a226">PROGRESS_LEFT_TO_RIGHT</a> =  GTK_PROGRESS_LEFT_TO_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a357a227">PROGRESS_RIGHT_TO_LEFT</a> =  GTK_PROGRESS_RIGHT_TO_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a357a228">PROGRESS_BOTTOM_TO_TOP</a> =  GTK_PROGRESS_BOTTOM_TO_TOP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a357a229">PROGRESS_TOP_TO_BOTTOM</a> =  GTK_PROGRESS_TOP_TO_BOTTOM
<br>
 }
<dl class="el"><dd class="mdescRight">Represents the possible orientations and growth directions for the visible progress bar.  <a href="#a357">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a358">SpinType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a230">SPIN_STEP_FORWARD</a> =  GTK_SPIN_STEP_FORWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a231">SPIN_STEP_BACKWARD</a> =  GTK_SPIN_STEP_BACKWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a232">SPIN_PAGE_FORWARD</a> =  GTK_SPIN_PAGE_FORWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a233">SPIN_PAGE_BACKWARD</a> =  GTK_SPIN_PAGE_BACKWARD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a234">SPIN_HOME</a> =  GTK_SPIN_HOME, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a235">SPIN_END</a> =  GTK_SPIN_END, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a358a236">SPIN_USER_DEFINED</a> =  GTK_SPIN_USER_DEFINED
<br>
 }
<dl class="el"><dd class="mdescRight">SpinType defines the types of spin movement that can occur.  <a href="#a358">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a359">SpinButtonUpdatePolicy</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a359a237">UPDATE_ALWAYS</a> =  GTK_UPDATE_ALWAYS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a359a238">UPDATE_IF_VALID</a> =  GTK_UPDATE_IF_VALID
<br>
 }
<dl class="el"><dd class="mdescRight">SpinButtonUpdatePolicy determines how the spin button should be updated.  <a href="#a359">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a360">TextSearchFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a360a240">TEXT_SEARCH_VISIBLE_ONLY</a> =  GTK_TEXT_SEARCH_VISIBLE_ONLY, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a360a241">TEXT_SEARCH_TEXT_ONLY</a> =  GTK_TEXT_SEARCH_TEXT_ONLY
<br>
 }
<dl class="el"><dd class="mdescRight">TextSearchFlags is used to specify how a text iterator should search through a text buffer for a text string.  <a href="#a360">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a361">TextWindowType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a242">TEXT_WINDOW_PRIVATE</a> =  GTK_TEXT_WINDOW_PRIVATE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a243">TEXT_WINDOW_WIDGET</a> =  GTK_TEXT_WINDOW_WIDGET, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a244">TEXT_WINDOW_TEXT</a> =  GTK_TEXT_WINDOW_TEXT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a245">TEXT_WINDOW_LEFT</a> =  GTK_TEXT_WINDOW_LEFT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a246">TEXT_WINDOW_RIGHT</a> =  GTK_TEXT_WINDOW_RIGHT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a247">TEXT_WINDOW_TOP</a> =  GTK_TEXT_WINDOW_TOP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a361a248">TEXT_WINDOW_BOTTOM</a> =  GTK_TEXT_WINDOW_BOTTOM
<br>
 }
<dl class="el"><dd class="mdescRight">TextWindowType indentifies the possible windows that correspond to an area of the text view.  <a href="#a361">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a362">TreeModelFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a362a250">TREE_MODEL_ITERS_PERSIST</a> =  GTK_TREE_MODEL_ITERS_PERSIST, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a362a251">TREE_MODEL_LIST_ONLY</a> =  GTK_TREE_MODEL_LIST_ONLY
<br>
 }
<dl class="el"><dd class="mdescRight">These flags indicate various properties of a TreeModel.  <a href="#a362">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a363">TreeViewDropPosition</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a363a252">TREE_VIEW_DROP_BEFORE</a> =  GTK_TREE_VIEW_DROP_BEFORE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a363a253">TREE_VIEW_DROP_AFTER</a> =  GTK_TREE_VIEW_DROP_AFTER, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a363a254">TREE_VIEW_DROP_INTO_OR_BEFORE</a> =  GTK_TREE_VIEW_DROP_INTO_OR_BEFORE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a363a255">TREE_VIEW_DROP_INTO_OR_AFTER</a> =  GTK_TREE_VIEW_DROP_INTO_OR_AFTER
<br>
 }
<dl class="el"><dd class="mdescRight">TreeViewDropPosition is used to determine where a dropped row goes.  <a href="#a363">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a364">TreeViewColumnSizing</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a364a256">TREE_VIEW_COLUMN_GROW_ONLY</a> =  GTK_TREE_VIEW_COLUMN_GROW_ONLY, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a364a257">TREE_VIEW_COLUMN_AUTOSIZE</a> =  GTK_TREE_VIEW_COLUMN_AUTOSIZE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a364a258">TREE_VIEW_COLUMN_FIXED</a> =  GTK_TREE_VIEW_COLUMN_FIXED
<br>
 }
<dl class="el"><dd class="mdescRight">TreeViewColumnSizing defines the sizing method a column uses to determine it's width.  <a href="#a364">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a365">UIManagerItemType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a260">UI_MANAGER_AUTO</a> =  GTK_UI_MANAGER_AUTO, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a261">UI_MANAGER_MENUBAR</a> =  GTK_UI_MANAGER_MENUBAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a262">UI_MANAGER_MENU</a> =  GTK_UI_MANAGER_MENU, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a263">UI_MANAGER_TOOLBAR</a> =  GTK_UI_MANAGER_TOOLBAR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a264">UI_MANAGER_PLACEHOLDER</a> =  GTK_UI_MANAGER_PLACEHOLDER, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a265">UI_MANAGER_POPUP</a> =  GTK_UI_MANAGER_POPUP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a266">UI_MANAGER_MENUITEM</a> =  GTK_UI_MANAGER_MENUITEM, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a267">UI_MANAGER_TOOLITEM</a> =  GTK_UI_MANAGER_TOOLITEM, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a268">UI_MANAGER_SEPARATOR</a> =  GTK_UI_MANAGER_SEPARATOR, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a365a269">UI_MANAGER_ACCELERATOR</a> =  GTK_UI_MANAGER_ACCELERATOR
<br>
 }
<dl class="el"><dd class="mdescRight">Item type values used by Gtk::UIManager::add_ui() to determine what UI element to create.  <a href="#a365">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a366">WidgetFlags</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a271">TOP_LEVEL</a> =  GTK_TOPLEVEL, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a272">NO_WINDOW</a> =  GTK_NO_WINDOW, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a273">REALIZED</a> =  GTK_REALIZED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a274">MAPPED</a> =  GTK_MAPPED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a275">VISIBLE</a> =  GTK_VISIBLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a276">SENSITIVE</a> =  GTK_SENSITIVE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a277">PARENT_SENSITIVE</a> =  GTK_PARENT_SENSITIVE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a278">CAN_FOCUS</a> =  GTK_CAN_FOCUS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a279">HAS_FOCUS</a> =  GTK_HAS_FOCUS, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a280">CAN_DEFAULT</a> =  GTK_CAN_DEFAULT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a281">HAS_DEFAULT</a> =  GTK_HAS_DEFAULT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a282">HAS_GRAB</a> =  GTK_HAS_GRAB, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a283">RC_STYLE</a> =  GTK_RC_STYLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a284">COMPOSITE_CHILD</a> =  GTK_COMPOSITE_CHILD, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a285">NO_REPARENT</a> =  GTK_NO_REPARENT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a286">APP_PAINTABLE</a> =  GTK_APP_PAINTABLE, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a287">RECEIVES_DEFAULT</a> =  GTK_RECEIVES_DEFAULT, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a288">DOUBLE_BUFFERED</a> =  GTK_DOUBLE_BUFFERED, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a366a289">NO_SHOW_ALL</a> =  GTK_NO_SHOW_ALL
<br>
 }
<dl class="el"><dd class="mdescRight">WidgetFlags tells about certain properties of the widget.  <a href="#a366">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gtk.html#a367">WidgetHelpType</a> { <br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a367a290">WIDGET_HELP_TOOLTIP</a> =  GTK_WIDGET_HELP_TOOLTIP, 
<br>
&nbsp;&nbsp;<a class="el" href="namespaceGFC_1_1Gtk.html#a367a291">WIDGET_HELP_WHATS_THIS</a> =  GTK_WIDGET_HELP_WHATS_THIS
<br>
 }
<dl class="el"><dd class="mdescRight">WidgetHelpType defines the type of help, either tooltip or "What's this".  <a href="#a367">More...</a><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
The C++ framework for the GTK GUI library. 
<p>
Provides a set of graphical objects called widgets which serve as the GUI component, such as <a class="el" href="classGFC_1_1Gtk_1_1Button.html">Gtk::Button</a> and Gtk::Textview. 
<p>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="a318" doxytag="GFC::Gtk::AccelFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a318">AccelFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Accelerator flags. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a318a55" doxytag="ACCEL_VISIBLE" ></a>ACCEL_VISIBLE</em>&nbsp;</td><td>
Display the accelerator in an <a class="el" href="classGFC_1_1Gtk_1_1AccelLabel.html">AccelLabel</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a318a56" doxytag="ACCEL_LOCKED" ></a>ACCEL_LOCKED</em>&nbsp;</td><td>
Is the accelerator removable? </td></tr>
<tr><td valign=top><em><a class="anchor" name="a318a57" doxytag="ACCEL_MASK" ></a>ACCEL_MASK</em>&nbsp;</td><td>
Has a value of 0x07. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a319" doxytag="GFC::Gtk::ArrowType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a319">ArrowType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used to indicate the direction in which an <a class="el" href="classGFC_1_1Gtk_1_1Arrow.html">Arrow</a> should point. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a319a58" doxytag="ARROW_UP" ></a>ARROW_UP</em>&nbsp;</td><td>
Represents an upward pointing arrow. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a319a59" doxytag="ARROW_DOWN" ></a>ARROW_DOWN</em>&nbsp;</td><td>
Represents a downward pointing arrow. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a319a60" doxytag="ARROW_LEFT" ></a>ARROW_LEFT</em>&nbsp;</td><td>
Represents a left pointing arrow. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a319a61" doxytag="ARROW_RIGHT" ></a>ARROW_RIGHT</em>&nbsp;</td><td>
Represents a right pointing arrow. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a320" doxytag="GFC::Gtk::AttachOptions" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a320">AttachOptions</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Denotes the expansion properties that a widget will have when it (or it's parent) is resized. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a320a62" doxytag="EXPAND" ></a>EXPAND</em>&nbsp;</td><td>
The widget should expand to take up any extra space in its container that has been allocated. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a320a63" doxytag="SHRINK" ></a>SHRINK</em>&nbsp;</td><td>
The widget should shrink as and when possible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a320a64" doxytag="FILL" ></a>FILL</em>&nbsp;</td><td>
The widget should fill the space allocated to it. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a308" doxytag="GFC::Gtk::ButtonBoxStyle" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a308">ButtonBoxStyle</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
ButtonBoxStyle is used to dictate the style that a <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a> uses to layout the buttons it contains. 
<p>
(See also: <a class="el" href="classGFC_1_1Gtk_1_1VButtonBox.html">VButtonBox</a> and <a class="el" href="classGFC_1_1Gtk_1_1HButtonBox.html">HButtonBox</a>). <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a308a0" doxytag="BUTTONBOX_DEFAULT_STYLE" ></a>BUTTONBOX_DEFAULT_STYLE</em>&nbsp;</td><td>
Default packing. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a308a1" doxytag="BUTTONBOX_SPREAD" ></a>BUTTONBOX_SPREAD</em>&nbsp;</td><td>
Buttons are evenly spread across the <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a308a2" doxytag="BUTTONBOX_EDGE" ></a>BUTTONBOX_EDGE</em>&nbsp;</td><td>
Buttons are placed at the edges of the <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a308a3" doxytag="BUTTONBOX_START" ></a>BUTTONBOX_START</em>&nbsp;</td><td>
Buttons are grouped towards the start of <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a308a4" doxytag="BUTTONBOX_END" ></a>BUTTONBOX_END</em>&nbsp;</td><td>
Buttons are grouped towards the end of <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a>. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a355" doxytag="GFC::Gtk::ButtonType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a355">ButtonType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Prebuilt sets of buttons for the dialog. 
<p>
If none of these choices are appropriate, simply use BUTTONS_NONE then call Gtk::Dialog::add_buttons(). <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a355a218" doxytag="BUTTONS_NONE" ></a>BUTTONS_NONE</em>&nbsp;</td><td>
No buttons at all. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a355a219" doxytag="BUTTONS_OK" ></a>BUTTONS_OK</em>&nbsp;</td><td>
An OK button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a355a220" doxytag="BUTTONS_CLOSE" ></a>BUTTONS_CLOSE</em>&nbsp;</td><td>
A Close button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a355a221" doxytag="BUTTONS_CANCEL" ></a>BUTTONS_CANCEL</em>&nbsp;</td><td>
A Cancel button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a355a222" doxytag="BUTTONS_YES_NO" ></a>BUTTONS_YES_NO</em>&nbsp;</td><td>
Yes and No buttons. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a355a223" doxytag="BUTTONS_OK_CANCEL" ></a>BUTTONS_OK_CANCEL</em>&nbsp;</td><td>
OK and Cancel buttons. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a309" doxytag="GFC::Gtk::CalendarDisplayOptions" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a309">CalendarDisplayOptions</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The display options that specify how the calendar itself is displayed. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a309a6" doxytag="CALENDAR_SHOW_HEADING" ></a>CALENDAR_SHOW_HEADING</em>&nbsp;</td><td>
Specifies that the month and year should be displayed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a309a7" doxytag="CALENDAR_SHOW_DAY_NAMES" ></a>CALENDAR_SHOW_DAY_NAMES</em>&nbsp;</td><td>
Specifies that three letter day descriptions should be present. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a309a8" doxytag="CALENDAR_NO_MONTH_CHANGE" ></a>CALENDAR_NO_MONTH_CHANGE</em>&nbsp;</td><td>
Prevents the user from switching months with the calendar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a309a9" doxytag="CALENDAR_SHOW_WEEK_NUMBERS" ></a>CALENDAR_SHOW_WEEK_NUMBERS</em>&nbsp;</td><td>
Displays each week numbers of the current year, down the left side of the calendar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a309a10" doxytag="CALENDAR_WEEK_START_MONDAY" ></a>CALENDAR_WEEK_START_MONDAY</em>&nbsp;</td><td>
Starts the calendar week on Monday, instead of the default Sunday. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a311" doxytag="GFC::Gtk::CellRendererMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a311">CellRendererMode</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the editable mode of the <a class="el" href="classGFC_1_1Gtk_1_1CellRenderer.html">CellRenderer</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a311a17" doxytag="INERT" ></a>INERT</em>&nbsp;</td><td>
The cell is neither activatable nor editable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a311a18" doxytag="ACTIVATABLE" ></a>ACTIVATABLE</em>&nbsp;</td><td>
The cell can be activated. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a311a19" doxytag="EDITABLE" ></a>EDITABLE</em>&nbsp;</td><td>
The cell can be edited. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a310" doxytag="GFC::Gtk::CellRendererState" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a310">CellRendererState</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies how the <a class="el" href="classGFC_1_1Gtk_1_1CellRenderer.html">CellRenderer</a> should render a cell. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a310a12" doxytag="CELL_RENDERER_SELECTED" ></a>CELL_RENDERER_SELECTED</em>&nbsp;</td><td>
The cell can be selected. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a310a13" doxytag="CELL_RENDERER_PRELIT" ></a>CELL_RENDERER_PRELIT</em>&nbsp;</td><td>
The cell can be prelit. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a310a14" doxytag="CELL_RENDERER_INSENSITIVE" ></a>CELL_RENDERER_INSENSITIVE</em>&nbsp;</td><td>
The cell is insensitive. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a310a15" doxytag="CELL_RENDERER_SORTED" ></a>CELL_RENDERER_SORTED</em>&nbsp;</td><td>
The cell is in the sort column/row. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a310a16" doxytag="CELL_RENDERER_FOCUSED" ></a>CELL_RENDERER_FOCUSED</em>&nbsp;</td><td>
The cell can be focused. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a321" doxytag="GFC::Gtk::CornerType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a321">CornerType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies which corner a child widget should be placed in when packed into a <a class="el" href="classGFC_1_1Gtk_1_1ScrolledWindow.html">ScrolledWindow</a>. 
<p>
This is effectively the opposite of where the scroll bars are placed. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a321a66" doxytag="CORNER_BOTTOM_LEFT" ></a>CORNER_BOTTOM_LEFT</em>&nbsp;</td><td>
Place the scrollbars on the top and right of the widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a321a67" doxytag="CORNER_TOP_RIGHT" ></a>CORNER_TOP_RIGHT</em>&nbsp;</td><td>
Place the scrollbars on the left and bottom of the widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a321a68" doxytag="CORNER_BOTTOM_RIGHT" ></a>CORNER_BOTTOM_RIGHT</em>&nbsp;</td><td>
Place the scrollbars on the top and left of the widget. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a312" doxytag="GFC::Gtk::CurveType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a312">CurveType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The type of curve. 
<p>
Once set the curve will remain unchanged except when changing from a free curve to a linear or spline curve. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a312a20" doxytag="CURVE_TYPE_LINEAR" ></a>CURVE_TYPE_LINEAR</em>&nbsp;</td><td>
Linear interpolation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a312a21" doxytag="CURVE_TYPE_SPLINE" ></a>CURVE_TYPE_SPLINE</em>&nbsp;</td><td>
Spline interpolation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a312a22" doxytag="CURVE_TYPE_FREE" ></a>CURVE_TYPE_FREE</em>&nbsp;</td><td>
Free form curve. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a322" doxytag="GFC::Gtk::DeleteType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a322">DeleteType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Indicates the text deletion type; used by the <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">Entry</a> and Textview widgets. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a322a69" doxytag="DELETE_CHARS" ></a>DELETE_CHARS</em>&nbsp;</td><td>
Delete characters. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a70" doxytag="DELETE_WORD_ENDS" ></a>DELETE_WORD_ENDS</em>&nbsp;</td><td>
Delete only the portion of the word to the left/right of cursor if we're in the middle of a word. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a71" doxytag="DELETE_WORDS" ></a>DELETE_WORDS</em>&nbsp;</td><td>
Delete words. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a72" doxytag="DELETE_DISPLAY_LINES" ></a>DELETE_DISPLAY_LINES</em>&nbsp;</td><td>
Deletes the entire line of text from an <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">Entry</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a73" doxytag="DELETE_DISPLAY_LINE_ENDS" ></a>DELETE_DISPLAY_LINE_ENDS</em>&nbsp;</td><td>
Deletes text in an <a class="el" href="classGFC_1_1Gtk_1_1Entry.html">Entry</a>, from the current cursor position to the end of the line. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a74" doxytag="DELETE_PARAGRAPH_ENDS" ></a>DELETE_PARAGRAPH_ENDS</em>&nbsp;</td><td>
Like C-k in Emacs (or its reverse). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a75" doxytag="DELETE_PARAGRPHS" ></a>DELETE_PARAGRPHS</em>&nbsp;</td><td>
Like C-k in pico, kill whole line. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a322a76" doxytag="DELETE_WHITESPACE" ></a>DELETE_WHITESPACE</em>&nbsp;</td><td>
Like M-\ in Emacs. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a316" doxytag="GFC::Gtk::DestDefaults" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a316">DestDefaults</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the various types of action that will be taken on behalf of the user for a drag destination site. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a316a47" doxytag="DEST_DEFAULT_MOTION" ></a>DEST_DEFAULT_MOTION</em>&nbsp;</td><td>
If set for a widget, GTK+, during a drag over this widget will check if the drag matches this widget's list of possible targets and actions (GTK+ will then call gtk_drag_status() as appropriate). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a316a48" doxytag="DEST_DEFAULT_HIGHLIGHT" ></a>DEST_DEFAULT_HIGHLIGHT</em>&nbsp;</td><td>
If set for a widget, GTK+ will draw a highlight on this widget as long as a drag is over this widget and the widget drag format and action are acceptable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a316a49" doxytag="DEST_DEFAULT_DROP" ></a>DEST_DEFAULT_DROP</em>&nbsp;</td><td>
If set for a widget, when a drop occurs, GTK+ will will check if the drag matches this widget's list of possible targets and actions and if so, GTK+ will call gtk_drag_data_get() on behalf of the widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a316a50" doxytag="DEST_DEFAULT_ALL" ></a>DEST_DEFAULT_ALL</em>&nbsp;</td><td>
If set, specifies that all default actions should be taken. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a313" doxytag="GFC::Gtk::DialogFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a313">DialogFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Construction/destruction flags. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a313a24" doxytag="DIALOG_MODAL" ></a>DIALOG_MODAL</em>&nbsp;</td><td>
Calls Gtk::Window::set_modal(true). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a313a25" doxytag="DIALOG_DESTROY_WITH_PARENT" ></a>DIALOG_DESTROY_WITH_PARENT</em>&nbsp;</td><td>
Calls <a class="el" href="classGFC_1_1Gtk_1_1Window.html#z1073_17">Gtk::Window::set_destroy_with_parent()</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a313a26" doxytag="DIALOG_NO_SEPARATOR" ></a>DIALOG_NO_SEPARATOR</em>&nbsp;</td><td>
No separator bar above the action buttons. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a323" doxytag="GFC::Gtk::DirectionType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a323">DirectionType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Indicates direction; used by widgets such as <a class="el" href="classGFC_1_1Gtk_1_1Menu.html">Menu</a>, <a class="el" href="classGFC_1_1Gtk_1_1Notebook.html">Notebook</a>, ScrollWindow and <a class="el" href="classGFC_1_1Gtk_1_1TextView.html">TextView</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a323a77" doxytag="DIR_TAB_FORWARD" ></a>DIR_TAB_FORWARD</em>&nbsp;</td><td>
Tab in a forword direction. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a323a78" doxytag="DIR_TAB_BACKWARD" ></a>DIR_TAB_BACKWARD</em>&nbsp;</td><td>
Tab in a backward direction. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a323a79" doxytag="DIR_UP" ></a>DIR_UP</em>&nbsp;</td><td>
Up. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a323a80" doxytag="DIR_DOWN" ></a>DIR_DOWN</em>&nbsp;</td><td>
Down. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a323a81" doxytag="DIR_LEFT" ></a>DIR_LEFT</em>&nbsp;</td><td>
Left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a323a82" doxytag="DIR_RIGHT" ></a>DIR_RIGHT</em>&nbsp;</td><td>
Right. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a324" doxytag="GFC::Gtk::ExpanderStyle" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a324">ExpanderStyle</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
ExpanderStyle is used by <a class="el" href="classGFC_1_1Gtk_1_1Style.html#z850_23">Style::draw_expander()</a> to indicate the type of expander to draw. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a324a83" doxytag="EXPANDER_COLLAPSED" ></a>EXPANDER_COLLAPSED</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Expander.html">Expander</a> collapsed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a324a84" doxytag="EXPANDER_SEMI_COLLAPSED" ></a>EXPANDER_SEMI_COLLAPSED</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Expander.html">Expander</a> semi-collapsed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a324a85" doxytag="EXPANDER_SEMI_EXPANDED" ></a>EXPANDER_SEMI_EXPANDED</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Expander.html">Expander</a> semi-expanded. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a324a86" doxytag="EXPANDER_EXPANDED" ></a>EXPANDER_EXPANDED</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Expander.html">Expander</a> expanded. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a347" doxytag="GFC::Gtk::FileChooserAction" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a347">FileChooserAction</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Describes whether a <a class="el" href="classGFC_1_1Gtk_1_1FileChooser.html">FileChooser</a> is being used to open existing files or to save to a possibly new file. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a347a186" doxytag="FILE_CHOOSER_ACTION_OPEN" ></a>FILE_CHOOSER_ACTION_OPEN</em>&nbsp;</td><td>
Indicates open mode; The file chooser will only let the user pick an existing file. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a347a187" doxytag="FILE_CHOOSER_ACTION_SAVE" ></a>FILE_CHOOSER_ACTION_SAVE</em>&nbsp;</td><td>
Indicates save mode; The file chooser will let the user pick an existing file, or type in a new filename. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a347a188" doxytag="FILE_CHOOSER_ACTION_SELECT_FOLDER" ></a>FILE_CHOOSER_ACTION_SELECT_FOLDER</em>&nbsp;</td><td>
Indicates an Open mode for selecting folders; The file chooser will let the user pick an existing folder. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a347a189" doxytag="FILE_CHOOSER_ACTION_CREATE_FOLDER" ></a>FILE_CHOOSER_ACTION_CREATE_FOLDER</em>&nbsp;</td><td>
Indicates a mode for creating a new folder; The file chooser will let the user name an existing or new folder. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a348" doxytag="GFC::Gtk::FileChooserError" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a348">FileChooserError</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
These identify the various errors that can occur while calling <a class="el" href="classGFC_1_1Gtk_1_1FileChooser.html">FileChooser</a> functions. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a348a190" doxytag="FILE_CHOOSER_ERROR_NONEXISTENT" ></a>FILE_CHOOSER_ERROR_NONEXISTENT</em>&nbsp;</td><td>
Indicates that a file does not exist. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a348a191" doxytag="FILE_CHOOSER_ERROR_BAD_FILENAME" ></a>FILE_CHOOSER_ERROR_BAD_FILENAME</em>&nbsp;</td><td>
Indicates a malformed filename. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a349" doxytag="GFC::Gtk::FileFilterFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a349">FileFilterFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used by <a class="el" href="classGFC_1_1Gtk_1_1FileFilter.html#z536_6">Gtk::FileFilter::add_custom()</a> to let GTK+ know what file information needs to be retrieved. 
<p>
This avoids retrieving expensive information when it isn't needed by your filter function. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a349a193" doxytag="FILE_FILTER_FILENAME" ></a>FILE_FILTER_FILENAME</em>&nbsp;</td><td>
Get filename. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a349a194" doxytag="FILE_FILTER_URI" ></a>FILE_FILTER_URI</em>&nbsp;</td><td>
Get URI. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a349a195" doxytag="FILE_FILTER_DISPLAY_NAME" ></a>FILE_FILTER_DISPLAY_NAME</em>&nbsp;</td><td>
Get display name. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a349a196" doxytag="FILE_FILTER_MIME_TYPE" ></a>FILE_FILTER_MIME_TYPE</em>&nbsp;</td><td>
Get mime type. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a350" doxytag="GFC::Gtk::IconLookupFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a350">IconLookupFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The flags used to specify options for <a class="el" href="classGFC_1_1Gtk_1_1IconTheme.html#z591_9">Gtk::IconTheme::lookup_icon()</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a350a198" doxytag="ICON_LOOKUP_NO_SVG" ></a>ICON_LOOKUP_NO_SVG</em>&nbsp;</td><td>
Never return SVG icons, even if gdk-pixbuf supports them; Cannot be used together with <a class="el" href="namespaceGFC_1_1Gtk.html#a350a199">Gtk::ICON_LOOKUP_FORCE_SVG</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a350a199" doxytag="ICON_LOOKUP_FORCE_SVG" ></a>ICON_LOOKUP_FORCE_SVG</em>&nbsp;</td><td>
Return SVG icons, <a class="el" href="namespaceGFC_1_1Gtk.html#a350a198">Gtk::ICON_LOOKUP_NO_SVG</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a350a200" doxytag="ICON_LOOKUP_USE_BUILTIN" ></a>ICON_LOOKUP_USE_BUILTIN</em>&nbsp;</td><td>
When passed to Gtk::IconTtheme::lookup_icon() includes builtin icons as well as files. 
<p>
For a builtin icon, <a class="el" href="classGFC_1_1Gtk_1_1IconInfo.html#z585_3">Gtk::IconInfo::get_filename()</a> returns null and you need to call <a class="el" href="classGFC_1_1Gtk_1_1IconInfo.html#z585_4">Gtk::IconInfo::get_builtin_pixbuf()</a>. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a325" doxytag="GFC::Gtk::IconSize" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The Icon size to render. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a325a87" doxytag="ICON_SIZE_INVALID" ></a>ICON_SIZE_INVALID</em>&nbsp;</td><td>
Invalid. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a88" doxytag="ICON_SIZE_MENU" ></a>ICON_SIZE_MENU</em>&nbsp;</td><td>
An icon size suitable for menus. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a89" doxytag="ICON_SIZE_SMALL_TOOLBAR" ></a>ICON_SIZE_SMALL_TOOLBAR</em>&nbsp;</td><td>
An icon size suitable for small toolbars. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a90" doxytag="ICON_SIZE_LARGE_TOOLBAR" ></a>ICON_SIZE_LARGE_TOOLBAR</em>&nbsp;</td><td>
An icon size suitable for large toolbars. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a91" doxytag="ICON_SIZE_BUTTON" ></a>ICON_SIZE_BUTTON</em>&nbsp;</td><td>
An icon size suitable for buttons. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a92" doxytag="ICON_SIZE_DND" ></a>ICON_SIZE_DND</em>&nbsp;</td><td>
An icon size suitable for drag-and-drop. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a325a93" doxytag="ICON_SIZE_DIALOG" ></a>ICON_SIZE_DIALOG</em>&nbsp;</td><td>
An icon size suitable for dialogs. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a351" doxytag="GFC::Gtk::IconThemeError" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a351">IconThemeError</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Error codes for <a class="el" href="classGFC_1_1Gtk_1_1IconTheme.html">Gtk::IconTheme</a> operations. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a351a201" doxytag="ICON_THEME_NOT_FOUND" ></a>ICON_THEME_NOT_FOUND</em>&nbsp;</td><td>
The icon specified does not exist in the theme. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a351a202" doxytag="ICON_THEME_FAILED" ></a>ICON_THEME_FAILED</em>&nbsp;</td><td>
An unspecified error occurred. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a352" doxytag="GFC::Gtk::ImageType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a352">ImageType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Describes the image data representation used by a GtkImage. 
<p>
If you want to get the image from the widget, you can only get the currently-stored representation. e.g. if the get_storage_type() returns IMAGE_PIXBUF, then you can call get_pixbuf() but not get_stock(). For empty images, you can request any storage type (call any of the "get" functions), but they will all return null values. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a352a203" doxytag="IMAGE_EMPTY" ></a>IMAGE_EMPTY</em>&nbsp;</td><td>
There is no image displayed by the widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a204" doxytag="IMAGE_PIXMAP" ></a>IMAGE_PIXMAP</em>&nbsp;</td><td>
The widget contains a <a class="el" href="classGFC_1_1Gdk_1_1Pixmap.html">Gdk::Pixmap</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a205" doxytag="IMAGE_IMAGE" ></a>IMAGE_IMAGE</em>&nbsp;</td><td>
The widget contains a <a class="el" href="classGFC_1_1Gdk_1_1Image.html">Gdk::Image</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a206" doxytag="IMAGE_PIXBUF" ></a>IMAGE_PIXBUF</em>&nbsp;</td><td>
The widget contains a <a class="el" href="classGFC_1_1Gdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a207" doxytag="IMAGE_STOCK" ></a>IMAGE_STOCK</em>&nbsp;</td><td>
The widget contains a stock icon name. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a208" doxytag="IMAGE_ICON_SET" ></a>IMAGE_ICON_SET</em>&nbsp;</td><td>
The widget contains a <a class="el" href="classGFC_1_1Gtk_1_1IconSet.html">Gtk::IconSet</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a352a209" doxytag="IMAGE_ANIMATION" ></a>IMAGE_ANIMATION</em>&nbsp;</td><td>
The widget contains a <a class="el" href="classGFC_1_1Gdk_1_1PixbufAnimation.html">Gdk::PixbufAnimation</a>. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a326" doxytag="GFC::Gtk::Justification" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a326">Justification</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used for justifying the text inside a <a class="el" href="classGFC_1_1Gtk_1_1Label.html">Label</a> widget (see also <a class="el" href="classGFC_1_1Gtk_1_1Alignment.html">Alignment</a>). 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a326a94" doxytag="JUSTIFY_LEFT" ></a>JUSTIFY_LEFT</em>&nbsp;</td><td>
The text is placed at the left edge of the label. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a326a95" doxytag="JUSTIFY_RIGHT" ></a>JUSTIFY_RIGHT</em>&nbsp;</td><td>
The text is placed at the right edge of the label. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a326a96" doxytag="JUSTIFY_CENTER" ></a>JUSTIFY_CENTER</em>&nbsp;</td><td>
The text is placed in the center of the label. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a326a97" doxytag="JUSTIFY_FILL" ></a>JUSTIFY_FILL</em>&nbsp;</td><td>
The text is placed is distributed across the label. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a353" doxytag="GFC::Gtk::MenuDirectionType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a353">MenuDirectionType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
MenuDirectionType represents the directional movements within a menu. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a353a210" doxytag="MENU_DIR_PARENT" ></a>MENU_DIR_PARENT</em>&nbsp;</td><td>
To the parent menu shell. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a353a211" doxytag="MENU_DIR_CHILD" ></a>MENU_DIR_CHILD</em>&nbsp;</td><td>
To the submenu, if any, associated with the item. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a353a212" doxytag="MENU_DIR_NEXT" ></a>MENU_DIR_NEXT</em>&nbsp;</td><td>
To the next menu item. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a353a213" doxytag="MENU_DIR_PREV" ></a>MENU_DIR_PREV</em>&nbsp;</td><td>
To the previous menu item. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a354" doxytag="GFC::Gtk::MessageType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a354">MessageType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The type of message being displayed in the dialog. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a354a214" doxytag="MESSAGE_INFO" ></a>MESSAGE_INFO</em>&nbsp;</td><td>
Informational message. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a354a215" doxytag="MESSAGE_WARNING" ></a>MESSAGE_WARNING</em>&nbsp;</td><td>
Nonfatal warning message. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a354a216" doxytag="MESSAGE_QUESTION" ></a>MESSAGE_QUESTION</em>&nbsp;</td><td>
Question requiring a choice. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a354a217" doxytag="MESSAGE_ERROR" ></a>MESSAGE_ERROR</em>&nbsp;</td><td>
Fatal error message. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a327" doxytag="GFC::Gtk::MetricType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a327">MetricType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used to define the unit type for <a class="el" href="classGFC_1_1Gtk_1_1Ruler.html">Ruler</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a327a98" doxytag="PIXELS" ></a>PIXELS</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Ruler.html">Ruler</a> with pixel units. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a327a99" doxytag="INCHES" ></a>INCHES</em>&nbsp;</td><td>
<a class="el" href="classGFC_1_1Gtk_1_1Ruler.html">Ruler</a> with inch units. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a328" doxytag="GFC::Gtk::MovementStep" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a328">MovementStep</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Describes the movement of the insertion point (cursor). 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a328a101" doxytag="MOVEMENT_LOGICAL_POSITIONS" ></a>MOVEMENT_LOGICAL_POSITIONS</em>&nbsp;</td><td>
Move by forward/back graphemes. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a102" doxytag="MOVEMENT_VISUAL_POSITIONS" ></a>MOVEMENT_VISUAL_POSITIONS</em>&nbsp;</td><td>
Move by left/right graphemes. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a103" doxytag="MOVEMENT_WORDS" ></a>MOVEMENT_WORDS</em>&nbsp;</td><td>
Move by forward/back words. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a104" doxytag="MOVEMENT_DISPLAY_LINES" ></a>MOVEMENT_DISPLAY_LINES</em>&nbsp;</td><td>
Move up/down lines (wrapped lines). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a105" doxytag="MOVEMENT_DISPLAY_LINE_ENDS" ></a>MOVEMENT_DISPLAY_LINE_ENDS</em>&nbsp;</td><td>
Move up/down lines (wrapped lines). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a106" doxytag="MOVEMENT_PARAGRAPHS" ></a>MOVEMENT_PARAGRAPHS</em>&nbsp;</td><td>
Move up/down paragraphs (newline-ended lines). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a107" doxytag="MOVEMENT_PARAGRAPHS_ENDS" ></a>MOVEMENT_PARAGRAPHS_ENDS</em>&nbsp;</td><td>
Move to either end of a paragraph. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a108" doxytag="MOVEMENT_PAGES" ></a>MOVEMENT_PAGES</em>&nbsp;</td><td>
Move by pages. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a109" doxytag="MOVEMENT_BUFFER_ENDS" ></a>MOVEMENT_BUFFER_ENDS</em>&nbsp;</td><td>
Move to ends of the buffer. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a328a110" doxytag="MOVEMENT_HORIZONTAL_PAGES" ></a>MOVEMENT_HORIZONTAL_PAGES</em>&nbsp;</td><td>
Move horizontally by pages. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a356" doxytag="GFC::Gtk::NotebookTab" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a356">NotebookTab</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
NotebookTab defines the notebook tab which received the focus when a home or end key is pressed on the keyboard. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a356a224" doxytag="NOTEBOOK_TAB_FIRST" ></a>NOTEBOOK_TAB_FIRST</em>&nbsp;</td><td>
The first tab in the notebook page list (GDK_Home or GDK_KP_Home). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a356a225" doxytag="NOTEBOOK_TAB_LAST" ></a>NOTEBOOK_TAB_LAST</em>&nbsp;</td><td>
The last tab in the notebook page list (GKD_End or GDK_KP_End). </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a329" doxytag="GFC::Gtk::Orientation" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a329">Orientation</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used by <a class="el" href="classGFC_1_1Gtk_1_1Range.html">Range</a> and <a class="el" href="classGFC_1_1Gtk_1_1Toolbar.html">Toolbar</a> to indicate the orientation of the widget. 
<p>
Also used in <a class="el" href="classGFC_1_1Gtk_1_1Style.html">Style</a> to indicate the orientation of the widget to draw (e.g. draw_slider(), draw_handle()). <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a329a111" doxytag="ORIENTATION_HORIZONTAL" ></a>ORIENTATION_HORIZONTAL</em>&nbsp;</td><td>
Horizontal orientation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a329a112" doxytag="ORIENTATION_VERTICAL" ></a>ORIENTATION_VERTICAL</em>&nbsp;</td><td>
Vertical orientation. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a330" doxytag="GFC::Gtk::PackType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a330">PackType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Represents the packing location of <a class="el" href="classGFC_1_1Gtk_1_1Box.html">Box</a> children (see <a class="el" href="classGFC_1_1Gtk_1_1VBox.html">VBox</a>, <a class="el" href="classGFC_1_1Gtk_1_1HBox.html">HBox</a> and <a class="el" href="classGFC_1_1Gtk_1_1ButtonBox.html">ButtonBox</a>). 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a330a113" doxytag="PACK_START" ></a>PACK_START</em>&nbsp;</td><td>
The child is packed into the start of the box. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a330a114" doxytag="PACK_END" ></a>PACK_END</em>&nbsp;</td><td>
The child is packed into the end of the box. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a331" doxytag="GFC::Gtk::PolicyType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a331">PolicyType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Determines when a scroll bar will be visible. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a331a115" doxytag="POLICY_ALWAYS" ></a>POLICY_ALWAYS</em>&nbsp;</td><td>
The scrollbar is always visible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a331a116" doxytag="POLICY_AUTOMATIC" ></a>POLICY_AUTOMATIC</em>&nbsp;</td><td>
The scrollbar will appear and disappear as necessary. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a331a117" doxytag="POLICY_NEVER" ></a>POLICY_NEVER</em>&nbsp;</td><td>
The scrollbar will never appear. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a332" doxytag="GFC::Gtk::PositionType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a332">PositionType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Indicates edge position. 
<p>
Used by <a class="el" href="classGFC_1_1Gtk_1_1HandleBox.html">HandleBox</a>, <a class="el" href="classGFC_1_1Gtk_1_1Notebook.html">Notebook</a> and <a class="el" href="classGFC_1_1Gtk_1_1Scale.html">Scale</a> widgets, and the <a class="el" href="classGFC_1_1Gtk_1_1Style.html">Style</a> "draw" methods. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a332a118" doxytag="POS_LEFT" ></a>POS_LEFT</em>&nbsp;</td><td>
Position left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a332a119" doxytag="POS_RIGHT" ></a>POS_RIGHT</em>&nbsp;</td><td>
Position right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a332a120" doxytag="POS_TOP" ></a>POS_TOP</em>&nbsp;</td><td>
Position top. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a332a121" doxytag="POS_BOTTOM" ></a>POS_BOTTOM</em>&nbsp;</td><td>
Position bottom. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a357" doxytag="GFC::Gtk::ProgressBarOrientation" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a357">ProgressBarOrientation</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Represents the possible orientations and growth directions for the visible progress bar. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a357a226" doxytag="PROGRESS_LEFT_TO_RIGHT" ></a>PROGRESS_LEFT_TO_RIGHT</em>&nbsp;</td><td>
A horizontal progress bar growing from left to right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a357a227" doxytag="PROGRESS_RIGHT_TO_LEFT" ></a>PROGRESS_RIGHT_TO_LEFT</em>&nbsp;</td><td>
A horizontal progress bar growing from right to left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a357a228" doxytag="PROGRESS_BOTTOM_TO_TOP" ></a>PROGRESS_BOTTOM_TO_TOP</em>&nbsp;</td><td>
A vertical progress bar growing from bottom to top. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a357a229" doxytag="PROGRESS_TOP_TO_BOTTOM" ></a>PROGRESS_TOP_TO_BOTTOM</em>&nbsp;</td><td>
A vertical progress bar growing from top to bottom. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a333" doxytag="GFC::Gtk::ReliefStyle" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a333">ReliefStyle</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the relief style of the edges a <a class="el" href="classGFC_1_1Gtk_1_1Button.html">Button</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a333a122" doxytag="RELIEF_NORMAL" ></a>RELIEF_NORMAL</em>&nbsp;</td><td>
Normal edge thickness. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a333a123" doxytag="RELIEF_HALF" ></a>RELIEF_HALF</em>&nbsp;</td><td>
Half the normal edge thickness. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a333a124" doxytag="RELIEF_NONE" ></a>RELIEF_NONE</em>&nbsp;</td><td>
No edge. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a334" doxytag="GFC::Gtk::ResizeMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a334">ResizeMode</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Determines whether a resize request will be passed to a container's parent, queued for later execution or executed immediately. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a334a125" doxytag="RESIZE_PARENT" ></a>RESIZE_PARENT</em>&nbsp;</td><td>
Pass resize request to the parent. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a334a126" doxytag="RESIZE_QUEUE" ></a>RESIZE_QUEUE</em>&nbsp;</td><td>
Queue resizes on this widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a334a127" doxytag="RESIZE_IMMEDIATE" ></a>RESIZE_IMMEDIATE</em>&nbsp;</td><td>
Perform the resizes now. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a314" doxytag="GFC::Gtk::ResponseType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a314">ResponseType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used to indicate the response_id of the action widget. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a314a27" doxytag="RESPONSE_NONE" ></a>RESPONSE_NONE</em>&nbsp;</td><td>
The action widget has no response_id. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a28" doxytag="RESPONSE_REJECT" ></a>RESPONSE_REJECT</em>&nbsp;</td><td>
Returned only if passed as the response for the action widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a29" doxytag="RESPONSE_ACCEPT" ></a>RESPONSE_ACCEPT</em>&nbsp;</td><td>
Returned only if passed as the response for the action widget. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a30" doxytag="RESPONSE_DELETE_EVENT" ></a>RESPONSE_DELETE_EVENT</em>&nbsp;</td><td>
The dialog received a 'delete' event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a31" doxytag="RESPONSE_OK" ></a>RESPONSE_OK</em>&nbsp;</td><td>
The OK response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a32" doxytag="RESPONSE_CANCEL" ></a>RESPONSE_CANCEL</em>&nbsp;</td><td>
The cancel response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a33" doxytag="RESPONSE_CLOSE" ></a>RESPONSE_CLOSE</em>&nbsp;</td><td>
The close response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a34" doxytag="RESPONSE_YES" ></a>RESPONSE_YES</em>&nbsp;</td><td>
The yes response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a35" doxytag="RESPONSE_NO" ></a>RESPONSE_NO</em>&nbsp;</td><td>
The no response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a36" doxytag="RESPONSE_APPLY" ></a>RESPONSE_APPLY</em>&nbsp;</td><td>
The apply response, when the action widget is clicked. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a314a37" doxytag="RESPONSE_HELP" ></a>RESPONSE_HELP</em>&nbsp;</td><td>
The help response, when the action widget is clicked. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a335" doxytag="GFC::Gtk::ScrollType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a335">ScrollType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Passed as a signal argument by <a class="el" href="classGFC_1_1Gtk_1_1Range.html">Range</a>, <a class="el" href="classGFC_1_1Gtk_1_1Scrollbar.html">Scrollbar</a>, <a class="el" href="classGFC_1_1Gtk_1_1SpinButton.html">SpinButton</a> and <a class="el" href="classGFC_1_1Gtk_1_1ScrolledWindow.html">ScrolledWindow</a> widgets to indicate the way the user has moved the slider or thumb. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a335a128" doxytag="SCROLL_NONE" ></a>SCROLL_NONE</em>&nbsp;</td><td>
No thumb movement. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a129" doxytag="SCROLL_JUMP" ></a>SCROLL_JUMP</em>&nbsp;</td><td>
Used by CList, which is deprecated. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a130" doxytag="SCROLL_STEP_BACKWARD" ></a>SCROLL_STEP_BACKWARD</em>&nbsp;</td><td>
The thumb moved backwards by a small amount in response to a mouse click on the arrow at the top of a scrollbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a131" doxytag="SCROLL_STEP_FORWARD" ></a>SCROLL_STEP_FORWARD</em>&nbsp;</td><td>
The thumb moved forwards by a small amount in response to a mouse click on the arrow at the bottom of a scrollbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a132" doxytag="SCROLL_PAGE_BACKWARD" ></a>SCROLL_PAGE_BACKWARD</em>&nbsp;</td><td>
The thumb moved backwards by a large amount in response to a mouse click in the trough between the thumb and the top arrow. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a133" doxytag="SCROLL_PAGE_FORWARD" ></a>SCROLL_PAGE_FORWARD</em>&nbsp;</td><td>
The thumb moved forwards by a large amount in response to a mouse click in the trough between the thumb and the bottom arrow. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a134" doxytag="SCROLL_STEP_UP" ></a>SCROLL_STEP_UP</em>&nbsp;</td><td>
Same as SCROLL_STEP_BACKWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a135" doxytag="SCROLL_STEP_DOWN" ></a>SCROLL_STEP_DOWN</em>&nbsp;</td><td>
Same as SCROLL_STEP_FORWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a136" doxytag="SCROLL_PAGE_UP" ></a>SCROLL_PAGE_UP</em>&nbsp;</td><td>
Same as SCROLL_PAGE_BACKWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a137" doxytag="SCROLL_PAGE_DOWN" ></a>SCROLL_PAGE_DOWN</em>&nbsp;</td><td>
Same as SCROLL_PAGE_FORWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a138" doxytag="SCROLL_STEP_LEFT" ></a>SCROLL_STEP_LEFT</em>&nbsp;</td><td>
Same as SCROLL_STEP_BACKWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a139" doxytag="SCROLL_STEP_RIGHT" ></a>SCROLL_STEP_RIGHT</em>&nbsp;</td><td>
Same as SCROLL_STEP_FORWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a140" doxytag="SCROLL_PAGE_LEFT" ></a>SCROLL_PAGE_LEFT</em>&nbsp;</td><td>
Same as SCROLL_PAGE_BACKWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a141" doxytag="SCROLL_PAGE_RIGHT" ></a>SCROLL_PAGE_RIGHT</em>&nbsp;</td><td>
Same as SCROLL_PAGE_FORWARD. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a142" doxytag="SCROLL_START" ></a>SCROLL_START</em>&nbsp;</td><td>
The user has started to scroll the thumb. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a335a143" doxytag="SCROLL_END" ></a>SCROLL_END</em>&nbsp;</td><td>
The user has finished scrolling the thumb. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a336" doxytag="GFC::Gtk::SelectionMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a336">SelectionMode</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the selection mode for a <a class="el" href="classGFC_1_1Gtk_1_1TreeView.html">TreeView</a> widget. 
<p>
This allows you to set whether only one or more than one item can be selected at a time. Note that setting the widget's selection mode to one of SELECTION_BROWSE or SELECTION_SINGLE will cause all the items in the <a class="el" href="classGFC_1_1Gtk_1_1TreeView.html">TreeView</a> to become deselected. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a336a144" doxytag="SELECTION_NONE" ></a>SELECTION_NONE</em>&nbsp;</td><td>
No selection. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a336a145" doxytag="SELECTION_SINGLE" ></a>SELECTION_SINGLE</em>&nbsp;</td><td>
The user can select only one item at a time; When you click and drag the mouse, only the focus changes; The selection changes only when the mouse button is released on the same item it was pressed on. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a336a146" doxytag="SELECTION_BROWSE" ></a>SELECTION_BROWSE</em>&nbsp;</td><td>
The user can select only one item at a time; The selection changes when the mouse button is pressed, not when it's released; When you click and drag the mouse, both the focus and the selection change. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a336a147" doxytag="SELECTION_MULTIPLE" ></a>SELECTION_MULTIPLE</em>&nbsp;</td><td>
The user can select multiple items at the same time. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a336a148" doxytag="SELECTION_EXTENDED" ></a>SELECTION_EXTENDED</em>&nbsp;</td><td>
Not used any longer. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a337" doxytag="GFC::Gtk::ShadowType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a337">ShadowType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used to change the appearance of an outline typically provided by a <a class="el" href="classGFC_1_1Gtk_1_1Frame.html">Frame</a>. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a337a149" doxytag="SHADOW_NONE" ></a>SHADOW_NONE</em>&nbsp;</td><td>
No outline. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a337a150" doxytag="SHADOW_IN" ></a>SHADOW_IN</em>&nbsp;</td><td>
The outline is bevelled inwards. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a337a151" doxytag="SHADOW_OUT" ></a>SHADOW_OUT</em>&nbsp;</td><td>
The outline is bevelled outwards like a button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a337a152" doxytag="SHADOW_ETCHED_IN" ></a>SHADOW_ETCHED_IN</em>&nbsp;</td><td>
The outline itself is an inward bevel. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a337a153" doxytag="SHADOW_ETCHED_OUT" ></a>SHADOW_ETCHED_OUT</em>&nbsp;</td><td>
The outline itself is an outward bevel. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a338" doxytag="GFC::Gtk::SizeGroupMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a338">SizeGroupMode</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The mode of the size group determines the directions in which the size group effects the requested sizes of its component widgets. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a338a154" doxytag="SIZE_GROUP_NONE" ></a>SIZE_GROUP_NONE</em>&nbsp;</td><td>
Group has no effect. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a338a155" doxytag="SIZE_GROUP_HORIZONTAL" ></a>SIZE_GROUP_HORIZONTAL</em>&nbsp;</td><td>
Group effects horizontal requisition. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a338a156" doxytag="SIZE_GROUP_VERTICAL" ></a>SIZE_GROUP_VERTICAL</em>&nbsp;</td><td>
Group effects vertical requisition. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a338a157" doxytag="SIZE_GROUP_BOTH" ></a>SIZE_GROUP_BOTH</em>&nbsp;</td><td>
Group effects both horizontal and vertical requisition. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a339" doxytag="GFC::Gtk::SortType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a339">SortType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Determines the direction of a sort. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a339a158" doxytag="SORT_ASCENDING" ></a>SORT_ASCENDING</em>&nbsp;</td><td>
Sorting is in ascending order. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a339a159" doxytag="SORT_DESCENDING" ></a>SORT_DESCENDING</em>&nbsp;</td><td>
Sorting is in descending order. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a359" doxytag="GFC::Gtk::SpinButtonUpdatePolicy" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a359">SpinButtonUpdatePolicy</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
SpinButtonUpdatePolicy determines how the spin button should be updated. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a359a237" doxytag="UPDATE_ALWAYS" ></a>UPDATE_ALWAYS</em>&nbsp;</td><td>
When refreshing your <a class="el" href="classGFC_1_1Gtk_1_1SpinButton.html">SpinButton</a>, the value is always displayed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a359a238" doxytag="UPDATE_IF_VALID" ></a>UPDATE_IF_VALID</em>&nbsp;</td><td>
When refreshing your <a class="el" href="classGFC_1_1Gtk_1_1SpinButton.html">SpinButton</a>, the value is only displayed if it is valid within the bounds of the spin button's <a class="el" href="classGFC_1_1Gtk_1_1Adjustment.html">Adjustment</a>. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a358" doxytag="GFC::Gtk::SpinType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a358">SpinType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
SpinType defines the types of spin movement that can occur. 
<p>
The ammount of spin is defined by the spin buttons adjustment. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a358a230" doxytag="SPIN_STEP_FORWARD" ></a>SPIN_STEP_FORWARD</em>&nbsp;</td><td>
Spin forward by one step value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a231" doxytag="SPIN_STEP_BACKWARD" ></a>SPIN_STEP_BACKWARD</em>&nbsp;</td><td>
Spin backward by one step value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a232" doxytag="SPIN_PAGE_FORWARD" ></a>SPIN_PAGE_FORWARD</em>&nbsp;</td><td>
Spin forward by one page value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a233" doxytag="SPIN_PAGE_BACKWARD" ></a>SPIN_PAGE_BACKWARD</em>&nbsp;</td><td>
Spin backward by one page value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a234" doxytag="SPIN_HOME" ></a>SPIN_HOME</em>&nbsp;</td><td>
Spin to the minimum value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a235" doxytag="SPIN_END" ></a>SPIN_END</em>&nbsp;</td><td>
Spin to maximum value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a358a236" doxytag="SPIN_USER_DEFINED" ></a>SPIN_USER_DEFINED</em>&nbsp;</td><td>
Spin by an ammount specified by the user. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a340" doxytag="GFC::Gtk::StateType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a340">StateType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This type indicates the current state of a widget; the state determines how the widget is drawn. 
<p>
The StateType enumeration is also used to identify different colors in a <a class="el" href="classGFC_1_1Gtk_1_1Style.html">Style</a> for drawing, so states can be used for subparts of a widget as well as entire widgets. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a340a160" doxytag="STATE_NORMAL" ></a>STATE_NORMAL</em>&nbsp;</td><td>
State during normal operation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a340a161" doxytag="STATE_ACTIVE" ></a>STATE_ACTIVE</em>&nbsp;</td><td>
State of a currently active widget, such as a depressed button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a340a162" doxytag="STATE_PRELIGHT" ></a>STATE_PRELIGHT</em>&nbsp;</td><td>
State indicating that the mouse pointer is over the widget and the widget responds to mouse clicks. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a340a163" doxytag="STATE_SELECTED" ></a>STATE_SELECTED</em>&nbsp;</td><td>
State of a selected item, such the selected row in a list. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a340a164" doxytag="STATE_INSENSITIVE" ></a>STATE_INSENSITIVE</em>&nbsp;</td><td>
State indicating that the widget is unresponsive to user actions. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a315" doxytag="GFC::Gtk::StockButtonType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a315">StockButtonType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used to indicate a stock button and response_id to add to the dialog. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a315a38" doxytag="STOCK_BUTTON_OK" ></a>STOCK_BUTTON_OK</em>&nbsp;</td><td>
A stock OK button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a31">Gtk::RESPONSE_OK</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a39" doxytag="STOCK_BUTTON_CANCEL" ></a>STOCK_BUTTON_CANCEL</em>&nbsp;</td><td>
A stock CANCEL button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a32">Gtk::RESPONSE_CANCEL</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a40" doxytag="STOCK_BUTTON_CLOSE" ></a>STOCK_BUTTON_CLOSE</em>&nbsp;</td><td>
A stock CLOSE button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a33">Gtk::RESPONSE_CLOSE</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a41" doxytag="STOCK_BUTTON_YES" ></a>STOCK_BUTTON_YES</em>&nbsp;</td><td>
A stock YES button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a34">Gtk::RESPONSE_YES</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a42" doxytag="STOCK_BUTTON_NO" ></a>STOCK_BUTTON_NO</em>&nbsp;</td><td>
A stock NO button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a35">Gtk::RESPONSE_NO</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a43" doxytag="STOCK_BUTTON_APPLY" ></a>STOCK_BUTTON_APPLY</em>&nbsp;</td><td>
A stock APPLY button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a36">Gtk::RESPONSE_APPLY</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a315a44" doxytag="STOCK_BUTTON_HELP" ></a>STOCK_BUTTON_HELP</em>&nbsp;</td><td>
A stock HELP button that returns the id <a class="el" href="namespaceGFC_1_1Gtk.html#a314a37">Gtk::RESPONSE_HELP</a>. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a317" doxytag="GFC::Gtk::TargetFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a317">TargetFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the constraints on an entry in a TargetTable. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a317a51" doxytag="TARGET_SAME_APP" ></a>TARGET_SAME_APP</em>&nbsp;</td><td>
If this is set, the target will only be selected for drags within a single application. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a317a52" doxytag="TARGET_SAME_WIDGET" ></a>TARGET_SAME_WIDGET</em>&nbsp;</td><td>
If this is set, the target will only be selected for drags within a single widget. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a341" doxytag="GFC::Gtk::TextDirection" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Text direction (right-to-left or left-to-right). 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a341a165" doxytag="TEXT_DIR_NONE" ></a>TEXT_DIR_NONE</em>&nbsp;</td><td>
In TextLayout, means means draw cursors for both left-to-right and right-to-left insertion. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a341a166" doxytag="TEXT_DIR_LTR" ></a>TEXT_DIR_LTR</em>&nbsp;</td><td>
Text direction left-to-right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a341a167" doxytag="TEXT_DIR_RTL" ></a>TEXT_DIR_RTL</em>&nbsp;</td><td>
Text direction right-to-left. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a360" doxytag="GFC::Gtk::TextSearchFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a360">TextSearchFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
TextSearchFlags is used to specify how a text iterator should search through a text buffer for a text string. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a360a240" doxytag="TEXT_SEARCH_VISIBLE_ONLY" ></a>TEXT_SEARCH_VISIBLE_ONLY</em>&nbsp;</td><td>
The matching text may have invisible text interspersed in it, that is, the text may possibly be a noncontiguous subsequence of the matched range. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a360a241" doxytag="TEXT_SEARCH_TEXT_ONLY" ></a>TEXT_SEARCH_TEXT_ONLY</em>&nbsp;</td><td>
The matching text may have pixbufs or child widgets mixed inside the matched range. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a361" doxytag="GFC::Gtk::TextWindowType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a361">TextWindowType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
TextWindowType indentifies the possible windows that correspond to an area of the text view. 
<p>
These are the overall widget window, the border windows on the left, right, top, bottom, and the window that displays the text buffer. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a361a242" doxytag="TEXT_WINDOW_PRIVATE" ></a>TEXT_WINDOW_PRIVATE</em>&nbsp;</td><td>
Private. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a243" doxytag="TEXT_WINDOW_WIDGET" ></a>TEXT_WINDOW_WIDGET</em>&nbsp;</td><td>
The overall widget window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a244" doxytag="TEXT_WINDOW_TEXT" ></a>TEXT_WINDOW_TEXT</em>&nbsp;</td><td>
The window displaying the text buffer. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a245" doxytag="TEXT_WINDOW_LEFT" ></a>TEXT_WINDOW_LEFT</em>&nbsp;</td><td>
The border window on the left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a246" doxytag="TEXT_WINDOW_RIGHT" ></a>TEXT_WINDOW_RIGHT</em>&nbsp;</td><td>
The border window on the right. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a247" doxytag="TEXT_WINDOW_TOP" ></a>TEXT_WINDOW_TOP</em>&nbsp;</td><td>
The border window on the top. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a361a248" doxytag="TEXT_WINDOW_BOTTOM" ></a>TEXT_WINDOW_BOTTOM</em>&nbsp;</td><td>
The border window on the bottom. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a342" doxytag="GFC::Gtk::ToolbarStyle" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a342">ToolbarStyle</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
ToolbarStyle is used to customize the appearance of a <a class="el" href="classGFC_1_1Gtk_1_1Toolbar.html">Toolbar</a>. 
<p>
Note that setting the toolbar style overrides the user's preferences for the default toolbar style. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a342a168" doxytag="TOOLBAR_ICONS" ></a>TOOLBAR_ICONS</em>&nbsp;</td><td>
Buttons display only icons in the toolbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a342a169" doxytag="TOOLBAR_TEXT" ></a>TOOLBAR_TEXT</em>&nbsp;</td><td>
Buttons display only text labels in the toolbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a342a170" doxytag="TOOLBAR_BOTH" ></a>TOOLBAR_BOTH</em>&nbsp;</td><td>
Buttons display text and icons in the toolbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a342a171" doxytag="TOOLBAR_BOTH_HORIZ" ></a>TOOLBAR_BOTH_HORIZ</em>&nbsp;</td><td>
Buttons display icons and text alongside each other, rather than vertically stacked. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a362" doxytag="GFC::Gtk::TreeModelFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a362">TreeModelFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
These flags indicate various properties of a <a class="el" href="classGFC_1_1Gtk_1_1TreeModel.html">TreeModel</a>. 
<p>
They are returned by <a class="el" href="classGFC_1_1Gtk_1_1TreeModel.html#z973_2">Gtk::TreeModel::get_flags()</a>, and must be static for the lifetime of the object. A more complete description of TREE_MODEL_ITERS_PERSIST can be found in the <a class="el" href="classGFC_1_1Gtk_1_1TreeModel.html">TreeModel</a> desription. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a362a250" doxytag="TREE_MODEL_ITERS_PERSIST" ></a>TREE_MODEL_ITERS_PERSIST</em>&nbsp;</td><td>
Iterators survive all signals emitted by the tree. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a362a251" doxytag="TREE_MODEL_LIST_ONLY" ></a>TREE_MODEL_LIST_ONLY</em>&nbsp;</td><td>
The model is a list only, and never has children. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a364" doxytag="GFC::Gtk::TreeViewColumnSizing" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a364">TreeViewColumnSizing</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
TreeViewColumnSizing defines the sizing method a column uses to determine it's width. 
<p>
Please note that TREE_VIEW_COLUMN_AUTOSIZE is inefficient for large views, and can make columns appear choppy. <dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a364a256" doxytag="TREE_VIEW_COLUMN_GROW_ONLY" ></a>TREE_VIEW_COLUMN_GROW_ONLY</em>&nbsp;</td><td>
Columns only get bigger in reaction to changes in the model. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a364a257" doxytag="TREE_VIEW_COLUMN_AUTOSIZE" ></a>TREE_VIEW_COLUMN_AUTOSIZE</em>&nbsp;</td><td>
Columns resize to be the optimal size everytime the model changes. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a364a258" doxytag="TREE_VIEW_COLUMN_FIXED" ></a>TREE_VIEW_COLUMN_FIXED</em>&nbsp;</td><td>
Columns are a fixed numbers of pixels wide. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a363" doxytag="GFC::Gtk::TreeViewDropPosition" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a363">TreeViewDropPosition</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
TreeViewDropPosition is used to determine where a dropped row goes. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a363a252" doxytag="TREE_VIEW_DROP_BEFORE" ></a>TREE_VIEW_DROP_BEFORE</em>&nbsp;</td><td>
Drop before this row. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a363a253" doxytag="TREE_VIEW_DROP_AFTER" ></a>TREE_VIEW_DROP_AFTER</em>&nbsp;</td><td>
Drop after this row. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a363a254" doxytag="TREE_VIEW_DROP_INTO_OR_BEFORE" ></a>TREE_VIEW_DROP_INTO_OR_BEFORE</em>&nbsp;</td><td>
Drop as a child of this row (with fallback to before if into is not possible). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a363a255" doxytag="TREE_VIEW_DROP_INTO_OR_AFTER" ></a>TREE_VIEW_DROP_INTO_OR_AFTER</em>&nbsp;</td><td>
Drop as a child of this row (with fallback to after if into is not possible). </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a365" doxytag="GFC::Gtk::UIManagerItemType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a365">UIManagerItemType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
<a class="el" href="classGFC_1_1Gtk_1_1Item.html">Item</a> type values used by <a class="el" href="classGFC_1_1Gtk_1_1UIManager.html#z1027_8">Gtk::UIManager::add_ui()</a> to determine what UI element to create. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a365a260" doxytag="UI_MANAGER_AUTO" ></a>UI_MANAGER_AUTO</em>&nbsp;</td><td>
Pick the type of the UI element according to context. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a261" doxytag="UI_MANAGER_MENUBAR" ></a>UI_MANAGER_MENUBAR</em>&nbsp;</td><td>
Create a menubar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a262" doxytag="UI_MANAGER_MENU" ></a>UI_MANAGER_MENU</em>&nbsp;</td><td>
Create a menu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a263" doxytag="UI_MANAGER_TOOLBAR" ></a>UI_MANAGER_TOOLBAR</em>&nbsp;</td><td>
Create a toolbar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a264" doxytag="UI_MANAGER_PLACEHOLDER" ></a>UI_MANAGER_PLACEHOLDER</em>&nbsp;</td><td>
Insert a placeholder. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a265" doxytag="UI_MANAGER_POPUP" ></a>UI_MANAGER_POPUP</em>&nbsp;</td><td>
Create a popup menu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a266" doxytag="UI_MANAGER_MENUITEM" ></a>UI_MANAGER_MENUITEM</em>&nbsp;</td><td>
Create a menuitem. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a267" doxytag="UI_MANAGER_TOOLITEM" ></a>UI_MANAGER_TOOLITEM</em>&nbsp;</td><td>
Create a toolitem. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a268" doxytag="UI_MANAGER_SEPARATOR" ></a>UI_MANAGER_SEPARATOR</em>&nbsp;</td><td>
Create a separator. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a365a269" doxytag="UI_MANAGER_ACCELERATOR" ></a>UI_MANAGER_ACCELERATOR</em>&nbsp;</td><td>
Install an accelerator. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a343" doxytag="GFC::Gtk::UpdateType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a343">UpdateType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Used by <a class="el" href="classGFC_1_1Gtk_1_1Range.html">Range</a> widgets to set the update policy for the range. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a343a172" doxytag="UPDATE_CONTINUOUS" ></a>UPDATE_CONTINUOUS</em>&nbsp;</td><td>
Anytime the range slider is moved, the range value will change and the "value_changed" signal will be emitted. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a343a173" doxytag="UPDATE_DISCONTINUOUS" ></a>UPDATE_DISCONTINUOUS</em>&nbsp;</td><td>
The range value will only be updated when the user releases the button and ends the slider drag operation. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a343a174" doxytag="UPDATE_DELAYED" ></a>UPDATE_DELAYED</em>&nbsp;</td><td>
The range value will be updated after a brief timeout where no slider motion occurs, so updates are spaced by a short time rather than continuous. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a366" doxytag="GFC::Gtk::WidgetFlags" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a366">WidgetFlags</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
WidgetFlags tells about certain properties of the widget. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a366a271" doxytag="TOP_LEVEL" ></a>TOP_LEVEL</em>&nbsp;</td><td>
Widgets without a real parent, such as Windows and Menus have this flag set throughout their lifetime; Toplevel widgets always contain their own <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a272" doxytag="NO_WINDOW" ></a>NO_WINDOW</em>&nbsp;</td><td>
Indicative for a widget that does not provide its own <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>; For such widgets, visible actions (such as drawing) are performed on the parent's <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a273" doxytag="REALIZED" ></a>REALIZED</em>&nbsp;</td><td>
Set by realize(), unset by unrealize(); A realized widget has an associated <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a274" doxytag="MAPPED" ></a>MAPPED</em>&nbsp;</td><td>
Set by map(), unset by unmap(); Only realized widgets can be mapped; It means that show() has been called on the widgets window(s). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a275" doxytag="VISIBLE" ></a>VISIBLE</em>&nbsp;</td><td>
Set by show(), unset by hide(); Implies that a widget will be mapped as soon as its parent is mapped. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a276" doxytag="SENSITIVE" ></a>SENSITIVE</em>&nbsp;</td><td>
Set and unset by set_sensitive(); The sensitivity of a widget determines whether it will receive certain events (such as button or key presses); One premise for the widget's sensitivity is to have this flag set. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a277" doxytag="PARENT_SENSITIVE" ></a>PARENT_SENSITIVE</em>&nbsp;</td><td>
Set and unset by set_sensitive() operations on the parents of the widget; This is the second premise for the widget's sensitivity; Once it has SENSITIVE and PARENT_SENSITIVE set, its state is effectively sensitive and <a class="el" href="classGFC_1_1Gtk_1_1Widget.html#z1052_10">Gtk::Widget::is_sensitive()</a> will return true. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a278" doxytag="CAN_FOCUS" ></a>CAN_FOCUS</em>&nbsp;</td><td>
Determines whether a widget is able to handle focus grabs. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a279" doxytag="HAS_FOCUS" ></a>HAS_FOCUS</em>&nbsp;</td><td>
Set by grab_focus() for widgets that also have CAN_FOCUS set; This flag will be unset once another widget grabs the focus. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a280" doxytag="CAN_DEFAULT" ></a>CAN_DEFAULT</em>&nbsp;</td><td>
The widget is allowed to receive the default action via grab_default(). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a281" doxytag="HAS_DEFAULT" ></a>HAS_DEFAULT</em>&nbsp;</td><td>
The widget currently is receiving the default action. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a282" doxytag="HAS_GRAB" ></a>HAS_GRAB</em>&nbsp;</td><td>
Set by gtk_grab_add(), unset by gtk_grab_remove(); It means that the widget is in the grab_widgets stack, and will be the preferred one for receiving events other than ones of cosmetic value. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a283" doxytag="RC_STYLE" ></a>RC_STYLE</em>&nbsp;</td><td>
Indicates that the widgets style has been looked up through the rc mechanism; It does not imply that the widget actually had a style defined through the rc mechanism. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a284" doxytag="COMPOSITE_CHILD" ></a>COMPOSITE_CHILD</em>&nbsp;</td><td>
Indicates that the widget is a composite child of its parent; see push_composite_child(), pop_composite_child(). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a285" doxytag="NO_REPARENT" ></a>NO_REPARENT</em>&nbsp;</td><td>
Unused since before GTK+ 1.2, will be removed in a future version. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a286" doxytag="APP_PAINTABLE" ></a>APP_PAINTABLE</em>&nbsp;</td><td>
Set and unset by set_app_paintable(); Must be set on widgets whose window the application directly draws on, in order to keep GTK+ from overwriting the drawn stuff. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a287" doxytag="RECEIVES_DEFAULT" ></a>RECEIVES_DEFAULT</em>&nbsp;</td><td>
The widget when focused will receive the default action and have HAS_DEFAULT set even if there is a different widget set as default. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a288" doxytag="DOUBLE_BUFFERED" ></a>DOUBLE_BUFFERED</em>&nbsp;</td><td>
Set and unset by set_double_buffered(); Indicates that exposes done on the widget should be double-buffered. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a366a289" doxytag="NO_SHOW_ALL" ></a>NO_SHOW_ALL</em>&nbsp;</td><td>
The "no_show_all" property, which determines whether calls to show_all() and hide_all() will affect this widget (see <a class="el" href="classGFC_1_1Gtk_1_1Widget.html#z1053_9">Gtk::Widget::set_no_show_all()</a>). </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a367" doxytag="GFC::Gtk::WidgetHelpType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a367">WidgetHelpType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
WidgetHelpType defines the type of help, either tooltip or "What's this". 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a367a290" doxytag="WIDGET_HELP_TOOLTIP" ></a>WIDGET_HELP_TOOLTIP</em>&nbsp;</td><td>
Tooltip help. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a367a291" doxytag="WIDGET_HELP_WHATS_THIS" ></a>WIDGET_HELP_WHATS_THIS</em>&nbsp;</td><td>
"What's this" help. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a344" doxytag="GFC::Gtk::WindowPosition" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a344">WindowPosition</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
<a class="el" href="classGFC_1_1Gtk_1_1Window.html">Window</a> placement can be influenced using this enumeration. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a344a175" doxytag="WIN_POS_NONE" ></a>WIN_POS_NONE</em>&nbsp;</td><td>
No influence is made on placement. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a344a176" doxytag="WIN_POS_CENTER" ></a>WIN_POS_CENTER</em>&nbsp;</td><td>
Windows should be placed in the center of the screen. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a344a177" doxytag="WIN_POS_MOUSE" ></a>WIN_POS_MOUSE</em>&nbsp;</td><td>
Windows should be placed at the current mouse position. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a344a178" doxytag="WIN_POS_CENTER_ALWAYS" ></a>WIN_POS_CENTER_ALWAYS</em>&nbsp;</td><td>
Keep window centered as it changes size, etc. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a344a179" doxytag="WIN_POS_CENTER_ON_PARENT" ></a>WIN_POS_CENTER_ON_PARENT</em>&nbsp;</td><td>
Center the window on its transient parent. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a346" doxytag="GFC::Gtk::WindowType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a346">WindowType</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Specifies the window type to create. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a346a184" doxytag="WINDOW_TOPLEVEL" ></a>WINDOW_TOPLEVEL</em>&nbsp;</td><td>
Windows with type WINDOW_TOPLEVEL (main windows, dialogs) are managed by the window manager and have a frame by default (nearly all windows should be WINDOW_TOPLEVEL). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a346a185" doxytag="WINDOW_POPUP" ></a>WINDOW_POPUP</em>&nbsp;</td><td>
Windows with type WINDOW_POPUP (menus, tooltips) are ignored by the window manager, window manager keybindings won't work on them, the window manager won't decorate the window with a frame, and many GTK+ features that rely on the window manager will not work (such as resize grips, maximization and minimization). </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a345" doxytag="GFC::Gtk::WrapMode" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="namespaceGFC_1_1Gtk.html#a345">WrapMode</a>          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Describes how to wrap the lines of a <a class="el" href="classGFC_1_1Gtk_1_1Layout.html">Layout</a> to the desired width. 
<p>
<dl compact><dt><b>Enumeration values: </b></dt><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em><a class="anchor" name="a345a180" doxytag="WRAP_NONE" ></a>WRAP_NONE</em>&nbsp;</td><td>
Do not wrap lines; just make the text area wider. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a345a181" doxytag="WRAP_CHAR" ></a>WRAP_CHAR</em>&nbsp;</td><td>
Wrap text, breaking lines anywhere the cursor can appear (between characters, usually - if you want to be technical, between graphemes, see <a class="el" href="namespaceGFC_1_1Pango.html#a126">Pango::LogAttr::get_log_attrs()</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a345a182" doxytag="WRAP_WORD" ></a>WRAP_WORD</em>&nbsp;</td><td>
Wrap text, breaking lines in between words. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a345a183" doxytag="WRAP_WORD_CHAR" ></a>WRAP_WORD_CHAR</em>&nbsp;</td><td>
Wrap text, breaking lines in between words, or if that is not enough, also between graphemes. </td></tr>
</table>
</dl>
    </td>
  </tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="a292" doxytag="GFC::Gtk::accel_groups_activate" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> bool accel_groups_activate           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">G::Object &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>object</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const AccelKey &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>accel_key</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Finds the first accelerator in any <a class="el" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a> attached to <em>object</em> that matches the key value and modifiers, and activates that accelerator. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>object</em>&nbsp;</td><td>The <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Object.html">G::Object</a>, usually a <a class="el" href="classGFC_1_1Gtk_1_1Window.html">Gtk::Window</a>, on which to activate the accelerator. </td></tr>
    <tr><td></td><td valign=top><em>accel_key</em>&nbsp;</td><td>An <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> specifying the accelerator key value and modifiers. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if an accelerator was activated and handled this keypress. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a293" doxytag="GFC::Gtk::accelerator_get_default_mod_mask" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a> accelerator_get_default_mod_mask           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Gets the value set by set_default_mod_mask(). 
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The default accelerator modifier mask. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a298" doxytag="GFC::Gtk::accelerator_name" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> accelerator_name           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const AccelKey &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>accel_key</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Converts an AccelKey's key value and modifier mask into a string parseable by parse(). 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>accel_key</em>&nbsp;</td><td>An <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> specifying the accelerator key value and modifiers. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The accelerator name.</dd></dl>
<br>
For example, if you pass in GDK_q and <a class="el" href="namespaceGFC_1_1Gdk.html#a286a183">Gdk::CONTROL_MASK</a>, this function returns "\&lt;Control\&gt;q".     </td>
  </tr>
</table>
<a class="anchor" name="a297" doxytag="GFC::Gtk::accelerator_parse" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> accelerator_parse           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const String &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>accelerator</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceGFC_1_1Gtk.html#a53">AccelFlagsField</a>&nbsp;</td>
          <td class="mdname" nowrap> <em>accel_flags</em> = <code>Gtk::ACCEL_VISIBLE</code></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Construct an <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> from a string representing an accelerator. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>accelerator</em>&nbsp;</td><td>A string representing an accelerator. </td></tr>
    <tr><td></td><td valign=top><em>accel_flags</em>&nbsp;</td><td>A flag mask to configure this accelerator. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>accel_key An <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> specifying the accelerator key value and modifiers.</dd></dl>
<br>
Parses a string representing an accelerator. The format looks like "\&lt;Control\&gt;a" or "\&lt;Shift\&gt;\&lt;Alt\&gt;F1" or "\&lt;Release\&gt;z" (the last one is for key release). The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "\&lt;Ctl\&gt;" and "\&lt;Ctrl\&gt;". If the parse fails, accelerator and its modifiers will be set to 0 (zero).     </td>
  </tr>
</table>
<a class="anchor" name="a294" doxytag="GFC::Gtk::accelerator_set_default_mod_mask" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void accelerator_set_default_mod_mask           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>default_mod_mask</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Sets the modifiers that will be considered significant for keyboard accelerators. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>default_mod_mask</em>&nbsp;</td><td>Accelerator modifier mask.</td></tr>
  </table>
</dl>
<br>
The default mod mask is GDK_CONTROL_MASK | GDK_SHIFT_MASK | GDK_MOD1_MASK, that is, Control, Shift, and Alt. Other modifiers will by default be ignored by <a class="el" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>. You must include at least the three default modifiers in any value you pass to this method.<p>
The default mod mask should be changed on application startup, before using any accelerator groups.     </td>
  </tr>
</table>
<a class="anchor" name="a295" doxytag="GFC::Gtk::accelerator_valid" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> bool accelerator_valid           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const AccelKey &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>accel_key</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Determines whether a given <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> is a valid keyboard accelerator. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>accel_key</em>&nbsp;</td><td>An <a class="el" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a> specifying the accelerator key value and modifiers. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the accelerator is valid.</dd></dl>
<br>
For example, the GDK_a keyval plus <a class="el" href="namespaceGFC_1_1Gdk.html#a286a183">Gdk::CONTROL_MASK</a> is valid this is a "Ctrl+a" accelerator. But, you can't, for instance, use the GDK_Control_L key value as an accelerator.     </td>
  </tr>
</table>
<a class="anchor" name="a307" doxytag="GFC::Gtk::draw_insertion_cursor" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void draw_insertion_cursor           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">Widget &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>widget</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>Gdk::Drawable &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>drawable</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const Gdk::Rectangle &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>location</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap> <em>is_primary</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a>&nbsp;</td>
          <td class="mdname" nowrap> <em>direction</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap> <em>draw_arrow</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const Gdk::Rectangle *&nbsp;</td>
          <td class="mdname" nowrap> <em>area</em> = <code>0</code></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Draws a text caret on a drawable at the specified <em>location</em>. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>widget</em>&nbsp;</td><td>A <a class="el" href="classGFC_1_1Gtk_1_1Widget.html">Gtk::Widget</a>. </td></tr>
    <tr><td></td><td valign=top><em>drawable</em>&nbsp;</td><td>A <a class="el" href="classGFC_1_1Gdk_1_1Drawable.html">Gdk::Drawable</a> owned by <em>widget</em>. </td></tr>
    <tr><td></td><td valign=top><em>location</em>&nbsp;</td><td>The location where to draw the cursor (location.width() is ignored). </td></tr>
    <tr><td></td><td valign=top><em>is_primary</em>&nbsp;</td><td>If the cursor should be the primary cursor color. </td></tr>
    <tr><td></td><td valign=top><em>direction</em>&nbsp;</td><td>Whether the cursor is left-to-right or right-to-left (should never be <a class="el" href="namespaceGFC_1_1Gtk.html#a341a165">Gtk::TEXT_DIR_NONE</a>). </td></tr>
    <tr><td></td><td valign=top><em>draw_arrow</em>&nbsp;</td><td>Whether a directional arrow should be drawn on the cursor. . </td></tr>
    <tr><td></td><td valign=top><em>area</em>&nbsp;</td><td>The rectangle to which the output is clipped, or null if the output should not be clipped.</td></tr>
  </table>
</dl>
<br>
This method is not a style function but merely a convenience function for drawing the standard cursor shape. The text direction should never be <a class="el" href="namespaceGFC_1_1Gtk.html#a341a165">Gtk::TEXT_DIR_NONE</a>. The <em>draw_arrow</em> parameter should be <em>false</em> unless the cursor is split.     </td>
  </tr>
</table>
<a class="anchor" name="a305" doxytag="GFC::Gtk::icon_size_from_name" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> icon_size_from_name           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const String &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>name</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Looks up the icon size associated with <em>name</em>. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>name</em>&nbsp;</td><td>The name to look up. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The icon size with the given name. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a306" doxytag="GFC::Gtk::icon_size_get_name" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> icon_size_get_name           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>size</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Gets the canonical name of the given icon size. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>size</em>&nbsp;</td><td>An IconSize. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The name of the given icon size. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a299" doxytag="GFC::Gtk::icon_size_lookup" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> bool icon_size_lookup           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a>&nbsp;</td>
          <td class="mdname" nowrap> <em>size</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int *&nbsp;</td>
          <td class="mdname" nowrap> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int *&nbsp;</td>
          <td class="mdname" nowrap> <em>height</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>Settings *&nbsp;</td>
          <td class="mdname" nowrap> <em>settings</em> = <code>0</code></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Obtains the pixel size of a semantic icon size, possibly modified by user preferences for a particular <a class="el" href="classGFC_1_1Gtk_1_1Settings.html">Settings</a>. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>size</em>&nbsp;</td><td>An icon size. </td></tr>
    <tr><td></td><td valign=top><em>width</em>&nbsp;</td><td>The location to store icon width. </td></tr>
    <tr><td></td><td valign=top><em>height</em>&nbsp;</td><td>The location to store icon height. </td></tr>
    <tr><td></td><td valign=top><em>settings</em>&nbsp;</td><td>A <a class="el" href="classGFC_1_1Gtk_1_1Settings.html">Settings</a> object, used to determine which set of user preferences to use, or null to use the settings for the default screen. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if size was a valid size.</dd></dl>
<br>
Normally size would be ICON_SIZE_MENU, ICON_SIZE_BUTTON, etc. This method isn't normally needed, <a class="el" href="classGFC_1_1Gtk_1_1Widget.html#z1053_73">Gtk::Widget::render_icon()</a> is the usual way to get an icon for rendering, then just look at the size of the rendered pixbuf. The rendered pixbuf may not even correspond to the width/height returned by size_lookup(), because themes are free to render the pixbuf however they like, including changing the usual size.<p>
<b>Note:</b> The default GDK screen is the only screen in the absence of MultiHead support.     </td>
  </tr>
</table>
<a class="anchor" name="a301" doxytag="GFC::Gtk::icon_size_register" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> icon_size_register           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const String &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>name</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int&nbsp;</td>
          <td class="mdname" nowrap> <em>width</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>int&nbsp;</td>
          <td class="mdname" nowrap> <em>height</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Registers a new icon size, along the same lines as ICON_SIZE_MENU, etc. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>name</em>&nbsp;</td><td>The name of the icon size. </td></tr>
    <tr><td></td><td valign=top><em>width</em>&nbsp;</td><td>The icon width. </td></tr>
    <tr><td></td><td valign=top><em>height</em>&nbsp;</td><td>The icon height. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The integer value for the size, as an IconSize. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="a303" doxytag="GFC::Gtk::icon_size_register_alias" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void icon_size_register_alias           </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const String &amp;&nbsp;</td>
          <td class="mdname" nowrap> <em>alias</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a>&nbsp;</td>
          <td class="mdname" nowrap> <em>target</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Registers <em>alias</em> as another name for <em>target</em>. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td></td><td valign=top><em>alias</em>&nbsp;</td><td>An alias for target. </td></tr>
    <tr><td></td><td valign=top><em>target</em>&nbsp;</td><td>An existing icon size.</td></tr>
  </table>
</dl>
<br>
Calling size_from_name() with <em>alias</em> as the argument will return <em>target</em>.     </td>
  </tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:37 2004 for GFC-UI by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>