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
|
<!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> | <a
href="../html/namespaces.html">Namespace List</a> | <a
href="classes.html">Alphabetical List</a> | <a
href="../html/annotated.html">Class List</a> | <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+ Drawing Kit and the GdkPixbuf library.
<a href="#_details">More...</a>
<p>
<h2>Classes</h2>
<ul>
<li>class <a class="el" href="classGFC_1_1Gdk_1_1Bitmap.html">GFC::Gdk::Bitmap</a>
<dl class="el"><dd class="mdescRight">A GdkBitmap C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Bitmap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Color.html">GFC::Gdk::Color</a>
<dl class="el"><dd class="mdescRight">A GdkColor C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Color.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Colormap.html">GFC::Gdk::Colormap</a>
<dl class="el"><dd class="mdescRight">A GdkColormap C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Colormap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Cursor.html">GFC::Gdk::Cursor</a>
<dl class="el"><dd class="mdescRight">A GdkCursor C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Cursor.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Display.html">GFC::Gdk::Display</a>
<dl class="el"><dd class="mdescRight">A GdkDisplay C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Display.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1DisplayManager.html">GFC::Gdk::DisplayManager</a>
<dl class="el"><dd class="mdescRight">A GdkDisplayManager C++ wrapper class. <a href="classGFC_1_1Gdk_1_1DisplayManager.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1DisplayManagerSignals.html">GFC::Gdk::DisplayManagerSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gdk_1_1DisplayManager.html">Gdk::DisplayManager</a>. <a href="classGFC_1_1Gdk_1_1DisplayManagerSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1DisplaySignals.html">GFC::Gdk::DisplaySignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gdk_1_1Display.html">Gdk::Display</a>. <a href="classGFC_1_1Gdk_1_1DisplaySignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1DragContext.html">GFC::Gdk::DragContext</a>
<dl class="el"><dd class="mdescRight">A GdkDragContext C++ wrapper class. <a href="classGFC_1_1Gdk_1_1DragContext.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Drawable.html">GFC::Gdk::Drawable</a>
<dl class="el"><dd class="mdescRight">A GdkDrawable C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Drawable.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Event.html">GFC::Gdk::Event</a>
<dl class="el"><dd class="mdescRight">The <a class="el" href="classGFC_1_1Gdk_1_1Event.html">Event</a> object represents a GdkEvent. <a href="classGFC_1_1Gdk_1_1Event.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventAny.html">GFC::Gdk::EventAny</a>
<dl class="el"><dd class="mdescRight">A GdkEventAny C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventAny.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventExpose.html">GFC::Gdk::EventExpose</a>
<dl class="el"><dd class="mdescRight">A GdkEventExpose C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventExpose.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventVisibility.html">GFC::Gdk::EventVisibility</a>
<dl class="el"><dd class="mdescRight">A GdkEventVisibility C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventVisibility.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventMotion.html">GFC::Gdk::EventMotion</a>
<dl class="el"><dd class="mdescRight">A GdkEventMotion C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventMotion.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventButton.html">GFC::Gdk::EventButton</a>
<dl class="el"><dd class="mdescRight">A GdkEventButton C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventButton.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventScroll.html">GFC::Gdk::EventScroll</a>
<dl class="el"><dd class="mdescRight">A GdkEventScroll C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventScroll.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventKey.html">GFC::Gdk::EventKey</a>
<dl class="el"><dd class="mdescRight">A GdkEventKey C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventKey.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventCrossing.html">GFC::Gdk::EventCrossing</a>
<dl class="el"><dd class="mdescRight">A GdkEventCrossing C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventCrossing.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventFocus.html">GFC::Gdk::EventFocus</a>
<dl class="el"><dd class="mdescRight">A GdkEventFocus C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventFocus.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventConfigure.html">GFC::Gdk::EventConfigure</a>
<dl class="el"><dd class="mdescRight">A GdkEventConfigure C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventConfigure.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventProperty.html">GFC::Gdk::EventProperty</a>
<dl class="el"><dd class="mdescRight">A GdkEventProperty C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventProperty.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventSelection.html">GFC::Gdk::EventSelection</a>
<dl class="el"><dd class="mdescRight">A GdkEventSelection C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventSelection.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventProximity.html">GFC::Gdk::EventProximity</a>
<dl class="el"><dd class="mdescRight">A GdkEventProximity C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventProximity.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventClient.html">GFC::Gdk::EventClient</a>
<dl class="el"><dd class="mdescRight">A GdkEventClient C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventClient.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventSetting.html">GFC::Gdk::EventSetting</a>
<dl class="el"><dd class="mdescRight">A GdkEventSetting C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventSetting.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventWindowState.html">GFC::Gdk::EventWindowState</a>
<dl class="el"><dd class="mdescRight">A GdkEventWindowState C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventWindowState.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1EventDND.html">GFC::Gdk::EventDND</a>
<dl class="el"><dd class="mdescRight">A GdkEventDND C++ wrapper class. <a href="classGFC_1_1Gdk_1_1EventDND.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1GCValues.html">GFC::Gdk::GCValues</a>
<dl class="el"><dd class="mdescRight">A GdkGCValues C++ wrapper class. <a href="classGFC_1_1Gdk_1_1GCValues.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1GC.html">GFC::Gdk::GC</a>
<dl class="el"><dd class="mdescRight">A GdkGC C++ wrapper class. <a href="classGFC_1_1Gdk_1_1GC.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Image.html">GFC::Gdk::Image</a>
<dl class="el"><dd class="mdescRight">A GdkImage C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Image.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Device.html">GFC::Gdk::Device</a>
<dl class="el"><dd class="mdescRight">A GdkDevice C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Device.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1KeymapKey.html">GFC::Gdk::KeymapKey</a>
<dl class="el"><dd class="mdescRight">A GdkKeymapKey C++ wrapper class. <a href="classGFC_1_1Gdk_1_1KeymapKey.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Keymap.html">GFC::Gdk::Keymap</a>
<dl class="el"><dd class="mdescRight">A GdkKeymap C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Keymap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1KeymapSignals.html">GFC::Gdk::KeymapSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gdk_1_1Keymap.html">Gdk::Keymap</a>. <a href="classGFC_1_1Gdk_1_1KeymapSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Keyval.html">GFC::Gdk::Keyval</a>
<dl class="el"><dd class="mdescRight">A GDK key value C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Keyval.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Pixmap.html">GFC::Gdk::Pixmap</a>
<dl class="el"><dd class="mdescRight">A GdkPixmap C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Pixmap.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Region.html">GFC::Gdk::Region</a>
<dl class="el"><dd class="mdescRight">A GdkRegion C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Region.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Screen.html">GFC::Gdk::Screen</a>
<dl class="el"><dd class="mdescRight">A GdkScreen C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Screen.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1ScreenSignals.html">GFC::Gdk::ScreenSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gdk_1_1Screen.html">Gdk::Screen</a>. <a href="classGFC_1_1Gdk_1_1ScreenSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Spawn.html">GFC::Gdk::Spawn</a>
<dl class="el"><dd class="mdescRight">A C++ interface for the <a class="el" href="namespaceGFC_1_1Gdk.html">Gdk</a> spawn functions. <a href="classGFC_1_1Gdk_1_1Spawn.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Mutex.html">GFC::Gdk::Mutex</a>
<dl class="el"><dd class="mdescRight">A C++ wrapper for the GDK <a class="el" href="classGFC_1_1Gdk_1_1Mutex.html">Mutex</a> object. <a href="classGFC_1_1Gdk_1_1Mutex.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Point.html">GFC::Gdk::Point</a>
<dl class="el"><dd class="mdescRight">A GdkPoint C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Point.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Rectangle.html">GFC::Gdk::Rectangle</a>
<dl class="el"><dd class="mdescRight">A GdkRectangle C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Rectangle.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Segment.html">GFC::Gdk::Segment</a>
<dl class="el"><dd class="mdescRight">A GdkSegment C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Segment.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Span.html">GFC::Gdk::Span</a>
<dl class="el"><dd class="mdescRight">A GdkSpan C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Span.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Visual.html">GFC::Gdk::Visual</a>
<dl class="el"><dd class="mdescRight">A GdkVisual C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Visual.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Geometry.html">GFC::Gdk::Geometry</a>
<dl class="el"><dd class="mdescRight">A GdkGeometry C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Geometry.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1WindowAttr.html">GFC::Gdk::WindowAttr</a>
<dl class="el"><dd class="mdescRight">A GdkWindowAttr C++ wrapper class. <a href="classGFC_1_1Gdk_1_1WindowAttr.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Window.html">GFC::Gdk::Window</a>
<dl class="el"><dd class="mdescRight">A GdkWindow C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Window.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1PixbufAnimationIter.html">GFC::Gdk::PixbufAnimationIter</a>
<dl class="el"><dd class="mdescRight">A GdkPixbufAnimationIter C++ wrapper class. <a href="classGFC_1_1Gdk_1_1PixbufAnimationIter.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1PixbufAnimation.html">GFC::Gdk::PixbufAnimation</a>
<dl class="el"><dd class="mdescRight">A GdkPixbufAnimation C++ wrapper class. <a href="classGFC_1_1Gdk_1_1PixbufAnimation.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1PixbufLoader.html">GFC::Gdk::PixbufLoader</a>
<dl class="el"><dd class="mdescRight">A GdkPixbufLoader C++ wrapper class. <a href="classGFC_1_1Gdk_1_1PixbufLoader.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1PixbufLoaderSignals.html">GFC::Gdk::PixbufLoaderSignals</a>
<dl class="el"><dd class="mdescRight">Abstract base class that implements the virtual signal handlers for <a class="el" href="classGFC_1_1Gdk_1_1PixbufLoader.html">Gdk::PixbufLoader</a>. <a href="classGFC_1_1Gdk_1_1PixbufLoaderSignals.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1PixbufFormat.html">GFC::Gdk::PixbufFormat</a>
<dl class="el"><dd class="mdescRight">A GdkPixbufFormat C++ wrapper class. <a href="classGFC_1_1Gdk_1_1PixbufFormat.html#_details">More...</a><br></dl><li>class <a class="el" href="classGFC_1_1Gdk_1_1Pixbuf.html">GFC::Gdk::Pixbuf</a>
<dl class="el"><dd class="mdescRight">A GdkPixbuf C++ wrapper class. <a href="classGFC_1_1Gdk_1_1Pixbuf.html#_details">More...</a><br></dl></ul>
<h2>Event Methods</h2>
<ul>
<li><a class="anchor" name="a249" doxytag="GFC::Gdk::get_show_events" ></a>
bool <a class="el" href="namespaceGFC_1_1Gdk.html#a249">get_show_events</a> ()
<dl class="el"><dd class="mdescRight">Returns true if event debugging output is enabled. <br></dl><li>bool <a class="el" href="namespaceGFC_1_1Gdk.html#a250">events_pending</a> ()
<dl class="el"><dd class="mdescRight">Checks if any events are ready to be processed for any display. <a href="#a250"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Gdk.html#a251">set_show_events</a> (bool show_events)
<dl class="el"><dd class="mdescRight">Sets whether a trace of received events is output. <a href="#a251"></a><br></dl></ul>
<h2>Device Methods</h2>
<ul>
<li>bool <a class="el" href="namespaceGFC_1_1Gdk.html#a252">devices_list</a> (std::vector< <a class="el" href="classGFC_1_1Gdk_1_1Device.html">Device</a> * > &devices)
<dl class="el"><dd class="mdescRight">Returns the list of available input devices attached to the default display. <a href="#a252"></a><br></dl></ul>
<h2>Keyboard/Pointer Methods</h2>
<ul>
<li>void <a class="el" href="namespaceGFC_1_1Gdk.html#a253">keyboard_ungrab</a> (unsigned int time=GDK_CURRENT_TIME)
<dl class="el"><dd class="mdescRight">Ungrabs the keyboard for the default display, if it is grabbed by this application (see <a class="el" href="classGFC_1_1Gdk_1_1Display.html#z116_1">Gdk::Display::keyboard_ungrab()</a>). <a href="#a253"></a><br></dl><li>bool <a class="el" href="namespaceGFC_1_1Gdk.html#a254">pointer_is_grabbed</a> ()
<dl class="el"><dd class="mdescRight">Returns true if the pointer for the default display is currently grabbed by this application (see <a class="el" href="classGFC_1_1Gdk_1_1Display.html#z115_6">Gdk::Display::pointer_is_grabbed()</a>). <a href="#a254"></a><br></dl><li>void <a class="el" href="namespaceGFC_1_1Gdk.html#a255">pointer_ungrab</a> (unsigned int time=GDK_CURRENT_TIME)
<dl class="el"><dd class="mdescRight">Ungrabs the pointer for the default display, if it is grabbed by this application. <a href="#a255"></a><br></dl></ul>
<h2>Thread Methods</h2>
<ul>
<li>void <a class="el" href="namespaceGFC_1_1Gdk.html#a256">flush</a> ()
<dl class="el"><dd class="mdescRight">Flushes the X output buffer and waits until all requests have been processed by the server. <a href="#a256"></a><br></dl></ul>
<h2>Window Methods</h2>
<ul>
<li><a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> * <a class="el" href="namespaceGFC_1_1Gdk.html#a257">get_default_root_window</a> ()
<dl class="el"><dd class="mdescRight">Obtains the root window (parent all other windows are inside) for the default display and screen. <a href="#a257"></a><br></dl></ul>
<h2>Typedefs</h2>
<ul>
<li><a class="anchor" name="a0" doxytag="GFC::Gdk::EventMaskField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a0">EventMaskField</a>
<dl class="el"><dd class="mdescRight">EventMaskField is a bit-field that holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a259">Gdk::EventMask</a> enumeration. <br></dl><li><a class="anchor" name="a1" doxytag="GFC::Gdk::WindowStateField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a1">WindowStateField</a>
<dl class="el"><dd class="mdescRight">WindowStateField is a bit-field that holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a265">Gdk::WindowState</a> enumeration. <br></dl><li><a class="anchor" name="a134" doxytag="GFC::Gdk::Atom" ></a>
typedef GdkAtom <a class="el" href="namespaceGFC_1_1Gdk.html#a134">Atom</a>
<dl class="el"><dd class="mdescRight">Atom is a typedef for GdkAtom. <br></dl><li><a class="anchor" name="a135" doxytag="GFC::Gdk::DragActionField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a135">DragActionField</a>
<dl class="el"><dd class="mdescRight">DragActionField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a280">Gdk::DragAction</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a136" doxytag="GFC::Gdk::ModifierTypeField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a136">ModifierTypeField</a>
<dl class="el"><dd class="mdescRight">ModifierTypeField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a286">Gdk::ModifierType</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a221" doxytag="GFC::Gdk::WMDecorationField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a221">WMDecorationField</a>
<dl class="el"><dd class="mdescRight">WMDecorationField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a292">Gdk::WMDecoration</a> enumeration OR'd together. <br></dl><li><a class="anchor" name="a222" doxytag="GFC::Gdk::WMFunctionField" ></a>
typedef unsigned int <a class="el" href="namespaceGFC_1_1Gdk.html#a222">WMFunctionField</a>
<dl class="el"><dd class="mdescRight">WMFunctionField holds one or more values from the <a class="el" href="namespaceGFC_1_1Gdk.html#a293">Gdk::WMFunction</a> enumeration OR'd together. <br></dl></ul>
<h2>Enumerations</h2>
<ul>
<li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a258">EventType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a2">NOTHING</a> = GDK_NOTHING,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a3">DELETE</a> = GDK_DELETE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a4">DESTROY</a> = GDK_DESTROY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a5">EXPOSE</a> = GDK_EXPOSE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a6">MOTION_NOTIFY</a> = GDK_MOTION_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a7">BUTTON_PRESS</a> = GDK_BUTTON_PRESS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a8">TWO_BUTTON_PRESS</a> = GDK_2BUTTON_PRESS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a9">THREE_BUTTON_PRESS</a> = GDK_3BUTTON_PRESS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a10">BUTTON_RELEASE</a> = GDK_BUTTON_RELEASE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a11">KEY_PRESS</a> = GDK_KEY_PRESS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a12">KEY_RELEASE</a> = GDK_KEY_RELEASE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a13">ENTER_NOTIFY</a> = GDK_ENTER_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a14">LEAVE_NOTIFY</a> = GDK_LEAVE_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a15">FOCUS_CHANGE</a> = GDK_FOCUS_CHANGE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a16">CONFIGURE</a> = GDK_CONFIGURE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a17">MAP</a> = GDK_MAP,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a18">UNMAP</a> = GDK_UNMAP,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a19">PROPERTY_NOTIFY</a> = GDK_PROPERTY_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a20">SELECTION_CLEAR</a> = GDK_SELECTION_CLEAR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a21">SELECTION_REQUEST</a> = GDK_SELECTION_REQUEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a22">SELECTION_NOTIFY</a> = GDK_SELECTION_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a23">PROXIMITY_IN</a> = GDK_PROXIMITY_IN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a24">PROXIMITY_OUT</a> = GDK_PROXIMITY_OUT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a25">DRAG_ENTER</a> = GDK_DRAG_ENTER,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a26">DRAG_LEAVE</a> = GDK_DRAG_LEAVE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a27">DRAG_MOTION</a> = GDK_DRAG_MOTION,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a28">DRAG_STATUS</a> = GDK_DRAG_STATUS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a29">DROP_START</a> = GDK_DROP_START,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a30">DROP_FINISHED</a> = GDK_DROP_FINISHED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a31">CLIENT_EVENT</a> = GDK_CLIENT_EVENT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a32">VISIBILITY_NOTIFY</a> = GDK_VISIBILITY_NOTIFY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a33">NO_EXPOSE</a> = GDK_NO_EXPOSE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a34">SCROLL</a> = GDK_SCROLL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a35">WINDOW_STATE</a> = GDK_WINDOW_STATE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a258a36">SETTING</a> = GDK_SETTING
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the type of the event. <a href="#a258">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a259">EventMask</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a37">EXPOSURE_MASK</a> = GDK_EXPOSURE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a38">POINTER_MOTION_MASK</a> = GDK_POINTER_MOTION_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a39">POINTER_MOTION_HINT_MASK</a> = GDK_POINTER_MOTION_HINT_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a40">BUTTON_MOTION_MASK</a> = GDK_BUTTON_MOTION_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a41">BUTTON1_MOTION_MASK</a> = GDK_BUTTON1_MOTION_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a42">BUTTON2_MOTION_MASK</a> = GDK_BUTTON2_MOTION_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a43">BUTTON3_MOTION_MASK</a> = GDK_BUTTON3_MOTION_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a44">BUTTON_PRESS_MASK</a> = GDK_BUTTON_PRESS_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a45">BUTTON_RELEASE_MASK</a> = GDK_BUTTON_RELEASE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a46">KEY_PRESS_MASK</a> = GDK_KEY_PRESS_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a47">KEY_RELEASE_MASK</a> = GDK_KEY_RELEASE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a48">ENTER_NOTIFY_MASK</a> = GDK_ENTER_NOTIFY_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a49">LEAVE_NOTIFY_MASK</a> = GDK_LEAVE_NOTIFY_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a50">FOCUS_CHANGE_MASK</a> = GDK_FOCUS_CHANGE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a51">STRUCTURE_MASK</a> = GDK_STRUCTURE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a52">PROPERTY_CHANGE_MASK</a> = GDK_PROPERTY_CHANGE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a53">VISIBILITY_NOTIFY_MASK</a> = GDK_VISIBILITY_NOTIFY_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a54">PROXIMITY_IN_MASK</a> = GDK_PROXIMITY_IN_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a55">PROXIMITY_OUT_MASK</a> = GDK_PROXIMITY_OUT_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a56">SUBSTRUCTURE_MASK</a> = GDK_SUBSTRUCTURE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a57">SCROLL_MASK</a> = GDK_SCROLL_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a259a58">ALL_EVENTS_MASK</a> = GDK_ALL_EVENTS_MASK
<br>
}
<dl class="el"><dd class="mdescRight">A set of bit-flags to indicate which events a window is to receive. <a href="#a259">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a260">VisibilityState</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a260a59">VISIBILITY_UNOBSCURED</a> = GDK_VISIBILITY_UNOBSCURED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a260a60">VISIBILITY_PARTIAL</a> = GDK_VISIBILITY_PARTIAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a260a61">VISIBILITY_FULLY_OBSCURED</a> = GDK_VISIBILITY_FULLY_OBSCURED
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the visiblity status of a window for an EventVisibility. <a href="#a260">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a261">ScrollDirection</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a261a62">SCROLL_UP</a> = GDK_SCROLL_UP
, <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a261a64">SCROLL_LEFT</a> = GDK_SCROLL_LEFT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a261a65">SCROLL_RIGHT</a> = GDK_SCROLL_RIGHT
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the direction for an EventScroll. <a href="#a261">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a262">NotifyType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a66">NOTIFY_ANCESTOR</a> = GDK_NOTIFY_ANCESTOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a67">NOTIFY_VIRTUAL</a> = GDK_NOTIFY_VIRTUAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a68">NOTIFY_INFERIOR</a> = GDK_NOTIFY_INFERIOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a69">NOTIFY_NONLINEAR</a> = GDK_NOTIFY_NONLINEAR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a70">NOTIFY_NONLINEAR_VIRTUAL</a> = GDK_NOTIFY_NONLINEAR_VIRTUAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a262a71">NOTIFY_UNKNOWN</a> = GDK_NOTIFY_UNKNOWN
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the kind of crossing for an EventCrossing. <a href="#a262">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a263">CrossingMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a263a72">CROSSING_NORMAL</a> = GDK_CROSSING_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a263a73">CROSSING_GRAB</a> = GDK_CROSSING_GRAB,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a263a74">CROSSING_UNGRAB</a> = GDK_CROSSING_UNGRAB
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the crossing mode for an EventCrossing. <a href="#a263">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a264">PropertyState</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a264a75">PROPERTY_NEW_VALUE</a> = GDK_PROPERTY_NEW_VALUE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a264a76">PROPERTY_DELETE</a> = GDK_PROPERTY_DELETE
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the type of a property change for an EventProperty. <a href="#a264">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a265">WindowState</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a77">WINDOW_STATE_WITHDRAWN</a> = GDK_WINDOW_STATE_WITHDRAWN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a78">WINDOW_STATE_ICONIFIED</a> = GDK_WINDOW_STATE_ICONIFIED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a79">WINDOW_STATE_MAXIMIZED</a> = GDK_WINDOW_STATE_MAXIMIZED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a80">WINDOW_STATE_STICKY</a> = GDK_WINDOW_STATE_STICKY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a81">WINDOW_STATE_FULLSCREEN</a> = GDK_WINDOW_STATE_FULLSCREEN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a82">WINDOW_STATE_ABOVE</a> = GDK_WINDOW_STATE_ABOVE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a265a83">WINDOW_STATE_BELOW</a> = GDK_WINDOW_STATE_BELOW
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the state of a toplevel window. <a href="#a265">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a266">SettingAction</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a266a84">SETTING_ACTION_NEW</a> = GDK_SETTING_ACTION_NEW,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a266a85">SETTING_ACTION_CHANGED</a> = GDK_SETTING_ACTION_CHANGED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a266a86">SETTING_ACTION_DELETED</a> = GDK_SETTING_ACTION_DELETED
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the kind of modification applied to a setting in an EventSetting. <a href="#a266">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a267">CapStyle</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a267a87">CAP_NOT_LAST</a> = GDK_CAP_NOT_LAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a267a88">CAP_BUTT</a> = GDK_CAP_BUTT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a267a89">CAP_ROUND</a> = GDK_CAP_ROUND,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a267a90">CAP_PROJECTING</a> = GDK_CAP_PROJECTING
<br>
}
<dl class="el"><dd class="mdescRight">Determines how the end of lines are drawn. <a href="#a267">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a268">Fill</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a268a91">SOLID</a> = GDK_SOLID,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a268a92">TILED</a> = GDK_TILED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a268a93">STIPPLED</a> = GDK_STIPPLED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a268a94">OPAQUE_STIPPLED</a> = GDK_OPAQUE_STIPPLED
<br>
}
<dl class="el"><dd class="mdescRight">Determines how primitives are drawn. <a href="#a268">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a269">Function</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a95">COPY</a> = GDK_COPY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a96">INVERT</a> = GDK_INVERT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a97">XOR</a> = GDK_XOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a98">CLEAR</a> = GDK_CLEAR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a99">AND</a> = GDK_AND,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a100">AND_REVERSE</a> = GDK_AND_REVERSE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a101">AND_INVERT</a> = GDK_AND_INVERT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a102">NOOP</a> = GDK_NOOP,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a103">OR</a> = GDK_OR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a104">EQUIV</a> = GDK_EQUIV,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a105">OR_REVERSE</a> = GDK_OR_REVERSE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a106">COPY_INVERT</a> = GDK_COPY_INVERT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a107">OR_INVERT</a> = GDK_OR_INVERT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a108">NAND</a> = GDK_NAND,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a109">NOR</a> = GDK_NOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a269a110">SET</a> = GDK_SET
<br>
}
<dl class="el"><dd class="mdescRight">Determines how the bit values for the source pixels are combined with the bit values for destination pixels to produce the final result. <a href="#a269">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a270">JoinStyle</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a270a111">JOIN_MITER</a> = GDK_JOIN_MITER,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a270a112">JOIN_ROUND</a> = GDK_JOIN_ROUND,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a270a113">JOIN_BEVEL</a> = GDK_JOIN_BEVEL
<br>
}
<dl class="el"><dd class="mdescRight">Determines how the joins between segments of a polygon are drawn. <a href="#a270">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a271">LineStyle</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a271a114">LINE_SOLID</a> = GDK_LINE_SOLID,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a271a115">LINE_ON_OFF_DASH</a> = GDK_LINE_ON_OFF_DASH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a271a116">LINE_DOUBLE_DASH</a> = GDK_LINE_DOUBLE_DASH
<br>
}
<dl class="el"><dd class="mdescRight">Determines how lines are drawn. <a href="#a271">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a272">SubwindowMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a272a117">CLIP_BY_CHILDREN</a> = GDK_CLIP_BY_CHILDREN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a272a118">INCLUDE_INFERIORS</a> = GDK_INCLUDE_INFERIORS
<br>
}
<dl class="el"><dd class="mdescRight">Determines how drawing onto a window will affect child windows of that window. <a href="#a272">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a273">ImageType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a273a119">IMAGE_NORMAL</a> = GDK_IMAGE_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a273a120">IMAGE_SHARED</a> = GDK_IMAGE_SHARED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a273a121">IMAGE_FASTEST</a> = GDK_IMAGE_FASTEST
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the type of a Gdk::Image. <a href="#a273">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a274">InputSource</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a274a122">SOURCE_MOUSE</a> = GDK_SOURCE_MOUSE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a274a123">SOURCE_PEN</a> = GDK_SOURCE_PEN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a274a124">SOURCE_ERASER</a> = GDK_SOURCE_ERASER,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a274a125">SOURCE_CURSOR</a> = GDK_SOURCE_CURSOR
<br>
}
<dl class="el"><dd class="mdescRight">An enumeration describing the type of an input device in general terms. <a href="#a274">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a275">InputMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a275a126">MODE_DISABLED</a> = GDK_MODE_DISABLED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a275a127">MODE_SCREEN</a> = GDK_MODE_SCREEN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a275a128">MODE_WINDOW</a> = GDK_MODE_WINDOW
<br>
}
<dl class="el"><dd class="mdescRight">An enumeration that describes the mode of an input device. <a href="#a275">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a276">FillRule</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a276a129">EVEN_ODD_RULE</a> = GDK_EVEN_ODD_RULE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a276a130">WINDING_RULE</a> = GDK_WINDING_RULE
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the method for determining which pixels are included in a region, when creating a Region from a polygon. <a href="#a276">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a277">OverlapType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a277a131">OVERLAP_RECTANGLE_IN</a> = GDK_OVERLAP_RECTANGLE_IN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a277a132">OVERLAP_RECTANGLE_OUT</a> = GDK_OVERLAP_RECTANGLE_OUT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a277a133">OVERLAP_RECTANGLE_PART</a> = GDK_OVERLAP_RECTANGLE_PART
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the possible values returned by Gdk::Region::rect_in(). <a href="#a277">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a278">AxisUse</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a137">AXIS_IGNORE</a> = GDK_AXIS_IGNORE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a138">AXIS_X</a> = GDK_AXIS_X,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a139">AXIS_Y</a> = GDK_AXIS_Y,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a140">AXIS_PRESSURE</a> = GDK_AXIS_PRESSURE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a141">AXIS_XTILT</a> = GDK_AXIS_XTILT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a142">AXIS_YTILT</a> = GDK_AXIS_YTILT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a143">AXIS_WHEEL</a> = GDK_AXIS_WHEEL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a278a144">AXIS_LAST</a> = GDK_AXIS_LAST
<br>
}
<dl class="el"><dd class="mdescRight">An enumeration describing the way in which a device axis (valuator) maps onto the predefined valuator types that GTK+ understands. <a href="#a278">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a279">ByteOrder</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a279a145">LSB_FIRST</a> = GDK_LSB_FIRST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a279a146">MSB_FIRST</a> = GDK_MSB_FIRST
<br>
}
<dl class="el"><dd class="mdescRight">A set of values describing the possible byte-orders for storing pixel values in memory. <a href="#a279">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a280">DragAction</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a147">ACTION_DEFAULT</a> = GDK_ACTION_DEFAULT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a148">ACTION_COPY</a> = GDK_ACTION_COPY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a149">ACTION_MOVE</a> = GDK_ACTION_MOVE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a150">ACTION_LINK</a> = GDK_ACTION_LINK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a151">ACTION_PRIVATE</a> = GDK_ACTION_PRIVATE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a280a152">ACTION_ASK</a> = GDK_ACTION_ASK
<br>
}
<dl class="el"><dd class="mdescRight">Used in Gdk::DragContext to indicate what the destination should do with the dropped data. <a href="#a280">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a281">DragProtocol</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a153">DRAG_PROTO_MOTIF</a> = GDK_DRAG_PROTO_MOTIF,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a154">DRAG_PROTO_XDND</a> = GDK_DRAG_PROTO_XDND,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a155">DRAG_PROTO_ROOTWIN</a> = GDK_DRAG_PROTO_ROOTWIN,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a156">DRAG_PROTO_</a> = GDK_DRAG_PROTO_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a157">DRAG_PROTO_NONE</a> = GDK_DRAG_PROTO_WIN32_DROPFILES,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a158">DRAG_PROTO_OLE2</a> = GDK_DRAG_PROTO_OLE2,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a281a159">DRAG_PROTO_LOCAL</a> = GDK_DRAG_PROTO_LOCAL
<br>
}
<dl class="el"><dd class="mdescRight">Used in Gdk::DragContext to indicate the protocol according to which DND is done. <a href="#a281">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a282">ExtensionMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a282a160">EXTENSION_EVENTS_NONE</a> = GDK_EXTENSION_EVENTS_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a282a161">EXTENSION_EVENTS_ALL</a> = GDK_EXTENSION_EVENTS_ALL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a282a162">EXTENSION_EVENTS_CURSOR</a> = GDK_EXTENSION_EVENTS_CURSOR
<br>
}
<dl class="el"><dd class="mdescRight">An enumeration used to specify which extension events are desired for a particular widget. <a href="#a282">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a283">FilterReturn</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a283a163">FILTER_CONTINUE</a> = GDK_FILTER_CONTINUE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a283a164">FILTER_TRANSLATE</a> = GDK_FILTER_TRANSLATE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a283a165">FILTER_REMOVE</a> = GDK_FILTER_REMOVE
<br>
}
<dl class="el"><dd class="mdescRight">Specifies the result of applying a FilterSlot to a native event. <a href="#a283">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a284">GrabStatus</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a284a166">GRAB_SUCCESS</a> = GDK_GRAB_SUCCESS,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a284a167">GRAB_ALREADY_GRABBED</a> = GDK_GRAB_ALREADY_GRABBED,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a284a168">GRAB_INVALID_TIME</a> = GDK_GRAB_INVALID_TIME,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a284a169">GRAB_NOT_VIEWABLE</a> = GDK_GRAB_NOT_VIEWABLE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a284a170">GRAB_FROZEN</a> = GDK_GRAB_FROZEN
<br>
}
<dl class="el"><dd class="mdescRight">Returned by pointer_grab() and keyboard_grab() to indicate success or the reason for the failure of the grab attempt. <a href="#a284">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a285">Gravity</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a171">GRAVITY_NORTH_WEST</a> = GDK_GRAVITY_NORTH_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a172">GRAVITY_NORTH</a> = GDK_GRAVITY_NORTH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a173">GRAVITY_NORTH_EAST</a> = GDK_GRAVITY_NORTH_EAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a174">GRAVITY_WEST</a> = GDK_GRAVITY_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a175">GRAVITY_CENTER</a> = GDK_GRAVITY_CENTER,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a176">GRAVITY_EAST</a> = GDK_GRAVITY_EAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a177">GRAVITY_SOUTH_WEST</a> = GDK_GRAVITY_SOUTH_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a178">GRAVITY_SOUTH</a> = GDK_GRAVITY_SOUTH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a179">GRAVITY_SOUTH_EAST</a> = GDK_GRAVITY_SOUTH_EAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a285a180">GRAVITY_STATIC</a> = GDK_GRAVITY_STATIC
<br>
}
<dl class="el"><dd class="mdescRight">Defines the reference point of a window and the meaning of coordinates passed to Gtk::Window::move(). <a href="#a285">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a286">ModifierType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a181">SHIFT_MASK</a> = GDK_SHIFT_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a182">LOCK_MASK</a> = GDK_LOCK_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a183">CONTROL_MASK</a> = GDK_CONTROL_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a184">MOD1_MASK</a> = GDK_MOD1_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a185">MOD2_MASK</a> = GDK_MOD2_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a186">MOD3_MASK</a> = GDK_MOD3_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a187">MOD4_MASK</a> = GDK_MOD4_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a188">MOD5_MASK</a> = GDK_MOD5_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a189">BUTTON1_MASK</a> = GDK_BUTTON1_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a190">BUTTON2_MASK</a> = GDK_BUTTON2_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a191">BUTTON3_MASK</a> = GDK_BUTTON3_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a192">BUTTON4_MASK</a> = GDK_BUTTON4_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a193">BUTTON5_MASK</a> = GDK_BUTTON5_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a194">RELEASE_MASK</a> = GDK_RELEASE_MASK,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a286a195">MODIFIER_MASK</a> = GDK_MODIFIER_MASK
<br>
}
<dl class="el"><dd class="mdescRight">A set of bit-flags to indicate the state of modifier keys and mouse buttons in various event types. <a href="#a286">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a287">RgbDither</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a287a196">RGB_DITHER_NONE</a> = GDK_RGB_DITHER_NONE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a287a197">RGB_DITHER_NORMAL</a> = GDK_RGB_DITHER_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a287a198">RGB_DITHER_MAX</a> = GDK_RGB_DITHER_MAX
<br>
}
<dl class="el"><dd class="mdescRight">Selects whether or not GdkRGB applies dithering to the image on display. <a href="#a287">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a288">WindowEdge</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a199">WINDOW_EDGE_NORTH_WEST</a> = GDK_WINDOW_EDGE_NORTH_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a200">WINDOW_EDGE_NORTH</a> = GDK_WINDOW_EDGE_NORTH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a201">WINDOW_EDGE_NORTH_EAST</a> = GDK_WINDOW_EDGE_NORTH_EAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a202">WINDOW_EDGE_WEST</a> = GDK_WINDOW_EDGE_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a203">WINDOW_EDGE_EAST</a> = GDK_WINDOW_EDGE_EAST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a204">WINDOW_EDGE_SOUTH_WEST</a> = GDK_WINDOW_EDGE_SOUTH_WEST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a205">WINDOW_EDGE_SOUTH</a> = GDK_WINDOW_EDGE_SOUTH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a288a206">WINDOW_EDGE_SOUTH_EAST</a> = GDK_WINDOW_EDGE_SOUTH_EAST
<br>
}
<dl class="el"><dd class="mdescRight">Determines a window edge or corner. <a href="#a288">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a289">WindowTypeHint</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a289a207">WINDOW_TYPE_HINT_NORMAL</a> = GDK_WINDOW_TYPE_HINT_NORMAL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a289a208">WINDOW_TYPE_HINT_DIALOG</a> = GDK_WINDOW_TYPE_HINT_DIALOG,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a289a209">WINDOW_TYPE_HINT_MENU</a> = GDK_WINDOW_TYPE_HINT_MENU,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a289a210">WINDOW_TYPE_HINT_TOOLBAR</a> = GDK_WINDOW_TYPE_HINT_TOOLBAR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a289a211">WINDOW_TYPE_HINT_SPLASHSCREEN</a> = GDK_WINDOW_TYPE_HINT_SPLASHSCREEN
<br>
}
<dl class="el"><dd class="mdescRight">These are hints for the window manager that indicate what type of function the window has. <a href="#a289">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a290">VisualType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a215">VISUAL_STATIC_GRAY</a> = GDK_VISUAL_STATIC_GRAY,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a216">VISUAL_GRAYSCALE</a> = GDK_VISUAL_GRAYSCALE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a217">VISUAL_STATIC_COLOR</a> = GDK_VISUAL_STATIC_COLOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a218">VISUAL_PSUEDO_COLOR</a> = GDK_VISUAL_PSEUDO_COLOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a219">VISUAL_TRUE_COLOR</a> = GDK_VISUAL_TRUE_COLOR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a290a220">VISUAL_DIRECT_COLOR</a> = GDK_VISUAL_DIRECT_COLOR
<br>
}
<dl class="el"><dd class="mdescRight">A set of values that describe the manner in which the pixel values for a visual are converted into RGB values for display. <a href="#a290">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a291">WindowType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a223">WINDOW_ROOT</a> = GDK_WINDOW_ROOT,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a224">WINDOW_TOPLEVEL</a> = GDK_WINDOW_TOPLEVEL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a225">WINDOW_CHILD</a> = GDK_WINDOW_CHILD,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a226">WINDOW_DIALOG</a> = GDK_WINDOW_DIALOG,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a227">WINDOW_TEMP</a> = GDK_WINDOW_TEMP,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a291a228">WINDOW_FOREIGN</a> = GDK_WINDOW_FOREIGN
<br>
}
<dl class="el"><dd class="mdescRight">Describes the kind of window. <a href="#a291">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a292">WMDecoration</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a229">DECOR_ALL</a> = GDK_DECOR_ALL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a230">DECOR_BORDER</a> = GDK_DECOR_BORDER,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a231">DECOR_RESIZEH</a> = GDK_DECOR_RESIZEH,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a232">DECOR_TITLE</a> = GDK_DECOR_TITLE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a233">DECOR_MENU</a> = GDK_DECOR_MENU,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a234">DECOR_MINIMIZE</a> = GDK_DECOR_MINIMIZE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a292a235">DECOR_MAXIMIZE</a> = GDK_DECOR_MAXIMIZE
<br>
}
<dl class="el"><dd class="mdescRight">Specifies hints the window manager can use when determining how to decorate a window. <a href="#a292">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a293">WMFunction</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a236">FUNC_ALL</a> = GDK_FUNC_ALL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a237">FUNC_RESIZE</a> = GDK_FUNC_RESIZE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a238">FUNC_MOVE</a> = GDK_FUNC_MOVE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a239">FUNC_MINIMIZE</a> = GDK_FUNC_MINIMIZE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a240">FUNC_MAXMIZE</a> = GDK_FUNC_MAXIMIZE,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a293a241">FUNC_CLOSE</a> = GDK_FUNC_CLOSE
<br>
}
<dl class="el"><dd class="mdescRight">Specifies hints the window manager can use when determining the functions to offer for the window. <a href="#a293">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a294">Colorspace</a> { <a class="el" href="namespaceGFC_1_1Gdk.html#a294a242">COLORSPACE_RGB</a> = GDK_COLORSPACE_RGB
}
<dl class="el"><dd class="mdescRight">Defines the color spaces that are supported by the gdk-pixbuf library. <a href="#a294">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a295">InterpType</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a295a243">INTERP_NEAREST</a> = GDK_INTERP_NEAREST,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a295a244">INTERP_TILES</a> = GDK_INTERP_TILES,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a295a245">INTERP_BILINEAR</a> = GDK_INTERP_BILINEAR,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a295a246">INTERP_HYPER</a> = GDK_INTERP_HYPER
<br>
}
<dl class="el"><dd class="mdescRight">Describes the different interpolation modes that can be used with the scaling functions. <a href="#a295">More...</a><br></dl><li>enum <a class="el" href="namespaceGFC_1_1Gdk.html#a296">PixbufAlphaMode</a> { <br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a296a247">PIXBUF_ALPHA_BILEVEL</a> = GDK_PIXBUF_ALPHA_BILEVEL,
<br>
<a class="el" href="namespaceGFC_1_1Gdk.html#a296a248">PIXBUF_ALPHA_FULL</a> = GDK_PIXBUF_ALPHA_FULL
<br>
}
<dl class="el"><dd class="mdescRight">These values can be passed to render_to_drawable_alpha() to control how the alpha chanel of an image should be handled. <a href="#a296">More...</a><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
The C++ framework for the GTK+ Drawing Kit and the GdkPixbuf library.
<p>
Provides an API that can be used to add two-dimensional graphics to your program. GDK itself is the abstraction layer that allows GTK+ to support multiple windowing systems. GDK provides drawing and window system facilities on X11, Windows, and the Linux framebuffer device.
<p>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="a278" doxytag="GFC::Gdk::AxisUse" ></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_1Gdk.html#a278">AxisUse</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
An enumeration describing the way in which a device axis (valuator) maps onto the predefined valuator types that GTK+ understands.
<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="a278a137" doxytag="AXIS_IGNORE" ></a>AXIS_IGNORE</em> </td><td>
The axis is ignored. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a138" doxytag="AXIS_X" ></a>AXIS_X</em> </td><td>
The axis is used as the x axis. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a139" doxytag="AXIS_Y" ></a>AXIS_Y</em> </td><td>
The axis is used as the y axis. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a140" doxytag="AXIS_PRESSURE" ></a>AXIS_PRESSURE</em> </td><td>
The axis is used for pressure information. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a141" doxytag="AXIS_XTILT" ></a>AXIS_XTILT</em> </td><td>
The axis is used for x tilt information. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a142" doxytag="AXIS_YTILT" ></a>AXIS_YTILT</em> </td><td>
The axis is used for x tilt information. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a143" doxytag="AXIS_WHEEL" ></a>AXIS_WHEEL</em> </td><td>
The axis is used for wheel information. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a278a144" doxytag="AXIS_LAST" ></a>AXIS_LAST</em> </td><td>
A constant equal to the numerically highest axis value. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a279" doxytag="GFC::Gdk::ByteOrder" ></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_1Gdk.html#a279">ByteOrder</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
A set of values describing the possible byte-orders for storing pixel values in memory.
<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="a279a145" doxytag="LSB_FIRST" ></a>LSB_FIRST</em> </td><td>
The values are stored with the least-significant byte first; for instance, the 32-bit value 0xffeecc would be stored in memory as 0xcc, 0xee, 0xff, 0x00. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a279a146" doxytag="MSB_FIRST" ></a>MSB_FIRST</em> </td><td>
The values are stored with the most-significant byte first; for instance, the 32-bit value 0xffeecc would be stored in memory as 0x00, 0xcc, 0xee, 0xff. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a267" doxytag="GFC::Gdk::CapStyle" ></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_1Gdk.html#a267">CapStyle</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how the end of lines are drawn.
<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="a267a87" doxytag="CAP_NOT_LAST" ></a>CAP_NOT_LAST</em> </td><td>
The same as CAP_BUTT for lines of non-zero width; for zero width lines, the final point on the line will not be drawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a267a88" doxytag="CAP_BUTT" ></a>CAP_BUTT</em> </td><td>
The ends of the lines are drawn squared off and extending to the coordinates of the end point. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a267a89" doxytag="CAP_ROUND" ></a>CAP_ROUND</em> </td><td>
The ends of the lines are drawn as semicircles with the diameter equal to the line width and centered at the end point. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a267a90" doxytag="CAP_PROJECTING" ></a>CAP_PROJECTING</em> </td><td>
The ends of the lines are drawn squared off and extending half the width of the line beyond the end point. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a294" doxytag="GFC::Gdk::Colorspace" ></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_1Gdk.html#a294">Colorspace</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Defines the color spaces that are supported by the gdk-pixbuf library.
<p>
Currently only RGB is supported. <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="a294a242" doxytag="COLORSPACE_RGB" ></a>COLORSPACE_RGB</em> </td><td>
Indicates a red/green/blue additive color space. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a263" doxytag="GFC::Gdk::CrossingMode" ></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_1Gdk.html#a263">CrossingMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the crossing mode for an <a class="el" href="classGFC_1_1Gdk_1_1EventCrossing.html">EventCrossing</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="a263a72" doxytag="CROSSING_NORMAL" ></a>CROSSING_NORMAL</em> </td><td>
Crossing because of pointer motion. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a263a73" doxytag="CROSSING_GRAB" ></a>CROSSING_GRAB</em> </td><td>
Crossing because a grab is activated. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a263a74" doxytag="CROSSING_UNGRAB" ></a>CROSSING_UNGRAB</em> </td><td>
Crossing because a grab is deactivated. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a280" doxytag="GFC::Gdk::DragAction" ></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_1Gdk.html#a280">DragAction</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Used in <a class="el" href="classGFC_1_1Gdk_1_1DragContext.html">Gdk::DragContext</a> to indicate what the destination should do with the dropped data.
<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="a280a147" doxytag="ACTION_DEFAULT" ></a>ACTION_DEFAULT</em> </td><td>
The default action for the protocol being used. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a280a148" doxytag="ACTION_COPY" ></a>ACTION_COPY</em> </td><td>
Copy the data. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a280a149" doxytag="ACTION_MOVE" ></a>ACTION_MOVE</em> </td><td>
Move the data, that is, first copy it, then delete it from the source using the DELETE target of the X selection protocol. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a280a150" doxytag="ACTION_LINK" ></a>ACTION_LINK</em> </td><td>
Add a link to the data; note that this is only useful if source and destination agree on what it means. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a280a151" doxytag="ACTION_PRIVATE" ></a>ACTION_PRIVATE</em> </td><td>
Special action which tells the source that the destination will do something that the source doesn't understand. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a280a152" doxytag="ACTION_ASK" ></a>ACTION_ASK</em> </td><td>
Ask the user what to do with the data. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a281" doxytag="GFC::Gdk::DragProtocol" ></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_1Gdk.html#a281">DragProtocol</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Used in <a class="el" href="classGFC_1_1Gdk_1_1DragContext.html">Gdk::DragContext</a> to indicate the protocol according to which DND is done.
<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="a281a153" doxytag="DRAG_PROTO_MOTIF" ></a>DRAG_PROTO_MOTIF</em> </td><td>
The Motif DND protocol. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a154" doxytag="DRAG_PROTO_XDND" ></a>DRAG_PROTO_XDND</em> </td><td>
The Xdnd protocol. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a155" doxytag="DRAG_PROTO_ROOTWIN" ></a>DRAG_PROTO_ROOTWIN</em> </td><td>
Extension to Xdnd protocol for unclaimed root window drops. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a156" doxytag="DRAG_PROTO_" ></a>DRAG_PROTO_</em> </td><td>
No protocol. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a157" doxytag="DRAG_PROTO_NONE" ></a>DRAG_PROTO_NONE</em> </td><td>
The simple WM_DROPFILES protocol. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a158" doxytag="DRAG_PROTO_OLE2" ></a>DRAG_PROTO_OLE2</em> </td><td>
The complex OLE2 DND protocol (not implemented). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a281a159" doxytag="DRAG_PROTO_LOCAL" ></a>DRAG_PROTO_LOCAL</em> </td><td>
Intra-application DND. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a259" doxytag="GFC::Gdk::EventMask" ></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_1Gdk.html#a259">EventMask</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
A set of bit-flags to indicate which events a window is to receive.
<p>
Most of these masks map onto one or more of the EventType event types.<p>
POINTER_MOTION_HINT_MASK is a special mask which is used to reduce the number of MOTION_NOTIFY events received. Normally a MOTION_NOTIFY event is received each time the mouse moves. However, if the application spends a lot of time processing the event (updating the display, for example), it can easily lag behind the position of the mouse. When using the POINTER_MOTION_HINT_MASK the server will only send MOTION_NOTIFY events when the application asks for them, by calling <a class="el" href="classGFC_1_1Gdk_1_1Window.html#z233_15">Gdk::Window::get_pointer()</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="a259a37" doxytag="EXPOSURE_MASK" ></a>EXPOSURE_MASK</em> </td><td>
Maps to the expose-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a38" doxytag="POINTER_MOTION_MASK" ></a>POINTER_MOTION_MASK</em> </td><td>
Maps to the motion-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a39" doxytag="POINTER_MOTION_HINT_MASK" ></a>POINTER_MOTION_HINT_MASK</em> </td><td>
Decreases the number of motion-notify events. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a40" doxytag="BUTTON_MOTION_MASK" ></a>BUTTON_MOTION_MASK</em> </td><td>
Maps to the motion-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a41" doxytag="BUTTON1_MOTION_MASK" ></a>BUTTON1_MOTION_MASK</em> </td><td>
Maps to the motion-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a42" doxytag="BUTTON2_MOTION_MASK" ></a>BUTTON2_MOTION_MASK</em> </td><td>
Maps to the motion-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a43" doxytag="BUTTON3_MOTION_MASK" ></a>BUTTON3_MOTION_MASK</em> </td><td>
Maps to the motion-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a44" doxytag="BUTTON_PRESS_MASK" ></a>BUTTON_PRESS_MASK</em> </td><td>
Maps to the button-press-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a45" doxytag="BUTTON_RELEASE_MASK" ></a>BUTTON_RELEASE_MASK</em> </td><td>
Maps to the button-press-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a46" doxytag="KEY_PRESS_MASK" ></a>KEY_PRESS_MASK</em> </td><td>
Maps to the key-press-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a47" doxytag="KEY_RELEASE_MASK" ></a>KEY_RELEASE_MASK</em> </td><td>
Maps to the key-release-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a48" doxytag="ENTER_NOTIFY_MASK" ></a>ENTER_NOTIFY_MASK</em> </td><td>
Maps to the enter-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a49" doxytag="LEAVE_NOTIFY_MASK" ></a>LEAVE_NOTIFY_MASK</em> </td><td>
Maps to the leave-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a50" doxytag="FOCUS_CHANGE_MASK" ></a>FOCUS_CHANGE_MASK</em> </td><td>
Maps to the focus-change-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a51" doxytag="STRUCTURE_MASK" ></a>STRUCTURE_MASK</em> </td><td>
Maps to the. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a52" doxytag="PROPERTY_CHANGE_MASK" ></a>PROPERTY_CHANGE_MASK</em> </td><td>
Maps to the property-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a53" doxytag="VISIBILITY_NOTIFY_MASK" ></a>VISIBILITY_NOTIFY_MASK</em> </td><td>
Maps to the visibilty-notify-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a54" doxytag="PROXIMITY_IN_MASK" ></a>PROXIMITY_IN_MASK</em> </td><td>
Maps to the proximity-in-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a55" doxytag="PROXIMITY_OUT_MASK" ></a>PROXIMITY_OUT_MASK</em> </td><td>
Maps to the proximity-out-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a56" doxytag="SUBSTRUCTURE_MASK" ></a>SUBSTRUCTURE_MASK</em> </td><td>
Maps to the. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a57" doxytag="SCROLL_MASK" ></a>SCROLL_MASK</em> </td><td>
Maps to the scroll-event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a259a58" doxytag="ALL_EVENTS_MASK" ></a>ALL_EVENTS_MASK</em> </td><td>
Maps to the all events. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a258" doxytag="GFC::Gdk::EventType" ></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_1Gdk.html#a258">EventType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the type of the event.
<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="a258a2" doxytag="NOTHING" ></a>NOTHING</em> </td><td>
A special code to indicate a null event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a3" doxytag="DELETE" ></a>DELETE</em> </td><td>
The window manager has requested that the toplevel window be hidden or destroyed, usually when the user clicks on a special icon in the title bar. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a4" doxytag="DESTROY" ></a>DESTROY</em> </td><td>
The window has been destroyed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a5" doxytag="EXPOSE" ></a>EXPOSE</em> </td><td>
All or part of the window has become visible and needs to be redrawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a6" doxytag="MOTION_NOTIFY" ></a>MOTION_NOTIFY</em> </td><td>
The pointer (usually a mouse) has moved. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a7" doxytag="BUTTON_PRESS" ></a>BUTTON_PRESS</em> </td><td>
A mouse button has been pressed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a8" doxytag="TWO_BUTTON_PRESS" ></a>TWO_BUTTON_PRESS</em> </td><td>
A mouse button has been double-clicked (clicked twice within a short period of time); Note that each click also generates a GDK_BUTTON_PRESS event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a9" doxytag="THREE_BUTTON_PRESS" ></a>THREE_BUTTON_PRESS</em> </td><td>
A mouse button has been clicked 3 times in a short period of time; Note that each click also generates a GDK_BUTTON_PRESS event. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a10" doxytag="BUTTON_RELEASE" ></a>BUTTON_RELEASE</em> </td><td>
A mouse button has been released. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a11" doxytag="KEY_PRESS" ></a>KEY_PRESS</em> </td><td>
A key has been pressed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a12" doxytag="KEY_RELEASE" ></a>KEY_RELEASE</em> </td><td>
A key has been released. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a13" doxytag="ENTER_NOTIFY" ></a>ENTER_NOTIFY</em> </td><td>
The pointer has entered the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a14" doxytag="LEAVE_NOTIFY" ></a>LEAVE_NOTIFY</em> </td><td>
The pointer has left the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a15" doxytag="FOCUS_CHANGE" ></a>FOCUS_CHANGE</em> </td><td>
The keyboard focus has entered or left the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a16" doxytag="CONFIGURE" ></a>CONFIGURE</em> </td><td>
The size, position or stacking order of the window has changed; Note that GTK+ discards these events for <a class="el" href="namespaceGFC_1_1Gdk.html#a291a225">Gdk::WINDOW_CHILD</a> windows. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a17" doxytag="MAP" ></a>MAP</em> </td><td>
The window has been mapped. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a18" doxytag="UNMAP" ></a>UNMAP</em> </td><td>
The window has been unmapped. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a19" doxytag="PROPERTY_NOTIFY" ></a>PROPERTY_NOTIFY</em> </td><td>
A property on the window has been changed or deleted. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a20" doxytag="SELECTION_CLEAR" ></a>SELECTION_CLEAR</em> </td><td>
The application has lost ownership of a selection. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a21" doxytag="SELECTION_REQUEST" ></a>SELECTION_REQUEST</em> </td><td>
Another application has requested a selection. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a22" doxytag="SELECTION_NOTIFY" ></a>SELECTION_NOTIFY</em> </td><td>
A selection has been received. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a23" doxytag="PROXIMITY_IN" ></a>PROXIMITY_IN</em> </td><td>
An input device has moved into contact with a sensing surface (e.g. a touchscreen or graphics tablet). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a24" doxytag="PROXIMITY_OUT" ></a>PROXIMITY_OUT</em> </td><td>
An input device has moved out of contact with a sensing surface. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a25" doxytag="DRAG_ENTER" ></a>DRAG_ENTER</em> </td><td>
The mouse has entered the window while a drag is in progress. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a26" doxytag="DRAG_LEAVE" ></a>DRAG_LEAVE</em> </td><td>
The mouse has entered the window while a drag is in progress. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a27" doxytag="DRAG_MOTION" ></a>DRAG_MOTION</em> </td><td>
The mouse has moved in the window while a drag is in progress. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a28" doxytag="DRAG_STATUS" ></a>DRAG_STATUS</em> </td><td>
The status of the drag operation initiated by the window has changed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a29" doxytag="DROP_START" ></a>DROP_START</em> </td><td>
A drop operation onto the window has started. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a30" doxytag="DROP_FINISHED" ></a>DROP_FINISHED</em> </td><td>
The drop operation initiated by the window has completed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a31" doxytag="CLIENT_EVENT" ></a>CLIENT_EVENT</em> </td><td>
A message has been received from another application. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a32" doxytag="VISIBILITY_NOTIFY" ></a>VISIBILITY_NOTIFY</em> </td><td>
The window visibility status has changed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a33" doxytag="NO_EXPOSE" ></a>NO_EXPOSE</em> </td><td>
Indicates that the source region was completely available when parts of a drawable were copied (this is not very useful). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a34" doxytag="SCROLL" ></a>SCROLL</em> </td><td>
The mouse wheel was scrolled either up or down. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a35" doxytag="WINDOW_STATE" ></a>WINDOW_STATE</em> </td><td>
The state of a toplevel window has chnaged (either not shown, minimized, maximized, sticky or fullscreen). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a258a36" doxytag="SETTING" ></a>SETTING</em> </td><td>
A setting was modified. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a282" doxytag="GFC::Gdk::ExtensionMode" ></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_1Gdk.html#a282">ExtensionMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
An enumeration used to specify which extension events are desired for a particular 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="a282a160" doxytag="EXTENSION_EVENTS_NONE" ></a>EXTENSION_EVENTS_NONE</em> </td><td>
No extension events are desired. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a282a161" doxytag="EXTENSION_EVENTS_ALL" ></a>EXTENSION_EVENTS_ALL</em> </td><td>
All extension events are desired. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a282a162" doxytag="EXTENSION_EVENTS_CURSOR" ></a>EXTENSION_EVENTS_CURSOR</em> </td><td>
Extension events are desired only if a cursor will be displayed for the device. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a268" doxytag="GFC::Gdk::Fill" ></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_1Gdk.html#a268">Fill</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how primitives are drawn.
<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="a268a91" doxytag="SOLID" ></a>SOLID</em> </td><td>
Draw with the foreground color. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a268a92" doxytag="TILED" ></a>TILED</em> </td><td>
Draw with a tiled pixmap. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a268a93" doxytag="STIPPLED" ></a>STIPPLED</em> </td><td>
Draw using the stipple bitmap; pixels corresponding to bits in the stipple bitmap that are set will be drawn in the foreground color; pixels corresponding to bits that are not set will be left untouched. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a268a94" doxytag="OPAQUE_STIPPLED" ></a>OPAQUE_STIPPLED</em> </td><td>
Draw using the stipple bitmap; pixels corresponding to bits in the stipple bitmap that are set will be drawn in the foreground color; pixels corresponding to bits that are not set will be left untouched. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a276" doxytag="GFC::Gdk::FillRule" ></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_1Gdk.html#a276">FillRule</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the method for determining which pixels are included in a region, when creating a <a class="el" href="classGFC_1_1Gdk_1_1Region.html">Region</a> from a polygon.
<p>
The fill rule is only relevant for polygons which overlap themselves. <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="a276a129" doxytag="EVEN_ODD_RULE" ></a>EVEN_ODD_RULE</em> </td><td>
Areas which are overlapped an odd number of times are included in the region, while areas overlapped an even number of times are not. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a276a130" doxytag="WINDING_RULE" ></a>WINDING_RULE</em> </td><td>
Overlapping areas are always included. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a283" doxytag="GFC::Gdk::FilterReturn" ></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_1Gdk.html#a283">FilterReturn</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the result of applying a FilterSlot to a native event.
<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="a283a163" doxytag="FILTER_CONTINUE" ></a>FILTER_CONTINUE</em> </td><td>
<a class="el" href="classGFC_1_1Gdk_1_1Event.html">Event</a> not handled, continue processesing. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a283a164" doxytag="FILTER_TRANSLATE" ></a>FILTER_TRANSLATE</em> </td><td>
Translated event stored. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a283a165" doxytag="FILTER_REMOVE" ></a>FILTER_REMOVE</em> </td><td>
Terminate processing, removing event. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a269" doxytag="GFC::Gdk::Function" ></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_1Gdk.html#a269">Function</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how the bit values for the source pixels are combined with the bit values for destination pixels to produce the final result.
<p>
The sixteen values here correspond to the 16 different possible 2x2 truth tables. Only a couple of these values are usually useful; for colored images, only COPY, XOR and INVERT are generally useful. For bitmaps, AND and OR are also useful. <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="a269a95" doxytag="COPY" ></a>COPY</em> </td><td>
Overwrites destination pixels with the source pixels (GXcopy). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a96" doxytag="INVERT" ></a>INVERT</em> </td><td>
Inverts the destination pixels (GXinvert). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a97" doxytag="XOR" ></a>XOR</em> </td><td>
Xor's the destination pixels with the source pixels (GXxor). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a98" doxytag="CLEAR" ></a>CLEAR</em> </td><td>
Set pixels to 0 (GXclear). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a99" doxytag="AND" ></a>AND</em> </td><td>
Source AND destination (GXand). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a100" doxytag="AND_REVERSE" ></a>AND_REVERSE</em> </td><td>
Source AND NOT destination (GXandReverse). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a101" doxytag="AND_INVERT" ></a>AND_INVERT</em> </td><td>
NOT source AND destination (GXandInverted). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a102" doxytag="NOOP" ></a>NOOP</em> </td><td>
Destination (GXnoop). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a103" doxytag="OR" ></a>OR</em> </td><td>
Source OR destination (GXor). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a104" doxytag="EQUIV" ></a>EQUIV</em> </td><td>
NOT source XOR destination (GXequiv). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a105" doxytag="OR_REVERSE" ></a>OR_REVERSE</em> </td><td>
Source OR NOT destination (GXorReverse). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a106" doxytag="COPY_INVERT" ></a>COPY_INVERT</em> </td><td>
NOT source (GXcopyInverted). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a107" doxytag="OR_INVERT" ></a>OR_INVERT</em> </td><td>
NOT source OR destination (GXorInverted). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a108" doxytag="NAND" ></a>NAND</em> </td><td>
NOT source OR NOT destination (GXnand). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a109" doxytag="NOR" ></a>NOR</em> </td><td>
NOT source AND NOT destination (GXset). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a269a110" doxytag="SET" ></a>SET</em> </td><td>
Set pixels to 1. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a284" doxytag="GFC::Gdk::GrabStatus" ></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_1Gdk.html#a284">GrabStatus</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Returned by pointer_grab() and keyboard_grab() to indicate success or the reason for the failure of the grab attempt.
<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="a284a166" doxytag="GRAB_SUCCESS" ></a>GRAB_SUCCESS</em> </td><td>
The resource was successfully grabbed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a284a167" doxytag="GRAB_ALREADY_GRABBED" ></a>GRAB_ALREADY_GRABBED</em> </td><td>
The resource is actively grabbed by another client. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a284a168" doxytag="GRAB_INVALID_TIME" ></a>GRAB_INVALID_TIME</em> </td><td>
The resource was grabbed more recently than the specified time. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a284a169" doxytag="GRAB_NOT_VIEWABLE" ></a>GRAB_NOT_VIEWABLE</em> </td><td>
The grab window or the confine_to window are not viewable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a284a170" doxytag="GRAB_FROZEN" ></a>GRAB_FROZEN</em> </td><td>
The resource is frozen by an active grab of another client. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a285" doxytag="GFC::Gdk::Gravity" ></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_1Gdk.html#a285">Gravity</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Defines the reference point of a window and the meaning of coordinates passed to <a class="el" href="classGFC_1_1Gtk_1_1Window.html#z1073_51">Gtk::Window::move()</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="a285a171" doxytag="GRAVITY_NORTH_WEST" ></a>GRAVITY_NORTH_WEST</em> </td><td>
The reference point is at the top left corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a172" doxytag="GRAVITY_NORTH" ></a>GRAVITY_NORTH</em> </td><td>
The reference point is in the middle of the top edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a173" doxytag="GRAVITY_NORTH_EAST" ></a>GRAVITY_NORTH_EAST</em> </td><td>
The reference point is at the top right corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a174" doxytag="GRAVITY_WEST" ></a>GRAVITY_WEST</em> </td><td>
The reference point is at the middle of the left edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a175" doxytag="GRAVITY_CENTER" ></a>GRAVITY_CENTER</em> </td><td>
The reference point is at the center of the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a176" doxytag="GRAVITY_EAST" ></a>GRAVITY_EAST</em> </td><td>
The reference point is at the middle of the right edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a177" doxytag="GRAVITY_SOUTH_WEST" ></a>GRAVITY_SOUTH_WEST</em> </td><td>
The reference point is at the lower left corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a178" doxytag="GRAVITY_SOUTH" ></a>GRAVITY_SOUTH</em> </td><td>
The reference point is at the middle of the lower edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a179" doxytag="GRAVITY_SOUTH_EAST" ></a>GRAVITY_SOUTH_EAST</em> </td><td>
The reference point is at the lower right corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a285a180" doxytag="GRAVITY_STATIC" ></a>GRAVITY_STATIC</em> </td><td>
The reference point is at the top left corner of the window itself, ignoring window manager decorations. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a273" doxytag="GFC::Gdk::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_1Gdk.html#a273">ImageType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the type of a <a class="el" href="classGFC_1_1Gdk_1_1Image.html">Gdk::Image</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="a273a119" doxytag="IMAGE_NORMAL" ></a>IMAGE_NORMAL</em> </td><td>
The original X image type, which is quite slow since the image has to be transferred from the client to the server to display it. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a273a120" doxytag="IMAGE_SHARED" ></a>IMAGE_SHARED</em> </td><td>
A faster image type, which uses shared memory to transfer the image data between client and server; However this will only be available if client and server are on the same machine and the shared memory extension is supported by the server. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a273a121" doxytag="IMAGE_FASTEST" ></a>IMAGE_FASTEST</em> </td><td>
Specifies that IMAGE_SHARED should be tried first, and if that fails then IMAGE_NORMAL will be used. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a275" doxytag="GFC::Gdk::InputMode" ></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_1Gdk.html#a275">InputMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
An enumeration that describes the mode of an input device.
<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="a275a126" doxytag="MODE_DISABLED" ></a>MODE_DISABLED</em> </td><td>
The device is disabled and will not report any events. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a275a127" doxytag="MODE_SCREEN" ></a>MODE_SCREEN</em> </td><td>
The device is enabled; the device's coordinate space maps to the entire screen. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a275a128" doxytag="MODE_WINDOW" ></a>MODE_WINDOW</em> </td><td>
The device is enabled; the device's coordinate space is mapped to a single window (the manner in which this window is chosen is undefined, but it will typically be the same way in which the focus window for key events is determined). </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a274" doxytag="GFC::Gdk::InputSource" ></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_1Gdk.html#a274">InputSource</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
An enumeration describing the type of an input device in general terms.
<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="a274a122" doxytag="SOURCE_MOUSE" ></a>SOURCE_MOUSE</em> </td><td>
The device is a mouse (this will be reported for the core pointer, even if it is something else, such as a trackball). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a274a123" doxytag="SOURCE_PEN" ></a>SOURCE_PEN</em> </td><td>
The device is a stylus of a graphics tablet or similar device. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a274a124" doxytag="SOURCE_ERASER" ></a>SOURCE_ERASER</em> </td><td>
The device is an eraser; typically, this would be the other end of a stylus on a graphics tablet. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a274a125" doxytag="SOURCE_CURSOR" ></a>SOURCE_CURSOR</em> </td><td>
The device is a graphics tablet "puck" or similar device. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a295" doxytag="GFC::Gdk::InterpType" ></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_1Gdk.html#a295">InterpType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the different interpolation modes that can be used with the scaling functions.
<p>
INTERP_NEAREST is the fastest scaling method, but has horrible quality when scaling down. INTERP_BILINEAR is the best choice if you aren't sure what to choose, it has a good speed/quality balance.<p>
<b>Note:</b> Cubic filtering is missing from the list; hyperbolic interpolation is just as fast and results in higher quality. <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="a295a243" doxytag="INTERP_NEAREST" ></a>INTERP_NEAREST</em> </td><td>
Nearest neighbor sampling; this is the fastest and lowest quality mode; Quality is normally unacceptable when scaling down, but may be OK when scaling up. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a295a244" doxytag="INTERP_TILES" ></a>INTERP_TILES</em> </td><td>
This is an accurate simulation of the PostScript image operator without any interpolation enabled; Each pixel is rendered as a tiny parallelogram of solid color, the edges of which are implemented with antialiasing; It resembles nearest neighbor for enlargement, and bilinear for reduction. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a295a245" doxytag="INTERP_BILINEAR" ></a>INTERP_BILINEAR</em> </td><td>
Best quality/speed balance; use this mode by default (bilinear interpolation); For enlargement, it is equivalent to point-sampling the ideal bilinear-interpolated image; For reduction, it is equivalent to laying down small tiles and integrating over the coverage area. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a295a246" doxytag="INTERP_HYPER" ></a>INTERP_HYPER</em> </td><td>
This is the slowest and highest quality reconstruction function; It is derived from the hyperbolic filters in Wolberg's "Digital Image Warping", and is formally defined as the hyperbolic-filter sampling the ideal hyperbolic-filter interpolated image (the filter is designed to be idempotent for 1:1 pixel mapping). </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a270" doxytag="GFC::Gdk::JoinStyle" ></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_1Gdk.html#a270">JoinStyle</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how the joins between segments of a polygon are drawn.
<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="a270a111" doxytag="JOIN_MITER" ></a>JOIN_MITER</em> </td><td>
The sides of each line are extended to meet at an angle. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a270a112" doxytag="JOIN_ROUND" ></a>JOIN_ROUND</em> </td><td>
The sides of the two lines are joined by a circular arc. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a270a113" doxytag="JOIN_BEVEL" ></a>JOIN_BEVEL</em> </td><td>
The sides of the two lines are joined by a straight line which makes an equal angle with each line. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a271" doxytag="GFC::Gdk::LineStyle" ></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_1Gdk.html#a271">LineStyle</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how lines are drawn.
<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="a271a114" doxytag="LINE_SOLID" ></a>LINE_SOLID</em> </td><td>
Lines are drawn solid. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a271a115" doxytag="LINE_ON_OFF_DASH" ></a>LINE_ON_OFF_DASH</em> </td><td>
Even segments are drawn; odd segments are not drawn. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a271a116" doxytag="LINE_DOUBLE_DASH" ></a>LINE_DOUBLE_DASH</em> </td><td>
Even segments are drawn normally.
<p>
Odd segments are drawn in the background color if the fill style is SOLID, or in the background color masked by the stipple if the fill style is STIPPLED. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a286" doxytag="GFC::Gdk::ModifierType" ></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_1Gdk.html#a286">ModifierType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
A set of bit-flags to indicate the state of modifier keys and mouse buttons in various event types.
<p>
Typical modifier keys are Shift, Control, Meta, Super, Hyper, Alt, Compose, Apple, CapsLock or ShiftLock.<p>
Like the X <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> System, GDK supports 8 modifier keys and 5 mouse 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="a286a181" doxytag="SHIFT_MASK" ></a>SHIFT_MASK</em> </td><td>
The Shift key. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a182" doxytag="LOCK_MASK" ></a>LOCK_MASK</em> </td><td>
A Lock key (depending on the modifier mapping of the X server this may either be CapsLock or ShiftLock). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a183" doxytag="CONTROL_MASK" ></a>CONTROL_MASK</em> </td><td>
The Control key. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a184" doxytag="MOD1_MASK" ></a>MOD1_MASK</em> </td><td>
The fourth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier, but normally it is the Alt key). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a185" doxytag="MOD2_MASK" ></a>MOD2_MASK</em> </td><td>
The fifth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a186" doxytag="MOD3_MASK" ></a>MOD3_MASK</em> </td><td>
The sixth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a187" doxytag="MOD4_MASK" ></a>MOD4_MASK</em> </td><td>
The seventh modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a188" doxytag="MOD5_MASK" ></a>MOD5_MASK</em> </td><td>
The eighth modifier key (it depends on the modifier mapping of the X server which key is interpreted as this modifier). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a189" doxytag="BUTTON1_MASK" ></a>BUTTON1_MASK</em> </td><td>
The first mouse button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a190" doxytag="BUTTON2_MASK" ></a>BUTTON2_MASK</em> </td><td>
The second mouse button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a191" doxytag="BUTTON3_MASK" ></a>BUTTON3_MASK</em> </td><td>
The third mouse button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a192" doxytag="BUTTON4_MASK" ></a>BUTTON4_MASK</em> </td><td>
The fourth mouse button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a193" doxytag="BUTTON5_MASK" ></a>BUTTON5_MASK</em> </td><td>
The fifth mouse button. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a194" doxytag="RELEASE_MASK" ></a>RELEASE_MASK</em> </td><td>
Not used in GDK itself; GTK+ uses it to differentiate between (keyval, modifiers) pairs from key press and release events. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a286a195" doxytag="MODIFIER_MASK" ></a>MODIFIER_MASK</em> </td><td>
Unknown. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a262" doxytag="GFC::Gdk::NotifyType" ></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_1Gdk.html#a262">NotifyType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the kind of crossing for an <a class="el" href="classGFC_1_1Gdk_1_1EventCrossing.html">EventCrossing</a>.
<p>
See the X11 protocol specification of LeaveNotify for full details of crossing event generation. <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="a262a66" doxytag="NOTIFY_ANCESTOR" ></a>NOTIFY_ANCESTOR</em> </td><td>
The window is entered from an ancestor or left towards an ancestor. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a262a67" doxytag="NOTIFY_VIRTUAL" ></a>NOTIFY_VIRTUAL</em> </td><td>
The pointer moves between an ancestor and an inferior of the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a262a68" doxytag="NOTIFY_INFERIOR" ></a>NOTIFY_INFERIOR</em> </td><td>
The window is entered from an inferior or left towards an inferior. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a262a69" doxytag="NOTIFY_NONLINEAR" ></a>NOTIFY_NONLINEAR</em> </td><td>
The window is entered from or left towards a window which is neither an ancestor nor an inferior. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a262a70" doxytag="NOTIFY_NONLINEAR_VIRTUAL" ></a>NOTIFY_NONLINEAR_VIRTUAL</em> </td><td>
The pointer moves between two windows which are not ancestors of each other and the window is part of the ancestor chain between one of these windows and their least common ancestor. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a262a71" doxytag="NOTIFY_UNKNOWN" ></a>NOTIFY_UNKNOWN</em> </td><td>
Unknown. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a277" doxytag="GFC::Gdk::OverlapType" ></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_1Gdk.html#a277">OverlapType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the possible values returned by <a class="el" href="classGFC_1_1Gdk_1_1Region.html#z193_9">Gdk::Region::rect_in()</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="a277a131" doxytag="OVERLAP_RECTANGLE_IN" ></a>OVERLAP_RECTANGLE_IN</em> </td><td>
The rectangle is inside the <a class="el" href="classGFC_1_1Gdk_1_1Region.html">Region</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a277a132" doxytag="OVERLAP_RECTANGLE_OUT" ></a>OVERLAP_RECTANGLE_OUT</em> </td><td>
The rectangle is outside the <a class="el" href="classGFC_1_1Gdk_1_1Region.html">Region</a>. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a277a133" doxytag="OVERLAP_RECTANGLE_PART" ></a>OVERLAP_RECTANGLE_PART</em> </td><td>
The rectangle is partly inside the <a class="el" href="classGFC_1_1Gdk_1_1Region.html">Region</a>. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a296" doxytag="GFC::Gdk::PixbufAlphaMode" ></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_1Gdk.html#a296">PixbufAlphaMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
These values can be passed to render_to_drawable_alpha() to control how the alpha chanel of an image should be handled.
<p>
This method can create a bilevel clipping mask (black and white) and use it while pagfcng the image. In the future, when the X <a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> System gets an alpha channel extension, it will be possible to do full alpha compositing onto arbitrary drawables. For now both cases fall back to a bilevel clipping mask. <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="a296a247" doxytag="PIXBUF_ALPHA_BILEVEL" ></a>PIXBUF_ALPHA_BILEVEL</em> </td><td>
A bilevel clipping mask (black and white) will be created and used to draw the image; Pixels below 0.5 opacity will be considered fully transparent, and all others will be considered fully opaque. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a296a248" doxytag="PIXBUF_ALPHA_FULL" ></a>PIXBUF_ALPHA_FULL</em> </td><td>
For now falls back to PIXBUF_ALPHA_BILEVEL; In the future it will do full alpha compositing. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a264" doxytag="GFC::Gdk::PropertyState" ></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_1Gdk.html#a264">PropertyState</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the type of a property change for an <a class="el" href="classGFC_1_1Gdk_1_1EventProperty.html">EventProperty</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="a264a75" doxytag="PROPERTY_NEW_VALUE" ></a>PROPERTY_NEW_VALUE</em> </td><td>
The property value was changed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a264a76" doxytag="PROPERTY_DELETE" ></a>PROPERTY_DELETE</em> </td><td>
The property was deleted. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a287" doxytag="GFC::Gdk::RgbDither" ></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_1Gdk.html#a287">RgbDither</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Selects whether or not GdkRGB applies dithering to the image on display.
<p>
Since GdkRGB currently only handles images with 8 bits per component, dithering on 24 bit per pixel displays is a moot point. <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="a287a196" doxytag="RGB_DITHER_NONE" ></a>RGB_DITHER_NONE</em> </td><td>
Never use dithering. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a287a197" doxytag="RGB_DITHER_NORMAL" ></a>RGB_DITHER_NORMAL</em> </td><td>
Use dithering in 8 bits per pixel (and below) only. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a287a198" doxytag="RGB_DITHER_MAX" ></a>RGB_DITHER_MAX</em> </td><td>
Use dithering in 16 bits per pixel and below. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a261" doxytag="GFC::Gdk::ScrollDirection" ></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_1Gdk.html#a261">ScrollDirection</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the direction for an <a class="el" href="classGFC_1_1Gdk_1_1EventScroll.html">EventScroll</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="a261a62" doxytag="SCROLL_UP" ></a>SCROLL_UP</em> </td><td>
The window is scrolled up. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a261a64" doxytag="SCROLL_LEFT" ></a>SCROLL_LEFT</em> </td><td>
The window is scrolled to the left. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a261a65" doxytag="SCROLL_RIGHT" ></a>SCROLL_RIGHT</em> </td><td>
The window is scrolled to the right. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a266" doxytag="GFC::Gdk::SettingAction" ></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_1Gdk.html#a266">SettingAction</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the kind of modification applied to a setting in an <a class="el" href="classGFC_1_1Gdk_1_1EventSetting.html">EventSetting</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="a266a84" doxytag="SETTING_ACTION_NEW" ></a>SETTING_ACTION_NEW</em> </td><td>
A setting was added. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a266a85" doxytag="SETTING_ACTION_CHANGED" ></a>SETTING_ACTION_CHANGED</em> </td><td>
A setting was changed. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a266a86" doxytag="SETTING_ACTION_DELETED" ></a>SETTING_ACTION_DELETED</em> </td><td>
A setting was deleted. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a272" doxytag="GFC::Gdk::SubwindowMode" ></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_1Gdk.html#a272">SubwindowMode</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines how drawing onto a window will affect child windows of that window.
<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="a272a117" doxytag="CLIP_BY_CHILDREN" ></a>CLIP_BY_CHILDREN</em> </td><td>
Only draw onto the window itself. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a272a118" doxytag="INCLUDE_INFERIORS" ></a>INCLUDE_INFERIORS</em> </td><td>
Draw onto the window and child windows. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a260" doxytag="GFC::Gdk::VisibilityState" ></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_1Gdk.html#a260">VisibilityState</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the visiblity status of a window for an <a class="el" href="classGFC_1_1Gdk_1_1EventVisibility.html">EventVisibility</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="a260a59" doxytag="VISIBILITY_UNOBSCURED" ></a>VISIBILITY_UNOBSCURED</em> </td><td>
The window is completely visible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a260a60" doxytag="VISIBILITY_PARTIAL" ></a>VISIBILITY_PARTIAL</em> </td><td>
The window is partially visible. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a260a61" doxytag="VISIBILITY_FULLY_OBSCURED" ></a>VISIBILITY_FULLY_OBSCURED</em> </td><td>
The window is not visible at all. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a290" doxytag="GFC::Gdk::VisualType" ></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_1Gdk.html#a290">VisualType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
A set of values that describe the manner in which the pixel values for a visual are converted into RGB values for display.
<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="a290a215" doxytag="VISUAL_STATIC_GRAY" ></a>VISUAL_STATIC_GRAY</em> </td><td>
Each pixel value indexes a grayscale value directly. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a290a216" doxytag="VISUAL_GRAYSCALE" ></a>VISUAL_GRAYSCALE</em> </td><td>
Each pixel is an index into a color map that maps pixel values into grayscale values (the color map can be changed by an application). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a290a217" doxytag="VISUAL_STATIC_COLOR" ></a>VISUAL_STATIC_COLOR</em> </td><td>
Each pixel value is an index into a predefined, unmodifiable color map that maps pixel values into RGB values. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a290a218" doxytag="VISUAL_PSUEDO_COLOR" ></a>VISUAL_PSUEDO_COLOR</em> </td><td>
Each pixel is an index into a color map that maps pixel values into rgb values (the color map can be changed by an application). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a290a219" doxytag="VISUAL_TRUE_COLOR" ></a>VISUAL_TRUE_COLOR</em> </td><td>
Each pixel value directly contains red, green, and blue components (The red_mask, green_mask, and blue_mask fields of the GdkVisual structure describe how the components are assembled into a pixel value). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a290a220" doxytag="VISUAL_DIRECT_COLOR" ></a>VISUAL_DIRECT_COLOR</em> </td><td>
Each pixel value contains red, green, and blue components as for GDK_TRUE_COLOR, but the components are mapped via a color table into the final output table instead of being converted directly. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a288" doxytag="GFC::Gdk::WindowEdge" ></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_1Gdk.html#a288">WindowEdge</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines a window edge or corner.
<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="a288a199" doxytag="WINDOW_EDGE_NORTH_WEST" ></a>WINDOW_EDGE_NORTH_WEST</em> </td><td>
The top left corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a200" doxytag="WINDOW_EDGE_NORTH" ></a>WINDOW_EDGE_NORTH</em> </td><td>
The top edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a201" doxytag="WINDOW_EDGE_NORTH_EAST" ></a>WINDOW_EDGE_NORTH_EAST</em> </td><td>
The top right corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a202" doxytag="WINDOW_EDGE_WEST" ></a>WINDOW_EDGE_WEST</em> </td><td>
The left edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a203" doxytag="WINDOW_EDGE_EAST" ></a>WINDOW_EDGE_EAST</em> </td><td>
The right edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a204" doxytag="WINDOW_EDGE_SOUTH_WEST" ></a>WINDOW_EDGE_SOUTH_WEST</em> </td><td>
The lower left corner. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a205" doxytag="WINDOW_EDGE_SOUTH" ></a>WINDOW_EDGE_SOUTH</em> </td><td>
The lower edge. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a288a206" doxytag="WINDOW_EDGE_SOUTH_EAST" ></a>WINDOW_EDGE_SOUTH_EAST</em> </td><td>
The lower right corner. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a265" doxytag="GFC::Gdk::WindowState" ></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_1Gdk.html#a265">WindowState</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies the state of a toplevel window.
<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="a265a77" doxytag="WINDOW_STATE_WITHDRAWN" ></a>WINDOW_STATE_WITHDRAWN</em> </td><td>
The window is not shown. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a78" doxytag="WINDOW_STATE_ICONIFIED" ></a>WINDOW_STATE_ICONIFIED</em> </td><td>
The window is minimized. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a79" doxytag="WINDOW_STATE_MAXIMIZED" ></a>WINDOW_STATE_MAXIMIZED</em> </td><td>
The window is maximized. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a80" doxytag="WINDOW_STATE_STICKY" ></a>WINDOW_STATE_STICKY</em> </td><td>
The window is sticky. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a81" doxytag="WINDOW_STATE_FULLSCREEN" ></a>WINDOW_STATE_FULLSCREEN</em> </td><td>
The window is fullscreen. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a82" doxytag="WINDOW_STATE_ABOVE" ></a>WINDOW_STATE_ABOVE</em> </td><td>
The window is kept above other windows. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a265a83" doxytag="WINDOW_STATE_BELOW" ></a>WINDOW_STATE_BELOW</em> </td><td>
The window is kept below other windows. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a291" doxytag="GFC::Gdk::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_1Gdk.html#a291">WindowType</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Describes the kind of window.
<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="a291a223" doxytag="WINDOW_ROOT" ></a>WINDOW_ROOT</em> </td><td>
The root window; this window has no parent, covers the entire screen, and is created by the window system. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a291a224" doxytag="WINDOW_TOPLEVEL" ></a>WINDOW_TOPLEVEL</em> </td><td>
Toplevel window (used to implement <a class="el" href="classGFC_1_1Gtk_1_1Window.html">Gtk::Window</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a291a225" doxytag="WINDOW_CHILD" ></a>WINDOW_CHILD</em> </td><td>
Child window (used to implement e.g. <a class="el" href="classGFC_1_1Gtk_1_1Button.html">Gtk::Button</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a291a226" doxytag="WINDOW_DIALOG" ></a>WINDOW_DIALOG</em> </td><td>
Useless/deprecated compatibility type. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a291a227" doxytag="WINDOW_TEMP" ></a>WINDOW_TEMP</em> </td><td>
Override redirect temporary window (used to implement <a class="el" href="classGFC_1_1Gtk_1_1Menu.html">Gtk::Menu</a>). </td></tr>
<tr><td valign=top><em><a class="anchor" name="a291a228" doxytag="WINDOW_FOREIGN" ></a>WINDOW_FOREIGN</em> </td><td>
Foreign window. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a289" doxytag="GFC::Gdk::WindowTypeHint" ></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_1Gdk.html#a289">WindowTypeHint</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
These are hints for the window manager that indicate what type of function the window has.
<p>
The window manager can use this when determining decoration and behaviour of the window. The hint must be set before mapping the window. <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="a289a207" doxytag="WINDOW_TYPE_HINT_NORMAL" ></a>WINDOW_TYPE_HINT_NORMAL</em> </td><td>
Normal toplevel window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a289a208" doxytag="WINDOW_TYPE_HINT_DIALOG" ></a>WINDOW_TYPE_HINT_DIALOG</em> </td><td>
Dialog window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a289a209" doxytag="WINDOW_TYPE_HINT_MENU" ></a>WINDOW_TYPE_HINT_MENU</em> </td><td>
<a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> used to implement a menu. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a289a210" doxytag="WINDOW_TYPE_HINT_TOOLBAR" ></a>WINDOW_TYPE_HINT_TOOLBAR</em> </td><td>
<a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> used to implement toolbars. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a289a211" doxytag="WINDOW_TYPE_HINT_SPLASHSCREEN" ></a>WINDOW_TYPE_HINT_SPLASHSCREEN</em> </td><td>
<a class="el" href="classGFC_1_1Gdk_1_1Window.html">Window</a> used to implement a splashscreen. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a292" doxytag="GFC::Gdk::WMDecoration" ></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_1Gdk.html#a292">WMDecoration</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies hints the window manager can use when determining how to decorate a window.
<p>
The hint must be set before mapping the window. These hints were originally defined by the Motif toolkit. <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="a292a229" doxytag="DECOR_ALL" ></a>DECOR_ALL</em> </td><td>
All decorations should be applied. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a230" doxytag="DECOR_BORDER" ></a>DECOR_BORDER</em> </td><td>
A frame should be drawn around the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a231" doxytag="DECOR_RESIZEH" ></a>DECOR_RESIZEH</em> </td><td>
The frame should have resize handles. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a232" doxytag="DECOR_TITLE" ></a>DECOR_TITLE</em> </td><td>
A titlebar should be placed above the window. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a233" doxytag="DECOR_MENU" ></a>DECOR_MENU</em> </td><td>
A button for opening a menu should be included. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a234" doxytag="DECOR_MINIMIZE" ></a>DECOR_MINIMIZE</em> </td><td>
A minimize button should be included. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a292a235" doxytag="DECOR_MAXIMIZE" ></a>DECOR_MAXIMIZE</em> </td><td>
A maximize button should be included. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a293" doxytag="GFC::Gdk::WMFunction" ></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_1Gdk.html#a293">WMFunction</a> </td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Specifies hints the window manager can use when determining the functions to offer for the window.
<p>
The hint must be set before mapping the window. These hints were originally defined by the Motif toolkit. <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="a293a236" doxytag="FUNC_ALL" ></a>FUNC_ALL</em> </td><td>
All functions should be offered. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a293a237" doxytag="FUNC_RESIZE" ></a>FUNC_RESIZE</em> </td><td>
The window should be resizable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a293a238" doxytag="FUNC_MOVE" ></a>FUNC_MOVE</em> </td><td>
The window should be movable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a293a239" doxytag="FUNC_MINIMIZE" ></a>FUNC_MINIMIZE</em> </td><td>
The window should be minimizable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a293a240" doxytag="FUNC_MAXMIZE" ></a>FUNC_MAXMIZE</em> </td><td>
The window should be maximizable. </td></tr>
<tr><td valign=top><em><a class="anchor" name="a293a241" doxytag="FUNC_CLOSE" ></a>FUNC_CLOSE</em> </td><td>
The window should be closable. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="a252" doxytag="GFC::Gdk::devices_list" ></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 devices_list </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">std::vector< Device * > & </td>
<td class="mdname1" valign="top" nowrap> <em>devices</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Returns the list of available input devices attached to the default display.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>devices</em> </td><td>A reference to a vector of Device* to hold the list of devices. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the vector is not empty.</dd></dl>
<br>
The devices in this list are statically allocated and will be freed by GTK+. See also Gdk::Display::list_devcies. </td>
</tr>
</table>
<a class="anchor" name="a250" doxytag="GFC::Gdk::events_pending" ></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 events_pending </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Checks if any events are ready to be processed for any display.
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if any events are pending. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a256" doxytag="GFC::Gdk::flush" ></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 flush </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Flushes the X output buffer and waits until all requests have been processed by the server.
<p>
This is rarely needed by single-threaded applications. It's main use in <a class="elRef" doxygen="gfccore.tag:" href="namespaceGFC.html">GFC</a> is for multi-threaded programming. Before unlocking a critical section of code with a call to <a class="el" href="classGFC_1_1Gdk_1_1Mutex.html#e1">Gdk::Mutex::unlock()</a> you might want to call <a class="el" href="namespaceGFC_1_1Gdk.html#a256">flush()</a> to send all pending commands to the windowing system. </td>
</tr>
</table>
<a class="anchor" name="a257" doxytag="GFC::Gdk::get_default_root_window" ></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_1Gdk_1_1Window.html">Window</a>* get_default_root_window </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Obtains the root window (parent all other windows are inside) for the default display and screen.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The default root window. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="a253" doxytag="GFC::Gdk::keyboard_ungrab" ></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 keyboard_ungrab </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">unsigned int </td>
<td class="mdname1" valign="top" nowrap> <em>time</em> = <code>GDK_CURRENT_TIME</code> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Ungrabs the keyboard for the default display, if it is grabbed by this application (see <a class="el" href="classGFC_1_1Gdk_1_1Display.html#z116_1">Gdk::Display::keyboard_ungrab()</a>).
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>time</em> </td><td>A timestamp from a <a class="el" href="classGFC_1_1Gdk_1_1Event.html">Gdk::Event</a>, or GDK_CURRENT_TIME if no timestamp is available. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a254" doxytag="GFC::Gdk::pointer_is_grabbed" ></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 pointer_is_grabbed </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Returns true if the pointer for the default display is currently grabbed by this application (see <a class="el" href="classGFC_1_1Gdk_1_1Display.html#z115_6">Gdk::Display::pointer_is_grabbed()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the pointer is currently grabbed by this application.</dd></dl>
<br>
Note that this does not take the implicit pointer grab on button presses into account. </td>
</tr>
</table>
<a class="anchor" name="a255" doxytag="GFC::Gdk::pointer_ungrab" ></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 pointer_ungrab </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">unsigned int </td>
<td class="mdname1" valign="top" nowrap> <em>time</em> = <code>GDK_CURRENT_TIME</code> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Ungrabs the pointer for the default display, if it is grabbed by this application.
<p>
(see <a class="el" href="classGFC_1_1Gdk_1_1Display.html#z116_0">Gdk::Display::pointer_ungrab()</a>). <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>time</em> </td><td>A timestamp from a <a class="el" href="classGFC_1_1Gdk_1_1Event.html">Gdk::Event</a>, or GDK_CURRENT_TIME if no timestamp is available. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="a251" doxytag="GFC::Gdk::set_show_events" ></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 set_show_events </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">bool </td>
<td class="mdname1" valign="top" nowrap> <em>show_events</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets whether a trace of received events is output.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>show_events</em> </td><td>Set <em>true</em> to output event debugging information.</td></tr>
</table>
</dl>
<br>
Note that GTK+ must be compiled with debugging (that is, configured using the --enable-debug option) to use this option. </td>
</tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:35 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>
|