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
|
{ This is an autogenerated unit using gobject introspection (gir2pascal). Do not Edit. }
unit LazGObject2;
{$MODE OBJFPC}{$H+}
{$PACKRECORDS C}
{$MODESWITCH DUPLICATELOCALS+}
{$LINKLIB libgobject-2.0.so.0}
interface
uses
CTypes, LazGLib2;
const
GObject2_library = 'libgobject-2.0.so.0';
G_PARAM_MASK = 255;
G_PARAM_READWRITE = 0;
G_PARAM_STATIC_STRINGS = 0;
G_PARAM_USER_SHIFT = 8;
G_SIGNAL_FLAGS_MASK = 511;
G_SIGNAL_MATCH_MASK = 63;
G_TYPE_FLAG_RESERVED_ID_BIT = 1;
G_TYPE_FUNDAMENTAL_MAX = 255;
G_TYPE_FUNDAMENTAL_SHIFT = 2;
G_TYPE_RESERVED_BSE_FIRST = 32;
G_TYPE_RESERVED_BSE_LAST = 48;
G_TYPE_RESERVED_GLIB_FIRST = 22;
G_TYPE_RESERVED_GLIB_LAST = 31;
G_TYPE_RESERVED_USER_FIRST = 49;
G_VALUE_COLLECT_FORMAT_MAX_LENGTH = 8;
G_VALUE_NOCOPY_CONTENTS = 134217728;
type
TGBindingFlags = Integer;
const
{ GBindingFlags }
G_BINDING_DEFAULT: TGBindingFlags = 0;
G_BINDING_BIDIRECTIONAL: TGBindingFlags = 1;
G_BINDING_SYNC_CREATE: TGBindingFlags = 2;
G_BINDING_INVERT_BOOLEAN: TGBindingFlags = 4;
type
TGConnectFlags = Integer;
const
{ GConnectFlags }
G_CONNECT_AFTER: TGConnectFlags = 1;
G_CONNECT_SWAPPED: TGConnectFlags = 2;
type
TGParamFlags = DWord;
const
{ GParamFlags }
G_PARAM_READABLE: TGParamFlags = 1;
G_PARAM_WRITABLE: TGParamFlags = 2;
G_PARAM_CONSTRUCT: TGParamFlags = 4;
G_PARAM_CONSTRUCT_ONLY: TGParamFlags = 8;
G_PARAM_LAX_VALIDATION: TGParamFlags = 16;
G_PARAM_STATIC_NAME: TGParamFlags = 32;
G_PARAM_PRIVATE: TGParamFlags = 32;
G_PARAM_STATIC_NICK: TGParamFlags = 64;
G_PARAM_STATIC_BLURB: TGParamFlags = 128;
G_PARAM_DEPRECATED: TGParamFlags = 2147483648;
type
TGSignalFlags = Integer;
const
{ GSignalFlags }
G_SIGNAL_RUN_FIRST: TGSignalFlags = 1;
G_SIGNAL_RUN_LAST: TGSignalFlags = 2;
G_SIGNAL_RUN_CLEANUP: TGSignalFlags = 4;
G_SIGNAL_NO_RECURSE: TGSignalFlags = 8;
G_SIGNAL_DETAILED: TGSignalFlags = 16;
G_SIGNAL_ACTION: TGSignalFlags = 32;
G_SIGNAL_NO_HOOKS: TGSignalFlags = 64;
G_SIGNAL_MUST_COLLECT: TGSignalFlags = 128;
G_SIGNAL_DEPRECATED: TGSignalFlags = 256;
type
TGSignalMatchType = Integer;
const
{ GSignalMatchType }
G_SIGNAL_MATCH_ID: TGSignalMatchType = 1;
G_SIGNAL_MATCH_DETAIL: TGSignalMatchType = 2;
G_SIGNAL_MATCH_CLOSURE: TGSignalMatchType = 4;
G_SIGNAL_MATCH_FUNC: TGSignalMatchType = 8;
G_SIGNAL_MATCH_DATA: TGSignalMatchType = 16;
G_SIGNAL_MATCH_UNBLOCKED: TGSignalMatchType = 32;
type
TGTypeDebugFlags = Integer;
const
{ GTypeDebugFlags }
G_TYPE_DEBUG_NONE: TGTypeDebugFlags = 0;
G_TYPE_DEBUG_OBJECTS: TGTypeDebugFlags = 1;
G_TYPE_DEBUG_SIGNALS: TGTypeDebugFlags = 2;
G_TYPE_DEBUG_MASK: TGTypeDebugFlags = 3;
type
TGTypeFlags = Integer;
const
{ GTypeFlags }
G_TYPE_FLAG_ABSTRACT: TGTypeFlags = 16;
G_TYPE_FLAG_VALUE_ABSTRACT: TGTypeFlags = 32;
type
TGTypeFundamentalFlags = Integer;
const
{ GTypeFundamentalFlags }
G_TYPE_FLAG_CLASSED: TGTypeFundamentalFlags = 1;
G_TYPE_FLAG_INSTANTIATABLE: TGTypeFundamentalFlags = 2;
G_TYPE_FLAG_DERIVABLE: TGTypeFundamentalFlags = 4;
G_TYPE_FLAG_DEEP_DERIVABLE: TGTypeFundamentalFlags = 8;
type
PPGClosure = ^PGClosure;
PGClosure = ^TGClosure;
PPPGValue = ^PPGValue;
PPGValue = ^PGValue;
PGValue = ^TGValue;
TGClosureMarshal = procedure(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
PPGSignalCMarshaller = ^PGSignalCMarshaller;
PGSignalCMarshaller = ^TGSignalCMarshaller;
TGSignalCMarshaller = TGClosureMarshal;
TGVaClosureMarshal = procedure(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl;
PPGSignalCVaMarshaller = ^PGSignalCVaMarshaller;
PGSignalCVaMarshaller = ^TGSignalCVaMarshaller;
TGSignalCVaMarshaller = TGVaClosureMarshal;
PPGType = ^PGType;
PGType = ^TGType;
TGType = gsize;
TGBaseFinalizeFunc = procedure(g_class: gpointer); cdecl;
TGBaseInitFunc = procedure(g_class: gpointer); cdecl;
PPGBindingFlags = ^PGBindingFlags;
PGBindingFlags = ^TGBindingFlags;
PPGBinding = ^PGBinding;
PGBinding = ^TGBinding;
PPGObject = ^PGObject;
PGObject = ^TGObject;
PPGParameter = ^PGParameter;
PGParameter = ^TGParameter;
PPGParamSpec = ^PGParamSpec;
PGParamSpec = ^TGParamSpec;
PPGToggleNotify = ^PGToggleNotify;
PGToggleNotify = ^TGToggleNotify;
TGToggleNotify = procedure(data: gpointer; object_: PGObject; is_last_ref: gboolean); cdecl;
PPGBindingTransformFunc = ^PGBindingTransformFunc;
PGBindingTransformFunc = ^TGBindingTransformFunc;
TGBindingTransformFunc = function(binding: PGBinding; source_value: PGValue; target_value: PGValue; user_data: gpointer): gboolean; cdecl;
PPGWeakNotify = ^PGWeakNotify;
PGWeakNotify = ^TGWeakNotify;
TGWeakNotify = procedure(data: gpointer; where_the_object_was: PGObject); cdecl;
PPGTypeInstance = ^PGTypeInstance;
PGTypeInstance = ^TGTypeInstance;
PPGTypeClass = ^PGTypeClass;
PGTypeClass = ^TGTypeClass;
TGTypeInstance = object
g_class: PGTypeClass;
function get_private(private_type: TGType): gpointer; cdecl; inline;
end;
TGObject = object
g_type_instance: TGTypeInstance;
ref_count: guint;
qdata: PGData;
//function new_valist(object_type: TGType; first_property_name: Pgchar; var_args: Tva_list): PGObject; cdecl; inline; static;
function newv(object_type: TGType; n_parameters: guint; parameters: PGParameter): PGObject; cdecl; inline; static;
function compat_control(what: gsize; data: gpointer): gsize; cdecl; inline; static;
//function connect(object_: gpointer; signal_spec: Pgchar; args: array of const): gpointer; cdecl; inline; static;
//procedure disconnect(object_: gpointer; signal_spec: Pgchar; args: array of const); cdecl; inline; static;
//procedure get(object_: gpointer; first_property_name: Pgchar; args: array of const); cdecl; inline; static;
function interface_find_property(g_iface: gpointer; property_name: Pgchar): PGParamSpec; cdecl; inline; static;
procedure interface_install_property(g_iface: gpointer; pspec: PGParamSpec); cdecl; inline; static;
function interface_list_properties(g_iface: gpointer; n_properties_p: Pguint): PPGParamSpec; cdecl; inline; static;
//function new(object_type: TGType; first_property_name: Pgchar; args: array of const): gpointer; cdecl; inline; static;
//procedure set_(object_: gpointer; first_property_name: Pgchar; args: array of const); cdecl; inline; static;
procedure add_toggle_ref(notify: TGToggleNotify; data: gpointer); cdecl; inline;
procedure add_weak_pointer(weak_pointer_location: Pgpointer); cdecl; inline;
function bind_property(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags): PGBinding; cdecl; inline;
function bind_property_full(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: TGBindingTransformFunc; transform_from: TGBindingTransformFunc; user_data: gpointer; notify: TGDestroyNotify): PGBinding; cdecl; inline;
function bind_property_with_closures(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: PGClosure; transform_from: PGClosure): PGBinding; cdecl; inline;
function dup_data(key: Pgchar; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl; inline;
function dup_qdata(quark: TGQuark; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl; inline;
procedure force_floating; cdecl; inline;
procedure freeze_notify; cdecl; inline;
function get_data(key: Pgchar): gpointer; cdecl; inline;
procedure get_property(property_name: Pgchar; value: PGValue); cdecl; inline;
function get_qdata(quark: TGQuark): gpointer; cdecl; inline;
//procedure get_valist(first_property_name: Pgchar; var_args: Tva_list); cdecl; inline;
function is_floating: gboolean; cdecl; inline;
procedure notify(property_name: Pgchar); cdecl; inline;
procedure notify_by_pspec(pspec: PGParamSpec); cdecl; inline;
function ref: PGObject; cdecl; inline;
function ref_sink: PGObject; cdecl; inline;
procedure remove_toggle_ref(notify: TGToggleNotify; data: gpointer); cdecl; inline;
procedure remove_weak_pointer(weak_pointer_location: Pgpointer); cdecl; inline;
function replace_data(key: Pgchar; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl; inline;
function replace_qdata(quark: TGQuark; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl; inline;
procedure run_dispose; cdecl; inline;
procedure set_data(key: Pgchar; data: gpointer); cdecl; inline;
procedure set_data_full(key: Pgchar; data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
procedure set_property(property_name: Pgchar; value: PGValue); cdecl; inline;
procedure set_qdata(quark: TGQuark; data: gpointer); cdecl; inline;
procedure set_qdata_full(quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
//procedure set_valist(first_property_name: Pgchar; var_args: Tva_list); cdecl; inline;
function steal_data(key: Pgchar): gpointer; cdecl; inline;
function steal_qdata(quark: TGQuark): gpointer; cdecl; inline;
procedure thaw_notify; cdecl; inline;
procedure unref; cdecl; inline;
procedure watch_closure(closure: PGClosure); cdecl; inline;
procedure weak_ref(notify: TGWeakNotify; data: gpointer); cdecl; inline;
procedure weak_unref(notify: TGWeakNotify; data: gpointer); cdecl; inline;
end;
TGBinding = object(TGObject)
function get_flags: TGBindingFlags; cdecl; inline;
function get_source: PGObject; cdecl; inline;
function get_source_property: Pgchar; cdecl; inline;
function get_target: PGObject; cdecl; inline;
function get_target_property: Pgchar; cdecl; inline;
property flags: TGBindingFlags read get_flags { property is writeable but setter not declared } ;
property source: PGObject read get_source { property is writeable but setter not declared } ;
property source_property: Pgchar read get_source_property { property is writeable but setter not declared } ;
property target: PGObject read get_target { property is writeable but setter not declared } ;
property target_property: Pgchar read get_target_property { property is writeable but setter not declared } ;
end;
PPGValueTransform = ^PGValueTransform;
PGValueTransform = ^TGValueTransform;
TGValueTransform = procedure(src_value: PGValue; dest_value: PGValue); cdecl;
PP_Value__data__union = ^P_Value__data__union;
P_Value__data__union = ^T_Value__data__union;
T_Value__data__union = record
case longint of
0 : (v_int: gint);
1 : (v_uint: guint);
2 : (v_long: glong);
3 : (v_ulong: gulong);
4 : (v_int64: gint64);
5 : (v_uint64: guint64);
6 : (v_float: gfloat);
7 : (v_double: gdouble);
8 : (v_pointer: gpointer);
end;
TGValue = object
g_type: TGType;
data: array [0..1] of T_Value__data__union;
procedure copy(dest_value: PGValue); cdecl; inline;
function dup_boxed: gpointer; cdecl; inline;
function dup_object: PGObject; cdecl; inline;
function dup_param: PGParamSpec; cdecl; inline;
function dup_string: Pgchar; cdecl; inline;
function dup_variant: PGVariant; cdecl; inline;
function fits_pointer: gboolean; cdecl; inline;
function get_boolean: gboolean; cdecl; inline;
function get_boxed: gpointer; cdecl; inline;
function get_double: gdouble; cdecl; inline;
function get_enum: gint; cdecl; inline;
function get_flags: guint; cdecl; inline;
function get_float: gfloat; cdecl; inline;
function get_gtype: TGType; cdecl; inline;
function get_int: gint; cdecl; inline;
function get_int64: gint64; cdecl; inline;
function get_long: glong; cdecl; inline;
function get_object: PGObject; cdecl; inline;
function get_param: PGParamSpec; cdecl; inline;
function get_pointer: gpointer; cdecl; inline;
function get_schar: gint8; cdecl; inline;
function get_string: Pgchar; cdecl; inline;
function get_uchar: guint8; cdecl; inline;
function get_uint: guint; cdecl; inline;
function get_uint64: guint64; cdecl; inline;
function get_ulong: gulong; cdecl; inline;
function get_variant: PGVariant; cdecl; inline;
function init(g_type: TGType): PGValue; cdecl; inline;
function peek_pointer: gpointer; cdecl; inline;
function reset: PGValue; cdecl; inline;
procedure set_boolean(v_boolean: gboolean); cdecl; inline;
procedure set_boxed(v_boxed: Pgpointer); cdecl; inline;
procedure set_double(v_double: gdouble); cdecl; inline;
procedure set_enum(v_enum: gint); cdecl; inline;
procedure set_flags(v_flags: guint); cdecl; inline;
procedure set_float(v_float: gfloat); cdecl; inline;
procedure set_gtype(v_gtype: TGType); cdecl; inline;
procedure set_instance(instance: gpointer); cdecl; inline;
procedure set_int(v_int: gint); cdecl; inline;
procedure set_int64(v_int64: gint64); cdecl; inline;
procedure set_long(v_long: glong); cdecl; inline;
procedure set_object(v_object: PGObject); cdecl; inline;
procedure set_param(param: PGParamSpec); cdecl; inline;
procedure set_pointer(v_pointer: gpointer); cdecl; inline;
procedure set_schar(v_char: gint8); cdecl; inline;
procedure set_static_boxed(v_boxed: Pgpointer); cdecl; inline;
procedure set_static_string(v_string: Pgchar); cdecl; inline;
procedure set_string(v_string: Pgchar); cdecl; inline;
procedure set_uchar(v_uchar: guint8); cdecl; inline;
procedure set_uint(v_uint: guint); cdecl; inline;
procedure set_uint64(v_uint64: guint64); cdecl; inline;
procedure set_ulong(v_ulong: gulong); cdecl; inline;
procedure set_variant(variant: PGVariant); cdecl; inline;
procedure take_boxed(v_boxed: Pgpointer); cdecl; inline;
procedure take_object(v_object: gpointer); cdecl; inline;
procedure take_param(param: PGParamSpec); cdecl; inline;
procedure take_string(v_string: Pgchar); cdecl; inline;
procedure take_variant(variant: PGVariant); cdecl; inline;
function transform(dest_value: PGValue): gboolean; cdecl; inline;
procedure unset; cdecl; inline;
procedure register_transform_func(src_type: TGType; dest_type: TGType; transform_func: TGValueTransform); cdecl; inline; static;
function type_compatible(src_type: TGType; dest_type: TGType): gboolean; cdecl; inline; static;
function type_transformable(src_type: TGType; dest_type: TGType): gboolean; cdecl; inline; static;
end;
TGBoxedCopyFunc = function(boxed: gpointer): gpointer; cdecl;
TGBoxedFreeFunc = procedure(boxed: gpointer); cdecl;
PPGClosureNotify = ^PGClosureNotify;
PGClosureNotify = ^TGClosureNotify;
TGClosureNotify = procedure(data: gpointer; closure: PGClosure); cdecl;
PPGClosureMarshal = ^PGClosureMarshal;
PGClosureMarshal = ^TGClosureMarshal;
TGClosureBitfield0 = bitpacked record
ref_count: guint15 { changed from guint to accomodate 15 bitsize requirement };
meta_marshal_nouse: guint1 { changed from guint to accomodate 1 bitsize requirement };
n_guards: guint1 { changed from guint to accomodate 1 bitsize requirement };
n_fnotifiers: guint2 { changed from guint to accomodate 2 bitsize requirement };
n_inotifiers: guint8 { changed from guint to accomodate 8 bitsize requirement };
in_inotify: guint1 { changed from guint to accomodate 1 bitsize requirement };
floating: guint1 { changed from guint to accomodate 1 bitsize requirement };
derivative_flag: guint1 { changed from guint to accomodate 1 bitsize requirement };
in_marshal: guint1 { changed from guint to accomodate 1 bitsize requirement };
is_invalid: guint1 { changed from guint to accomodate 1 bitsize requirement };
end;
PPGClosureNotifyData = ^PGClosureNotifyData;
PGClosureNotifyData = ^TGClosureNotifyData;
TGClosure = object
Bitfield0 : TGClosureBitfield0; { auto generated type }
marshal: procedure(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
data: gpointer;
notifiers: PGClosureNotifyData;
function new_object(sizeof_closure: guint; object_: PGObject): PGClosure; cdecl; inline; static;
function new_simple(sizeof_closure: guint; data: gpointer): PGClosure; cdecl; inline; static;
procedure add_finalize_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl; inline;
procedure add_invalidate_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl; inline;
procedure add_marshal_guards(pre_marshal_data: gpointer; pre_marshal_notify: TGClosureNotify; post_marshal_data: gpointer; post_marshal_notify: TGClosureNotify); cdecl; inline;
procedure invalidate; cdecl; inline;
procedure invoke(return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer); cdecl; inline;
function ref: PGClosure; cdecl; inline;
procedure remove_finalize_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl; inline;
procedure remove_invalidate_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl; inline;
procedure set_marshal(marshal: TGClosureMarshal); cdecl; inline;
procedure set_meta_marshal(marshal_data: gpointer; meta_marshal: TGClosureMarshal); cdecl; inline;
procedure sink; cdecl; inline;
procedure unref; cdecl; inline;
end;
TGCallback = procedure; cdecl;
PPGCClosure = ^PGCClosure;
PGCClosure = ^TGCClosure;
PPGCallback = ^PGCallback;
PGCallback = ^TGCallback;
TGCClosure = object
closure: TGClosure;
callback: gpointer;
procedure marshal_BOOLEAN__BOXED_BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_BOOLEAN__BOXED_BOXEDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_BOOLEAN__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_BOOLEAN__FLAGSv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_STRING__OBJECT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_STRING__OBJECT_POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__BOOLEAN(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__BOOLEANv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__BOXEDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__CHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__CHARv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__DOUBLE(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__DOUBLEv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__ENUM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__ENUMv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__FLAGSv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__FLOAT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__FLOATv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__INT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__INTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__LONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__LONGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__OBJECT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__OBJECTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__PARAM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__PARAMv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__STRING(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__STRINGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__UCHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__UCHARv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__UINT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
procedure marshal_VOID__UINT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__UINT_POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
//procedure marshal_VOID__UINTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__ULONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__ULONGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__VARIANT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__VARIANTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_VOID__VOID(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_VOID__VOIDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
procedure marshal_generic(closure: PGClosure; return_gvalue: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; inline; static;
//procedure marshal_generic_va(closure: PGClosure; return_value: PGValue; instance: gpointer; args_list: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; inline; static;
function new(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl; inline; static;
function new_object(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl; inline; static;
function new_object_swap(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl; inline; static;
function new_swap(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl; inline; static;
end;
TGClassFinalizeFunc = procedure(g_class: gpointer; class_data: gpointer); cdecl;
TGClassInitFunc = procedure(g_class: gpointer; class_data: gpointer); cdecl;
TGClosureNotifyData = record
data: gpointer;
notify: TGClosureNotify;
end;
PPGConnectFlags = ^PGConnectFlags;
PGConnectFlags = ^TGConnectFlags;
TGTypeClass = object
g_type: TGType;
function get_private(private_type: TGType): gpointer; cdecl; inline;
function peek_parent: PGTypeClass; cdecl; inline;
procedure unref; cdecl; inline;
procedure unref_uncached; cdecl; inline;
procedure add_private(g_class: gpointer; private_size: gsize); cdecl; inline; static;
function peek(type_: TGType): PGTypeClass; cdecl; inline; static;
function peek_static(type_: TGType): PGTypeClass; cdecl; inline; static;
function ref(type_: TGType): PGTypeClass; cdecl; inline; static;
end;
PPGEnumValue = ^PGEnumValue;
PGEnumValue = ^TGEnumValue;
TGEnumValue = record
value: gint;
value_name: Pgchar;
value_nick: Pgchar;
end;
PPGEnumClass = ^PGEnumClass;
PGEnumClass = ^TGEnumClass;
TGEnumClass = record
g_type_class: TGTypeClass;
minimum: gint;
maximum: gint;
n_values: guint;
values: PGEnumValue;
end;
PPGFlagsValue = ^PGFlagsValue;
PGFlagsValue = ^TGFlagsValue;
TGFlagsValue = record
value: guint;
value_name: Pgchar;
value_nick: Pgchar;
end;
PPGFlagsClass = ^PGFlagsClass;
PGFlagsClass = ^TGFlagsClass;
TGFlagsClass = record
g_type_class: TGTypeClass;
mask: guint;
n_values: guint;
values: PGFlagsValue;
end;
PPGInitiallyUnowned = ^PGInitiallyUnowned;
PGInitiallyUnowned = ^TGInitiallyUnowned;
TGInitiallyUnowned = object(TGObject)
end;
PPGObjectConstructParam = ^PGObjectConstructParam;
PGObjectConstructParam = ^TGObjectConstructParam;
TGObjectConstructParam = record
pspec: PGParamSpec;
value: PGValue;
end;
PPGParamFlags = ^PGParamFlags;
PGParamFlags = ^TGParamFlags;
TGParamSpec = object
g_type_instance: TGTypeInstance;
name: Pgchar;
flags: TGParamFlags;
value_type: TGType;
owner_type: TGType;
_nick: Pgchar;
_blurb: Pgchar;
qdata: PGData;
ref_count: guint;
param_id: guint;
function internal(param_type: TGType; name: Pgchar; nick: Pgchar; blurb: Pgchar; flags: TGParamFlags): gpointer; cdecl; inline; static;
function get_blurb: Pgchar; cdecl; inline;
function get_name: Pgchar; cdecl; inline;
function get_nick: Pgchar; cdecl; inline;
function get_qdata(quark: TGQuark): gpointer; cdecl; inline;
function get_redirect_target: PGParamSpec; cdecl; inline;
function ref: PGParamSpec; cdecl; inline;
function ref_sink: PGParamSpec; cdecl; inline;
procedure set_qdata(quark: TGQuark; data: gpointer); cdecl; inline;
procedure set_qdata_full(quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl; inline;
procedure sink; cdecl; inline;
function steal_qdata(quark: TGQuark): gpointer; cdecl; inline;
procedure unref; cdecl; inline;
end;
PPGInitiallyUnownedClass = ^PGInitiallyUnownedClass;
PGInitiallyUnownedClass = ^TGInitiallyUnownedClass;
TGInitiallyUnownedClass = object
g_type_class: TGTypeClass;
construct_properties: PGSList;
constructor_: function(type_: TGType; n_construct_properties: guint; construct_properties: PGObjectConstructParam): PGObject; cdecl;
set_property: procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
get_property: procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
dispose: procedure(object_: PGObject); cdecl;
finalize: procedure(object_: PGObject); cdecl;
dispatch_properties_changed: procedure(object_: PGObject; n_pspecs: guint; pspecs: PPGParamSpec); cdecl;
notify: procedure(object_: PGObject; pspec: PGParamSpec); cdecl;
constructed: procedure(object_: PGObject); cdecl;
flags: gsize;
pdummy: array [0..5] of gpointer;
end;
TGInstanceInitFunc = procedure(instance: PGTypeInstance; g_class: gpointer); cdecl;
TGInterfaceFinalizeFunc = procedure(g_iface: gpointer; iface_data: gpointer); cdecl;
TGInterfaceInitFunc = procedure(g_iface: gpointer; iface_data: gpointer); cdecl;
PPGInterfaceInfo = ^PGInterfaceInfo;
PGInterfaceInfo = ^TGInterfaceInfo;
PPGInterfaceInitFunc = ^PGInterfaceInitFunc;
PGInterfaceInitFunc = ^TGInterfaceInitFunc;
PPGInterfaceFinalizeFunc = ^PGInterfaceFinalizeFunc;
PGInterfaceFinalizeFunc = ^TGInterfaceFinalizeFunc;
TGInterfaceInfo = record
interface_init: TGInterfaceInitFunc;
interface_finalize: TGInterfaceFinalizeFunc;
interface_data: gpointer;
end;
TGParameter = record
name: Pgchar;
value: TGValue;
end;
PPGObjectClass = ^PGObjectClass;
PGObjectClass = ^TGObjectClass;
TGObjectClass = object
g_type_class: TGTypeClass;
construct_properties: PGSList;
constructor_: function(type_: TGType; n_construct_properties: guint; construct_properties: PGObjectConstructParam): PGObject; cdecl;
set_property: procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
get_property: procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
dispose: procedure(object_: PGObject); cdecl;
finalize: procedure(object_: PGObject); cdecl;
dispatch_properties_changed: procedure(object_: PGObject; n_pspecs: guint; pspecs: PPGParamSpec); cdecl;
notify: procedure(object_: PGObject; pspec: PGParamSpec); cdecl;
constructed: procedure(object_: PGObject); cdecl;
flags: gsize;
pdummy: array [0..5] of gpointer;
function find_property(property_name: Pgchar): PGParamSpec; cdecl; inline;
procedure install_properties(n_pspecs: guint; pspecs: PPGParamSpec); cdecl; inline;
procedure install_property(property_id: guint; pspec: PGParamSpec); cdecl; inline;
function list_properties(n_properties: Pguint): PPGParamSpec; cdecl; inline;
procedure override_property(property_id: guint; name: Pgchar); cdecl; inline;
end;
TGObjectFinalizeFunc = procedure(object_: PGObject); cdecl;
TGObjectGetPropertyFunc = procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
TGObjectSetPropertyFunc = procedure(object_: PGObject; property_id: guint; value: PGValue; pspec: PGParamSpec); cdecl;
PPGParamSpecBoolean = ^PGParamSpecBoolean;
PGParamSpecBoolean = ^TGParamSpecBoolean;
TGParamSpecBoolean = object(TGParamSpec)
default_value: gboolean;
end;
PPGParamSpecBoxed = ^PGParamSpecBoxed;
PGParamSpecBoxed = ^TGParamSpecBoxed;
TGParamSpecBoxed = object(TGParamSpec)
end;
PPGParamSpecChar = ^PGParamSpecChar;
PGParamSpecChar = ^TGParamSpecChar;
TGParamSpecChar = object(TGParamSpec)
minimum: gint8;
maximum: gint8;
default_value: gint8;
end;
PPGParamSpecClass = ^PGParamSpecClass;
PGParamSpecClass = ^TGParamSpecClass;
TGParamSpecClass = object
g_type_class: TGTypeClass;
value_type: TGType;
finalize: procedure(pspec: PGParamSpec); cdecl;
value_set_default: procedure(pspec: PGParamSpec; value: PGValue); cdecl;
value_validate: function(pspec: PGParamSpec; value: PGValue): gboolean; cdecl;
values_cmp: function(pspec: PGParamSpec; value1: PGValue; value2: PGValue): gint; cdecl;
dummy: array [0..3] of gpointer;
end;
PPGParamSpecDouble = ^PGParamSpecDouble;
PGParamSpecDouble = ^TGParamSpecDouble;
TGParamSpecDouble = object(TGParamSpec)
minimum: gdouble;
maximum: gdouble;
default_value: gdouble;
epsilon: gdouble;
end;
PPGParamSpecEnum = ^PGParamSpecEnum;
PGParamSpecEnum = ^TGParamSpecEnum;
TGParamSpecEnum = object(TGParamSpec)
enum_class: PGEnumClass;
default_value: gint;
end;
PPGParamSpecFlags = ^PGParamSpecFlags;
PGParamSpecFlags = ^TGParamSpecFlags;
TGParamSpecFlags = object(TGParamSpec)
flags_class: PGFlagsClass;
default_value: guint;
end;
PPGParamSpecFloat = ^PGParamSpecFloat;
PGParamSpecFloat = ^TGParamSpecFloat;
TGParamSpecFloat = object(TGParamSpec)
minimum: gfloat;
maximum: gfloat;
default_value: gfloat;
epsilon: gfloat;
end;
PPGParamSpecGType = ^PGParamSpecGType;
PGParamSpecGType = ^TGParamSpecGType;
TGParamSpecGType = object(TGParamSpec)
is_a_type: TGType;
end;
PPGParamSpecInt = ^PGParamSpecInt;
PGParamSpecInt = ^TGParamSpecInt;
TGParamSpecInt = object(TGParamSpec)
minimum: gint;
maximum: gint;
default_value: gint;
end;
PPGParamSpecInt64 = ^PGParamSpecInt64;
PGParamSpecInt64 = ^TGParamSpecInt64;
TGParamSpecInt64 = object(TGParamSpec)
minimum: gint64;
maximum: gint64;
default_value: gint64;
end;
PPGParamSpecLong = ^PGParamSpecLong;
PGParamSpecLong = ^TGParamSpecLong;
TGParamSpecLong = object(TGParamSpec)
minimum: glong;
maximum: glong;
default_value: glong;
end;
PPGParamSpecObject = ^PGParamSpecObject;
PGParamSpecObject = ^TGParamSpecObject;
TGParamSpecObject = object(TGParamSpec)
end;
PPGParamSpecOverride = ^PGParamSpecOverride;
PGParamSpecOverride = ^TGParamSpecOverride;
TGParamSpecOverride = object(TGParamSpec)
overridden: PGParamSpec;
end;
PPGParamSpecParam = ^PGParamSpecParam;
PGParamSpecParam = ^TGParamSpecParam;
TGParamSpecParam = object(TGParamSpec)
end;
PPGParamSpecPointer = ^PGParamSpecPointer;
PGParamSpecPointer = ^TGParamSpecPointer;
TGParamSpecPointer = object(TGParamSpec)
end;
PPGParamSpecPool = ^PGParamSpecPool;
PGParamSpecPool = ^TGParamSpecPool;
TGParamSpecPool = object
procedure insert(pspec: PGParamSpec; owner_type: TGType); cdecl; inline;
function list(owner_type: TGType; n_pspecs_p: Pguint): PPGParamSpec; cdecl; inline;
function list_owned(owner_type: TGType): PGList; cdecl; inline;
function lookup(param_name: Pgchar; owner_type: TGType; walk_ancestors: gboolean): PGParamSpec; cdecl; inline;
procedure remove(pspec: PGParamSpec); cdecl; inline;
function new(type_prefixing: gboolean): PGParamSpecPool; cdecl; inline; static;
end;
PPGParamSpecString = ^PGParamSpecString;
PGParamSpecString = ^TGParamSpecString;
TGParamSpecStringBitfield0 = bitpacked record
null_fold_if_empty: guint1 { changed from guint to accomodate 1 bitsize requirement };
ensure_non_null: guint1 { changed from guint to accomodate 1 bitsize requirement };
end;
TGParamSpecString = object(TGParamSpec)
default_value: Pgchar;
cset_first: Pgchar;
cset_nth: Pgchar;
substitutor: gchar;
Bitfield0 : TGParamSpecStringBitfield0; { auto generated type }
end;
PPGParamSpecTypeInfo = ^PGParamSpecTypeInfo;
PGParamSpecTypeInfo = ^TGParamSpecTypeInfo;
TGParamSpecTypeInfo = record
instance_size: guint16;
n_preallocs: guint16;
instance_init: procedure(pspec: PGParamSpec); cdecl;
value_type: TGType;
finalize: procedure(pspec: PGParamSpec); cdecl;
value_set_default: procedure(pspec: PGParamSpec; value: PGValue); cdecl;
value_validate: function(pspec: PGParamSpec; value: PGValue): gboolean; cdecl;
values_cmp: function(pspec: PGParamSpec; value1: PGValue; value2: PGValue): gint; cdecl;
end;
PPGParamSpecUChar = ^PGParamSpecUChar;
PGParamSpecUChar = ^TGParamSpecUChar;
TGParamSpecUChar = object(TGParamSpec)
minimum: guint8;
maximum: guint8;
default_value: guint8;
end;
PPGParamSpecUInt = ^PGParamSpecUInt;
PGParamSpecUInt = ^TGParamSpecUInt;
TGParamSpecUInt = object(TGParamSpec)
minimum: guint;
maximum: guint;
default_value: guint;
end;
PPGParamSpecUInt64 = ^PGParamSpecUInt64;
PGParamSpecUInt64 = ^TGParamSpecUInt64;
TGParamSpecUInt64 = object(TGParamSpec)
minimum: guint64;
maximum: guint64;
default_value: guint64;
end;
PPGParamSpecULong = ^PGParamSpecULong;
PGParamSpecULong = ^TGParamSpecULong;
TGParamSpecULong = object(TGParamSpec)
minimum: gulong;
maximum: gulong;
default_value: gulong;
end;
PPGParamSpecUnichar = ^PGParamSpecUnichar;
PGParamSpecUnichar = ^TGParamSpecUnichar;
TGParamSpecUnichar = object(TGParamSpec)
default_value: gunichar;
end;
PPGParamSpecValueArray = ^PGParamSpecValueArray;
PGParamSpecValueArray = ^TGParamSpecValueArray;
TGParamSpecValueArray = object(TGParamSpec)
element_spec: PGParamSpec;
fixed_n_elements: guint;
end;
PPGParamSpecVariant = ^PGParamSpecVariant;
PGParamSpecVariant = ^TGParamSpecVariant;
TGParamSpecVariant = object(TGParamSpec)
type_: PGVariantType;
default_value: PGVariant;
padding: array [0..3] of gpointer;
end;
PPGSignalInvocationHint = ^PGSignalInvocationHint;
PGSignalInvocationHint = ^TGSignalInvocationHint;
PPGSignalFlags = ^PGSignalFlags;
PGSignalFlags = ^TGSignalFlags;
TGSignalInvocationHint = record
signal_id: guint;
detail: TGQuark;
run_type: TGSignalFlags;
end;
TGSignalAccumulator = function(ihint: PGSignalInvocationHint; return_accu: PGValue; handler_return: PGValue; data: gpointer): gboolean; cdecl;
TGSignalEmissionHook = function(ihint: PGSignalInvocationHint; n_param_values: guint; param_values: PGValue; data: gpointer): gboolean; cdecl;
PPGSignalMatchType = ^PGSignalMatchType;
PGSignalMatchType = ^TGSignalMatchType;
PPGSignalQuery = ^PGSignalQuery;
PGSignalQuery = ^TGSignalQuery;
TGSignalQuery = record
signal_id: guint;
signal_name: Pgchar;
itype: TGType;
signal_flags: TGSignalFlags;
return_type: TGType;
n_params: guint;
param_types: PGType;
end;
TGTypeCValue = record
case longint of
0 : (v_int: gint);
1 : (v_long: glong);
2 : (v_int64: gint64);
3 : (v_double: gdouble);
4 : (v_pointer: gpointer);
end;
TGTypeClassCacheFunc = function(cache_data: gpointer; g_class: PGTypeClass): gboolean; cdecl;
PPGTypeDebugFlags = ^PGTypeDebugFlags;
PGTypeDebugFlags = ^TGTypeDebugFlags;
PPGTypeFlags = ^PGTypeFlags;
PGTypeFlags = ^TGTypeFlags;
PPGTypeFundamentalFlags = ^PGTypeFundamentalFlags;
PGTypeFundamentalFlags = ^TGTypeFundamentalFlags;
PPGTypeFundamentalInfo = ^PGTypeFundamentalInfo;
PGTypeFundamentalInfo = ^TGTypeFundamentalInfo;
TGTypeFundamentalInfo = record
type_flags: TGTypeFundamentalFlags;
end;
PPGTypeValueTable = ^PGTypeValueTable;
PGTypeValueTable = ^TGTypeValueTable;
PPGTypeCValue = ^PGTypeCValue;
PGTypeCValue = ^TGTypeCValue;
TGTypeValueTable = object
value_init: procedure(value: PGValue); cdecl;
value_free: procedure(value: PGValue); cdecl;
value_copy: procedure(src_value: PGValue; dest_value: PGValue); cdecl;
value_peek_pointer: function(value: PGValue): gpointer; cdecl;
collect_format: Pgchar;
collect_value: function(value: PGValue; n_collect_values: guint; collect_values: PGTypeCValue; collect_flags: guint): Pgchar; cdecl;
lcopy_format: Pgchar;
lcopy_value: function(value: PGValue; n_collect_values: guint; collect_values: PGTypeCValue; collect_flags: guint): Pgchar; cdecl;
function peek(type_: TGType): PGTypeValueTable; cdecl; inline; static;
end;
PPGTypeInfo = ^PGTypeInfo;
PGTypeInfo = ^TGTypeInfo;
PPGBaseInitFunc = ^PGBaseInitFunc;
PGBaseInitFunc = ^TGBaseInitFunc;
PPGBaseFinalizeFunc = ^PGBaseFinalizeFunc;
PGBaseFinalizeFunc = ^TGBaseFinalizeFunc;
PPGClassInitFunc = ^PGClassInitFunc;
PGClassInitFunc = ^TGClassInitFunc;
PPGClassFinalizeFunc = ^PGClassFinalizeFunc;
PGClassFinalizeFunc = ^TGClassFinalizeFunc;
PPGInstanceInitFunc = ^PGInstanceInitFunc;
PGInstanceInitFunc = ^TGInstanceInitFunc;
TGTypeInfo = record
class_size: guint16;
base_init: TGBaseInitFunc;
base_finalize: TGBaseFinalizeFunc;
class_init: TGClassInitFunc;
class_finalize: TGClassFinalizeFunc;
class_data: Pgpointer;
instance_size: guint16;
n_preallocs: guint16;
instance_init: TGInstanceInitFunc;
value_table: PGTypeValueTable;
end;
PPGTypeInterface = ^PGTypeInterface;
PGTypeInterface = ^TGTypeInterface;
PPGTypePlugin = ^PGTypePlugin;
PGTypePlugin = ^TGTypePlugin;
TGTypeInterface = object
g_type: TGType;
g_instance_type: TGType;
function peek_parent: PGTypeInterface; cdecl; inline;
procedure add_prerequisite(interface_type: TGType; prerequisite_type: TGType); cdecl; inline; static;
function get_plugin(instance_type: TGType; interface_type: TGType): PGTypePlugin; cdecl; inline; static;
function peek(instance_class: PGTypeClass; iface_type: TGType): PGTypeInterface; cdecl; inline; static;
function prerequisites(interface_type: TGType; n_prerequisites: Pguint): PGType; cdecl; inline; static;
end;
TGTypePlugin = object
procedure complete_interface_info(instance_type: TGType; interface_type: TGType; info: PGInterfaceInfo); cdecl; inline;
procedure complete_type_info(g_type: TGType; info: PGTypeInfo; value_table: PGTypeValueTable); cdecl; inline;
procedure unuse; cdecl; inline;
procedure use; cdecl; inline;
end;
TGTypeInterfaceCheckFunc = procedure(check_data: gpointer; g_iface: gpointer); cdecl;
PPGTypeModule = ^PGTypeModule;
PGTypeModule = ^TGTypeModule;
TGTypeModule = object(TGObject)
use_count: guint;
type_infos: PGSList;
interface_infos: PGSList;
name: Pgchar;
procedure add_interface(instance_type: TGType; interface_type: TGType; interface_info: PGInterfaceInfo); cdecl; inline;
function register_enum(name: Pgchar; const_static_values: PGEnumValue): TGType; cdecl; inline;
function register_flags(name: Pgchar; const_static_values: PGFlagsValue): TGType; cdecl; inline;
function register_type(parent_type: TGType; type_name: Pgchar; type_info: PGTypeInfo; flags: TGTypeFlags): TGType; cdecl; inline;
procedure set_name(name: Pgchar); cdecl; inline;
procedure unuse; cdecl; inline;
function use: gboolean; cdecl; inline;
end;
PPGTypeModuleClass = ^PGTypeModuleClass;
PGTypeModuleClass = ^TGTypeModuleClass;
TGTypeModuleClass = object
parent_class: TGObjectClass;
load: function(module: PGTypeModule): gboolean; cdecl;
unload: procedure(module: PGTypeModule); cdecl;
reserved1: procedure; cdecl;
reserved2: procedure; cdecl;
reserved3: procedure; cdecl;
reserved4: procedure; cdecl;
end;
TGTypePluginUse = procedure(plugin: PGTypePlugin); cdecl;
TGTypePluginUnuse = procedure(plugin: PGTypePlugin); cdecl;
TGTypePluginCompleteTypeInfo = procedure(plugin: PGTypePlugin; g_type: TGType; info: PGTypeInfo; value_table: PGTypeValueTable); cdecl;
TGTypePluginCompleteInterfaceInfo = procedure(plugin: PGTypePlugin; instance_type: TGType; interface_type: TGType; info: PGInterfaceInfo); cdecl;
PPGTypePluginClass = ^PGTypePluginClass;
PGTypePluginClass = ^TGTypePluginClass;
PPGTypePluginUse = ^PGTypePluginUse;
PGTypePluginUse = ^TGTypePluginUse;
PPGTypePluginUnuse = ^PGTypePluginUnuse;
PGTypePluginUnuse = ^TGTypePluginUnuse;
PPGTypePluginCompleteTypeInfo = ^PGTypePluginCompleteTypeInfo;
PGTypePluginCompleteTypeInfo = ^TGTypePluginCompleteTypeInfo;
PPGTypePluginCompleteInterfaceInfo = ^PGTypePluginCompleteInterfaceInfo;
PGTypePluginCompleteInterfaceInfo = ^TGTypePluginCompleteInterfaceInfo;
TGTypePluginClass = record
base_iface: TGTypeInterface;
use_plugin: TGTypePluginUse;
unuse_plugin: TGTypePluginUnuse;
complete_type_info: TGTypePluginCompleteTypeInfo;
complete_interface_info: TGTypePluginCompleteInterfaceInfo;
end;
PPGTypeQuery = ^PGTypeQuery;
PGTypeQuery = ^TGTypeQuery;
TGTypeQuery = record
type_: TGType;
type_name: Pgchar;
class_size: guint;
instance_size: guint;
end;
PPGValueArray = ^PGValueArray;
PGValueArray = ^TGValueArray;
TGValueArray = object
n_values: guint;
values: PGValue;
n_prealloced: guint;
end;
PPGWeakRef = ^PGWeakRef;
PGWeakRef = ^TGWeakRef;
TGWeakRef_union_priv = record
case longint of
0 : (p: gpointer);
end;
TGWeakRef = object
priv: TGWeakRef_union_priv; //union extracted from object and named 'TGWeakRef_union_priv'
procedure clear; cdecl; inline;
function get: PGObject; cdecl; inline;
procedure init(object_: gpointer); cdecl; inline;
procedure set_(object_: gpointer); cdecl; inline;
end;
function g_binding_get_flags(binding: PGBinding): TGBindingFlags; cdecl; external;
function g_binding_get_source(binding: PGBinding): PGObject; cdecl; external;
function g_binding_get_source_property(binding: PGBinding): Pgchar; cdecl; external;
function g_binding_get_target(binding: PGBinding): PGObject; cdecl; external;
function g_binding_get_target_property(binding: PGBinding): Pgchar; cdecl; external;
function g_binding_get_type: TGType; cdecl; external;
function g_boxed_copy(boxed_type: TGType; src_boxed: Pgpointer): gpointer; cdecl; external;
function g_boxed_type_register_static(name: Pgchar; boxed_copy: TGBoxedCopyFunc; boxed_free: TGBoxedFreeFunc): TGType; cdecl; external;
function g_cclosure_new(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl; external;
function g_cclosure_new_object(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl; external;
function g_cclosure_new_object_swap(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl; external;
function g_cclosure_new_swap(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl; external;
function g_closure_get_type: TGType; cdecl; external;
function g_closure_new_object(sizeof_closure: guint; object_: PGObject): PGClosure; cdecl; external;
function g_closure_new_simple(sizeof_closure: guint; data: gpointer): PGClosure; cdecl; external;
function g_closure_ref(closure: PGClosure): PGClosure; cdecl; external;
function g_enum_get_value(enum_class: PGEnumClass; value: gint): PGEnumValue; cdecl; external;
function g_enum_get_value_by_name(enum_class: PGEnumClass; name: Pgchar): PGEnumValue; cdecl; external;
function g_enum_get_value_by_nick(enum_class: PGEnumClass; nick: Pgchar): PGEnumValue; cdecl; external;
function g_enum_register_static(name: Pgchar; const_static_values: PGEnumValue): TGType; cdecl; external;
function g_flags_get_first_value(flags_class: PGFlagsClass; value: guint): PGFlagsValue; cdecl; external;
function g_flags_get_value_by_name(flags_class: PGFlagsClass; name: Pgchar): PGFlagsValue; cdecl; external;
function g_flags_get_value_by_nick(flags_class: PGFlagsClass; nick: Pgchar): PGFlagsValue; cdecl; external;
function g_flags_register_static(name: Pgchar; const_static_values: PGFlagsValue): TGType; cdecl; external;
function g_gtype_get_type: TGType; cdecl; external;
function g_initially_unowned_get_type: TGType; cdecl; external;
function g_object_bind_property(source: PGObject; source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags): PGBinding; cdecl; external;
function g_object_bind_property_full(source: PGObject; source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: TGBindingTransformFunc; transform_from: TGBindingTransformFunc; user_data: gpointer; notify: TGDestroyNotify): PGBinding; cdecl; external;
function g_object_bind_property_with_closures(source: PGObject; source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: PGClosure; transform_from: PGClosure): PGBinding; cdecl; external;
function g_object_class_find_property(oclass: PGObjectClass; property_name: Pgchar): PGParamSpec; cdecl; external;
function g_object_class_list_properties(oclass: PGObjectClass; n_properties: Pguint): PPGParamSpec; cdecl; external;
function g_object_compat_control(what: gsize; data: gpointer): gsize; cdecl; external;
function g_object_connect(object_: gpointer; signal_spec: Pgchar; args: array of const): gpointer; cdecl; external;
function g_object_dup_data(object_: PGObject; key: Pgchar; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl; external;
function g_object_dup_qdata(object_: PGObject; quark: TGQuark; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl; external;
function g_object_get_data(object_: PGObject; key: Pgchar): gpointer; cdecl; external;
function g_object_get_qdata(object_: PGObject; quark: TGQuark): gpointer; cdecl; external;
function g_object_get_type: TGType; cdecl; external;
function g_object_interface_find_property(g_iface: gpointer; property_name: Pgchar): PGParamSpec; cdecl; external;
function g_object_interface_list_properties(g_iface: gpointer; n_properties_p: Pguint): PPGParamSpec; cdecl; external;
function g_object_is_floating(object_: PGObject): gboolean; cdecl; external;
function g_object_new(object_type: TGType; first_property_name: Pgchar; args: array of const): gpointer; cdecl; external;
function g_object_new_valist(object_type: TGType; first_property_name: Pgchar; var_args: Tva_list): PGObject; cdecl; external;
function g_object_newv(object_type: TGType; n_parameters: guint; parameters: PGParameter): PGObject; cdecl; external;
function g_object_ref(object_: PGObject): PGObject; cdecl; external;
function g_object_ref_sink(object_: PGObject): PGObject; cdecl; external;
function g_object_replace_data(object_: PGObject; key: Pgchar; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl; external;
function g_object_replace_qdata(object_: PGObject; quark: TGQuark; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl; external;
function g_object_steal_data(object_: PGObject; key: Pgchar): gpointer; cdecl; external;
function g_object_steal_qdata(object_: PGObject; quark: TGQuark): gpointer; cdecl; external;
function g_param_spec_boolean(name: Pgchar; nick: Pgchar; blurb: Pgchar; default_value: gboolean; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_boxed(name: Pgchar; nick: Pgchar; blurb: Pgchar; boxed_type: TGType; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_char(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gint8; maximum: gint8; default_value: gint8; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_double(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gdouble; maximum: gdouble; default_value: gdouble; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_enum(name: Pgchar; nick: Pgchar; blurb: Pgchar; enum_type: TGType; default_value: gint; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_flags(name: Pgchar; nick: Pgchar; blurb: Pgchar; flags_type: TGType; default_value: guint; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_float(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gfloat; maximum: gfloat; default_value: gfloat; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_get_blurb(pspec: PGParamSpec): Pgchar; cdecl; external;
function g_param_spec_get_name(pspec: PGParamSpec): Pgchar; cdecl; external;
function g_param_spec_get_nick(pspec: PGParamSpec): Pgchar; cdecl; external;
function g_param_spec_get_qdata(pspec: PGParamSpec; quark: TGQuark): gpointer; cdecl; external;
function g_param_spec_get_redirect_target(pspec: PGParamSpec): PGParamSpec; cdecl; external;
function g_param_spec_gtype(name: Pgchar; nick: Pgchar; blurb: Pgchar; is_a_type: TGType; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_int(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gint; maximum: gint; default_value: gint; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_int64(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gint64; maximum: gint64; default_value: gint64; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_internal(param_type: TGType; name: Pgchar; nick: Pgchar; blurb: Pgchar; flags: TGParamFlags): gpointer; cdecl; external;
function g_param_spec_long(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: glong; maximum: glong; default_value: glong; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_object(name: Pgchar; nick: Pgchar; blurb: Pgchar; object_type: TGType; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_override(name: Pgchar; overridden: PGParamSpec): PGParamSpec; cdecl; external;
function g_param_spec_param(name: Pgchar; nick: Pgchar; blurb: Pgchar; param_type: TGType; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_pointer(name: Pgchar; nick: Pgchar; blurb: Pgchar; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_pool_list(pool: PGParamSpecPool; owner_type: TGType; n_pspecs_p: Pguint): PPGParamSpec; cdecl; external;
function g_param_spec_pool_list_owned(pool: PGParamSpecPool; owner_type: TGType): PGList; cdecl; external;
function g_param_spec_pool_lookup(pool: PGParamSpecPool; param_name: Pgchar; owner_type: TGType; walk_ancestors: gboolean): PGParamSpec; cdecl; external;
function g_param_spec_pool_new(type_prefixing: gboolean): PGParamSpecPool; cdecl; external;
function g_param_spec_ref(pspec: PGParamSpec): PGParamSpec; cdecl; external;
function g_param_spec_ref_sink(pspec: PGParamSpec): PGParamSpec; cdecl; external;
function g_param_spec_steal_qdata(pspec: PGParamSpec; quark: TGQuark): gpointer; cdecl; external;
function g_param_spec_string(name: Pgchar; nick: Pgchar; blurb: Pgchar; default_value: Pgchar; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_uchar(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: guint8; maximum: guint8; default_value: guint8; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_uint(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: guint; maximum: guint; default_value: guint; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_uint64(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: guint64; maximum: guint64; default_value: guint64; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_ulong(name: Pgchar; nick: Pgchar; blurb: Pgchar; minimum: gulong; maximum: gulong; default_value: gulong; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_unichar(name: Pgchar; nick: Pgchar; blurb: Pgchar; default_value: gunichar; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_value_array(name: Pgchar; nick: Pgchar; blurb: Pgchar; element_spec: PGParamSpec; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_spec_variant(name: Pgchar; nick: Pgchar; blurb: Pgchar; type_: PGVariantType; default_value: PGVariant; flags: TGParamFlags): PGParamSpec; cdecl; external;
function g_param_type_register_static(name: Pgchar; pspec_info: PGParamSpecTypeInfo): TGType; cdecl; external;
function g_param_value_convert(pspec: PGParamSpec; src_value: PGValue; dest_value: PGValue; strict_validation: gboolean): gboolean; cdecl; external;
function g_param_value_defaults(pspec: PGParamSpec; value: PGValue): gboolean; cdecl; external;
function g_param_value_validate(pspec: PGParamSpec; value: PGValue): gboolean; cdecl; external;
function g_param_values_cmp(pspec: PGParamSpec; value1: PGValue; value2: PGValue): gint; cdecl; external;
function g_pointer_type_register_static(name: Pgchar): TGType; cdecl; external;
function g_signal_accumulator_first_wins(ihint: PGSignalInvocationHint; return_accu: PGValue; handler_return: PGValue; dummy: gpointer): gboolean; cdecl; external;
function g_signal_accumulator_true_handled(ihint: PGSignalInvocationHint; return_accu: PGValue; handler_return: PGValue; dummy: gpointer): gboolean; cdecl; external;
function g_signal_add_emission_hook(signal_id: guint; detail: TGQuark; hook_func: TGSignalEmissionHook; hook_data: gpointer; data_destroy: TGDestroyNotify): gulong; cdecl; external;
function g_signal_connect_closure(instance: gpointer; detailed_signal: Pgchar; closure: PGClosure; after: gboolean): gulong; cdecl; external;
function g_signal_connect_closure_by_id(instance: gpointer; signal_id: guint; detail: TGQuark; closure: PGClosure; after: gboolean): gulong; cdecl; external;
function g_signal_connect_data(instance: gpointer; detailed_signal: Pgchar; c_handler: TGCallback; data: gpointer; destroy_data: TGClosureNotify; connect_flags: TGConnectFlags): gulong; cdecl; external;
function g_signal_connect_object(instance: gpointer; detailed_signal: Pgchar; c_handler: TGCallback; gobject: gpointer; connect_flags: TGConnectFlags): gulong; cdecl; external;
function g_signal_get_invocation_hint(instance: gpointer): PGSignalInvocationHint; cdecl; external;
function g_signal_handler_find(instance: gpointer; mask: TGSignalMatchType; signal_id: guint; detail: TGQuark; closure: PGClosure; func: gpointer; data: gpointer): gulong; cdecl; external;
function g_signal_handler_is_connected(instance: gpointer; handler_id: gulong): gboolean; cdecl; external;
function g_signal_handlers_block_matched(instance: gpointer; mask: TGSignalMatchType; signal_id: guint; detail: TGQuark; closure: PGClosure; func: gpointer; data: gpointer): guint; cdecl; external;
function g_signal_handlers_disconnect_matched(instance: gpointer; mask: TGSignalMatchType; signal_id: guint; detail: TGQuark; closure: PGClosure; func: gpointer; data: gpointer): guint; cdecl; external;
function g_signal_handlers_unblock_matched(instance: gpointer; mask: TGSignalMatchType; signal_id: guint; detail: TGQuark; closure: PGClosure; func: gpointer; data: gpointer): guint; cdecl; external;
function g_signal_has_handler_pending(instance: gpointer; signal_id: guint; detail: TGQuark; may_be_blocked: gboolean): gboolean; cdecl; external;
function g_signal_list_ids(itype: TGType; n_ids: Pguint): Pguint; cdecl; external;
function g_signal_lookup(name: Pgchar; itype: TGType): guint; cdecl; external;
function g_signal_name(signal_id: guint): Pgchar; cdecl; external;
function g_signal_new(signal_name: Pgchar; itype: TGType; signal_flags: TGSignalFlags; class_offset: guint; accumulator: TGSignalAccumulator; accu_data: gpointer; c_marshaller: TGSignalCMarshaller; return_type: TGType; n_params: guint; args: array of const): guint; cdecl; external;
function g_signal_new_class_handler(signal_name: Pgchar; itype: TGType; signal_flags: TGSignalFlags; class_handler: TGCallback; accumulator: TGSignalAccumulator; accu_data: gpointer; c_marshaller: TGSignalCMarshaller; return_type: TGType; n_params: guint; args: array of const): guint; cdecl; external;
function g_signal_new_valist(signal_name: Pgchar; itype: TGType; signal_flags: TGSignalFlags; class_closure: PGClosure; accumulator: TGSignalAccumulator; accu_data: gpointer; c_marshaller: TGSignalCMarshaller; return_type: TGType; n_params: guint; args: Tva_list): guint; cdecl; external;
function g_signal_newv(signal_name: Pgchar; itype: TGType; signal_flags: TGSignalFlags; class_closure: PGClosure; accumulator: TGSignalAccumulator; accu_data: gpointer; c_marshaller: TGSignalCMarshaller; return_type: TGType; n_params: guint; param_types: PGType): guint; cdecl; external;
function g_signal_parse_name(detailed_signal: Pgchar; itype: TGType; signal_id_p: Pguint; detail_p: PGQuark; force_detail_quark: gboolean): gboolean; cdecl; external;
function g_signal_type_cclosure_new(itype: TGType; struct_offset: guint): PGClosure; cdecl; external;
function g_strdup_value_contents(value: PGValue): Pgchar; cdecl; external;
function g_type_check_class_cast(g_class: PGTypeClass; is_a_type: TGType): PGTypeClass; cdecl; external;
function g_type_check_class_is_a(g_class: PGTypeClass; is_a_type: TGType): gboolean; cdecl; external;
function g_type_check_instance(instance: PGTypeInstance): gboolean; cdecl; external;
function g_type_check_instance_cast(instance: PGTypeInstance; iface_type: TGType): PGTypeInstance; cdecl; external;
function g_type_check_instance_is_a(instance: PGTypeInstance; iface_type: TGType): gboolean; cdecl; external;
function g_type_check_is_value_type(type_: TGType): gboolean; cdecl; external;
function g_type_check_value(value: PGValue): gboolean; cdecl; external;
function g_type_check_value_holds(value: PGValue; type_: TGType): gboolean; cdecl; external;
function g_type_children(type_: TGType; n_children: Pguint): PGType; cdecl; external;
function g_type_class_get_private(klass: PGTypeClass; private_type: TGType): gpointer; cdecl; external;
function g_type_class_peek(type_: TGType): PGTypeClass; cdecl; external;
function g_type_class_peek_parent(g_class: PGTypeClass): PGTypeClass; cdecl; external;
function g_type_class_peek_static(type_: TGType): PGTypeClass; cdecl; external;
function g_type_class_ref(type_: TGType): PGTypeClass; cdecl; external;
function g_type_create_instance(type_: TGType): PGTypeInstance; cdecl; external;
function g_type_default_interface_peek(g_type: TGType): PGTypeInterface; cdecl; external;
function g_type_default_interface_ref(g_type: TGType): PGTypeInterface; cdecl; external;
function g_type_depth(type_: TGType): guint; cdecl; external;
function g_type_from_name(name: Pgchar): TGType; cdecl; external;
function g_type_fundamental(type_id: TGType): TGType; cdecl; external;
function g_type_fundamental_next: TGType; cdecl; external;
function g_type_get_plugin(type_: TGType): PGTypePlugin; cdecl; external;
function g_type_get_qdata(type_: TGType; quark: TGQuark): gpointer; cdecl; external;
function g_type_get_type_registration_serial: guint; cdecl; external;
function g_type_instance_get_private(instance: PGTypeInstance; private_type: TGType): gpointer; cdecl; external;
function g_type_interface_get_plugin(instance_type: TGType; interface_type: TGType): PGTypePlugin; cdecl; external;
function g_type_interface_peek(instance_class: PGTypeClass; iface_type: TGType): PGTypeInterface; cdecl; external;
function g_type_interface_peek_parent(g_iface: PGTypeInterface): PGTypeInterface; cdecl; external;
function g_type_interface_prerequisites(interface_type: TGType; n_prerequisites: Pguint): PGType; cdecl; external;
function g_type_interfaces(type_: TGType; n_interfaces: Pguint): PGType; cdecl; external;
function g_type_is_a(type_: TGType; is_a_type: TGType): gboolean; cdecl; external;
function g_type_module_get_type: TGType; cdecl; external;
function g_type_module_register_enum(module: PGTypeModule; name: Pgchar; const_static_values: PGEnumValue): TGType; cdecl; external;
function g_type_module_register_flags(module: PGTypeModule; name: Pgchar; const_static_values: PGFlagsValue): TGType; cdecl; external;
function g_type_module_register_type(module: PGTypeModule; parent_type: TGType; type_name: Pgchar; type_info: PGTypeInfo; flags: TGTypeFlags): TGType; cdecl; external;
function g_type_module_use(module: PGTypeModule): gboolean; cdecl; external;
function g_type_name(type_: TGType): Pgchar; cdecl; external;
function g_type_name_from_class(g_class: PGTypeClass): Pgchar; cdecl; external;
function g_type_name_from_instance(instance: PGTypeInstance): Pgchar; cdecl; external;
function g_type_next_base(leaf_type: TGType; root_type: TGType): TGType; cdecl; external;
function g_type_parent(type_: TGType): TGType; cdecl; external;
function g_type_plugin_get_type: TGType; cdecl; external;
function g_type_qname(type_: TGType): TGQuark; cdecl; external;
function g_type_register_dynamic(parent_type: TGType; type_name: Pgchar; plugin: PGTypePlugin; flags: TGTypeFlags): TGType; cdecl; external;
function g_type_register_fundamental(type_id: TGType; type_name: Pgchar; info: PGTypeInfo; finfo: PGTypeFundamentalInfo; flags: TGTypeFlags): TGType; cdecl; external;
function g_type_register_static(parent_type: TGType; type_name: Pgchar; info: PGTypeInfo; flags: TGTypeFlags): TGType; cdecl; external;
function g_type_register_static_simple(parent_type: TGType; type_name: Pgchar; class_size: guint; class_init: TGClassInitFunc; instance_size: guint; instance_init: TGInstanceInitFunc; flags: TGTypeFlags): TGType; cdecl; external;
function g_type_test_flags(type_: TGType; flags: guint): gboolean; cdecl; external;
function g_type_value_table_peek(type_: TGType): PGTypeValueTable; cdecl; external;
function g_value_array_get_type: TGType; cdecl; external;
function g_value_dup_boxed(value: PGValue): gpointer; cdecl; external;
function g_value_dup_object(value: PGValue): PGObject; cdecl; external;
function g_value_dup_param(value: PGValue): PGParamSpec; cdecl; external;
function g_value_dup_string(value: PGValue): Pgchar; cdecl; external;
function g_value_dup_variant(value: PGValue): PGVariant; cdecl; external;
function g_value_fits_pointer(value: PGValue): gboolean; cdecl; external;
function g_value_get_boolean(value: PGValue): gboolean; cdecl; external;
function g_value_get_boxed(value: PGValue): gpointer; cdecl; external;
function g_value_get_double(value: PGValue): gdouble; cdecl; external;
function g_value_get_enum(value: PGValue): gint; cdecl; external;
function g_value_get_flags(value: PGValue): guint; cdecl; external;
function g_value_get_float(value: PGValue): gfloat; cdecl; external;
function g_value_get_gtype(value: PGValue): TGType; cdecl; external;
function g_value_get_int(value: PGValue): gint; cdecl; external;
function g_value_get_int64(value: PGValue): gint64; cdecl; external;
function g_value_get_long(value: PGValue): glong; cdecl; external;
function g_value_get_object(value: PGValue): PGObject; cdecl; external;
function g_value_get_param(value: PGValue): PGParamSpec; cdecl; external;
function g_value_get_pointer(value: PGValue): gpointer; cdecl; external;
function g_value_get_schar(value: PGValue): gint8; cdecl; external;
function g_value_get_string(value: PGValue): Pgchar; cdecl; external;
function g_value_get_type: TGType; cdecl; external;
function g_value_get_uchar(value: PGValue): guint8; cdecl; external;
function g_value_get_uint(value: PGValue): guint; cdecl; external;
function g_value_get_uint64(value: PGValue): guint64; cdecl; external;
function g_value_get_ulong(value: PGValue): gulong; cdecl; external;
function g_value_get_variant(value: PGValue): PGVariant; cdecl; external;
function g_value_init(value: PGValue; g_type: TGType): PGValue; cdecl; external;
function g_value_peek_pointer(value: PGValue): gpointer; cdecl; external;
function g_value_reset(value: PGValue): PGValue; cdecl; external;
function g_value_transform(src_value: PGValue; dest_value: PGValue): gboolean; cdecl; external;
function g_value_type_compatible(src_type: TGType; dest_type: TGType): gboolean; cdecl; external;
function g_value_type_transformable(src_type: TGType; dest_type: TGType): gboolean; cdecl; external;
function g_weak_ref_get(weak_ref: PGWeakRef): PGObject; cdecl; external;
procedure g_boxed_free(boxed_type: TGType; boxed: gpointer); cdecl; external;
procedure g_cclosure_marshal_BOOLEAN__BOXED_BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_BOOLEAN__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_BOOLEAN__FLAGSv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_generic(closure: PGClosure; return_gvalue: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_generic_va(closure: PGClosure; return_value: PGValue; instance: gpointer; args_list: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_STRING__OBJECT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_STRING__OBJECT_POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__BOOLEAN(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__BOOLEANv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__BOXEDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__CHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__CHARv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__DOUBLE(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__DOUBLEv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__ENUM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__ENUMv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__FLAGSv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__FLOAT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__FLOATv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__INT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__INTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__LONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__LONGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__OBJECT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__OBJECTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__PARAM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__PARAMv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__STRING(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__STRINGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__UCHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__UCHARv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__UINT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__UINT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__UINT_POINTERv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__UINTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__ULONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__ULONGv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__VARIANT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__VARIANTv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_cclosure_marshal_VOID__VOID(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl; external;
procedure g_cclosure_marshal_VOID__VOIDv(closure: PGClosure; return_value: PGValue; instance: gpointer; args: Tva_list; marshal_data: gpointer; n_params: gint; param_types: PGType); cdecl; external;
procedure g_clear_object(object_ptr: PPGObject); cdecl; external;
procedure g_closure_add_finalize_notifier(closure: PGClosure; notify_data: gpointer; notify_func: TGClosureNotify); cdecl; external;
procedure g_closure_add_invalidate_notifier(closure: PGClosure; notify_data: gpointer; notify_func: TGClosureNotify); cdecl; external;
procedure g_closure_add_marshal_guards(closure: PGClosure; pre_marshal_data: gpointer; pre_marshal_notify: TGClosureNotify; post_marshal_data: gpointer; post_marshal_notify: TGClosureNotify); cdecl; external;
procedure g_closure_invalidate(closure: PGClosure); cdecl; external;
procedure g_closure_invoke(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer); cdecl; external;
procedure g_closure_remove_finalize_notifier(closure: PGClosure; notify_data: gpointer; notify_func: TGClosureNotify); cdecl; external;
procedure g_closure_remove_invalidate_notifier(closure: PGClosure; notify_data: gpointer; notify_func: TGClosureNotify); cdecl; external;
procedure g_closure_set_marshal(closure: PGClosure; marshal: TGClosureMarshal); cdecl; external;
procedure g_closure_set_meta_marshal(closure: PGClosure; marshal_data: gpointer; meta_marshal: TGClosureMarshal); cdecl; external;
procedure g_closure_sink(closure: PGClosure); cdecl; external;
procedure g_closure_unref(closure: PGClosure); cdecl; external;
procedure g_enum_complete_type_info(g_enum_type: TGType; info: PGTypeInfo; const_values: PGEnumValue); cdecl; external;
procedure g_flags_complete_type_info(g_flags_type: TGType; info: PGTypeInfo; const_values: PGFlagsValue); cdecl; external;
procedure g_object_add_toggle_ref(object_: PGObject; notify: TGToggleNotify; data: gpointer); cdecl; external;
procedure g_object_add_weak_pointer(object_: PGObject; weak_pointer_location: Pgpointer); cdecl; external;
procedure g_object_class_install_properties(oclass: PGObjectClass; n_pspecs: guint; pspecs: PPGParamSpec); cdecl; external;
procedure g_object_class_install_property(oclass: PGObjectClass; property_id: guint; pspec: PGParamSpec); cdecl; external;
procedure g_object_class_override_property(oclass: PGObjectClass; property_id: guint; name: Pgchar); cdecl; external;
procedure g_object_disconnect(object_: gpointer; signal_spec: Pgchar; args: array of const); cdecl; external;
procedure g_object_force_floating(object_: PGObject); cdecl; external;
procedure g_object_freeze_notify(object_: PGObject); cdecl; external;
procedure g_object_get(object_: gpointer; first_property_name: Pgchar; args: array of const); cdecl; external;
procedure g_object_get_property(object_: PGObject; property_name: Pgchar; value: PGValue); cdecl; external;
procedure g_object_get_valist(object_: PGObject; first_property_name: Pgchar; var_args: Tva_list); cdecl; external;
procedure g_object_interface_install_property(g_iface: gpointer; pspec: PGParamSpec); cdecl; external;
procedure g_object_notify(object_: PGObject; property_name: Pgchar); cdecl; external;
procedure g_object_notify_by_pspec(object_: PGObject; pspec: PGParamSpec); cdecl; external;
procedure g_object_remove_toggle_ref(object_: PGObject; notify: TGToggleNotify; data: gpointer); cdecl; external;
procedure g_object_remove_weak_pointer(object_: PGObject; weak_pointer_location: Pgpointer); cdecl; external;
procedure g_object_run_dispose(object_: PGObject); cdecl; external;
procedure g_object_set(object_: gpointer; first_property_name: Pgchar; args: array of const); cdecl; external;
procedure g_object_set_data(object_: PGObject; key: Pgchar; data: gpointer); cdecl; external;
procedure g_object_set_data_full(object_: PGObject; key: Pgchar; data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
procedure g_object_set_property(object_: PGObject; property_name: Pgchar; value: PGValue); cdecl; external;
procedure g_object_set_qdata(object_: PGObject; quark: TGQuark; data: gpointer); cdecl; external;
procedure g_object_set_qdata_full(object_: PGObject; quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
procedure g_object_set_valist(object_: PGObject; first_property_name: Pgchar; var_args: Tva_list); cdecl; external;
procedure g_object_thaw_notify(object_: PGObject); cdecl; external;
procedure g_object_unref(object_: PGObject); cdecl; external;
procedure g_object_watch_closure(object_: PGObject; closure: PGClosure); cdecl; external;
procedure g_object_weak_ref(object_: PGObject; notify: TGWeakNotify; data: gpointer); cdecl; external;
procedure g_object_weak_unref(object_: PGObject; notify: TGWeakNotify; data: gpointer); cdecl; external;
procedure g_param_spec_pool_insert(pool: PGParamSpecPool; pspec: PGParamSpec; owner_type: TGType); cdecl; external;
procedure g_param_spec_pool_remove(pool: PGParamSpecPool; pspec: PGParamSpec); cdecl; external;
procedure g_param_spec_set_qdata(pspec: PGParamSpec; quark: TGQuark; data: gpointer); cdecl; external;
procedure g_param_spec_set_qdata_full(pspec: PGParamSpec; quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl; external;
procedure g_param_spec_sink(pspec: PGParamSpec); cdecl; external;
procedure g_param_spec_unref(pspec: PGParamSpec); cdecl; external;
procedure g_param_value_set_default(pspec: PGParamSpec; value: PGValue); cdecl; external;
procedure g_signal_chain_from_overridden(instance_and_params: PGValue; return_value: PGValue); cdecl; external;
procedure g_signal_chain_from_overridden_handler(instance: gpointer; args: array of const); cdecl; external;
procedure g_signal_emit(instance: gpointer; signal_id: guint; detail: TGQuark; args: array of const); cdecl; external;
procedure g_signal_emit_by_name(instance: gpointer; detailed_signal: Pgchar; args: array of const); cdecl; external;
procedure g_signal_emit_valist(instance: gpointer; signal_id: guint; detail: TGQuark; var_args: Tva_list); cdecl; external;
procedure g_signal_emitv(instance_and_params: PGValue; signal_id: guint; detail: TGQuark; return_value: PGValue); cdecl; external;
procedure g_signal_handler_block(instance: gpointer; handler_id: gulong); cdecl; external;
procedure g_signal_handler_disconnect(instance: gpointer; handler_id: gulong); cdecl; external;
procedure g_signal_handler_unblock(instance: gpointer; handler_id: gulong); cdecl; external;
procedure g_signal_handlers_destroy(instance: gpointer); cdecl; external;
procedure g_signal_override_class_closure(signal_id: guint; instance_type: TGType; class_closure: PGClosure); cdecl; external;
procedure g_signal_override_class_handler(signal_name: Pgchar; instance_type: TGType; class_handler: TGCallback); cdecl; external;
procedure g_signal_query(signal_id: guint; query: PGSignalQuery); cdecl; external;
procedure g_signal_remove_emission_hook(signal_id: guint; hook_id: gulong); cdecl; external;
procedure g_signal_set_va_marshaller(signal_id: guint; instance_type: TGType; va_marshaller: TGSignalCVaMarshaller); cdecl; external;
procedure g_signal_stop_emission(instance: gpointer; signal_id: guint; detail: TGQuark); cdecl; external;
procedure g_signal_stop_emission_by_name(instance: gpointer; detailed_signal: Pgchar); cdecl; external;
procedure g_source_set_closure(source: PGSource; closure: PGClosure); cdecl; external;
procedure g_source_set_dummy_callback(source: PGSource); cdecl; external;
procedure g_type_add_class_cache_func(cache_data: gpointer; cache_func: TGTypeClassCacheFunc); cdecl; external;
procedure g_type_add_class_private(class_type: TGType; private_size: gsize); cdecl; external;
procedure g_type_add_interface_check(check_data: gpointer; check_func: TGTypeInterfaceCheckFunc); cdecl; external;
procedure g_type_add_interface_dynamic(instance_type: TGType; interface_type: TGType; plugin: PGTypePlugin); cdecl; external;
procedure g_type_add_interface_static(instance_type: TGType; interface_type: TGType; info: PGInterfaceInfo); cdecl; external;
procedure g_type_class_add_private(g_class: gpointer; private_size: gsize); cdecl; external;
procedure g_type_class_unref(g_class: PGTypeClass); cdecl; external;
procedure g_type_class_unref_uncached(g_class: PGTypeClass); cdecl; external;
procedure g_type_default_interface_unref(g_iface: PGTypeInterface); cdecl; external;
procedure g_type_ensure(type_: TGType); cdecl; external;
procedure g_type_free_instance(instance: PGTypeInstance); cdecl; external;
procedure g_type_init; cdecl; external;
procedure g_type_init_with_debug_flags(debug_flags: TGTypeDebugFlags); cdecl; external;
procedure g_type_interface_add_prerequisite(interface_type: TGType; prerequisite_type: TGType); cdecl; external;
procedure g_type_module_add_interface(module: PGTypeModule; instance_type: TGType; interface_type: TGType; interface_info: PGInterfaceInfo); cdecl; external;
procedure g_type_module_set_name(module: PGTypeModule; name: Pgchar); cdecl; external;
procedure g_type_module_unuse(module: PGTypeModule); cdecl; external;
procedure g_type_plugin_complete_interface_info(plugin: PGTypePlugin; instance_type: TGType; interface_type: TGType; info: PGInterfaceInfo); cdecl; external;
procedure g_type_plugin_complete_type_info(plugin: PGTypePlugin; g_type: TGType; info: PGTypeInfo; value_table: PGTypeValueTable); cdecl; external;
procedure g_type_plugin_unuse(plugin: PGTypePlugin); cdecl; external;
procedure g_type_plugin_use(plugin: PGTypePlugin); cdecl; external;
procedure g_type_query(type_: TGType; query: PGTypeQuery); cdecl; external;
procedure g_type_remove_class_cache_func(cache_data: gpointer; cache_func: TGTypeClassCacheFunc); cdecl; external;
procedure g_type_remove_interface_check(check_data: gpointer; check_func: TGTypeInterfaceCheckFunc); cdecl; external;
procedure g_type_set_qdata(type_: TGType; quark: TGQuark; data: gpointer); cdecl; external;
procedure g_value_copy(src_value: PGValue; dest_value: PGValue); cdecl; external;
procedure g_value_register_transform_func(src_type: TGType; dest_type: TGType; transform_func: TGValueTransform); cdecl; external;
procedure g_value_set_boolean(value: PGValue; v_boolean: gboolean); cdecl; external;
procedure g_value_set_boxed(value: PGValue; v_boxed: Pgpointer); cdecl; external;
procedure g_value_set_double(value: PGValue; v_double: gdouble); cdecl; external;
procedure g_value_set_enum(value: PGValue; v_enum: gint); cdecl; external;
procedure g_value_set_flags(value: PGValue; v_flags: guint); cdecl; external;
procedure g_value_set_float(value: PGValue; v_float: gfloat); cdecl; external;
procedure g_value_set_gtype(value: PGValue; v_gtype: TGType); cdecl; external;
procedure g_value_set_instance(value: PGValue; instance: gpointer); cdecl; external;
procedure g_value_set_int(value: PGValue; v_int: gint); cdecl; external;
procedure g_value_set_int64(value: PGValue; v_int64: gint64); cdecl; external;
procedure g_value_set_long(value: PGValue; v_long: glong); cdecl; external;
procedure g_value_set_object(value: PGValue; v_object: PGObject); cdecl; external;
procedure g_value_set_param(value: PGValue; param: PGParamSpec); cdecl; external;
procedure g_value_set_pointer(value: PGValue; v_pointer: gpointer); cdecl; external;
procedure g_value_set_schar(value: PGValue; v_char: gint8); cdecl; external;
procedure g_value_set_static_boxed(value: PGValue; v_boxed: Pgpointer); cdecl; external;
procedure g_value_set_static_string(value: PGValue; v_string: Pgchar); cdecl; external;
procedure g_value_set_string(value: PGValue; v_string: Pgchar); cdecl; external;
procedure g_value_set_uchar(value: PGValue; v_uchar: guint8); cdecl; external;
procedure g_value_set_uint(value: PGValue; v_uint: guint); cdecl; external;
procedure g_value_set_uint64(value: PGValue; v_uint64: guint64); cdecl; external;
procedure g_value_set_ulong(value: PGValue; v_ulong: gulong); cdecl; external;
procedure g_value_set_variant(value: PGValue; variant: PGVariant); cdecl; external;
procedure g_value_take_boxed(value: PGValue; v_boxed: Pgpointer); cdecl; external;
procedure g_value_take_object(value: PGValue; v_object: gpointer); cdecl; external;
procedure g_value_take_param(value: PGValue; param: PGParamSpec); cdecl; external;
procedure g_value_take_string(value: PGValue; v_string: Pgchar); cdecl; external;
procedure g_value_take_variant(value: PGValue; variant: PGVariant); cdecl; external;
procedure g_value_unset(value: PGValue); cdecl; external;
procedure g_weak_ref_clear(weak_ref: PGWeakRef); cdecl; external;
procedure g_weak_ref_init(weak_ref: PGWeakRef; object_: gpointer); cdecl; external;
procedure g_weak_ref_set(weak_ref: PGWeakRef; object_: gpointer); cdecl; external;
implementation
function TGObject.newv(object_type: TGType; n_parameters: guint; parameters: PGParameter): PGObject; cdecl;
begin
Result := LazGObject2.g_object_newv(object_type, n_parameters, parameters);
end;
function TGObject.compat_control(what: gsize; data: gpointer): gsize; cdecl;
begin
Result := LazGObject2.g_object_compat_control(what, data);
end;
function TGObject.interface_find_property(g_iface: gpointer; property_name: Pgchar): PGParamSpec; cdecl;
begin
Result := LazGObject2.g_object_interface_find_property(g_iface, property_name);
end;
procedure TGObject.interface_install_property(g_iface: gpointer; pspec: PGParamSpec); cdecl;
begin
LazGObject2.g_object_interface_install_property(g_iface, pspec);
end;
function TGObject.interface_list_properties(g_iface: gpointer; n_properties_p: Pguint): PPGParamSpec; cdecl;
begin
Result := LazGObject2.g_object_interface_list_properties(g_iface, n_properties_p);
end;
procedure TGObject.add_toggle_ref(notify: TGToggleNotify; data: gpointer); cdecl;
begin
LazGObject2.g_object_add_toggle_ref(@self, notify, data);
end;
procedure TGObject.add_weak_pointer(weak_pointer_location: Pgpointer); cdecl;
begin
LazGObject2.g_object_add_weak_pointer(@self, weak_pointer_location);
end;
function TGObject.bind_property(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags): PGBinding; cdecl;
begin
Result := LazGObject2.g_object_bind_property(@self, source_property, target, target_property, flags);
end;
function TGObject.bind_property_full(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: TGBindingTransformFunc; transform_from: TGBindingTransformFunc; user_data: gpointer; notify: TGDestroyNotify): PGBinding; cdecl;
begin
Result := LazGObject2.g_object_bind_property_full(@self, source_property, target, target_property, flags, transform_to, transform_from, user_data, notify);
end;
function TGObject.bind_property_with_closures(source_property: Pgchar; target: PGObject; target_property: Pgchar; flags: TGBindingFlags; transform_to: PGClosure; transform_from: PGClosure): PGBinding; cdecl;
begin
Result := LazGObject2.g_object_bind_property_with_closures(@self, source_property, target, target_property, flags, transform_to, transform_from);
end;
function TGObject.dup_data(key: Pgchar; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl;
begin
Result := LazGObject2.g_object_dup_data(@self, key, dup_func, user_data);
end;
function TGObject.dup_qdata(quark: TGQuark; dup_func: TGDuplicateFunc; user_data: gpointer): gpointer; cdecl;
begin
Result := LazGObject2.g_object_dup_qdata(@self, quark, dup_func, user_data);
end;
procedure TGObject.force_floating; cdecl;
begin
LazGObject2.g_object_force_floating(@self);
end;
procedure TGObject.freeze_notify; cdecl;
begin
LazGObject2.g_object_freeze_notify(@self);
end;
function TGObject.get_data(key: Pgchar): gpointer; cdecl;
begin
Result := LazGObject2.g_object_get_data(@self, key);
end;
procedure TGObject.get_property(property_name: Pgchar; value: PGValue); cdecl;
begin
LazGObject2.g_object_get_property(@self, property_name, value);
end;
function TGObject.get_qdata(quark: TGQuark): gpointer; cdecl;
begin
Result := LazGObject2.g_object_get_qdata(@self, quark);
end;
function TGObject.is_floating: gboolean; cdecl;
begin
Result := LazGObject2.g_object_is_floating(@self);
end;
procedure TGObject.notify(property_name: Pgchar); cdecl;
begin
LazGObject2.g_object_notify(@self, property_name);
end;
procedure TGObject.notify_by_pspec(pspec: PGParamSpec); cdecl;
begin
LazGObject2.g_object_notify_by_pspec(@self, pspec);
end;
function TGObject.ref: PGObject; cdecl;
begin
Result := LazGObject2.g_object_ref(@self);
end;
function TGObject.ref_sink: PGObject; cdecl;
begin
Result := LazGObject2.g_object_ref_sink(@self);
end;
procedure TGObject.remove_toggle_ref(notify: TGToggleNotify; data: gpointer); cdecl;
begin
LazGObject2.g_object_remove_toggle_ref(@self, notify, data);
end;
procedure TGObject.remove_weak_pointer(weak_pointer_location: Pgpointer); cdecl;
begin
LazGObject2.g_object_remove_weak_pointer(@self, weak_pointer_location);
end;
function TGObject.replace_data(key: Pgchar; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl;
begin
Result := LazGObject2.g_object_replace_data(@self, key, oldval, newval, destroy_, old_destroy);
end;
function TGObject.replace_qdata(quark: TGQuark; oldval: gpointer; newval: gpointer; destroy_: TGDestroyNotify; old_destroy: PGDestroyNotify): gboolean; cdecl;
begin
Result := LazGObject2.g_object_replace_qdata(@self, quark, oldval, newval, destroy_, old_destroy);
end;
procedure TGObject.run_dispose; cdecl;
begin
LazGObject2.g_object_run_dispose(@self);
end;
procedure TGObject.set_data(key: Pgchar; data: gpointer); cdecl;
begin
LazGObject2.g_object_set_data(@self, key, data);
end;
procedure TGObject.set_data_full(key: Pgchar; data: gpointer; destroy_: TGDestroyNotify); cdecl;
begin
LazGObject2.g_object_set_data_full(@self, key, data, destroy_);
end;
procedure TGObject.set_property(property_name: Pgchar; value: PGValue); cdecl;
begin
LazGObject2.g_object_set_property(@self, property_name, value);
end;
procedure TGObject.set_qdata(quark: TGQuark; data: gpointer); cdecl;
begin
LazGObject2.g_object_set_qdata(@self, quark, data);
end;
procedure TGObject.set_qdata_full(quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl;
begin
LazGObject2.g_object_set_qdata_full(@self, quark, data, destroy_);
end;
function TGObject.steal_data(key: Pgchar): gpointer; cdecl;
begin
Result := LazGObject2.g_object_steal_data(@self, key);
end;
function TGObject.steal_qdata(quark: TGQuark): gpointer; cdecl;
begin
Result := LazGObject2.g_object_steal_qdata(@self, quark);
end;
procedure TGObject.thaw_notify; cdecl;
begin
LazGObject2.g_object_thaw_notify(@self);
end;
procedure TGObject.unref; cdecl;
begin
LazGObject2.g_object_unref(@self);
end;
procedure TGObject.watch_closure(closure: PGClosure); cdecl;
begin
LazGObject2.g_object_watch_closure(@self, closure);
end;
procedure TGObject.weak_ref(notify: TGWeakNotify; data: gpointer); cdecl;
begin
LazGObject2.g_object_weak_ref(@self, notify, data);
end;
procedure TGObject.weak_unref(notify: TGWeakNotify; data: gpointer); cdecl;
begin
LazGObject2.g_object_weak_unref(@self, notify, data);
end;
function TGTypeInstance.get_private(private_type: TGType): gpointer; cdecl;
begin
Result := LazGObject2.g_type_instance_get_private(@self, private_type);
end;
function TGBinding.get_flags: TGBindingFlags; cdecl;
begin
Result := LazGObject2.g_binding_get_flags(@self);
end;
function TGBinding.get_source: PGObject; cdecl;
begin
Result := LazGObject2.g_binding_get_source(@self);
end;
function TGBinding.get_source_property: Pgchar; cdecl;
begin
Result := LazGObject2.g_binding_get_source_property(@self);
end;
function TGBinding.get_target: PGObject; cdecl;
begin
Result := LazGObject2.g_binding_get_target(@self);
end;
function TGBinding.get_target_property: Pgchar; cdecl;
begin
Result := LazGObject2.g_binding_get_target_property(@self);
end;
procedure TGValue.copy(dest_value: PGValue); cdecl;
begin
LazGObject2.g_value_copy(@self, dest_value);
end;
function TGValue.dup_boxed: gpointer; cdecl;
begin
Result := LazGObject2.g_value_dup_boxed(@self);
end;
function TGValue.dup_object: PGObject; cdecl;
begin
Result := LazGObject2.g_value_dup_object(@self);
end;
function TGValue.dup_param: PGParamSpec; cdecl;
begin
Result := LazGObject2.g_value_dup_param(@self);
end;
function TGValue.dup_string: Pgchar; cdecl;
begin
Result := LazGObject2.g_value_dup_string(@self);
end;
function TGValue.dup_variant: PGVariant; cdecl;
begin
Result := LazGObject2.g_value_dup_variant(@self);
end;
function TGValue.fits_pointer: gboolean; cdecl;
begin
Result := LazGObject2.g_value_fits_pointer(@self);
end;
function TGValue.get_boolean: gboolean; cdecl;
begin
Result := LazGObject2.g_value_get_boolean(@self);
end;
function TGValue.get_boxed: gpointer; cdecl;
begin
Result := LazGObject2.g_value_get_boxed(@self);
end;
function TGValue.get_double: gdouble; cdecl;
begin
Result := LazGObject2.g_value_get_double(@self);
end;
function TGValue.get_enum: gint; cdecl;
begin
Result := LazGObject2.g_value_get_enum(@self);
end;
function TGValue.get_flags: guint; cdecl;
begin
Result := LazGObject2.g_value_get_flags(@self);
end;
function TGValue.get_float: gfloat; cdecl;
begin
Result := LazGObject2.g_value_get_float(@self);
end;
function TGValue.get_gtype: TGType; cdecl;
begin
Result := LazGObject2.g_value_get_gtype(@self);
end;
function TGValue.get_int: gint; cdecl;
begin
Result := LazGObject2.g_value_get_int(@self);
end;
function TGValue.get_int64: gint64; cdecl;
begin
Result := LazGObject2.g_value_get_int64(@self);
end;
function TGValue.get_long: glong; cdecl;
begin
Result := LazGObject2.g_value_get_long(@self);
end;
function TGValue.get_object: PGObject; cdecl;
begin
Result := LazGObject2.g_value_get_object(@self);
end;
function TGValue.get_param: PGParamSpec; cdecl;
begin
Result := LazGObject2.g_value_get_param(@self);
end;
function TGValue.get_pointer: gpointer; cdecl;
begin
Result := LazGObject2.g_value_get_pointer(@self);
end;
function TGValue.get_schar: gint8; cdecl;
begin
Result := LazGObject2.g_value_get_schar(@self);
end;
function TGValue.get_string: Pgchar; cdecl;
begin
Result := LazGObject2.g_value_get_string(@self);
end;
function TGValue.get_uchar: guint8; cdecl;
begin
Result := LazGObject2.g_value_get_uchar(@self);
end;
function TGValue.get_uint: guint; cdecl;
begin
Result := LazGObject2.g_value_get_uint(@self);
end;
function TGValue.get_uint64: guint64; cdecl;
begin
Result := LazGObject2.g_value_get_uint64(@self);
end;
function TGValue.get_ulong: gulong; cdecl;
begin
Result := LazGObject2.g_value_get_ulong(@self);
end;
function TGValue.get_variant: PGVariant; cdecl;
begin
Result := LazGObject2.g_value_get_variant(@self);
end;
function TGValue.init(g_type: TGType): PGValue; cdecl;
begin
Result := LazGObject2.g_value_init(@self, g_type);
end;
function TGValue.peek_pointer: gpointer; cdecl;
begin
Result := LazGObject2.g_value_peek_pointer(@self);
end;
function TGValue.reset: PGValue; cdecl;
begin
Result := LazGObject2.g_value_reset(@self);
end;
procedure TGValue.set_boolean(v_boolean: gboolean); cdecl;
begin
LazGObject2.g_value_set_boolean(@self, v_boolean);
end;
procedure TGValue.set_boxed(v_boxed: Pgpointer); cdecl;
begin
LazGObject2.g_value_set_boxed(@self, v_boxed);
end;
procedure TGValue.set_double(v_double: gdouble); cdecl;
begin
LazGObject2.g_value_set_double(@self, v_double);
end;
procedure TGValue.set_enum(v_enum: gint); cdecl;
begin
LazGObject2.g_value_set_enum(@self, v_enum);
end;
procedure TGValue.set_flags(v_flags: guint); cdecl;
begin
LazGObject2.g_value_set_flags(@self, v_flags);
end;
procedure TGValue.set_float(v_float: gfloat); cdecl;
begin
LazGObject2.g_value_set_float(@self, v_float);
end;
procedure TGValue.set_gtype(v_gtype: TGType); cdecl;
begin
LazGObject2.g_value_set_gtype(@self, v_gtype);
end;
procedure TGValue.set_instance(instance: gpointer); cdecl;
begin
LazGObject2.g_value_set_instance(@self, instance);
end;
procedure TGValue.set_int(v_int: gint); cdecl;
begin
LazGObject2.g_value_set_int(@self, v_int);
end;
procedure TGValue.set_int64(v_int64: gint64); cdecl;
begin
LazGObject2.g_value_set_int64(@self, v_int64);
end;
procedure TGValue.set_long(v_long: glong); cdecl;
begin
LazGObject2.g_value_set_long(@self, v_long);
end;
procedure TGValue.set_object(v_object: PGObject); cdecl;
begin
LazGObject2.g_value_set_object(@self, v_object);
end;
procedure TGValue.set_param(param: PGParamSpec); cdecl;
begin
LazGObject2.g_value_set_param(@self, param);
end;
procedure TGValue.set_pointer(v_pointer: gpointer); cdecl;
begin
LazGObject2.g_value_set_pointer(@self, v_pointer);
end;
procedure TGValue.set_schar(v_char: gint8); cdecl;
begin
LazGObject2.g_value_set_schar(@self, v_char);
end;
procedure TGValue.set_static_boxed(v_boxed: Pgpointer); cdecl;
begin
LazGObject2.g_value_set_static_boxed(@self, v_boxed);
end;
procedure TGValue.set_static_string(v_string: Pgchar); cdecl;
begin
LazGObject2.g_value_set_static_string(@self, v_string);
end;
procedure TGValue.set_string(v_string: Pgchar); cdecl;
begin
LazGObject2.g_value_set_string(@self, v_string);
end;
procedure TGValue.set_uchar(v_uchar: guint8); cdecl;
begin
LazGObject2.g_value_set_uchar(@self, v_uchar);
end;
procedure TGValue.set_uint(v_uint: guint); cdecl;
begin
LazGObject2.g_value_set_uint(@self, v_uint);
end;
procedure TGValue.set_uint64(v_uint64: guint64); cdecl;
begin
LazGObject2.g_value_set_uint64(@self, v_uint64);
end;
procedure TGValue.set_ulong(v_ulong: gulong); cdecl;
begin
LazGObject2.g_value_set_ulong(@self, v_ulong);
end;
procedure TGValue.set_variant(variant: PGVariant); cdecl;
begin
LazGObject2.g_value_set_variant(@self, variant);
end;
procedure TGValue.take_boxed(v_boxed: Pgpointer); cdecl;
begin
LazGObject2.g_value_take_boxed(@self, v_boxed);
end;
procedure TGValue.take_object(v_object: gpointer); cdecl;
begin
LazGObject2.g_value_take_object(@self, v_object);
end;
procedure TGValue.take_param(param: PGParamSpec); cdecl;
begin
LazGObject2.g_value_take_param(@self, param);
end;
procedure TGValue.take_string(v_string: Pgchar); cdecl;
begin
LazGObject2.g_value_take_string(@self, v_string);
end;
procedure TGValue.take_variant(variant: PGVariant); cdecl;
begin
LazGObject2.g_value_take_variant(@self, variant);
end;
function TGValue.transform(dest_value: PGValue): gboolean; cdecl;
begin
Result := LazGObject2.g_value_transform(@self, dest_value);
end;
procedure TGValue.unset; cdecl;
begin
LazGObject2.g_value_unset(@self);
end;
procedure TGValue.register_transform_func(src_type: TGType; dest_type: TGType; transform_func: TGValueTransform); cdecl;
begin
LazGObject2.g_value_register_transform_func(src_type, dest_type, transform_func);
end;
function TGValue.type_compatible(src_type: TGType; dest_type: TGType): gboolean; cdecl;
begin
Result := LazGObject2.g_value_type_compatible(src_type, dest_type);
end;
function TGValue.type_transformable(src_type: TGType; dest_type: TGType): gboolean; cdecl;
begin
Result := LazGObject2.g_value_type_transformable(src_type, dest_type);
end;
function TGClosure.new_object(sizeof_closure: guint; object_: PGObject): PGClosure; cdecl;
begin
Result := LazGObject2.g_closure_new_object(sizeof_closure, object_);
end;
function TGClosure.new_simple(sizeof_closure: guint; data: gpointer): PGClosure; cdecl;
begin
Result := LazGObject2.g_closure_new_simple(sizeof_closure, data);
end;
procedure TGClosure.add_finalize_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl;
begin
LazGObject2.g_closure_add_finalize_notifier(@self, notify_data, notify_func);
end;
procedure TGClosure.add_invalidate_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl;
begin
LazGObject2.g_closure_add_invalidate_notifier(@self, notify_data, notify_func);
end;
procedure TGClosure.add_marshal_guards(pre_marshal_data: gpointer; pre_marshal_notify: TGClosureNotify; post_marshal_data: gpointer; post_marshal_notify: TGClosureNotify); cdecl;
begin
LazGObject2.g_closure_add_marshal_guards(@self, pre_marshal_data, pre_marshal_notify, post_marshal_data, post_marshal_notify);
end;
procedure TGClosure.invalidate; cdecl;
begin
LazGObject2.g_closure_invalidate(@self);
end;
procedure TGClosure.invoke(return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer); cdecl;
begin
LazGObject2.g_closure_invoke(@self, return_value, n_param_values, param_values, invocation_hint);
end;
function TGClosure.ref: PGClosure; cdecl;
begin
Result := LazGObject2.g_closure_ref(@self);
end;
procedure TGClosure.remove_finalize_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl;
begin
LazGObject2.g_closure_remove_finalize_notifier(@self, notify_data, notify_func);
end;
procedure TGClosure.remove_invalidate_notifier(notify_data: gpointer; notify_func: TGClosureNotify); cdecl;
begin
LazGObject2.g_closure_remove_invalidate_notifier(@self, notify_data, notify_func);
end;
procedure TGClosure.set_marshal(marshal: TGClosureMarshal); cdecl;
begin
LazGObject2.g_closure_set_marshal(@self, marshal);
end;
procedure TGClosure.set_meta_marshal(marshal_data: gpointer; meta_marshal: TGClosureMarshal); cdecl;
begin
LazGObject2.g_closure_set_meta_marshal(@self, marshal_data, meta_marshal);
end;
procedure TGClosure.sink; cdecl;
begin
LazGObject2.g_closure_sink(@self);
end;
procedure TGClosure.unref; cdecl;
begin
LazGObject2.g_closure_unref(@self);
end;
procedure TGCClosure.marshal_BOOLEAN__BOXED_BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_BOOLEAN__BOXED_BOXED(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_BOOLEAN__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_BOOLEAN__FLAGS(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_STRING__OBJECT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_STRING__OBJECT_POINTER(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__BOOLEAN(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__BOOLEAN(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__BOXED(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__BOXED(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__CHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__CHAR(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__DOUBLE(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__DOUBLE(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__ENUM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__ENUM(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__FLAGS(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__FLAGS(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__FLOAT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__FLOAT(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__INT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__INT(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__LONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__LONG(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__OBJECT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__OBJECT(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__PARAM(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__PARAM(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__POINTER(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__STRING(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__STRING(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__UCHAR(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__UCHAR(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__UINT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__UINT(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__UINT_POINTER(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__UINT_POINTER(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__ULONG(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__ULONG(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__VARIANT(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__VARIANT(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_VOID__VOID(closure: PGClosure; return_value: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_VOID__VOID(closure, return_value, n_param_values, param_values, invocation_hint, marshal_data);
end;
procedure TGCClosure.marshal_generic(closure: PGClosure; return_gvalue: PGValue; n_param_values: guint; param_values: PGValue; invocation_hint: gpointer; marshal_data: gpointer); cdecl;
begin
LazGObject2.g_cclosure_marshal_generic(closure, return_gvalue, n_param_values, param_values, invocation_hint, marshal_data);
end;
function TGCClosure.new(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl;
begin
Result := LazGObject2.g_cclosure_new(callback_func, user_data, destroy_data);
end;
function TGCClosure.new_object(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl;
begin
Result := LazGObject2.g_cclosure_new_object(callback_func, object_);
end;
function TGCClosure.new_object_swap(callback_func: TGCallback; object_: PGObject): PGClosure; cdecl;
begin
Result := LazGObject2.g_cclosure_new_object_swap(callback_func, object_);
end;
function TGCClosure.new_swap(callback_func: TGCallback; user_data: gpointer; destroy_data: TGClosureNotify): PGClosure; cdecl;
begin
Result := LazGObject2.g_cclosure_new_swap(callback_func, user_data, destroy_data);
end;
function TGTypeClass.get_private(private_type: TGType): gpointer; cdecl;
begin
Result := LazGObject2.g_type_class_get_private(@self, private_type);
end;
function TGTypeClass.peek_parent: PGTypeClass; cdecl;
begin
Result := LazGObject2.g_type_class_peek_parent(@self);
end;
procedure TGTypeClass.unref; cdecl;
begin
LazGObject2.g_type_class_unref(@self);
end;
procedure TGTypeClass.unref_uncached; cdecl;
begin
LazGObject2.g_type_class_unref_uncached(@self);
end;
procedure TGTypeClass.add_private(g_class: gpointer; private_size: gsize); cdecl;
begin
LazGObject2.g_type_class_add_private(g_class, private_size);
end;
function TGTypeClass.peek(type_: TGType): PGTypeClass; cdecl;
begin
Result := LazGObject2.g_type_class_peek(type_);
end;
function TGTypeClass.peek_static(type_: TGType): PGTypeClass; cdecl;
begin
Result := LazGObject2.g_type_class_peek_static(type_);
end;
function TGTypeClass.ref(type_: TGType): PGTypeClass; cdecl;
begin
Result := LazGObject2.g_type_class_ref(type_);
end;
function TGParamSpec.internal(param_type: TGType; name: Pgchar; nick: Pgchar; blurb: Pgchar; flags: TGParamFlags): gpointer; cdecl;
begin
Result := LazGObject2.g_param_spec_internal(param_type, name, nick, blurb, flags);
end;
function TGParamSpec.get_blurb: Pgchar; cdecl;
begin
Result := LazGObject2.g_param_spec_get_blurb(@self);
end;
function TGParamSpec.get_name: Pgchar; cdecl;
begin
Result := LazGObject2.g_param_spec_get_name(@self);
end;
function TGParamSpec.get_nick: Pgchar; cdecl;
begin
Result := LazGObject2.g_param_spec_get_nick(@self);
end;
function TGParamSpec.get_qdata(quark: TGQuark): gpointer; cdecl;
begin
Result := LazGObject2.g_param_spec_get_qdata(@self, quark);
end;
function TGParamSpec.get_redirect_target: PGParamSpec; cdecl;
begin
Result := LazGObject2.g_param_spec_get_redirect_target(@self);
end;
function TGParamSpec.ref: PGParamSpec; cdecl;
begin
Result := LazGObject2.g_param_spec_ref(@self);
end;
function TGParamSpec.ref_sink: PGParamSpec; cdecl;
begin
Result := LazGObject2.g_param_spec_ref_sink(@self);
end;
procedure TGParamSpec.set_qdata(quark: TGQuark; data: gpointer); cdecl;
begin
LazGObject2.g_param_spec_set_qdata(@self, quark, data);
end;
procedure TGParamSpec.set_qdata_full(quark: TGQuark; data: gpointer; destroy_: TGDestroyNotify); cdecl;
begin
LazGObject2.g_param_spec_set_qdata_full(@self, quark, data, destroy_);
end;
procedure TGParamSpec.sink; cdecl;
begin
LazGObject2.g_param_spec_sink(@self);
end;
function TGParamSpec.steal_qdata(quark: TGQuark): gpointer; cdecl;
begin
Result := LazGObject2.g_param_spec_steal_qdata(@self, quark);
end;
procedure TGParamSpec.unref; cdecl;
begin
LazGObject2.g_param_spec_unref(@self);
end;
function TGObjectClass.find_property(property_name: Pgchar): PGParamSpec; cdecl;
begin
Result := LazGObject2.g_object_class_find_property(@self, property_name);
end;
procedure TGObjectClass.install_properties(n_pspecs: guint; pspecs: PPGParamSpec); cdecl;
begin
LazGObject2.g_object_class_install_properties(@self, n_pspecs, pspecs);
end;
procedure TGObjectClass.install_property(property_id: guint; pspec: PGParamSpec); cdecl;
begin
LazGObject2.g_object_class_install_property(@self, property_id, pspec);
end;
function TGObjectClass.list_properties(n_properties: Pguint): PPGParamSpec; cdecl;
begin
Result := LazGObject2.g_object_class_list_properties(@self, n_properties);
end;
procedure TGObjectClass.override_property(property_id: guint; name: Pgchar); cdecl;
begin
LazGObject2.g_object_class_override_property(@self, property_id, name);
end;
procedure TGParamSpecPool.insert(pspec: PGParamSpec; owner_type: TGType); cdecl;
begin
LazGObject2.g_param_spec_pool_insert(@self, pspec, owner_type);
end;
function TGParamSpecPool.list(owner_type: TGType; n_pspecs_p: Pguint): PPGParamSpec; cdecl;
begin
Result := LazGObject2.g_param_spec_pool_list(@self, owner_type, n_pspecs_p);
end;
function TGParamSpecPool.list_owned(owner_type: TGType): PGList; cdecl;
begin
Result := LazGObject2.g_param_spec_pool_list_owned(@self, owner_type);
end;
function TGParamSpecPool.lookup(param_name: Pgchar; owner_type: TGType; walk_ancestors: gboolean): PGParamSpec; cdecl;
begin
Result := LazGObject2.g_param_spec_pool_lookup(@self, param_name, owner_type, walk_ancestors);
end;
procedure TGParamSpecPool.remove(pspec: PGParamSpec); cdecl;
begin
LazGObject2.g_param_spec_pool_remove(@self, pspec);
end;
function TGParamSpecPool.new(type_prefixing: gboolean): PGParamSpecPool; cdecl;
begin
Result := LazGObject2.g_param_spec_pool_new(type_prefixing);
end;
function TGTypeValueTable.peek(type_: TGType): PGTypeValueTable; cdecl;
begin
Result := LazGObject2.g_type_value_table_peek(type_);
end;
function TGTypeInterface.peek_parent: PGTypeInterface; cdecl;
begin
Result := LazGObject2.g_type_interface_peek_parent(@self);
end;
procedure TGTypeInterface.add_prerequisite(interface_type: TGType; prerequisite_type: TGType); cdecl;
begin
LazGObject2.g_type_interface_add_prerequisite(interface_type, prerequisite_type);
end;
function TGTypeInterface.get_plugin(instance_type: TGType; interface_type: TGType): PGTypePlugin; cdecl;
begin
Result := LazGObject2.g_type_interface_get_plugin(instance_type, interface_type);
end;
function TGTypeInterface.peek(instance_class: PGTypeClass; iface_type: TGType): PGTypeInterface; cdecl;
begin
Result := LazGObject2.g_type_interface_peek(instance_class, iface_type);
end;
function TGTypeInterface.prerequisites(interface_type: TGType; n_prerequisites: Pguint): PGType; cdecl;
begin
Result := LazGObject2.g_type_interface_prerequisites(interface_type, n_prerequisites);
end;
procedure TGTypePlugin.complete_interface_info(instance_type: TGType; interface_type: TGType; info: PGInterfaceInfo); cdecl;
begin
LazGObject2.g_type_plugin_complete_interface_info(@self, instance_type, interface_type, info);
end;
procedure TGTypePlugin.complete_type_info(g_type: TGType; info: PGTypeInfo; value_table: PGTypeValueTable); cdecl;
begin
LazGObject2.g_type_plugin_complete_type_info(@self, g_type, info, value_table);
end;
procedure TGTypePlugin.unuse; cdecl;
begin
LazGObject2.g_type_plugin_unuse(@self);
end;
procedure TGTypePlugin.use; cdecl;
begin
LazGObject2.g_type_plugin_use(@self);
end;
procedure TGTypeModule.add_interface(instance_type: TGType; interface_type: TGType; interface_info: PGInterfaceInfo); cdecl;
begin
LazGObject2.g_type_module_add_interface(@self, instance_type, interface_type, interface_info);
end;
function TGTypeModule.register_enum(name: Pgchar; const_static_values: PGEnumValue): TGType; cdecl;
begin
Result := LazGObject2.g_type_module_register_enum(@self, name, const_static_values);
end;
function TGTypeModule.register_flags(name: Pgchar; const_static_values: PGFlagsValue): TGType; cdecl;
begin
Result := LazGObject2.g_type_module_register_flags(@self, name, const_static_values);
end;
function TGTypeModule.register_type(parent_type: TGType; type_name: Pgchar; type_info: PGTypeInfo; flags: TGTypeFlags): TGType; cdecl;
begin
Result := LazGObject2.g_type_module_register_type(@self, parent_type, type_name, type_info, flags);
end;
procedure TGTypeModule.set_name(name: Pgchar); cdecl;
begin
LazGObject2.g_type_module_set_name(@self, name);
end;
procedure TGTypeModule.unuse; cdecl;
begin
LazGObject2.g_type_module_unuse(@self);
end;
function TGTypeModule.use: gboolean; cdecl;
begin
Result := LazGObject2.g_type_module_use(@self);
end;
procedure TGWeakRef.clear; cdecl;
begin
LazGObject2.g_weak_ref_clear(@self);
end;
function TGWeakRef.get: PGObject; cdecl;
begin
Result := LazGObject2.g_weak_ref_get(@self);
end;
procedure TGWeakRef.init(object_: gpointer); cdecl;
begin
LazGObject2.g_weak_ref_init(@self, object_);
end;
procedure TGWeakRef.set_(object_: gpointer); cdecl;
begin
LazGObject2.g_weak_ref_set(@self, object_);
end;
end.
|