[Mageia-dev] Adding additional provides to php database modules

Thomas Spuhler thomas at btspuhler.com
Mon Dec 19 03:02:22 CET 2011


On Saturday, December 17, 2011 03:24:16 PM Oliver Burger wrote:
> Hi,
> 
> I'm maintaining mediawiki and drupal.
> 
> Both packages require a php database module but both can work with mysql,
> postgresql and sqlite.
> 
> Now the mediawiki package does simply require both php-mysql and php-pgsql,
> which is bad since it leads to installing unneeded database libraries in
> the system.
> Drupal has three sub packages which doe require the respective php database
> module and one of the three is required by drupal itself, which is some
> kind of ugly workarround.
> 
> I think it would be a cleaner solution to have php-X providing something
> common and php-pdo_X providing something common (X being one of mysql,
> pgsql or sqlite).
> 
> What do you think?
> I tried contacting the php maintainer by mail, but he didn't answer me.
> 
> Oliver

Could you please explain a little more what you are looking for.
PHP provides the php-mysql and php-pdo-mysql

-- 
Best regards
Thomas Spuhler


More information about the Mageia-dev mailing list
href='#n7'>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
package Gtk2;
use Glib;

package Gtk2;
our @ISA = qw();
sub check_version { my ($_class, $_required_major, $_required_minor, $_required_micro) = @_ }
sub disable_setlocale { my ($_class) = @_ }
sub events_pending { my ($_class) = @_ }
sub exit { my ($_error_code) = @_ }
sub get_current_event { my ($_class) = @_ }
sub get_current_event_state { my ($_class) = @_ }
sub get_current_event_time { my ($_class) = @_ }
sub get_event_widget { my ($_class, $_event) = @_ }
sub get_version_info { my ($_class) = @_ }
sub grab_add { my ($_class, $_widget) = @_ }
sub grab_get_current { my ($_class) = @_ }
sub grab_remove { my ($_class, $_widget) = @_ }
sub init { my ($_class) = @_ }
sub init_add { my ($_class, $_function, $_o_data) = @_ }
sub init_check { my ($_class) = @_ }
sub main { my ($_class) = @_ }
sub main_iteration { my ($_class) = @_ }
sub main_level { my ($_class) = @_ }
sub main_quit { my ($_class) = @_ }
sub quit_add { my ($_class, $_main_level, $_function, $_o_data) = @_ }
sub quit_add_destroy { my ($_class, $_main_level, $_object) = @_ }
sub quit_remove { my ($_class, $_quit_handler_id) = @_ }
sub set_locale { my ($_class) = @_ }

package Gtk2::AccelGroup;
our @ISA = qw();
sub connect { my ($_accel_group, $_accel_key, $_accel_mods, $_accel_flags, $_func) = @_ }
sub connect_by_path { my ($_accel_group, $_accel_path, $_func) = @_ }
sub disconnect { my ($_accel_group, $_func) = @_ }
sub disconnect_key { my ($_accel_group, $_accel_key, $_accel_mods) = @_ }
sub gtk_accel_groups_activate { my ($_object, $_accel_key, $_accel_mods) = @_ }
sub gtk_accel_groups_from_object { my ($_object) = @_ }
sub lock { my ($_accel_group) = @_ }
sub new { my ($_class) = @_ }
sub unlock { my ($_accel_group) = @_ }

package Gtk2::AccelLabel;
our @ISA = qw();
sub get_accel_widget { my ($_accel_label) = @_ }
sub get_accel_width { my ($_accel_label) = @_ }
sub new { my ($_class, $_string) = @_ }
sub refetch { my ($_accel_label) = @_ }
sub set_accel_widget { my ($_accel_label, $_accel_widget) = @_ }

package Gtk2::Accelerator;
our @ISA = qw();
sub get_default_mod_mask { my ($_class) = @_ }
sub name { my ($_class, $_accelerator_key, $_accelerator_mods) = @_ }
sub parse { my ($_class, $_accelerator) = @_ }
sub set_default_mod_mask { my ($_class, $_default_mod_mask) = @_ }
sub valid { my ($_keyval, $_modifiers) = @_ }

package Gtk2::Adjustment;
our @ISA = qw();
sub changed { my ($_adjustment) = @_ }
sub clamp_page { my ($_adjustment, $_lower, $_upper) = @_ }
sub get_value { my ($_adjustment) = @_ }
sub lower { my ($_adjustment, $_o_newval) = @_ }
sub new { my ($_class, $_value, $_lower, $_upper, $_step_increment, $_page_increment, $_page_size) = @_ }
sub page_increment { my ($_adjustment, $_o_newval) = @_ }
sub page_size { my ($_adjustment, $_o_newval) = @_ }
sub set_value { my ($_adjustment, $_value) = @_ }
sub step_increment { my ($_adjustment, $_o_newval) = @_ }
sub upper { my ($_adjustment, $_o_newval) = @_ }
sub value { my ($_adjustment, $_o_newval) = @_ }
sub value_changed { my ($_adjustment) = @_ }

package Gtk2::Alignment;
our @ISA = qw();
sub new { my ($_class, $_xalign, $_yalign, $_xscale, $_yscale) = @_ }
sub set { my ($_alignment, $_xalign, $_yalign, $_xscale, $_yscale) = @_ }

package Gtk2::Allocation;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Arrow;
our @ISA = qw();
sub new { my ($_class, $_arrow_type, $_shadow_type) = @_ }
sub set { my ($_arrow, $_arrow_type, $_shadow_type) = @_ }

package Gtk2::AspectFrame;
our @ISA = qw();
sub new { my ($_class, $_label, $_xalign, $_yalign, $_ratio, $_obey_child) = @_ }
sub set_params { my ($_aspect_frame, $_xalign, $_yalign, $_ratio, $_obey_child) = @_ }

package Gtk2::Bin;
our @ISA = qw();
sub child { my ($_bin) = @_ }
sub get_child { my ($_bin) = @_ }

package Gtk2::Box;
our @ISA = qw();
sub get_homogeneous { my ($_box) = @_ }
sub get_spacing { my ($_box) = @_ }
sub pack_end { my ($_box, $_child, $_expand, $_fill, $_padding) = @_ }
sub pack_end_defaults { my ($_box, $_widget) = @_ }
sub pack_start { my ($_box, $_child, $_expand, $_fill, $_padding) = @_ }
sub pack_start_defaults { my ($_box, $_widget) = @_ }
sub query_child_packing { my ($_box, $_child) = @_ }
sub reorder_child { my ($_box, $_child, $_position) = @_ }
sub set_child_packing { my ($_box, $_child, $_expand, $_fill, $_padding, $_pack_type) = @_ }
sub set_homogeneous { my ($_box, $_homogeneous) = @_ }
sub set_spacing { my ($_box, $_spacing) = @_ }

package Gtk2::Button;
our @ISA = qw();
sub clicked { my ($_button) = @_ }
sub enter { my ($_button) = @_ }
sub get_label { my ($_button) = @_ }
sub get_relief { my ($_button) = @_ }
sub get_use_stock { my ($_button) = @_ }
sub get_use_underline { my ($_button) = @_ }
sub leave { my ($_button) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub new_from_stock { my ($_class, $_stock_id) = @_ }
sub new_with_label { my ($_class, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_label) = @_ }
sub news { my ($_class, $_o_label) = @_ }
sub pressed { my ($_button) = @_ }
sub released { my ($_button) = @_ }
sub set_label { my ($_button, $_label) = @_ }
sub set_relief { my ($_button, $_newstyle) = @_ }
sub set_use_stock { my ($_button, $_use_stock) = @_ }
sub set_use_underline { my ($_button, $_use_underline) = @_ }

package Gtk2::ButtonBox;
our @ISA = qw();
sub get_layout { my ($_widget) = @_ }
sub set_child_secondary { my ($_widget, $_child, $_is_secondary) = @_ }
sub set_layout { my ($_widget, $_layout_style) = @_ }

package Gtk2::Calendar;
our @ISA = qw();
sub clear_marks { my ($_calendar) = @_ }
sub display_options { my ($_calendar, $_flags) = @_ }
sub freeze { my ($_calendar) = @_ }
sub get_date { my ($_calendar) = @_ }
sub mark_day { my ($_calendar, $_day) = @_ }
sub new { my ($_class) = @_ }
sub select_day { my ($_calendar, $_day) = @_ }
sub select_month { my ($_calendar, $_month, $_year) = @_ }
sub thaw { my ($_calendar) = @_ }
sub unmark_day { my ($_calendar, $_day) = @_ }

package Gtk2::CellEditable;
our @ISA = qw();
sub editing_done { my ($_cell_editable) = @_ }
sub remove_widget { my ($_cell_editable) = @_ }
sub start_editing { my ($_cell_editable, $_event) = @_ }

package Gtk2::CellRenderer;
our @ISA = qw();
sub activate { my ($_cell, $_event, $_widget, $_path, $_background_area, $_cell_area, $_flags) = @_ }
sub get_fixed_size { my ($_cell) = @_ }
sub get_size { my ($_cell, $_widget) = @_ }
sub render { my ($_cell, $_window, $_widget, $_background_area, $_cell_area, $_expose_area, $_flags) = @_ }
sub set_fixed_size { my ($_cell, $_width, $_height) = @_ }
sub start_editing { my ($_cell, $_event, $_widget, $_path, $_background_area, $_cell_area, $_flags) = @_ }

package Gtk2::CellRendererPixbuf;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::CellRendererText;
our @ISA = qw();
sub new { my ($_class) = @_ }
sub set_fixed_height_from_font { my ($_renderer, $_number_of_rows) = @_ }

package Gtk2::CellRendererToggle;
our @ISA = qw();
sub get_active { my ($_toggle) = @_ }
sub get_radio { my ($_toggle) = @_ }
sub new { my ($_class) = @_ }
sub set_active { my ($_toggle, $_setting) = @_ }
sub set_radio { my ($_toggle, $_radio) = @_ }

package Gtk2::CheckButton;
our @ISA = qw();
sub new { my ($_class, $_o_label) = @_ }
sub new_with_label { my ($_class, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_label) = @_ }
sub news { my ($_class, $_o_label) = @_ }

package Gtk2::CheckMenuItem;
our @ISA = qw();
sub get_active { my ($_check_menu_item) = @_ }
sub get_inconsistent { my ($_check_menu_item) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub new_with_label { my ($_class, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_label) = @_ }
sub news { my ($_class, $_o_label) = @_ }
sub set_active { my ($_check_menu_item, $_is_active) = @_ }
sub set_inconsistent { my ($_check_menu_item, $_setting) = @_ }
sub set_show_toggle { my ($_menu_item, $_always) = @_ }
sub toggled { my ($_check_menu_item) = @_ }

package Gtk2::Clipboard;
our @ISA = qw();
sub clear { my ($_clipboard) = @_ }
sub get { my ($_selection) = @_ }
sub get_display { my ($_clipboard) = @_ }
sub get_for_display { my ($_display, $_selection) = @_ }
sub get_owner { my ($_clipboard) = @_ }
sub request_contents { my ($_clipboard, $_target, $_callback, $_user_data) = @_ }
sub request_text { my ($_clipboard, $_callback, $_user_data) = @_ }
sub set_text { my ($_clipboard, $_text, $_text) = @_ }
sub wait_for_contents { my ($_clipboard, $_target) = @_ }
sub wait_for_text { my ($_clipboard) = @_ }
sub wait_is_text_available { my ($_clipboard) = @_ }

package Gtk2::ColorSelection;
our @ISA = qw();
sub get_current_alpha { my ($_colorsel) = @_ }
sub get_current_color { my ($_colorsel) = @_ }
sub get_has_opacity_control { my ($_colorsel) = @_ }
sub get_has_palette { my ($_colorsel) = @_ }
sub get_previous_alpha { my ($_colorsel) = @_ }
sub get_previous_color { my ($_colorsel) = @_ }
sub is_adjusting { my ($_colorsel) = @_ }
sub new { my ($_class) = @_ }
sub palette_from_string { my ($_class, $_string) = @_ }
sub palette_to_string { my ($_class, @_more_paras) = @_ }
sub set_current_alpha { my ($_colorsel, $_alpha) = @_ }
sub set_current_color { my ($_colorsel, $_color) = @_ }
sub set_has_opacity_control { my ($_colorsel, $_has_opacity) = @_ }
sub set_has_palette { my ($_colorsel, $_has_palette) = @_ }
sub set_previous_alpha { my ($_colorsel, $_alpha) = @_ }
sub set_previous_color { my ($_colorsel, $_color) = @_ }

package Gtk2::ColorSelectionDialog;
our @ISA = qw();
sub colorsel { my ($_dialog) = @_ }
sub new { my ($_class, $_title) = @_ }

package Gtk2::Combo;
our @ISA = qw();
sub disable_activate { my ($_combo) = @_ }
sub entry { my ($_combo) = @_ }
sub list { my ($_combo) = @_ }
sub members { my ($_combo) = @_ }
sub new { my ($_class) = @_ }
sub set_case_sensitive { my ($_combo, $_val) = @_ }
sub set_item_string { my ($_combo, $_item, $_item_value) = @_ }
sub set_popdown_strings { my ($_combo, @_more_paras) = @_ }
sub set_use_arrows { my ($_combo, $_val) = @_ }
sub set_use_arrows_always { my ($_combo, $_val) = @_ }
sub set_value_in_list { my ($_combo, $_val, $_ok_if_empty) = @_ }

package Gtk2::Container;
our @ISA = qw();
sub add { my ($_container, $_widget) = @_ }
sub check_resize { my ($_container) = @_ }
sub child_type { my ($_container) = @_ }
sub Gtk2::Container::foreach { my ($_container, $_callback, $_o_callback_data) = @_ }
sub get_border_width { my ($_container) = @_ }
sub get_children { my ($_container) = @_ }
sub get_focus_chain { my ($_container) = @_ }
sub get_focus_hadjustment { my ($_container) = @_ }
sub get_focus_vadjustment { my ($_container) = @_ }
sub get_resize_mode { my ($_container) = @_ }
sub remove { my ($_container, $_widget) = @_ }
sub resize_children { my ($_container) = @_ }
sub set_border_width { my ($_container, $_border_width) = @_ }
sub set_focus_chain { my ($_container, $_widget1, @_more_paras) = @_ }
sub set_focus_child { my ($_container, $_child) = @_ }
sub set_focus_hadjustment { my ($_container, $_adjustment) = @_ }
sub set_focus_vadjustment { my ($_container, $_adjustment) = @_ }
sub set_reallocate_redraws { my ($_container, $_needs_redraws) = @_ }
sub set_resize_mode { my ($_container, $_resize_mode) = @_ }
sub unset_focus_chain { my ($_container) = @_ }

package Gtk2::Curve;
our @ISA = qw();
sub get_vector { my ($_curve, $_o_veclen) = @_ }
sub new { my ($_class) = @_ }
sub reset { my ($_curve) = @_ }
sub set_curve_type { my ($_curve, $_type) = @_ }
sub set_gamma { my ($_curve, $_gamma) = @_ }
sub set_range { my ($_curve, $_min_x, $_max_x, $_min_y, $_max_y) = @_ }
sub set_vector { my ($_curve, @_more_paras) = @_ }

package Gtk2::Dialog;
our @ISA = qw();
sub action_area { my ($_dialog) = @_ }
sub add_action_widget { my ($_dialog, $_child, $_response_id) = @_ }
sub add_button { my ($_dialog, $_button_text, $_response_id) = @_ }
sub add_buttons { my ($_dialog, @_more_paras) = @_ }
sub get_has_separator { my ($_dialog) = @_ }
sub new { my ($_class, @_more_paras) = @_ }
sub new_with_buttons { my ($_class, @_more_paras) = @_ }
sub response { my ($_dialog, $_response_id) = @_ }
sub run { my ($_dialog) = @_ }
sub set_default_response { my ($_dialog, $_response_id) = @_ }
sub set_has_separator { my ($_dialog, $_setting) = @_ }
sub set_response_sensitive { my ($_dialog, $_response_id, $_setting) = @_ }
sub vbox { my ($_dialog) = @_ }
sub widgets { my ($_dialog) = @_ }

package Gtk2::DrawingArea;
our @ISA = qw();
sub new { my ($_class) = @_ }
sub size { my ($_darea, $_width, $_height) = @_ }

package Gtk2::Editable;
our @ISA = qw();
sub copy_clipboard { my ($_editable) = @_ }
sub cut_clipboard { my ($_editable) = @_ }
sub delete_selection { my ($_editable) = @_ }
sub delete_text { my ($_editable, $_start_pos, $_end_pos) = @_ }
sub get_chars { my ($_editable, $_start_pos, $_end_pos) = @_ }
sub get_editable { my ($_editable) = @_ }
sub get_position { my ($_editable) = @_ }
sub get_selection_bounds { my ($_editable) = @_ }
sub insert_text { my ($_editable, $_new_text, $_new_text_length, $_position) = @_ }
sub paste_clipboard { my ($_editable) = @_ }
sub select_region { my ($_editable, $_start, $_end) = @_ }
sub set_editable { my ($_editable, $_is_editable) = @_ }
sub set_position { my ($_editable, $_position) = @_ }

package Gtk2::Entry;
our @ISA = qw();
sub append_text { my ($_entry, $_text) = @_ }
sub get_activates_default { my ($_entry) = @_ }
sub get_has_frame { my ($_entry) = @_ }
sub get_layout { my ($_entry) = @_ }
sub get_layout_offsets { my ($_entry) = @_ }
sub get_max_length { my ($_entry) = @_ }
sub get_text { my ($_entry) = @_ }
sub get_visibility { my ($_entry) = @_ }
sub get_width_chars { my ($_entry) = @_ }
sub new { my ($_class) = @_ }
sub new_with_max_length { my ($_class, $_max) = @_ }
sub prepend_text { my ($_entry, $_text) = @_ }
sub select_region { my ($_entry, $_start, $_end) = @_ }
sub set_activates_default { my ($_entry, $_setting) = @_ }
sub set_editable { my ($_entry, $_editable) = @_ }
sub set_has_frame { my ($_entry, $_setting) = @_ }
sub set_max_length { my ($_entry, $_max) = @_ }
sub set_position { my ($_entry, $_position) = @_ }
sub set_text { my ($_entry, $_text) = @_ }
sub set_visibility { my ($_entry, $_visible) = @_ }
sub set_width_chars { my ($_entry, $_n_chars) = @_ }

package Gtk2::EventBox;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::FileSelection;
our @ISA = qw();
sub cancel_button { my ($_fs) = @_ }
sub complete { my ($_filesel, $_pattern) = @_ }
sub dir_list { my ($_fs) = @_ }
sub file_list { my ($_fs) = @_ }
sub get_filename { my ($_filesel) = @_ }
sub get_select_multiple { my ($_filesel) = @_ }
sub get_selections { my ($_filesel) = @_ }
sub help_button { my ($_fs) = @_ }
sub hide_fileop_buttons { my ($_filesel) = @_ }
sub main_vbox { my ($_fs) = @_ }
sub member_widget { my ($_fs) = @_ }
sub new { my ($_class, $_title) = @_ }
sub ok_button { my ($_fs) = @_ }
sub selection_entry { my ($_fs) = @_ }
sub selection_text { my ($_fs) = @_ }
sub set_filename { my ($_filesel, $_filename) = @_ }
sub set_select_multiple { my ($_filesel, $_select_multiple) = @_ }
sub show_fileop_buttons { my ($_filesel) = @_ }

package Gtk2::Fixed;
our @ISA = qw();
sub get_has_window { my ($_fixed) = @_ }
sub move { my ($_fixed, $_widget, $_x, $_y) = @_ }
sub new { my ($_class) = @_ }
sub put { my ($_fixed, $_widget, $_x, $_y) = @_ }
sub set_has_window { my ($_fixed, $_has_window) = @_ }

package Gtk2::FontSelection;
our @ISA = qw();
sub get_font { my ($_fontsel) = @_ }
sub get_font_name { my ($_fontsel) = @_ }
sub get_preview_text { my ($_fontsel) = @_ }
sub new { my ($_class) = @_ }
sub set_font_name { my ($_fontsel, $_fontname) = @_ }
sub set_preview_text { my ($_fontsel, $_text) = @_ }

package Gtk2::FontSelectionDialog;
our @ISA = qw();
sub apply_button { my ($_fsd) = @_ }
sub cancel_button { my ($_fsd) = @_ }
sub get_font { my ($_fsd) = @_ }
sub get_font_name { my ($_fsd) = @_ }
sub get_preview_text { my ($_fsd) = @_ }
sub members_get { my ($_fsd) = @_ }
sub new { my ($_class, $_title) = @_ }
sub ok_button { my ($_fsd) = @_ }
sub set_font_name { my ($_fsd, $_fontname) = @_ }
sub set_preview_text { my ($_fsd, $_text) = @_ }

package Gtk2::Frame;
our @ISA = qw();
sub get_label { my ($_frame) = @_ }
sub get_label_align { my ($_frame) = @_ }
sub get_label_widget { my ($_frame) = @_ }
sub get_shadow_type { my ($_frame) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub set_label { my ($_frame, $_label) = @_ }
sub set_label_align { my ($_frame, $_xalign, $_yalign) = @_ }
sub set_label_widget { my ($_frame, $_label_widget) = @_ }
sub set_shadow_type { my ($_frame, $_type) = @_ }

package Gtk2::GammaCurve;
our @ISA = qw();
sub curve { my ($_gamma) = @_ }
sub new { my ($_class) = @_ }

package Gtk2::Gdk;
our @ISA = qw();
sub SELECTION_CLIPBOARD { my ($_class) = @_ }
sub SELECTION_PRIMARY { my ($_class) = @_ }
sub SELECTION_SECONDARY { my ($_class) = @_ }
sub SELECTION_TYPE_ATOM { my ($_class) = @_ }
sub SELECTION_TYPE_BITMAP { my ($_class) = @_ }
sub SELECTION_TYPE_COLORMAP { my ($_class) = @_ }
sub SELECTION_TYPE_DRAWABLE { my ($_class) = @_ }
sub SELECTION_TYPE_INTEGER { my ($_class) = @_ }
sub SELECTION_TYPE_PIXMAP { my ($_class) = @_ }
sub SELECTION_TYPE_STRING { my ($_class) = @_ }
sub SELECTION_TYPE_WINDOW { my ($_class) = @_ }
sub TARGET_BITMAP { my ($_class) = @_ }
sub TARGET_COLORMAP { my ($_class) = @_ }
sub TARGET_DRAWABLE { my ($_class) = @_ }
sub TARGET_PIXMAP { my ($_class) = @_ }
sub TARGET_STRING { my ($_class) = @_ }
sub beep { my ($_class) = @_ }
sub error_trap_pop { my ($_class) = @_ }
sub error_trap_push { my ($_class) = @_ }
sub flush { my ($_class) = @_ }
sub get_default_root_window { my ($_class) = @_ }
sub get_display { my ($_class) = @_ }
sub get_display_arg_name { my ($_class) = @_ }
sub get_program_class { my ($_class) = @_ }
sub get_show_events { my ($_class) = @_ }
sub keyboard_grab { my ($_class, $_window, $_owner_events, $_time_) = @_ }
sub keyboard_ungrab { my ($_class, $_time_) = @_ }
sub notify_startup_complete { my ($_class) = @_ }
sub pointer_grab { my ($_class, $_window, $_owner_events, $_event_mask, $_confine_to, $_cursor, $_time_) = @_ }
sub pointer_is_grabbed { my ($_class) = @_ }
sub pointer_ungrab { my ($_class, $_time_) = @_ }
sub predefs { my ($_class) = @_ }
sub screen_height { my ($_class) = @_ }
sub screen_height_mm { my ($_class) = @_ }
sub screen_width { my ($_class) = @_ }
sub screen_width_mm { my ($_class) = @_ }
sub screendims { my ($_class) = @_ }
sub set_locale { my ($_class) = @_ }
sub set_program_class { my ($_class, $_program_class) = @_ }
sub set_show_events { my ($_class, $_show_events) = @_ }
sub set_sm_client_id { my ($_class, $_sm_client_id) = @_ }
sub setting_get { my ($_class, $_name) = @_ }

package Gtk2::Gdk::Atom;
our @ISA = qw();
sub Gtk2::Gdk::Atom::eq { my ($_left, $_right, $_o_swap) = @_ }
sub intern { my ($_class, $_atom_name, $_o_only_if_exists) = @_ }
sub name { my ($_atom) = @_ }
sub new { my ($_class, $_atom_name, $_o_only_if_exists) = @_ }

package Gtk2::Gdk::Bitmap;
our @ISA = qw();
sub create_from_data { my ($_class, $_drawable, $_data, $_width, $_height) = @_ }

package Gtk2::Gdk::Color;
our @ISA = qw();
sub blue { my ($_color) = @_ }
sub equal { my ($_colora, $_colorb) = @_ }
sub green { my ($_color) = @_ }
sub hash { my ($_colora) = @_ }
sub new { my ($_class, $_red, $_green, $_blue) = @_ }
sub parse { my ($_class, $_spec) = @_ }
sub pixel { my ($_color) = @_ }
sub red { my ($_color) = @_ }

package Gtk2::Gdk::Colormap;
our @ISA = qw();
sub alloc_color { my ($_colormap, $_color, $_writeable, $_best_match) = @_ }
sub alloc_colors { my ($_colormap, $_writeable, $_best_match, @_more_paras) = @_ }
sub free_colors { my ($_colormap, @_more_paras) = @_ }
sub get_system { my ($_class) = @_ }
sub new { my ($_visual, $_allocate) = @_ }
sub query_color { my ($_colormap, $_pixel) = @_ }
sub rgb_find_color { my ($_colormap, $_color) = @_ }

package Gtk2::Gdk::Cursor;
our @ISA = qw();
sub get_display { my ($_cursor) = @_ }
sub new { my ($_class, $_cursor_type) = @_ }
sub new_for_display { my ($_class, $_display, $_cursor_type) = @_ }
sub new_from_pixmap { my ($_class, $_source, $_mask, $_fg, $_bg, $_x, $_y) = @_ }

package Gtk2::Gdk::Display;
our @ISA = qw();
sub beep { my ($_display) = @_ }
sub close { my ($_display) = @_ }
sub get_core_pointer { my ($_display) = @_ }
sub get_default { my ($_class) = @_ }
sub get_default_screen { my ($_display) = @_ }
sub get_event { my ($_display) = @_ }
sub get_n_screens { my ($_display) = @_ }
sub get_name { my ($_display) = @_ }
sub get_pointer { my ($_display) = @_ }
sub get_screen { my ($_display, $_screen_num) = @_ }
sub get_window_at_pointer { my ($_display) = @_ }
sub grab { my ($_display) = @_ }
sub keyboard_ungrab { my ($_display, $_time_) = @_ }
sub list_devices { my ($_display) = @_ }
sub open { my ($_class, $_display_name) = @_ }
sub peek_event { my ($_display) = @_ }
sub pointer_is_grabbed { my ($_display) = @_ }
sub pointer_ungrab { my ($_display, $_time_) = @_ }
sub put_event { my ($_display, $_event) = @_ }
sub set_double_click_time { my ($_display, $_msec) = @_ }
sub sync { my ($_display) = @_ }
sub ungrab { my ($_display) = @_ }

package Gtk2::Gdk::DisplayManager;
our @ISA = qw();
sub get { my ($_class) = @_ }
sub get_default_display { my ($_display_manager) = @_ }
sub list_displays { my ($_display_manager) = @_ }
sub set_default_display { my ($_display_manager, $_display) = @_ }

package Gtk2::Gdk::DragContext;
our @ISA = qw();
sub abort { my ($_context, $_time_) = @_ }
sub action { my ($_dc) = @_ }
sub actions { my ($_dc) = @_ }
sub begin { my ($_class, $_window, @_more_paras) = @_ }
sub dest_window { my ($_dc) = @_ }
sub drop { my ($_context, $_time_) = @_ }
sub find_window { my ($_context, $_drag_window, $_x_root, $_y_root) = @_ }
sub find_window_for_screen { my ($_context, $_drag_window, $_screen, $_x_root, $_y_root) = @_ }
sub finish { my ($_context, $_success, $_del, $_time_) = @_ }
sub gdk_drop_finish { my ($_context, $_success, $_o_time_) = @_ }
sub gdk_drop_reply { my ($_context, $_ok, $_o_time_) = @_ }
sub get_protocol { my ($_class, $_xid) = @_ }
sub get_protocol_for_display { my ($_class, $_display, $_xid) = @_ }
sub get_selection { my ($_context) = @_ }
sub get_source_widget { my ($_context) = @_ }
sub is_source { my ($_dc) = @_ }
sub members { my ($_dc) = @_ }
sub motion { my ($_context, $_dest_window, $_protocol, $_x_root, $_y_root, $_suggested_action, $_possible_actions, $_time_) = @_ }
sub new { my ($_class) = @_ }
sub protocol { my ($_dc) = @_ }
sub set_icon_default { my ($_context) = @_ }
sub set_icon_pixbuf { my ($_context, $_pixbuf, $_hot_x, $_hot_y) = @_ }
sub set_icon_pixmap { my ($_context, $_colormap, $_pixmap, $_mask, $_hot_x, $_hot_y) = @_ }
sub set_icon_stock { my ($_context, $_stock_id, $_hot_x, $_hot_y) = @_ }
sub set_icon_widget { my ($_context, $_widget, $_hot_x, $_hot_y) = @_ }
sub source_window { my ($_dc) = @_ }
sub start_time { my ($_dc) = @_ }
sub status { my ($_context, $_action, $_o_time_) = @_ }
sub suggested_action { my ($_dc) = @_ }
sub targets { my ($_dc) = @_ }

package Gtk2::Gdk::Drawable;
our @ISA = qw();
sub XID { my ($_drawable) = @_ }
sub XSetInputFocus { my ($_drawable) = @_ }
sub XWINDOW { my ($_drawable) = @_ }
sub draw_arc { my ($_drawable, $_gc, $_filled, $_x, $_y, $_width, $_height, $_angle1, $_angle2) = @_ }
sub draw_drawable { my ($_drawable, $_gc, $_src, $_xsrc, $_ysrc, $_xdest, $_ydest, $_width, $_height) = @_ }
sub draw_gray_image { my ($_drawable, $_gc, $_x, $_y, $_width, $_height, $_dith, $_buf, $_rowstride) = @_ }
sub draw_image { my ($_drawable, $_gc, $_image, $_xsrc, $_ysrc, $_xdest, $_ydest, $_width, $_height) = @_ }
sub draw_layout { my ($_drawable, $_gc, $_x, $_y, $_layout) = @_ }
sub draw_layout_with_colors { my ($_drawable, $_gc, $_x, $_y, $_layout, $_foreground, $_background) = @_ }
sub draw_line { my ($_drawable, $_gc, $_x1_, $_y1_, $_x2_, $_y2_) = @_ }
sub draw_lines { my ($_drawable, $_gc, $_x1, $_y1, @_more_paras) = @_ }
sub draw_pixbuf { my ($_drawable, $_gc, $_pixbuf, $_src_x, $_src_y, $_dest_x, $_dest_y, $_width, $_height, $_dither, $_x_dither, $_y_dither) = @_ }
sub draw_points { my ($_drawable, $_gc, $_x1, $_y1, @_more_paras) = @_ }
sub draw_polygon { my ($_drawable, $_gc, $_filled, $_x1, $_y1, @_more_paras) = @_ }
sub draw_rectangle { my ($_drawable, $_gc, $_filled, $_x, $_y, $_width, $_height) = @_ }
sub draw_rgb_32_image { my ($_drawable, $_gc, $_x, $_y, $_width, $_height, $_dith, $_buf, $_rowstride) = @_ }
sub draw_rgb_32_image_dithalign { my ($_drawable, $_gc, $_x, $_y, $_width, $_height, $_dith, $_rgb_buf, $_rowstride, $_xdith, $_ydith) = @_ }
sub draw_rgb_image { my ($_drawable, $_gc, $_x, $_y, $_width, $_height, $_dith, $_buf, $_rowstride) = @_ }
sub draw_rgb_image_dithalign { my ($_drawable, $_gc, $_x, $_y, $_width, $_height, $_dith, $_rgb_buf, $_rowstride, $_xdith, $_ydith) = @_ }
sub draw_segments { my ($_drawable, $_gc, $_x1, $_y1, $_x2, $_y2, @_more_paras) = @_ }
sub drawable_get_image { my ($_drawable, $_x, $_y, $_width, $_height) = @_ }
sub get_colormap { my ($_drawable) = @_ }
sub get_depth { my ($_drawable) = @_ }
sub get_display { my ($_drawable) = @_ }
sub get_screen { my ($_drawable) = @_ }
sub get_size { my ($_drawable) = @_ }
sub get_visual { my ($_drawable) = @_ }
sub get_xid { my ($_drawable) = @_ }
sub set_colormap { my ($_drawable, $_colormap) = @_ }

package Gtk2::Gdk::Event;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub axis { my ($_event, $_axis_use) = @_ }
sub coords { my ($_event) = @_ }
sub copy { my ($_event) = @_ }
sub gdk_events_pending { my ($_class) = @_ }
sub get { my ($_class) = @_ }
sub get_coords { my ($_event) = @_ }
sub get_graphics_expose { my ($_window) = @_ }
sub get_root_coords { my ($_event) = @_ }
sub get_screen { my ($_event) = @_ }
sub get_state { my ($_event) = @_ }
sub get_time { my ($_event) = @_ }
sub new { my ($_class, $_type) = @_ }
sub peek { my ($_class) = @_ }
sub put { my ($_class, $_event) = @_ }
sub root_coords { my ($_event) = @_ }
sub send_event { my ($_event) = @_ }
sub set_screen { my ($_event, $_screen) = @_ }
sub state { my ($_event) = @_ }
sub time { my ($_event) = @_ }
sub type { my ($_event) = @_ }
sub window { my ($_event) = @_ }
sub Gtk2::Gdk::Event::x { my ($_event) = @_ }
sub x_root { my ($_event) = @_ }
sub Gtk2::Gdk::Event::y { my ($_event) = @_ }
sub y_root { my ($_event) = @_ }

package Gtk2::Gdk::Event::Button;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub button { my ($_event) = @_ }

package Gtk2::Gdk::Event::Client;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Configure;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub dim { my ($_event) = @_ }
sub height { my ($_event) = @_ }
sub width { my ($_event) = @_ }

package Gtk2::Gdk::Event::Crossing;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub mode { my ($_event) = @_ }

package Gtk2::Gdk::Event::DND;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub context { my ($_event) = @_ }

package Gtk2::Gdk::Event::Expose;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub area { my ($_event) = @_ }
sub count { my ($_event) = @_ }

package Gtk2::Gdk::Event::Focus;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub in { my ($_event) = @_ }

package Gtk2::Gdk::Event::Key;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub keyval { my ($_event) = @_ }
sub Gtk2::Gdk::Event::Key::length { my ($_event) = @_ }
sub string { my ($_event) = @_ }

package Gtk2::Gdk::Event::Motion;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub is_hint { my ($_event) = @_ }

package Gtk2::Gdk::Event::NoExpose;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Property;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Proximity;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Scroll;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub direction { my ($_event) = @_ }

package Gtk2::Gdk::Event::Selection;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Setting;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }

package Gtk2::Gdk::Event::Visibility;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub state { my ($_event) = @_ }

package Gtk2::Gdk::Event::WindowState;
our @ISA = qw();
sub DESTROY { my ($_sv) = @_ }
sub changed_mask { my ($_event) = @_ }
sub new_window_state { my ($_event) = @_ }

package Gtk2::Gdk::GC;
our @ISA = qw();
sub copy { my ($_dst_gc, $_src_gc) = @_ }
sub get_screen { my ($_gc) = @_ }
sub new { my ($_class, $_drawable) = @_ }
sub offset { my ($_gc, $_x_offset, $_y_offset) = @_ }
sub rgb_gc_set_background { my ($_gc, $_rgb) = @_ }
sub rgb_gc_set_foreground { my ($_gc, $_rgb) = @_ }
sub set_background { my ($_gc, $_color) = @_ }
sub set_clip_mask { my ($_gc, $_mask) = @_ }
sub set_clip_origin { my ($_gc, $_x, $_y) = @_ }
sub set_clip_rectangle { my ($_gc, $_rectangle) = @_ }
sub set_colormap { my ($_gc, $_colormap) = @_ }
sub set_dashes { my ($_gc, $_dash_offset, @_more_paras) = @_ }
sub set_exposures { my ($_gc, $_exposures) = @_ }
sub set_fill { my ($_gc, $_fill) = @_ }
sub set_font { my ($_gc, $_font) = @_ }
sub set_foreground { my ($_gc, $_color) = @_ }
sub set_function { my ($_gc, $_function) = @_ }
sub set_line_attributes { my ($_gc, $_line_width, $_line_style, $_cap_style, $_join_style) = @_ }
sub set_rgb_background { my ($_gc, $_rgb) = @_ }
sub set_rgb_bg_color { my ($_gc, $_color) = @_ }
sub set_rgb_fg_color { my ($_gc, $_color) = @_ }
sub set_rgb_foreground { my ($_gc, $_rgb) = @_ }
sub set_stipple { my ($_gc, $_stipple) = @_ }
sub set_subwindow { my ($_gc, $_mode) = @_ }
sub set_tile { my ($_gc, $_tile) = @_ }
sub set_ts_origin { my ($_gc, $_x, $_y) = @_ }

package Gtk2::Gdk::Pixbuf;
our @ISA = qw();
sub add_alpha { my ($_pixbuf, $_substitute_color, $_r, $_g, $_b) = @_ }
sub composite { my ($_src, $_dest, $_dest_x, $_dest_y, $_dest_width, $_dest_height, $_offset_x, $_offset_y, $_scale_x, $_scale_y, $_interp_type, $_overall_alpha) = @_ }
sub composite_color { my ($_src, $_dest, $_dest_x, $_dest_y, $_dest_width, $_dest_height, $_offset_x, $_offset_y, $_scale_x, $_scale_y, $_interp_type, $_overall_alpha, $_check_x, $_check_y, $_check_size, $_color1, $_color2) = @_ }
sub composite_color_simple { my ($_src, $_dest_width, $_dest_height, $_interp_type, $_overall_alpha, $_check_size, $_color1, $_color2) = @_ }
sub copy { my ($_pixbuf) = @_ }
sub copy_area { my ($_src_pixbuf, $_src_x, $_src_y, $_width, $_height, $_dest_pixbuf, $_dest_x, $_dest_y) = @_ }
sub fill { my ($_pixbuf, $_pixel) = @_ }
sub get_bits_per_sample { my ($_pixbuf) = @_ }
sub get_colorspace { my ($_pixbuf) = @_ }
sub get_has_alpha { my ($_pixbuf) = @_ }
sub get_height { my ($_pixbuf) = @_ }
sub get_n_channels { my ($_pixbuf) = @_ }
sub get_pixels { my ($_pixbuf) = @_ }
sub get_rowstride { my ($_pixbuf) = @_ }
sub get_width { my ($_pixbuf) = @_ }
sub new { my ($_class, $_colorspace, $_has_alpha, $_bits_per_sample, $_width, $_height) = @_ }
sub new_from_file { my ($_class, $_filename) = @_ }
sub new_from_inline { my ($_class, $_data_length, $_data, $_copy_pixels) = @_ }
sub new_subpixbuf { my ($_src_pixbuf, $_src_x, $_src_y, $_width, $_height) = @_ }
sub render_to_drawable { my ($_pixbuf, $_drawable, $_gc, $_src_x, $_src_y, $_dest_x, $_dest_y, $_width, $_height, $_dither, $_x_dither, $_y_dither) = @_ }
sub render_to_drawable_alpha { my ($_pixbuf, $_drawable, $_src_x, $_src_y, $_dest_x, $_dest_y, $_width, $_height, $_alpha_mode, $_alpha_threshold, $_dither, $_x_dither, $_y_dither) = @_ }
sub saturate_and_pixelate { my ($_src, $_dest, $_saturation, $_pixelate) = @_ }
sub save { my ($_pixbuf, $_filename, $_type, @_more_paras) = @_ }
sub scale { my ($_src, $_dest, $_dest_x, $_dest_y, $_dest_width, $_dest_height, $_offset_x, $_offset_y, $_scale_x, $_scale_y, $_interp_type) = @_ }
sub scale_simple { my ($_src, $_dest_width, $_dest_height, $_interp_type) = @_ }

package Gtk2::Gdk::PixbufAnimation;
our @ISA = qw();
sub get_height { my ($_animation) = @_ }
sub get_static_image { my ($_animation) = @_ }
sub get_width { my ($_animation) = @_ }
sub is_static_image { my ($_animation) = @_ }
sub new_from_file { my ($_class, $_filename, $_error) = @_ }

package Gtk2::Gdk::PixbufLoader;
our @ISA = qw();
sub close { my ($_loader) = @_ }
sub get_animation { my ($_loader) = @_ }
sub get_pixbuf { my ($_loader) = @_ }
sub new { my ($_class) = @_ }
sub new_with_type { my ($_image_type) = @_ }
sub set_size { my ($_loader, $_width, $_height) = @_ }
sub write { my ($_loader, $_buf) = @_ }

package Gtk2::Gdk::Pixmap;
our @ISA = qw();
sub colormap_create_from_xpm { my ($_class, $_drawable, $_colormap, $_transparent_color, $_filename) = @_ }
sub colormap_create_from_xpm_d { my ($_class, $_drawable, $_colormap, $_transparent_color, $_data, @_more_paras) = @_ }
sub create_from_data { my ($_class, $_drawable, $_data, $_width, $_height, $_depth, $_fg, $_bg) = @_ }
sub create_from_xpm { my ($_class, $_drawable, $_transparent_color, $_filename) = @_ }
sub create_from_xpm_d { my ($_class, $_drawable, $_transparent_color, $_data, @_more_paras) = @_ }
sub new { my ($_class, $_drawable, $_width, $_height, $_depth) = @_ }

package Gtk2::Gdk::Rectangle;
our @ISA = qw();
sub height { my ($_rectangle) = @_ }
sub intersect { my ($_src1, $_src2) = @_ }
sub members { my ($_rectangle) = @_ }
sub new { my ($_class, $_x, $_y, $_width, $_height) = @_ }
sub union { my ($_src1, $_src2) = @_ }
sub values { my ($_rectangle) = @_ }
sub width { my ($_rectangle) = @_ }
sub Gtk2::Gdk::Rectangle::x { my ($_rectangle) = @_ }
sub Gtk2::Gdk::Rectangle::y { my ($_rectangle) = @_ }

package Gtk2::Gdk::Rgb;
our @ISA = qw();
sub ditherable { my ($_class) = @_ }
sub set_install { my ($_class, $_install) = @_ }
sub set_min_colors { my ($_class, $_min_colors) = @_ }
sub set_verbose { my ($_class, $_verbose) = @_ }

package Gtk2::Gdk::Screen;
our @ISA = qw();
sub broadcast_client_message { my ($_screen, $_event) = @_ }
sub get_default { my ($_class) = @_ }
sub get_default_colormap { my ($_screen) = @_ }
sub get_display { my ($_screen) = @_ }
sub get_height { my ($_screen) = @_ }
sub get_height_mm { my ($_screen) = @_ }
sub get_monitor_at_point { my ($_screen, $_x, $_y) = @_ }
sub get_monitor_at_window { my ($_screen, $_window) = @_ }
sub get_monitor_geometry { my ($_screen, $_monitor_num) = @_ }
sub get_n_monitors { my ($_screen) = @_ }
sub get_number { my ($_screen) = @_ }
sub get_rgb_colormap { my ($_screen) = @_ }
sub get_rgb_visual { my ($_screen) = @_ }
sub get_root_window { my ($_screen) = @_ }
sub get_setting { my ($_screen, $_name, $_value) = @_ }
sub get_system_colormap { my ($_screen) = @_ }
sub get_system_visual { my ($_screen) = @_ }
sub get_toplevel_windows { my ($_screen) = @_ }
sub get_width { my ($_screen) = @_ }
sub get_width_mm { my ($_screen) = @_ }
sub list_visuals { my ($_screen) = @_ }
sub make_display_name { my ($_screen) = @_ }
sub set_default_colormap { my ($_screen, $_colormap) = @_ }

package Gtk2::Gdk::Selection;
our @ISA = qw();
sub convert { my ($_class, $_requestor, $_selection, $_target, $_time_) = @_ }
sub owner_get { my ($_class, $_selection) = @_ }
sub owner_get_for_display { my ($_class, $_display, $_selection) = @_ }
sub owner_set { my ($_class, $_owner, $_selection, $_time_, $_send_event) = @_ }
sub owner_set_for_display { my ($_class, $_display, $_owner, $_selection, $_time_, $_send_event) = @_ }
sub property_get { my ($_requestor) = @_ }
sub send_notify { my ($_class, $_requestor, $_selection, $_target, $_property, $_time_) = @_ }
sub send_notify_for_display { my ($_class, $_display, $_requestor, $_selection, $_target, $_property, $_time_) = @_ }

package Gtk2::Gdk::Threads;
our @ISA = qw();
sub enter { my ($_class) = @_ }
sub gdk_threads { my ($_class) = @_ }
sub leave { my ($_class) = @_ }

package Gtk2::Gdk::Window;
our @ISA = qw();
sub at_pointer { my ($_class) = @_ }
sub begin_move_drag { my ($_window, $_button, $_root_x, $_root_y, $_timestamp) = @_ }
sub begin_paint_rect { my ($_window, $_rectangle) = @_ }
sub begin_resize_drag { my ($_window, $_edge, $_button, $_root_x, $_root_y, $_timestamp) = @_ }
sub clear { my ($_window) = @_ }
sub clear_area { my ($_window, $_x, $_y, $_width, $_height) = @_ }
sub clear_area_e { my ($_window, $_x, $_y, $_width, $_height) = @_ }
sub deiconify { my ($_window) = @_ }
sub destroy { my ($_window) = @_ }
sub end_paint { my ($_window) = @_ }
sub focus { my ($_window, $_timestamp) = @_ }
sub foreign_new { my ($_class, $_anid) = @_ }
sub foreign_new_for_display { my ($_display, $_anid) = @_ }
sub freeze_updates { my ($_window) = @_ }
sub fullscreen { my ($_window) = @_ }
sub gdk_set_sm_client_id { my ($_sm_client_id) = @_ }
sub get_events { my ($_window) = @_ }
sub get_geometry { my ($_window) = @_ }
sub get_origin { my ($_window) = @_ }
sub get_pointer { my ($_window) = @_ }
sub get_position { my ($_window) = @_ }
sub get_root_origin { my ($_window) = @_ }
sub get_state { my ($_window) = @_ }
sub get_toplevel { my ($_window) = @_ }
sub get_user_data { my ($_window) = @_ }
sub get_window_type { my ($_window) = @_ }
sub hide { my ($_window) = @_ }
sub iconify { my ($_window) = @_ }
sub invalidate_rect { my ($_window, $_rectangle, $_invalidate_children) = @_ }
sub is_viewable { my ($_window) = @_ }
sub lookup { my ($_class, $_anid) = @_ }
sub lookup_for_display { my ($_display, $_anid) = @_ }
sub lower { my ($_window) = @_ }
sub maximize { my ($_window) = @_ }
sub move { my ($_window, $_x, $_y) = @_ }
sub move_resize { my ($_window, $_x, $_y, $_width, $_height) = @_ }
sub process_all_updates { my ($_class) = @_ }
sub process_updates { my ($_window, $_update_children) = @_ }
sub property_change { my ($_window, $_property, $_type, $_format, $_mode, $_data, $_nelements) = @_ }
sub property_delete { my ($_window, $_property) = @_ }
sub property_get { my ($_window, $_property, $_type, $_offset, $_length, $_pdelete) = @_ }
sub raise { my ($_window) = @_ }
sub register_dnd { my ($_window) = @_ }
sub reparent { my ($_window, $_new_parent, $_x, $_y) = @_ }
sub resize { my ($_window, $_width, $_height) = @_ }
sub scroll { my ($_window, $_dx, $_dy) = @_ }
sub set_back_pixmap { my ($_window, $_pixmap, $_o_parent_relative) = @_ }
sub set_background { my ($_window, $_color) = @_ }
sub set_cursor { my ($_window, $_cursor) = @_ }
sub set_decorations { my ($_window, $_decorations) = @_ }
sub set_events { my ($_window, $_event_mask) = @_ }
sub set_functions { my ($_window, $_functions) = @_ }
sub set_group { my ($_window, $_leader) = @_ }
sub set_icon_name { my ($_window, $_name) = @_ }
sub set_modal_hint { my ($_window, $_modal) = @_ }
sub set_override_redirect { my ($_window, $_override_redirect) = @_ }
sub set_role { my ($_window, $_role) = @_ }
sub set_skip_pager_hint { my ($_window, $_skips_pager) = @_ }
sub set_skip_taskbar_hint { my ($_window, $_skips_taskbar) = @_ }
sub set_title { my ($_window, $_title) = @_ }
sub set_transient_for { my ($_window, $_parent) = @_ }
sub set_type_hint { my ($_window, $_hint) = @_ }
sub show { my ($_window) = @_ }
sub show_unraised { my ($_window) = @_ }
sub stick { my ($_window) = @_ }
sub thaw_updates { my ($_window) = @_ }
sub unfullscreen { my ($_window) = @_ }
sub unmaximize { my ($_window) = @_ }
sub unstick { my ($_window) = @_ }
sub withdraw { my ($_window) = @_ }

package Gtk2::HBox;
our @ISA = qw();
sub new { my ($_class, $_o_homogeneous, $_o_spacing) = @_ }

package Gtk2::HButtonBox;
our @ISA = qw();
sub get_layout_default { my ($_class) = @_ }
sub get_spacing_default { my ($_class) = @_ }
sub new { my ($_class) = @_ }
sub set_layout_default { my ($_class, $_layout) = @_ }
sub set_spacing_default { my ($_class, $_spacing) = @_ }

package Gtk2::HPaned;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::HRuler;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::HScale;
our @ISA = qw();
sub new { my ($_class, $_o_adjustment) = @_ }
sub new_with_range { my ($_class, $_min, $_max, $_step) = @_ }

package Gtk2::HScrollBar;
our @ISA = qw();
sub new { my ($_class, $_o_adjustment) = @_ }

package Gtk2::HSeparator;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::HandleBox;
our @ISA = qw();
sub get_handle_position { my ($_handle_box) = @_ }
sub get_shadow_type { my ($_handle_box) = @_ }
sub get_snap_edge { my ($_handle_box) = @_ }
sub new { my ($_class) = @_ }
sub set_handle_position { my ($_handle_box, $_position) = @_ }
sub set_shadow_type { my ($_handle_box, $_type) = @_ }
sub set_snap_edge { my ($_handle_box, $_edge) = @_ }

package Gtk2::IconFactory;
our @ISA = qw();
sub add { my ($_factory, $_stock_id, $_icon_set) = @_ }
sub add_default { my ($_factory) = @_ }
sub lookup { my ($_factory, $_stock_id) = @_ }
sub lookup_default { my ($_class, $_stock_id) = @_ }
sub new { my ($_class) = @_ }

package Gtk2::IconSet;
our @ISA = qw();
sub add_source { my ($_icon_set, $_source) = @_ }
sub copy { my ($_icon_set) = @_ }
sub get_sizes { my ($_icon_set) = @_ }
sub new { my ($_class) = @_ }
sub new_from_pixbuf { my ($_class, $_pixbuf) = @_ }

package Gtk2::IconSize;
our @ISA = qw();
sub from_name { my ($_class, $_name) = @_ }
sub lookup { my ($_class, $_size) = @_ }
sub lookup_for_settings { my ($_class, $_settings, $_size, $_width, $_height) = @_ }
sub register { my ($_class, $_name, $_width, $_height) = @_ }
sub register_alias { my ($_class, $_alias, $_target) = @_ }

package Gtk2::IconSource;
our @ISA = qw();
sub copy { my ($_source) = @_ }
sub free { my ($_source) = @_ }
sub get_direction { my ($_source) = @_ }
sub get_direction_wildcarded { my ($_source) = @_ }
sub get_filename { my ($_source) = @_ }
sub get_pixbuf { my ($_source) = @_ }
sub get_size { my ($_source) = @_ }
sub get_size_wildcarded { my ($_source) = @_ }
sub get_state { my ($_source) = @_ }
sub get_state_wildcarded { my ($_source) = @_ }
sub new { my ($_class) = @_ }
sub set_direction { my ($_source, $_direction) = @_ }
sub set_direction_wildcarded { my ($_source, $_setting) = @_ }
sub set_filename { my ($_source, $_filename) = @_ }
sub set_pixbuf { my ($_source, $_pixbuf) = @_ }
sub set_size { my ($_source, $_size) = @_ }
sub set_size_wildcarded { my ($_source, $_setting) = @_ }
sub set_state { my ($_source, $_state) = @_ }
sub set_state_wildcarded { my ($_source, $_setting) = @_ }

package Gtk2::Image;
our @ISA = qw();
sub get_animation { my ($_image) = @_ }
sub get_icon_set { my ($_image) = @_ }
sub get_image { my ($_image) = @_ }
sub get_pixbuf { my ($_image) = @_ }
sub get_pixmap { my ($_image) = @_ }
sub get_stock { my ($_image) = @_ }
sub get_storage_type { my ($_image) = @_ }
sub new { my ($_class) = @_ }
sub new_from_animation { my ($_class, $_animation) = @_ }
sub new_from_file { my ($_class, $_filename) = @_ }
sub new_from_icon_set { my ($_class, $_icon_set, $_size) = @_ }
sub new_from_image { my ($_class, $_image, $_mask) = @_ }
sub new_from_pixbuf { my ($_class, $_pixbuf) = @_ }
sub new_from_pixmap { my ($_class, $_pixmap, $_mask) = @_ }
sub new_from_stock { my ($_class, $_stock_id, $_size) = @_ }
sub set_from_animation { my ($_image, $_animation) = @_ }
sub set_from_file { my ($_image, $_filename) = @_ }
sub set_from_icon_set { my ($_image, $_icon_set, $_size) = @_ }
sub set_from_image { my ($_image, $_gdk_image, $_mask) = @_ }
sub set_from_pixbuf { my ($_image, $_pixbuf) = @_ }
sub set_from_pixmap { my ($_image, $_pixmap, $_mask) = @_ }
sub set_from_stock { my ($_image, $_stock_id, $_size) = @_ }

package Gtk2::ImageMenuItem;
our @ISA = qw();
sub get_image { my ($_image_menu_item) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub new_from_stock { my ($_class, $_stock_id, $_accel_group) = @_ }
sub new_with_label { my ($_class, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_label) = @_ }
sub news { my ($_class, $_o_label) = @_ }
sub set_image { my ($_image_menu_item, $_image) = @_ }

package Gtk2::InputDialog;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::Invisible;
our @ISA = qw();
sub get_screen { my ($_invisible) = @_ }
sub new { my ($_class) = @_ }
sub new_for_screen { my ($_screen) = @_ }
sub set_screen { my ($_invisible, $_screen) = @_ }

package Gtk2::Item;
our @ISA = qw();
sub deselect { my ($_item) = @_ }
sub select { my ($_item) = @_ }
sub toggle { my ($_item) = @_ }

package Gtk2::ItemFactory;
our @ISA = qw();
sub _create_item { my ($_ifactory, $_path, $_accelerator, $_callback_action, $_item_type, $_extra_data, $_clean_path, $_callback_sv, $_callback_data) = @_ }
sub delete_item { my ($_ifactory, $_path) = @_ }
sub from_widget { my ($_class, $_widget) = @_ }
sub get_item { my ($_ifactory, $_path) = @_ }
sub get_item_by_action { my ($_ifactory, $_action) = @_ }
sub get_widget { my ($_ifactory, $_path) = @_ }
sub get_widget_by_action { my ($_ifactory, $_action) = @_ }
sub new { my ($_class, $_container_type_package, $_path, $_accel_group) = @_ }
sub path_from_widget { my ($_class, $_widget) = @_ }
sub popup { my ($_ifactory, $_x, $_y, $_mouse_button, $_time_, $_o_popup_data) = @_ }

package Gtk2::Label;
our @ISA = qw();
sub get_attributes { my ($_label) = @_ }
sub get_justify { my ($_label) = @_ }
sub get_label { my ($_label) = @_ }
sub get_layout { my ($_label) = @_ }
sub get_layout_offsets { my ($_label) = @_ }
sub get_line_wrap { my ($_label) = @_ }
sub get_mnemonic_keyval { my ($_label) = @_ }
sub get_mnemonic_widget { my ($_label) = @_ }
sub get_selectable { my ($_label) = @_ }
sub get_selection_bounds { my ($_label) = @_ }
sub get_text { my ($_label) = @_ }
sub get_use_markup { my ($_label) = @_ }
sub get_use_underline { my ($_label) = @_ }
sub new { my ($_class, $_o_str) = @_ }
sub new_with_mnemonic { my ($_class, $_str) = @_ }
sub select_region { my ($_label, $_o_start_offset, $_o_end_offset) = @_ }
sub set_attributes { my ($_label, $_attrs) = @_ }
sub set_justify { my ($_label, $_jtype) = @_ }
sub set_label { my ($_label, $_str) = @_ }
sub set_line_wrap { my ($_label, $_wrap) = @_ }
sub set_markup { my ($_label, $_str) = @_ }
sub set_markup_with_mnemonic { my ($_label, $_str) = @_ }
sub set_mnemonic_widget { my ($_label, $_widget) = @_ }
sub set_pattern { my ($_label, $_pattern) = @_ }
sub set_selectable { my ($_label, $_setting) = @_ }
sub set_text { my ($_label, $_str) = @_ }
sub set_text_with_mnemonic { my ($_label, $_str) = @_ }
sub set_use_markup { my ($_label, $_setting) = @_ }
sub set_use_underline { my ($_label, $_setting) = @_ }

package Gtk2::Layout;
our @ISA = qw();
sub freeze { my ($_layout) = @_ }
sub get_hadjustment { my ($_layout) = @_ }
sub get_size { my ($_layout) = @_ }
sub get_vadjustment { my ($_layout) = @_ }
sub move { my ($_layout, $_child_widget, $_x, $_y) = @_ }
sub new { my ($_class, $_hadjustment, $_vadjustment) = @_ }
sub put { my ($_layout, $_child_widget, $_x, $_y) = @_ }
sub set_hadjustment { my ($_layout, $_adjustment) = @_ }
sub set_size { my ($_layout, $_width, $_height) = @_ }
sub set_vadjustment { my ($_layout, $_adjustment) = @_ }
sub thaw { my ($_layout) = @_ }

package Gtk2::List;
our @ISA = qw();
sub append_items { my ($_list, $_list_item, @_more_paras) = @_ }
sub child_position { my ($_list, $_child) = @_ }
sub clear_items { my ($_list, $_start, $_end) = @_ }
sub end_drag_selection { my ($_list) = @_ }
sub end_selection { my ($_list) = @_ }
sub extend_selection { my ($_list, $_scroll_type, $_position, $_auto_start_selection) = @_ }
sub insert_items { my ($_list, $_position, $_list_item, @_more_paras) = @_ }
sub new { my ($_class) = @_ }
sub prepend_items { my ($_list, $_list_item, @_more_paras) = @_ }
sub remove_items { my ($_list, $_list_item, @_more_paras) = @_ }
sub scroll_horizontal { my ($_list, $_scroll_type, $_position) = @_ }
sub scroll_vertical { my ($_list, $_scroll_type, $_position) = @_ }
sub select_all { my ($_list) = @_ }
sub select_child { my ($_list, $_child) = @_ }
sub select_item { my ($_list, $_item) = @_ }
sub set_selection_mode { my ($_list, $_mode) = @_ }
sub start_selection { my ($_list) = @_ }
sub toggle_add_mode { my ($_list) = @_ }
sub toggle_focus_row { my ($_list) = @_ }
sub toggle_row { my ($_list, $_item) = @_ }
sub undo_selection { my ($_list) = @_ }
sub unselect_all { my ($_list) = @_ }
sub unselect_child { my ($_list, $_child) = @_ }
sub unselect_item { my ($_list, $_item) = @_ }

package Gtk2::ListItem;
our @ISA = qw();
sub deselect { my ($_list_item) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub select { my ($_list_item) = @_ }

package Gtk2::ListStore;
our @ISA = qw();
sub append { my ($_list_store) = @_ }
sub clear { my ($_list_store) = @_ }
sub insert { my ($_list_store, $_position) = @_ }
sub insert_after { my ($_list_store, $_sibling) = @_ }
sub insert_before { my ($_list_store, $_sibling) = @_ }
sub iter_is_valid { my ($_list_store, $_iter) = @_ }
sub move_after { my ($_store, $_iter, $_position) = @_ }
sub move_before { my ($_store, $_iter, $_position) = @_ }
sub new { my ($_class, @_more_paras) = @_ }
sub prepend { my ($_list_store) = @_ }
sub remove { my ($_list_store, $_iter) = @_ }
sub reorder { my ($_store, @_more_paras) = @_ }
sub set { my ($_list_store, $_iter, @_more_paras) = @_ }
sub set_column_types { my ($_list_store, @_more_paras) = @_ }
sub swap { my ($_store, $_a, $_b) = @_ }

package Gtk2::Menu;
our @ISA = qw();
sub detach { my ($_menu) = @_ }
sub get_accel_group { my ($_menu) = @_ }
sub get_active { my ($_menu) = @_ }
sub get_attach_widget { my ($_menu) = @_ }
sub get_tearoff_state { my ($_menu) = @_ }
sub get_title { my ($_menu) = @_ }
sub new { my ($_class) = @_ }
sub popdown { my ($_menu) = @_ }
sub popup { my ($_menu, $_parent_menu_shell, $_parent_menu_item, $_menu_pos_func, $_data, $_button, $_activate_time) = @_ }
sub reorder_child { my ($_menu, $_child, $_position) = @_ }
sub reposition { my ($_menu) = @_ }
sub set_accel_group { my ($_menu, $_accel_group) = @_ }
sub set_accel_path { my ($_menu, $_accel_path) = @_ }
sub set_active { my ($_menu, $_index) = @_ }
sub set_screen { my ($_menu, $_screen) = @_ }
sub set_tearoff_state { my ($_menu, $_torn_off) = @_ }
sub set_title { my ($_menu, $_title) = @_ }

package Gtk2::MenuBar;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::MenuItem;
our @ISA = qw();
sub activate { my ($_menu_item) = @_ }
sub deselect { my ($_menu_item) = @_ }
sub get_right_justified { my ($_menu_item) = @_ }
sub get_submenu { my ($_menu_item) = @_ }
sub new { my ($_class, $_o_label) = @_ }
sub new_with_label { my ($_class, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_label) = @_ }
sub news { my ($_class, $_o_label) = @_ }
sub remove_submenu { my ($_menu_item) = @_ }
sub select { my ($_menu_item) = @_ }
sub set_right_justified { my ($_menu_item, $_right_justified) = @_ }
sub set_submenu { my ($_menu_item, $_submenu) = @_ }

package Gtk2::MenuShell;
our @ISA = qw();
sub activate_item { my ($_menu_shell, $_menu_item, $_force_deactivate) = @_ }
sub append { my ($_menu_shell, $_child) = @_ }
sub deactivate { my ($_menu_shell) = @_ }
sub deselect { my ($_menu_shell) = @_ }
sub insert { my ($_menu_shell, $_child, $_position) = @_ }
sub prepend { my ($_menu_shell, $_child) = @_ }
sub select_item { my ($_menu_shell, $_menu_item) = @_ }

package Gtk2::MessageDialog;
our @ISA = qw();
sub new { my ($_class, $_parent, $_flags, $_type, $_buttons, $_message) = @_ }

package Gtk2::Misc;
our @ISA = qw();
sub get_alignment { my ($_misc) = @_ }
sub get_padding { my ($_misc) = @_ }
sub set_alignment { my ($_misc, $_xalign, $_yalign) = @_ }
sub set_padding { my ($_misc, $_xpad, $_ypad) = @_ }

package Gtk2::Notebook;
our @ISA = qw();
sub append_page { my ($_notebook, $_child, $_o_tab_label) = @_ }
sub append_page_menu { my ($_notebook, $_child, $_tab_label, $_menu_label) = @_ }
sub get_current_page { my ($_notebook) = @_ }
sub get_menu_label { my ($_notebook, $_child) = @_ }
sub get_menu_label_text { my ($_notebook, $_child) = @_ }
sub get_n_pages { my ($_notebook) = @_ }
sub get_nth_page { my ($_notebook, $_page_num) = @_ }
sub get_scrollable { my ($_notebook) = @_ }
sub get_show_border { my ($_notebook) = @_ }
sub get_show_tabs { my ($_notebook) = @_ }
sub get_tab_label { my ($_notebook, $_child) = @_ }
sub get_tab_label_text { my ($_notebook, $_child) = @_ }
sub get_tab_pos { my ($_notebook) = @_ }
sub insert_page { my ($_notebook, $_child, $_tab_label, $_position) = @_ }
sub insert_page_menu { my ($_notebook, $_child, $_tab_label, $_menu_label, $_position) = @_ }
sub new { my ($_class) = @_ }
sub next_page { my ($_notebook) = @_ }
sub page_num { my ($_notebook, $_child) = @_ }
sub popup_disable { my ($_notebook) = @_ }
sub popup_enable { my ($_notebook) = @_ }
sub prepend_page { my ($_notebook, $_child, $_o_tab_label) = @_ }
sub prepend_page_menu { my ($_notebook, $_child, $_tab_label, $_menu_label) = @_ }
sub prev_page { my ($_notebook) = @_ }
sub query_tab_label_packing { my ($_notebook, $_child) = @_ }
sub remove_page { my ($_notebook, $_page_num) = @_ }
sub reorder_child { my ($_notebook, $_child, $_position) = @_ }
sub set_current_page { my ($_notebook, $_page_num) = @_ }
sub set_menu_label { my ($_notebook, $_child, $_o_menu_label) = @_ }
sub set_menu_label_text { my ($_notebook, $_child, $_menu_text) = @_ }
sub set_scrollable { my ($_notebook, $_scrollable) = @_ }
sub set_show_border { my ($_notebook, $_show_border) = @_ }
sub set_show_tabs { my ($_notebook, $_show_tabs) = @_ }
sub set_tab_border { my ($_notebook, $_border_width) = @_ }
sub set_tab_hborder { my ($_notebook, $_tab_hborder) = @_ }
sub set_tab_label { my ($_notebook, $_child, $_o_tab_label) = @_ }
sub set_tab_label_packing { my ($_notebook, $_child, $_expand, $_fill, $_pack_type) = @_ }
sub set_tab_label_text { my ($_notebook, $_child, $_tab_text) = @_ }
sub set_tab_pos { my ($_notebook, $_pos) = @_ }
sub set_tab_vborder { my ($_notebook, $_tab_vborder) = @_ }

package Gtk2::Object;
our @ISA = qw();
sub destroy { my ($_object) = @_ }
sub new { my ($_class, $_object_class, @_more_paras) = @_ }

package Gtk2::OptionMenu;
our @ISA = qw();
sub get_history { my ($_option_menu) = @_ }
sub get_menu { my ($_option_menu) = @_ }
sub new { my ($_class) = @_ }
sub remove_menu { my ($_option_menu) = @_ }
sub set_history { my ($_option_menu, $_index) = @_ }
sub set_menu { my ($_option_menu, $_menu) = @_ }

package Gtk2::Paned;
our @ISA = qw();
sub add1 { my ($_paned, $_child) = @_ }
sub add2 { my ($_paned, $_child) = @_ }
sub child1 { my ($_paned) = @_ }
sub child1_resize { my ($_paned) = @_ }
sub child1_shrink { my ($_paned) = @_ }
sub child2 { my ($_paned) = @_ }
sub child2_resize { my ($_paned) = @_ }
sub child2_shrink { my ($_paned) = @_ }
sub compute_position { my ($_paned, $_allocation, $_child1_req, $_child2_req) = @_ }
sub get_position { my ($_paned) = @_ }
sub member { my ($_paned) = @_ }
sub pack1 { my ($_paned, $_child, $_resize, $_shrink) = @_ }
sub pack2 { my ($_paned, $_child, $_resize, $_shrink) = @_ }
sub set_position { my ($_paned, $_position) = @_ }

package Gtk2::Pango;
our @ISA = qw();
sub PANGO_PIXELS { my ($_class, $_d) = @_ }
sub constant { my ($_class) = @_ }
sub pixels { my ($_class, $_d) = @_ }
sub scale { my ($_class) = @_ }
sub scale_large { my ($_class) = @_ }
sub scale_medium { my ($_class) = @_ }
sub scale_small { my ($_class) = @_ }
sub scale_x_large { my ($_class) = @_ }
sub scale_x_small { my ($_class) = @_ }
sub scale_xx_large { my ($_class) = @_ }
sub scale_xx_small { my ($_class) = @_ }

package Gtk2::Pango::Context;
our @ISA = qw();
sub get_base_dir { my ($_context) = @_ }
sub get_font_description { my ($_context) = @_ }
sub get_language { my ($_context) = @_ }
sub get_metrics { my ($_context, $_desc, $_language) = @_ }
sub load_font { my ($_context, $_desc) = @_ }
sub load_fontset { my ($_context, $_desc, $_language) = @_ }
sub set_base_dir { my ($_context, $_direction) = @_ }
sub set_font_description { my ($_context, $_desc) = @_ }
sub set_language { my ($_context, $_language) = @_ }

package Gtk2::Pango::FontDescription;
our @ISA = qw();
sub better_match { my ($_desc, $_old_match, $_new_match) = @_ }
sub equal { my ($_desc1, $_desc2) = @_ }
sub from_string { my ($_class, $_str) = @_ }
sub get_set_fields { my ($_desc) = @_ }
sub get_size { my ($_desc) = @_ }
sub get_stretch { my ($_desc) = @_ }
sub get_style { my ($_desc) = @_ }
sub get_variant { my ($_desc) = @_ }
sub get_weight { my ($_desc) = @_ }
sub hash { my ($_desc) = @_ }
sub merge { my ($_desc, $_desc_to_merge, $_replace_existing) = @_ }
sub merge_static { my ($_desc, $_desc_to_merge, $_replace_existing) = @_ }
sub new { my ($_class) = @_ }
sub set_family { my ($_desc, $_family) = @_ }
sub set_family_static { my ($_desc, $_family) = @_ }
sub set_size { my ($_desc, $_size) = @_ }
sub set_stretch { my ($_desc, $_stretch) = @_ }
sub set_style { my ($_desc, $_style) = @_ }
sub set_variant { my ($_desc, $_variant) = @_ }
sub set_weight { my ($_desc, $_weight) = @_ }
sub to_filename { my ($_desc) = @_ }
sub to_string { my ($_desc) = @_ }
sub unset_fields { my ($_desc, $_to_unset) = @_ }

package Gtk2::Pango::FontFamily;
our @ISA = qw();
sub list_faces { my ($_family) = @_ }

package Gtk2::Pango::FontMetrics;
our @ISA = qw();
sub get_approximate_char_width { my ($_metrics) = @_ }
sub get_approximate_digit_width { my ($_metrics) = @_ }
sub get_ascent { my ($_metrics) = @_ }
sub get_descent { my ($_metrics) = @_ }
sub pango_font_get_metrics { my ($_font, $_language) = @_ }

package Gtk2::Pango::Layout;
our @ISA = qw();
sub context_changed { my ($_layout) = @_ }
sub copy { my ($_src) = @_ }
sub get_alignment { my ($_layout) = @_ }
sub get_attributes { my ($_layout) = @_ }
sub get_context { my ($_layout) = @_ }
sub get_indent { my ($_layout) = @_ }
sub get_justify { my ($_layout) = @_ }
sub get_line_count { my ($_layout) = @_ }
sub get_log_attrs { my ($_layout) = @_ }
sub get_pixel_size { my ($_layout) = @_ }
sub get_single_paragraph_mode { my ($_layout) = @_ }
sub get_size { my ($_layout) = @_ }
sub get_spacing { my ($_layout) = @_ }
sub get_tabs { my ($_layout) = @_ }
sub get_text { my ($_layout) = @_ }
sub get_width { my ($_layout) = @_ }
sub get_wrap { my ($_layout) = @_ }
sub int_getters { my ($_layout) = @_ }
sub int_setters { my ($_layout, $_newval) = @_ }
sub move_cursor_visually { my ($_layout, $_strong, $_old_index, $_old_trailing, $_direction) = @_ }
sub new { my ($_class, $_context) = @_ }
sub set_alignment { my ($_layout, $_alignment) = @_ }
sub set_attributes { my ($_layout, $_attrs) = @_ }
sub set_font_description { my ($_layout, $_desc) = @_ }
sub set_indent { my ($_layout, $_newval) = @_ }
sub set_justify { my ($_layout, $_newval) = @_ }
sub set_markup { my ($_layout, $_markup) = @_ }
sub set_single_paragraph_mode { my ($_layout, $_newval) = @_ }
sub set_spacing { my ($_layout, $_newval) = @_ }
sub set_tabs { my ($_layout, $_tabs) = @_ }
sub set_text { my ($_layout, $_text) = @_ }
sub set_width { my ($_layout, $_newval) = @_ }
sub set_wrap { my ($_layout, $_wrap) = @_ }
sub xy_to_index { my ($_layout, $_x, $_y) = @_ }

package Gtk2::Pango::TabArray;
our @ISA = qw();
sub copy { my ($_src) = @_ }
sub get_positions_in_pixels { my ($_tab_array) = @_ }
sub get_size { my ($_tab_array) = @_ }
sub get_tab { my ($_tab_array, $_tab_index) = @_ }
sub get_tabs { my ($_tab_array) = @_ }
sub new { my ($_class, $_initial_size, $_positions_in_pixels, @_more_paras) = @_ }
sub new_with_positions { my ($_class, $_initial_size, $_positions_in_pixels, @_more_paras) = @_ }
sub resize { my ($_tab_array, $_new_size) = @_ }
sub set_tab { my ($_tab_array, $_tab_index, $_alignment, $_location) = @_ }

package Gtk2::Plug;
our @ISA = qw();
sub construct { my ($_plug, $_socket_id) = @_ }
sub construct_for_display { my ($_plug, $_display, $_socket_id) = @_ }
sub get_id { my ($_plug) = @_ }
sub new { my ($_class, $_socket_id) = @_ }
sub new_for_display { my ($_display, $_socket_id) = @_ }

package Gtk2::ProgressBar;
our @ISA = qw();
sub get_fraction { my ($_pbar) = @_ }
sub get_orientation { my ($_pbar) = @_ }
sub get_pulse_step { my ($_pbar) = @_ }
sub get_text { my ($_pbar) = @_ }
sub new { my ($_class) = @_ }
sub pulse { my ($_pbar) = @_ }
sub set_fraction { my ($_pbar, $_fraction) = @_ }
sub set_orientation { my ($_pbar, $_orientation) = @_ }
sub set_pulse_step { my ($_pbar, $_fraction) = @_ }
sub set_text { my ($_pbar, $_text) = @_ }

package Gtk2::RadioButton;
our @ISA = qw();
sub get_group { my ($_radio_button) = @_ }
sub new { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub new_from_widget { my ($_class, $_group, $_o_label) = @_ }
sub new_with_label { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub new_with_label_from_widget { my ($_class, $_group, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub new_with_mnemonic_from_widget { my ($_class, $_group, $_o_label) = @_ }
sub set_group { my ($_radio_button, $_member_or_listref) = @_ }

package Gtk2::RadioMenuItem;
our @ISA = qw();
sub get_group { my ($_radio_menu_item) = @_ }
sub new { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub new_with_label { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub new_with_mnemonic { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub news { my ($_class, $_o_member_or_listref, $_o_label) = @_ }
sub set_group { my ($_radio_menu_item, $_member_or_listref) = @_ }

package Gtk2::Range;
our @ISA = qw();
sub get_adjustment { my ($_range) = @_ }
sub get_inverted { my ($_range) = @_ }
sub get_update_policy { my ($_range) = @_ }
sub get_value { my ($_range) = @_ }
sub set_adjustment { my ($_range, $_adjustment) = @_ }
sub set_increments { my ($_range, $_step, $_page) = @_ }
sub set_inverted { my ($_range, $_setting) = @_ }
sub set_range { my ($_range, $_min, $_max) = @_ }
sub set_update_policy { my ($_range, $_policy) = @_ }
sub set_value { my ($_range, $_value) = @_ }

package Gtk2::Rc;
our @ISA = qw();
sub add_class_style { my ($_rc_style, $_pattern) = @_ }
sub add_default_file { my ($_class, $_filename) = @_ }
sub add_widget_class_style { my ($_rc_style, $_pattern) = @_ }
sub add_widget_name_style { my ($_rc_style, $_pattern) = @_ }
sub find_module_in_path { my ($_class, $_module_file) = @_ }
sub get_im_module_file { my ($_class) = @_ }
sub get_im_module_path { my ($_class) = @_ }
sub get_module_dir { my ($_class) = @_ }
sub get_style { my ($_widget) = @_ }
sub get_theme_dir { my ($_class) = @_ }
sub parse { my ($_class, $_filename) = @_ }
sub parse_string { my ($_class, $_rc_string) = @_ }
sub reparse_all { my ($_class) = @_ }
sub reparse_all_for_settings { my ($_settings, $_force_load) = @_ }
sub set_default_files { my ($_class, @_more_paras) = @_ }

package Gtk2::Requisition;
our @ISA = qw();
sub height { my ($_requisition, $_o_newval) = @_ }
sub new { my ($_class, $_o_width, $_o_height) = @_ }
sub width { my ($_requisition, $_o_newval) = @_ }

package Gtk2::Ruler;
our @ISA = qw();
sub draw_pos { my ($_ruler) = @_ }
sub draw_ticks { my ($_ruler) = @_ }
sub get_metric { my ($_ruler) = @_ }
sub get_range { my ($_ruler) = @_ }
sub set_metric { my ($_ruler, $_metric) = @_ }
sub set_range { my ($_ruler, $_lower, $_upper, $_position, $_max_size) = @_ }

package Gtk2::Scale;
our @ISA = qw();
sub get_digits { my ($_scale) = @_ }
sub get_draw_value { my ($_scale) = @_ }
sub get_value_pos { my ($_scale) = @_ }
sub set_digits { my ($_scale, $_digits) = @_ }
sub set_draw_value { my ($_scale, $_draw_value) = @_ }
sub set_value_pos { my ($_scale, $_pos) = @_ }

package Gtk2::ScrolledWindow;
our @ISA = qw();
sub add_with_viewport { my ($_scrolled_window, $_child) = @_ }
sub get_hadjustment { my ($_scrolled_window) = @_ }
sub get_placement { my ($_scrolled_window) = @_ }
sub get_policy { my ($_scrolled_window) = @_ }
sub get_shadow_type { my ($_scrolled_window) = @_ }
sub get_vadjustment { my ($_scrolled_window) = @_ }
sub new { my ($_class, $_o_hadjustment, $_o_vadjustment) = @_ }
sub set_hadjustment { my ($_scrolled_window, $_hadjustment) = @_ }
sub set_placement { my ($_scrolled_window, $_window_placement) = @_ }
sub set_policy { my ($_scrolled_window, $_hscrollbar_policy, $_vscrollbar_policy) = @_ }
sub set_shadow_type { my ($_scrolled_window, $_type) = @_ }
sub set_vadjustment { my ($_scrolled_window, $_hadjustment) = @_ }

package Gtk2::Selection;
our @ISA = qw();
sub add_target { my ($_widget, $_selection, $_target, $_info) = @_ }
sub clear_targets { my ($_widget, $_selection) = @_ }
sub convert { my ($_widget, $_selection, $_target, $_time_) = @_ }
sub owner_set { my ($_class, $_widget, $_selection, $_time_) = @_ }
sub owner_set_for_display { my ($_class, $_display, $_widget, $_selection, $_time_) = @_ }

package Gtk2::SelectionData;
our @ISA = qw();
sub copy { my ($_data) = @_ }
sub data { my ($_d) = @_ }
sub display { my ($_d) = @_ }
sub Gtk2::SelectionData::format { my ($_d) = @_ }
sub get_row_drag_data { my ($_selection_data, $_tree_model, $_path) = @_ }
sub get_targets { my ($_selection_data) = @_ }
sub get_text { my ($_selection_data) = @_ }
sub gtk_selection_clear { my ($_widget, $_event) = @_ }
sub gtk_selection_remove_all { my ($_widget) = @_ }
sub Gtk2::SelectionData::length { my ($_d) = @_ }
sub members { my ($_d) = @_ }
sub selection { my ($_d) = @_ }
sub set { my ($_selection_data, $_type, $_format, $_data) = @_ }
sub set_row_drag_data { my ($_selection_data, $_tree_model, $_path) = @_ }
sub set_text { my ($_selection_data, $_str, $_o_len) = @_ }
sub target { my ($_d) = @_ }
sub targets_include_text { my ($_selection_data) = @_ }
sub type { my ($_d) = @_ }

package Gtk2::SeparatorMenuItem;
our @ISA = qw();
sub new { my ($_class) = @_ }

package Gtk2::SizeGroup;
our @ISA = qw();
sub add_widget { my ($_size_group, $_widget) = @_ }
sub get_mode { my ($_size_group) = @_ }
sub new { my ($_class, $_mode) = @_ }
sub remove_widget { my ($_size_group, $_widget) = @_ }
sub set_mode { my ($_size_group, $_mode) = @_ }

package Gtk2::Socket;
our @ISA = qw();
sub add_id { my ($_socket, $_window_id) = @_ }
sub get_id { my ($_socket) = @_ }
sub new { my ($_class) = @_ }
sub steal { my ($_socket, $_wid) = @_ }

package Gtk2::SpinButton;
our @ISA = qw();
sub configure { my ($_spin_button, $_adjustment, $_climb_rate, $_digits) = @_ }
sub get_adjustment { my ($_spin_button) = @_ }
sub get_digits { my ($_spin_button) = @_ }
sub get_increments { my ($_spin_button) = @_ }
sub get_numeric { my ($_spin_button) = @_ }
sub get_range { my ($_spin_button) = @_ }
sub get_snap_to_ticks { my ($_spin_button) = @_ }
sub get_update_policy { my ($_spin_button) = @_ }
sub get_value { my ($_spin_button) = @_ }
sub get_value_as_int { my ($_spin_button) = @_ }
sub get_wrap { my ($_spin_button) = @_ }
sub new { my ($_class, $_adjustment, $_climb_rate, $_digits) = @_ }
sub new_with_range { my ($_class, $_min, $_max, $_step) = @_ }
sub set_adjustment { my ($_spin_button, $_adjustment) = @_ }
sub set_digits { my ($_spin_button, $_digits) = @_ }
sub set_increments { my ($_spin_button, $_step, $_page) = @_ }
sub set_numeric { my ($_spin_button, $_numeric) = @_ }
sub set_range { my ($_spin_button, $_min, $_max) = @_ }
sub set_snap_to_ticks { my ($_spin_button, $_snap_to_ticks) = @_ }
sub set_update_policy { my ($_spin_button, $_policy) = @_ }
sub set_value { my ($_spin_button, $_value) = @_ }
sub set_wrap { my ($_spin_button, $_wrap) = @_ }
sub spin { my ($_spin_button, $_direction, $_increment) = @_ }
sub update { my ($_spin_button) = @_ }

package Gtk2::Statusbar;
our @ISA = qw();
sub get_context_id { my ($_statusbar, $_context_description) = @_ }
sub get_has_resize_grip { my ($_statusbar) = @_ }
sub new { my ($_class) = @_ }
sub pop { my ($_statusbar, $_context_id) = @_ }
sub push { my ($_statusbar, $_context_id, $_text) = @_ }
sub remove { my ($_statusbar, $_context_id, $_message_id) = @_ }
sub set_has_resize_grip { my ($_statusbar, $_setting) = @_ }

package Gtk2::Stock;
our @ISA = qw();
sub add { my ($_class, @_more_paras) = @_ }
sub list_ids { my ($_class) = @_ }
sub lookup { my ($_class, $_stock_id) = @_ }

package Gtk2::Style;
our @ISA = qw();
sub apply_default_background { my ($_style, $_window, $_set_bg, $_state_type, $_area, $_x, $_y, $_width, $_height) = @_ }
sub attach { my ($_style, $_window) = @_ }
sub base { my ($_style, $_state) = @_ }
sub base_gc { my ($_style, $_state) = @_ }
sub bg { my ($_style, $_state) = @_ }
sub bg_gc { my ($_style, $_state) = @_ }
sub bg_pixmap { my ($_style, $_state) = @_ }
sub black { my ($_style) = @_ }
sub black_gc { my ($_style) = @_ }
sub copy { my ($_style) = @_ }
sub dark { my ($_style, $_state) = @_ }
sub dark_gc { my ($_style, $_state) = @_ }
sub detach { my ($_style) = @_ }
sub draw_flat_box { my ($_style, $_window, $_state_type, $_shadow_type, $_x, $_y, $_width, $_height) = @_ }
sub fg { my ($_style, $_state) = @_ }
sub fg_gc { my ($_style, $_state) = @_ }
sub font_desc { my ($_style) = @_ }
sub light { my ($_style, $_state) = @_ }
sub light_gc { my ($_style, $_state) = @_ }
sub lookup_icon_set { my ($_style, $_stock_id) = @_ }
sub mid { my ($_style, $_state) = @_ }
sub mid_gc { my ($_style, $_state) = @_ }
sub new { my ($_class) = @_ }
sub paint_arrow { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_arrow_type, $_fill, $_x, $_y, $_width, $_height) = @_ }
sub paint_box { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_box_gap { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height, $_gap_side, $_gap_x, $_gap_width) = @_ }
sub paint_check { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_diamond { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_expander { my ($_style, $_window, $_state_type, $_area, $_widget, $_detail, $_x, $_y, $_expander_style) = @_ }
sub paint_extension { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height, $_gap_side) = @_ }
sub paint_focus { my ($_style, $_window, $_state_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_handle { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height, $_orientation) = @_ }
sub paint_hline { my ($_style, $_window, $_state_type, $_area, $_widget, $_detail, $_x1, $_x2, $_y) = @_ }
sub paint_layout { my ($_style, $_window, $_state_type, $_use_text, $_area, $_widget, $_detail, $_x, $_y, $_layout) = @_ }
sub paint_option { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_polygon { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_fill, $_x1, $_y1, @_more_paras) = @_ }
sub paint_resize_grip { my ($_style, $_window, $_state_type, $_area, $_widget, $_detail, $_edge, $_x, $_y, $_width, $_height) = @_ }
sub paint_shadow { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_shadow_gap { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height, $_gap_side, $_gap_x, $_gap_width) = @_ }
sub paint_slider { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height, $_orientation) = @_ }
sub paint_tab { my ($_style, $_window, $_state_type, $_shadow_type, $_area, $_widget, $_detail, $_x, $_y, $_width, $_height) = @_ }
sub paint_vline { my ($_style, $_window, $_state_type, $_area, $_widget, $_detail, $_y1_, $_y2_, $_x) = @_ }
sub render_icon { my ($_style, $_source, $_direction, $_state, $_size, $_widget, $_detail) = @_ }
sub set_background { my ($_style, $_window, $_state_type) = @_ }
sub state_color { my ($_style, $_state) = @_ }
sub state_gc { my ($_style, $_state) = @_ }
sub stateless_member { my ($_style) = @_ }
sub text { my ($_style, $_state) = @_ }
sub text_aa { my ($_style, $_state) = @_ }
sub text_aa_gc { my ($_style, $_state) = @_ }
sub text_gc { my ($_style, $_state) = @_ }
sub white { my ($_style) = @_ }
sub white_gc { my ($_style) = @_ }
sub xthickness { my ($_style) = @_ }