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
|
{ This is an autogenerated unit using gobject introspection (gir2pascal). Do not Edit. }
unit LazAtk1;
{$MODE OBJFPC}{$H+}
{$PACKRECORDS C}
{$MODESWITCH DUPLICATELOCALS+}
{$LINKLIB libatk-1.0.so.0}
interface
uses
CTypes, LazGObject2, LazGLib2;
const
Atk1_library = 'libatk-1.0.so.0';
ATK_BINARY_AGE = 20810;
ATK_INTERFACE_AGE = 1;
ATK_MAJOR_VERSION = 2;
ATK_MICRO_VERSION = 0;
ATK_MINOR_VERSION = 8;
type
TAtkCoordType = Integer;
const
{ AtkCoordType }
ATK_XY_SCREEN: TAtkCoordType = 0;
ATK_XY_WINDOW: TAtkCoordType = 1;
type
TAtkLayer = Integer;
const
{ AtkLayer }
ATK_LAYER_INVALID: TAtkLayer = 0;
ATK_LAYER_BACKGROUND: TAtkLayer = 1;
ATK_LAYER_CANVAS: TAtkLayer = 2;
ATK_LAYER_WIDGET: TAtkLayer = 3;
ATK_LAYER_MDI: TAtkLayer = 4;
ATK_LAYER_POPUP: TAtkLayer = 5;
ATK_LAYER_OVERLAY: TAtkLayer = 6;
ATK_LAYER_WINDOW: TAtkLayer = 7;
type
TAtkRelationType = Integer;
const
{ AtkRelationType }
ATK_RELATION_NULL: TAtkRelationType = 0;
ATK_RELATION_CONTROLLED_BY: TAtkRelationType = 1;
ATK_RELATION_CONTROLLER_FOR: TAtkRelationType = 2;
ATK_RELATION_LABEL_FOR: TAtkRelationType = 3;
ATK_RELATION_LABELLED_BY: TAtkRelationType = 4;
ATK_RELATION_MEMBER_OF: TAtkRelationType = 5;
ATK_RELATION_NODE_CHILD_OF: TAtkRelationType = 6;
ATK_RELATION_FLOWS_TO: TAtkRelationType = 7;
ATK_RELATION_FLOWS_FROM: TAtkRelationType = 8;
ATK_RELATION_SUBWINDOW_OF: TAtkRelationType = 9;
ATK_RELATION_EMBEDS: TAtkRelationType = 10;
ATK_RELATION_EMBEDDED_BY: TAtkRelationType = 11;
ATK_RELATION_POPUP_FOR: TAtkRelationType = 12;
ATK_RELATION_PARENT_WINDOW_OF: TAtkRelationType = 13;
ATK_RELATION_DESCRIBED_BY: TAtkRelationType = 14;
ATK_RELATION_DESCRIPTION_FOR: TAtkRelationType = 15;
ATK_RELATION_NODE_PARENT_OF: TAtkRelationType = 16;
ATK_RELATION_LAST_DEFINED: TAtkRelationType = 17;
type
TAtkRole = Integer;
const
{ AtkRole }
ATK_ROLE_INVALID: TAtkRole = 0;
ATK_ROLE_ACCEL_LABEL: TAtkRole = 1;
ATK_ROLE_ALERT: TAtkRole = 2;
ATK_ROLE_ANIMATION: TAtkRole = 3;
ATK_ROLE_ARROW: TAtkRole = 4;
ATK_ROLE_CALENDAR: TAtkRole = 5;
ATK_ROLE_CANVAS: TAtkRole = 6;
ATK_ROLE_CHECK_BOX: TAtkRole = 7;
ATK_ROLE_CHECK_MENU_ITEM: TAtkRole = 8;
ATK_ROLE_COLOR_CHOOSER: TAtkRole = 9;
ATK_ROLE_COLUMN_HEADER: TAtkRole = 10;
ATK_ROLE_COMBO_BOX: TAtkRole = 11;
ATK_ROLE_DATE_EDITOR: TAtkRole = 12;
ATK_ROLE_DESKTOP_ICON: TAtkRole = 13;
ATK_ROLE_DESKTOP_FRAME: TAtkRole = 14;
ATK_ROLE_DIAL: TAtkRole = 15;
ATK_ROLE_DIALOG: TAtkRole = 16;
ATK_ROLE_DIRECTORY_PANE: TAtkRole = 17;
ATK_ROLE_DRAWING_AREA: TAtkRole = 18;
ATK_ROLE_FILE_CHOOSER: TAtkRole = 19;
ATK_ROLE_FILLER: TAtkRole = 20;
ATK_ROLE_FONT_CHOOSER: TAtkRole = 21;
ATK_ROLE_FRAME: TAtkRole = 22;
ATK_ROLE_GLASS_PANE: TAtkRole = 23;
ATK_ROLE_HTML_CONTAINER: TAtkRole = 24;
ATK_ROLE_ICON: TAtkRole = 25;
ATK_ROLE_IMAGE: TAtkRole = 26;
ATK_ROLE_INTERNAL_FRAME: TAtkRole = 27;
ATK_ROLE_LABEL: TAtkRole = 28;
ATK_ROLE_LAYERED_PANE: TAtkRole = 29;
ATK_ROLE_LIST: TAtkRole = 30;
ATK_ROLE_LIST_ITEM: TAtkRole = 31;
ATK_ROLE_MENU: TAtkRole = 32;
ATK_ROLE_MENU_BAR: TAtkRole = 33;
ATK_ROLE_MENU_ITEM: TAtkRole = 34;
ATK_ROLE_OPTION_PANE: TAtkRole = 35;
ATK_ROLE_PAGE_TAB: TAtkRole = 36;
ATK_ROLE_PAGE_TAB_LIST: TAtkRole = 37;
ATK_ROLE_PANEL: TAtkRole = 38;
ATK_ROLE_PASSWORD_TEXT: TAtkRole = 39;
ATK_ROLE_POPUP_MENU: TAtkRole = 40;
ATK_ROLE_PROGRESS_BAR: TAtkRole = 41;
ATK_ROLE_PUSH_BUTTON: TAtkRole = 42;
ATK_ROLE_RADIO_BUTTON: TAtkRole = 43;
ATK_ROLE_RADIO_MENU_ITEM: TAtkRole = 44;
ATK_ROLE_ROOT_PANE: TAtkRole = 45;
ATK_ROLE_ROW_HEADER: TAtkRole = 46;
ATK_ROLE_SCROLL_BAR: TAtkRole = 47;
ATK_ROLE_SCROLL_PANE: TAtkRole = 48;
ATK_ROLE_SEPARATOR: TAtkRole = 49;
ATK_ROLE_SLIDER: TAtkRole = 50;
ATK_ROLE_SPLIT_PANE: TAtkRole = 51;
ATK_ROLE_SPIN_BUTTON: TAtkRole = 52;
ATK_ROLE_STATUSBAR: TAtkRole = 53;
ATK_ROLE_TABLE: TAtkRole = 54;
ATK_ROLE_TABLE_CELL: TAtkRole = 55;
ATK_ROLE_TABLE_COLUMN_HEADER: TAtkRole = 56;
ATK_ROLE_TABLE_ROW_HEADER: TAtkRole = 57;
ATK_ROLE_TEAR_OFF_MENU_ITEM: TAtkRole = 58;
ATK_ROLE_TERMINAL: TAtkRole = 59;
ATK_ROLE_TEXT: TAtkRole = 60;
ATK_ROLE_TOGGLE_BUTTON: TAtkRole = 61;
ATK_ROLE_TOOL_BAR: TAtkRole = 62;
ATK_ROLE_TOOL_TIP: TAtkRole = 63;
ATK_ROLE_TREE: TAtkRole = 64;
ATK_ROLE_TREE_TABLE: TAtkRole = 65;
ATK_ROLE_UNKNOWN: TAtkRole = 66;
ATK_ROLE_VIEWPORT: TAtkRole = 67;
ATK_ROLE_WINDOW: TAtkRole = 68;
ATK_ROLE_HEADER: TAtkRole = 69;
ATK_ROLE_FOOTER: TAtkRole = 70;
ATK_ROLE_PARAGRAPH: TAtkRole = 71;
ATK_ROLE_RULER: TAtkRole = 72;
ATK_ROLE_APPLICATION: TAtkRole = 73;
ATK_ROLE_AUTOCOMPLETE: TAtkRole = 74;
ATK_ROLE_EDITBAR: TAtkRole = 75;
ATK_ROLE_EMBEDDED: TAtkRole = 76;
ATK_ROLE_ENTRY: TAtkRole = 77;
ATK_ROLE_CHART: TAtkRole = 78;
ATK_ROLE_CAPTION: TAtkRole = 79;
ATK_ROLE_DOCUMENT_FRAME: TAtkRole = 80;
ATK_ROLE_HEADING: TAtkRole = 81;
ATK_ROLE_PAGE: TAtkRole = 82;
ATK_ROLE_SECTION: TAtkRole = 83;
ATK_ROLE_REDUNDANT_OBJECT: TAtkRole = 84;
ATK_ROLE_FORM: TAtkRole = 85;
ATK_ROLE_LINK: TAtkRole = 86;
ATK_ROLE_INPUT_METHOD_WINDOW: TAtkRole = 87;
ATK_ROLE_TABLE_ROW: TAtkRole = 88;
ATK_ROLE_TREE_ITEM: TAtkRole = 89;
ATK_ROLE_DOCUMENT_SPREADSHEET: TAtkRole = 90;
ATK_ROLE_DOCUMENT_PRESENTATION: TAtkRole = 91;
ATK_ROLE_DOCUMENT_TEXT: TAtkRole = 92;
ATK_ROLE_DOCUMENT_WEB: TAtkRole = 93;
ATK_ROLE_DOCUMENT_EMAIL: TAtkRole = 94;
ATK_ROLE_COMMENT: TAtkRole = 95;
ATK_ROLE_LIST_BOX: TAtkRole = 96;
ATK_ROLE_GROUPING: TAtkRole = 97;
ATK_ROLE_IMAGE_MAP: TAtkRole = 98;
ATK_ROLE_NOTIFICATION: TAtkRole = 99;
ATK_ROLE_INFO_BAR: TAtkRole = 100;
ATK_ROLE_LEVEL_BAR: TAtkRole = 101;
ATK_ROLE_LAST_DEFINED: TAtkRole = 102;
type
TAtkHyperlinkStateFlags = Integer;
const
{ AtkHyperlinkStateFlags }
ATK_HYPERLINK_IS_INLINE_: TAtkHyperlinkStateFlags = 1;
type
TAtkKeyEventType = Integer;
const
{ AtkKeyEventType }
ATK_KEY_EVENT_PRESS: TAtkKeyEventType = 0;
ATK_KEY_EVENT_RELEASE: TAtkKeyEventType = 1;
ATK_KEY_EVENT_LAST_DEFINED: TAtkKeyEventType = 2;
type
TAtkTextClipType = Integer;
const
{ AtkTextClipType }
ATK_TEXT_CLIP_NONE: TAtkTextClipType = 0;
ATK_TEXT_CLIP_MIN: TAtkTextClipType = 1;
ATK_TEXT_CLIP_MAX: TAtkTextClipType = 2;
ATK_TEXT_CLIP_BOTH: TAtkTextClipType = 3;
type
TAtkTextBoundary = Integer;
const
{ AtkTextBoundary }
ATK_TEXT_BOUNDARY_CHAR: TAtkTextBoundary = 0;
ATK_TEXT_BOUNDARY_WORD_START: TAtkTextBoundary = 1;
ATK_TEXT_BOUNDARY_WORD_END: TAtkTextBoundary = 2;
ATK_TEXT_BOUNDARY_SENTENCE_START: TAtkTextBoundary = 3;
ATK_TEXT_BOUNDARY_SENTENCE_END: TAtkTextBoundary = 4;
ATK_TEXT_BOUNDARY_LINE_START: TAtkTextBoundary = 5;
ATK_TEXT_BOUNDARY_LINE_END: TAtkTextBoundary = 6;
type
TAtkStateType = Integer;
const
{ AtkStateType }
ATK_STATE_INVALID: TAtkStateType = 0;
ATK_STATE_ACTIVE: TAtkStateType = 1;
ATK_STATE_ARMED: TAtkStateType = 2;
ATK_STATE_BUSY: TAtkStateType = 3;
ATK_STATE_CHECKED: TAtkStateType = 4;
ATK_STATE_DEFUNCT: TAtkStateType = 5;
ATK_STATE_EDITABLE: TAtkStateType = 6;
ATK_STATE_ENABLED: TAtkStateType = 7;
ATK_STATE_EXPANDABLE: TAtkStateType = 8;
ATK_STATE_EXPANDED: TAtkStateType = 9;
ATK_STATE_FOCUSABLE: TAtkStateType = 10;
ATK_STATE_FOCUSED: TAtkStateType = 11;
ATK_STATE_HORIZONTAL: TAtkStateType = 12;
ATK_STATE_ICONIFIED: TAtkStateType = 13;
ATK_STATE_MODAL: TAtkStateType = 14;
ATK_STATE_MULTI_LINE: TAtkStateType = 15;
ATK_STATE_MULTISELECTABLE: TAtkStateType = 16;
ATK_STATE_OPAQUE: TAtkStateType = 17;
ATK_STATE_PRESSED: TAtkStateType = 18;
ATK_STATE_RESIZABLE: TAtkStateType = 19;
ATK_STATE_SELECTABLE: TAtkStateType = 20;
ATK_STATE_SELECTED: TAtkStateType = 21;
ATK_STATE_SENSITIVE: TAtkStateType = 22;
ATK_STATE_SHOWING: TAtkStateType = 23;
ATK_STATE_SINGLE_LINE: TAtkStateType = 24;
ATK_STATE_STALE: TAtkStateType = 25;
ATK_STATE_TRANSIENT: TAtkStateType = 26;
ATK_STATE_VERTICAL: TAtkStateType = 27;
ATK_STATE_VISIBLE: TAtkStateType = 28;
ATK_STATE_MANAGES_DESCENDANTS: TAtkStateType = 29;
ATK_STATE_INDETERMINATE: TAtkStateType = 30;
ATK_STATE_TRUNCATED: TAtkStateType = 31;
ATK_STATE_REQUIRED: TAtkStateType = 32;
ATK_STATE_INVALID_ENTRY: TAtkStateType = 33;
ATK_STATE_SUPPORTS_AUTOCOMPLETION: TAtkStateType = 34;
ATK_STATE_SELECTABLE_TEXT: TAtkStateType = 35;
ATK_STATE_DEFAULT: TAtkStateType = 36;
ATK_STATE_ANIMATED: TAtkStateType = 37;
ATK_STATE_VISITED: TAtkStateType = 38;
ATK_STATE_LAST_DEFINED: TAtkStateType = 39;
type
TAtkTextAttribute = Integer;
const
{ AtkTextAttribute }
ATK_TEXT_ATTR_INVALID: TAtkTextAttribute = 0;
ATK_TEXT_ATTR_LEFT_MARGIN: TAtkTextAttribute = 1;
ATK_TEXT_ATTR_RIGHT_MARGIN: TAtkTextAttribute = 2;
ATK_TEXT_ATTR_INDENT: TAtkTextAttribute = 3;
ATK_TEXT_ATTR_INVISIBLE: TAtkTextAttribute = 4;
ATK_TEXT_ATTR_EDITABLE: TAtkTextAttribute = 5;
ATK_TEXT_ATTR_PIXELS_ABOVE_LINES: TAtkTextAttribute = 6;
ATK_TEXT_ATTR_PIXELS_BELOW_LINES: TAtkTextAttribute = 7;
ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP: TAtkTextAttribute = 8;
ATK_TEXT_ATTR_BG_FULL_HEIGHT: TAtkTextAttribute = 9;
ATK_TEXT_ATTR_RISE: TAtkTextAttribute = 10;
ATK_TEXT_ATTR_UNDERLINE: TAtkTextAttribute = 11;
ATK_TEXT_ATTR_STRIKETHROUGH: TAtkTextAttribute = 12;
ATK_TEXT_ATTR_SIZE: TAtkTextAttribute = 13;
ATK_TEXT_ATTR_SCALE: TAtkTextAttribute = 14;
ATK_TEXT_ATTR_WEIGHT: TAtkTextAttribute = 15;
ATK_TEXT_ATTR_LANGUAGE: TAtkTextAttribute = 16;
ATK_TEXT_ATTR_FAMILY_NAME: TAtkTextAttribute = 17;
ATK_TEXT_ATTR_BG_COLOR: TAtkTextAttribute = 18;
ATK_TEXT_ATTR_FG_COLOR: TAtkTextAttribute = 19;
ATK_TEXT_ATTR_BG_STIPPLE: TAtkTextAttribute = 20;
ATK_TEXT_ATTR_FG_STIPPLE: TAtkTextAttribute = 21;
ATK_TEXT_ATTR_WRAP_MODE: TAtkTextAttribute = 22;
ATK_TEXT_ATTR_DIRECTION: TAtkTextAttribute = 23;
ATK_TEXT_ATTR_JUSTIFICATION: TAtkTextAttribute = 24;
ATK_TEXT_ATTR_STRETCH: TAtkTextAttribute = 25;
ATK_TEXT_ATTR_VARIANT: TAtkTextAttribute = 26;
ATK_TEXT_ATTR_STYLE: TAtkTextAttribute = 27;
ATK_TEXT_ATTR_LAST_DEFINED: TAtkTextAttribute = 28;
type
PPAtkAttributeSet = ^PAtkAttributeSet;
PAtkAttributeSet = ^TAtkAttributeSet;
TAtkAttributeSet = TGSList;
PPAtkState = ^PAtkState;
PAtkState = ^TAtkState;
TAtkState = guint64;
PPAtkAction = ^PAtkAction;
PAtkAction = ^TAtkAction;
TAtkAction = object
function do_action(i: gint): gboolean; cdecl; inline;
function get_description(i: gint): Pgchar; cdecl; inline;
function get_keybinding(i: gint): Pgchar; cdecl; inline;
function get_localized_name(i: gint): Pgchar; cdecl; inline;
function get_n_actions: gint; cdecl; inline;
function get_name(i: gint): Pgchar; cdecl; inline;
function set_description(i: gint; desc: Pgchar): gboolean; cdecl; inline;
end;
TAtkFunction = function(user_data: gpointer): gboolean; cdecl;
PPAtkActionIface = ^PAtkActionIface;
PAtkActionIface = ^TAtkActionIface;
PPAtkFunction = ^PAtkFunction;
PAtkFunction = ^TAtkFunction;
TAtkActionIface = object
parent: TGTypeInterface;
do_action: function(action: PAtkAction; i: gint): gboolean; cdecl;
get_n_actions: function(action: PAtkAction): gint; cdecl;
get_description: function(action: PAtkAction; i: gint): Pgchar; cdecl;
get_name: function(action: PAtkAction; i: gint): Pgchar; cdecl;
get_keybinding: function(action: PAtkAction; i: gint): Pgchar; cdecl;
set_description: function(action: PAtkAction; i: gint; desc: Pgchar): gboolean; cdecl;
get_localized_name: function(action: PAtkAction; i: gint): Pgchar; cdecl;
pad2: TAtkFunction;
end;
PPAtkAttribute = ^PAtkAttribute;
PAtkAttribute = ^TAtkAttribute;
TAtkAttribute = object
name: Pgchar;
value: Pgchar;
procedure set_free(attrib_set: PAtkAttributeSet); cdecl; inline; static;
end;
PPAtkComponent = ^PAtkComponent;
PAtkComponent = ^TAtkComponent;
PPAtkFocusHandler = ^PAtkFocusHandler;
PAtkFocusHandler = ^TAtkFocusHandler;
PPAtkObject = ^PAtkObject;
PAtkObject = ^TAtkObject;
TAtkFocusHandler = procedure(arg0: PAtkObject; arg1: gboolean); cdecl;
PPAtkCoordType = ^PAtkCoordType;
PAtkCoordType = ^TAtkCoordType;
PPAtkLayer = ^PAtkLayer;
PAtkLayer = ^TAtkLayer;
PPAtkRectangle = ^PAtkRectangle;
PAtkRectangle = ^TAtkRectangle;
TAtkRectangle = object
x: gint;
y: gint;
width: gint;
height: gint;
end;
TAtkComponent = object
bounds_changed: procedure(object_: TAtkRectangle); cdecl;
function add_focus_handler(handler: TAtkFocusHandler): guint; cdecl; inline;
function contains(x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl; inline;
function get_alpha: gdouble; cdecl; inline;
procedure get_extents(x: Pgint; y: Pgint; width: Pgint; height: Pgint; coord_type: TAtkCoordType); cdecl; inline;
function get_layer: TAtkLayer; cdecl; inline;
function get_mdi_zorder: gint; cdecl; inline;
procedure get_position(x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl; inline;
procedure get_size(width: Pgint; height: Pgint); cdecl; inline;
function grab_focus: gboolean; cdecl; inline;
function ref_accessible_at_point(x: gint; y: gint; coord_type: TAtkCoordType): PAtkObject; cdecl; inline;
procedure remove_focus_handler(handler_id: guint); cdecl; inline;
function set_extents(x: gint; y: gint; width: gint; height: gint; coord_type: TAtkCoordType): gboolean; cdecl; inline;
function set_position(x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl; inline;
function set_size(width: gint; height: gint): gboolean; cdecl; inline;
end;
PPAtkRelationType = ^PAtkRelationType;
PAtkRelationType = ^TAtkRelationType;
PPAtkPropertyChangeHandler = ^PAtkPropertyChangeHandler;
PAtkPropertyChangeHandler = ^TAtkPropertyChangeHandler;
PAtkPropertyValues = ^TAtkPropertyValues;
TAtkPropertyChangeHandler = procedure(obj: PAtkObject; vals: PAtkPropertyValues); cdecl;
PPAtkRole = ^PAtkRole;
PAtkRole = ^TAtkRole;
PPAtkRelationSet = ^PAtkRelationSet;
PAtkRelationSet = ^TAtkRelationSet;
PPAtkStateSet = ^PAtkStateSet;
PAtkStateSet = ^TAtkStateSet;
TAtkObject = object(TGObject)
description: Pgchar;
name: Pgchar;
accessible_parent1: PAtkObject;
role: TAtkRole;
relation_set: PAtkRelationSet;
layer: TAtkLayer;
function add_relationship(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; inline;
function connect_property_change_handler(handler: PAtkPropertyChangeHandler): guint; cdecl; inline;
function get_attributes: PAtkAttributeSet; cdecl; inline;
function get_description: Pgchar; cdecl; inline;
function get_index_in_parent: gint; cdecl; inline;
function get_n_accessible_children: gint; cdecl; inline;
function get_name: Pgchar; cdecl; inline;
function get_object_locale: Pgchar; cdecl; inline;
function get_parent: PAtkObject; cdecl; inline;
function get_role: TAtkRole; cdecl; inline;
procedure initialize(data: gpointer); cdecl; inline;
procedure notify_state_change(state: TAtkState; value: gboolean); cdecl; inline;
function ref_accessible_child(i: gint): PAtkObject; cdecl; inline;
function ref_relation_set: PAtkRelationSet; cdecl; inline;
function ref_state_set: PAtkStateSet; cdecl; inline;
procedure remove_property_change_handler(handler_id: guint); cdecl; inline;
function remove_relationship(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; inline;
procedure set_description(description: Pgchar); cdecl; inline;
procedure set_name(name: Pgchar); cdecl; inline;
procedure set_parent(parent: PAtkObject); cdecl; inline;
procedure set_role(role: TAtkRole); cdecl; inline;
//property accessible_component_layer: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_component_layer ;
//property accessible_component_mdi_zorder: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_component_mdi_zorder ;
//property accessible_description: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_description { property is writeable but setter not declared } ;
//property accessible_hypertext_nlinks: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_hypertext_nlinks ;
//property accessible_name: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_name { property is writeable but setter not declared } ;
//property accessible_parent: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_parent { property is writeable but setter not declared } ;
//property accessible_role: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_role { property is writeable but setter not declared } ;
//property accessible_table_caption: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_caption { property is writeable but setter not declared } ;
//property accessible_table_caption_object: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_caption_object { property is writeable but setter not declared } ;
//property accessible_table_column_description: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_column_description { property is writeable but setter not declared } ;
//property accessible_table_column_header: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_column_header { property is writeable but setter not declared } ;
//property accessible_table_row_description: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_row_description { property is writeable but setter not declared } ;
//property accessible_table_row_header: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_row_header { property is writeable but setter not declared } ;
//property accessible_table_summary: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_table_summary { property is writeable but setter not declared } ;
//property accessible_value: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_accessible_value { property is writeable but setter not declared } ;
end;
PPAtkComponentIface = ^PAtkComponentIface;
PAtkComponentIface = ^TAtkComponentIface;
TAtkComponentIface = object
parent: TGTypeInterface;
add_focus_handler: function(component: PAtkComponent; handler: TAtkFocusHandler): guint; cdecl;
contains: function(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl;
ref_accessible_at_point: function(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): PAtkObject; cdecl;
get_extents: procedure(component: PAtkComponent; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coord_type: TAtkCoordType); cdecl;
get_position: procedure(component: PAtkComponent; x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl;
get_size: procedure(component: PAtkComponent; width: Pgint; height: Pgint); cdecl;
grab_focus: function(component: PAtkComponent): gboolean; cdecl;
remove_focus_handler: procedure(component: PAtkComponent; handler_id: guint); cdecl;
set_extents: function(component: PAtkComponent; x: gint; y: gint; width: gint; height: gint; coord_type: TAtkCoordType): gboolean; cdecl;
set_position: function(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl;
set_size: function(component: PAtkComponent; width: gint; height: gint): gboolean; cdecl;
get_layer: function(component: PAtkComponent): TAtkLayer; cdecl;
get_mdi_zorder: function(component: PAtkComponent): gint; cdecl;
bounds_changed: procedure(component: PAtkComponent; bounds: PAtkRectangle); cdecl;
get_alpha: function(component: PAtkComponent): gdouble; cdecl;
end;
PPAtkDocument = ^PAtkDocument;
PAtkDocument = ^TAtkDocument;
TAtkDocument = object
load_complete: procedure; cdecl;
load_stopped: procedure; cdecl;
reload: procedure; cdecl;
function get_attribute_value(attribute_name: Pgchar): Pgchar; cdecl; inline;
function get_attributes: PAtkAttributeSet; cdecl; inline;
function get_document: gpointer; cdecl; inline;
function get_document_type: Pgchar; cdecl; inline;
function set_attribute_value(attribute_name: Pgchar; attribute_value: Pgchar): gboolean; cdecl; inline;
end;
PPAtkDocumentIface = ^PAtkDocumentIface;
PAtkDocumentIface = ^TAtkDocumentIface;
TAtkDocumentIface = object
parent: TGTypeInterface;
get_document_type: function(document: PAtkDocument): Pgchar; cdecl;
get_document: function(document: PAtkDocument): gpointer; cdecl;
get_document_locale: function(document: PAtkDocument): Pgchar; cdecl;
get_document_attributes: function(document: PAtkDocument): PAtkAttributeSet; cdecl;
get_document_attribute_value: function(document: PAtkDocument; attribute_name: Pgchar): Pgchar; cdecl;
set_document_attribute: function(document: PAtkDocument; attribute_name: Pgchar; attribute_value: Pgchar): gboolean; cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
pad3: TAtkFunction;
pad4: TAtkFunction;
end;
PPAtkEditableText = ^PAtkEditableText;
PAtkEditableText = ^TAtkEditableText;
TAtkEditableText = object
procedure copy_text(start_pos: gint; end_pos: gint); cdecl; inline;
procedure cut_text(start_pos: gint; end_pos: gint); cdecl; inline;
procedure delete_text(start_pos: gint; end_pos: gint); cdecl; inline;
procedure insert_text(string_: Pgchar; length: gint; position: Pgint); cdecl; inline;
procedure paste_text(position: gint); cdecl; inline;
function set_run_attributes(attrib_set: PAtkAttributeSet; start_offset: gint; end_offset: gint): gboolean; cdecl; inline;
procedure set_text_contents(string_: Pgchar); cdecl; inline;
end;
PPAtkEditableTextIface = ^PAtkEditableTextIface;
PAtkEditableTextIface = ^TAtkEditableTextIface;
TAtkEditableTextIface = object
parent_interface: TGTypeInterface;
set_run_attributes: function(text: PAtkEditableText; attrib_set: PAtkAttributeSet; start_offset: gint; end_offset: gint): gboolean; cdecl;
set_text_contents: procedure(text: PAtkEditableText; string_: Pgchar); cdecl;
insert_text: procedure(text: PAtkEditableText; string_: Pgchar; length: gint; position: Pgint); cdecl;
copy_text: procedure(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl;
cut_text: procedure(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl;
delete_text: procedure(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl;
paste_text: procedure(text: PAtkEditableText; position: gint); cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
end;
TAtkEventListener = procedure(obj: PAtkObject); cdecl;
TAtkEventListenerInit = procedure; cdecl;
PPAtkGObjectAccessible = ^PAtkGObjectAccessible;
PAtkGObjectAccessible = ^TAtkGObjectAccessible;
TAtkGObjectAccessible = object(TAtkObject)
function for_object(obj: PGObject): PAtkObject; cdecl; inline; static;
function get_object: PGObject; cdecl; inline;
end;
PPAtkObjectClass = ^PAtkObjectClass;
PAtkObjectClass = ^TAtkObjectClass;
TAtkObjectClass = object
parent: TGObjectClass;
get_name: function(accessible: PAtkObject): Pgchar; cdecl;
get_description: function(accessible: PAtkObject): Pgchar; cdecl;
get_parent: function(accessible: PAtkObject): PAtkObject; cdecl;
get_n_children: function(accessible: PAtkObject): gint; cdecl;
ref_child: function(accessible: PAtkObject; i: gint): PAtkObject; cdecl;
get_index_in_parent: function(accessible: PAtkObject): gint; cdecl;
ref_relation_set: function(accessible: PAtkObject): PAtkRelationSet; cdecl;
get_role: function(accessible: PAtkObject): TAtkRole; cdecl;
get_layer: function(accessible: PAtkObject): TAtkLayer; cdecl;
get_mdi_zorder: function(accessible: PAtkObject): gint; cdecl;
ref_state_set: function(accessible: PAtkObject): PAtkStateSet; cdecl;
set_name: procedure(accessible: PAtkObject; name: Pgchar); cdecl;
set_description: procedure(accessible: PAtkObject; description: Pgchar); cdecl;
set_parent: procedure(accessible: PAtkObject; parent: PAtkObject); cdecl;
set_role: procedure(accessible: PAtkObject; role: TAtkRole); cdecl;
connect_property_change_handler: function(accessible: PAtkObject; handler: PAtkPropertyChangeHandler): guint; cdecl;
remove_property_change_handler: procedure(accessible: PAtkObject; handler_id: guint); cdecl;
initialize: procedure(accessible: PAtkObject; data: gpointer); cdecl;
children_changed: procedure(accessible: PAtkObject; change_index: guint; changed_child: gpointer); cdecl;
focus_event: procedure(accessible: PAtkObject; focus_in: gboolean); cdecl;
property_change: procedure(accessible: PAtkObject; values: PAtkPropertyValues); cdecl;
state_change: procedure(accessible: PAtkObject; name: Pgchar; state_set: gboolean); cdecl;
visible_data_changed: procedure(accessible: PAtkObject); cdecl;
active_descendant_changed: procedure(accessible: PAtkObject; child: Pgpointer); cdecl;
get_attributes: function(accessible: PAtkObject): PAtkAttributeSet; cdecl;
get_object_locale: function(accessible: PAtkObject): Pgchar; cdecl;
pad1: TAtkFunction;
end;
PPAtkGObjectAccessibleClass = ^PAtkGObjectAccessibleClass;
PAtkGObjectAccessibleClass = ^TAtkGObjectAccessibleClass;
TAtkGObjectAccessibleClass = object
parent_class: TAtkObjectClass;
pad1: TAtkFunction;
pad2: TAtkFunction;
end;
PPAtkHyperlink = ^PAtkHyperlink;
PAtkHyperlink = ^TAtkHyperlink;
TAtkHyperlink = object(TGObject)
function get_end_index: gint; cdecl; inline;
function get_n_anchors: gint; cdecl; inline;
function get_object(i: gint): PAtkObject; cdecl; inline;
function get_start_index: gint; cdecl; inline;
function get_uri(i: gint): Pgchar; cdecl; inline;
function is_inline: gboolean; cdecl; inline;
function is_valid: gboolean; cdecl; inline;
property end_index: gint read get_end_index ;
//property number_of_anchors: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_number_of_anchors ;
//property selected_link: UNABLE_TO_FIND_TYPE_FOR_PROPERTY read get_selected_link ;
property start_index: gint read get_start_index ;
end;
PPAtkHyperlinkClass = ^PAtkHyperlinkClass;
PAtkHyperlinkClass = ^TAtkHyperlinkClass;
TAtkHyperlinkClass = object
parent: TGObjectClass;
get_uri: function(link_: PAtkHyperlink; i: gint): Pgchar; cdecl;
get_object: function(link_: PAtkHyperlink; i: gint): PAtkObject; cdecl;
get_end_index: function(link_: PAtkHyperlink): gint; cdecl;
get_start_index: function(link_: PAtkHyperlink): gint; cdecl;
is_valid: function(link_: PAtkHyperlink): gboolean; cdecl;
get_n_anchors: function(link_: PAtkHyperlink): gint; cdecl;
link_state: function(link_: PAtkHyperlink): guint; cdecl;
is_selected_link: function(link_: PAtkHyperlink): gboolean; cdecl;
link_activated: procedure(link_: PAtkHyperlink); cdecl;
pad1: TAtkFunction;
end;
PPAtkHyperlinkImpl = ^PAtkHyperlinkImpl;
PAtkHyperlinkImpl = ^TAtkHyperlinkImpl;
TAtkHyperlinkImpl = object
function get_hyperlink: PAtkHyperlink; cdecl; inline;
end;
PPAtkHyperlinkImplIface = ^PAtkHyperlinkImplIface;
PAtkHyperlinkImplIface = ^TAtkHyperlinkImplIface;
TAtkHyperlinkImplIface = object
parent: TGTypeInterface;
get_hyperlink: function(impl: PAtkHyperlinkImpl): PAtkHyperlink; cdecl;
pad1: TAtkFunction;
end;
PPAtkHyperlinkStateFlags = ^PAtkHyperlinkStateFlags;
PAtkHyperlinkStateFlags = ^TAtkHyperlinkStateFlags;
PPAtkHypertext = ^PAtkHypertext;
PAtkHypertext = ^TAtkHypertext;
TAtkHypertext = object
link_selected: procedure(object_: gint); cdecl;
function get_link(link_index: gint): PAtkHyperlink; cdecl; inline;
function get_link_index(char_index: gint): gint; cdecl; inline;
function get_n_links: gint; cdecl; inline;
end;
PPAtkHypertextIface = ^PAtkHypertextIface;
PAtkHypertextIface = ^TAtkHypertextIface;
TAtkHypertextIface = object
parent: TGTypeInterface;
get_link: function(hypertext: PAtkHypertext; link_index: gint): PAtkHyperlink; cdecl;
get_n_links: function(hypertext: PAtkHypertext): gint; cdecl;
get_link_index: function(hypertext: PAtkHypertext; char_index: gint): gint; cdecl;
link_selected: procedure(hypertext: PAtkHypertext; link_index: gint); cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
pad3: TAtkFunction;
end;
PPAtkImage = ^PAtkImage;
PAtkImage = ^TAtkImage;
TAtkImage = object
function get_image_description: Pgchar; cdecl; inline;
function get_image_locale: Pgchar; cdecl; inline;
procedure get_image_position(x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl; inline;
procedure get_image_size(width: Pgint; height: Pgint); cdecl; inline;
function set_image_description(description: Pgchar): gboolean; cdecl; inline;
end;
PPAtkImageIface = ^PAtkImageIface;
PAtkImageIface = ^TAtkImageIface;
TAtkImageIface = object
parent: TGTypeInterface;
get_image_position: procedure(image: PAtkImage; x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl;
get_image_description: function(image: PAtkImage): Pgchar; cdecl;
get_image_size: procedure(image: PAtkImage; width: Pgint; height: Pgint); cdecl;
set_image_description: function(image: PAtkImage; description: Pgchar): gboolean; cdecl;
get_image_locale: function(image: PAtkImage): Pgchar; cdecl;
pad1: TAtkFunction;
end;
PPAtkImplementor = ^PAtkImplementor;
PAtkImplementor = ^TAtkImplementor;
TAtkImplementor = object
function ref_accessible: PAtkObject; cdecl; inline;
end;
PPAtkImplementorIface = ^PAtkImplementorIface;
PAtkImplementorIface = ^TAtkImplementorIface;
TAtkImplementorIface = object
end;
PPAtkKeyEventStruct = ^PAtkKeyEventStruct;
PAtkKeyEventStruct = ^TAtkKeyEventStruct;
TAtkKeyEventStruct = record
type_: gint;
state: guint;
keyval: guint;
length: gint;
string_: Pgchar;
keycode: guint16;
timestamp: guint32;
end;
PPAtkKeyEventType = ^PAtkKeyEventType;
PAtkKeyEventType = ^TAtkKeyEventType;
TAtkKeySnoopFunc = function(event: PAtkKeyEventStruct; user_data: gpointer): gint; cdecl;
PPAtkMisc = ^PAtkMisc;
PAtkMisc = ^TAtkMisc;
TAtkMisc = object(TGObject)
function get_instance: PAtkMisc; cdecl; inline; static;
procedure threads_enter; cdecl; inline;
procedure threads_leave; cdecl; inline;
end;
PPAtkMiscClass = ^PAtkMiscClass;
PAtkMiscClass = ^TAtkMiscClass;
TAtkMiscClass = object
parent: TGObjectClass;
threads_enter: procedure(misc: PAtkMisc); cdecl;
threads_leave: procedure(misc: PAtkMisc); cdecl;
vfuncs: array [0..31] of gpointer;
end;
PPAtkSelection = ^PAtkSelection;
PAtkSelection = ^TAtkSelection;
TAtkSelection = object
selection_changed: procedure; cdecl;
function add_selection(i: gint): gboolean; cdecl; inline;
function clear_selection: gboolean; cdecl; inline;
function get_selection_count: gint; cdecl; inline;
function is_child_selected(i: gint): gboolean; cdecl; inline;
function ref_selection(i: gint): PAtkObject; cdecl; inline;
function remove_selection(i: gint): gboolean; cdecl; inline;
function select_all_selection: gboolean; cdecl; inline;
end;
PPAtkTable = ^PAtkTable;
PAtkTable = ^TAtkTable;
TAtkTable = object
column_deleted: procedure(object_: gint; p0: gint); cdecl;
column_inserted: procedure(object_: gint; p0: gint); cdecl;
column_reordered: procedure; cdecl;
model_changed: procedure; cdecl;
row_deleted: procedure(object_: gint; p0: gint); cdecl;
row_inserted: procedure(object_: gint; p0: gint); cdecl;
row_reordered: procedure; cdecl;
function add_column_selection(column: gint): gboolean; cdecl; inline;
function add_row_selection(row: gint): gboolean; cdecl; inline;
function get_caption: PAtkObject; cdecl; inline;
function get_column_at_index(index_: gint): gint; cdecl; inline;
function get_column_description(column: gint): Pgchar; cdecl; inline;
function get_column_extent_at(row: gint; column: gint): gint; cdecl; inline;
function get_column_header(column: gint): PAtkObject; cdecl; inline;
function get_index_at(row: gint; column: gint): gint; cdecl; inline;
function get_n_columns: gint; cdecl; inline;
function get_n_rows: gint; cdecl; inline;
function get_row_at_index(index_: gint): gint; cdecl; inline;
function get_row_description(row: gint): Pgchar; cdecl; inline;
function get_row_extent_at(row: gint; column: gint): gint; cdecl; inline;
function get_row_header(row: gint): PAtkObject; cdecl; inline;
function get_selected_columns(selected: PPgint): gint; cdecl; inline;
function get_selected_rows(selected: PPgint): gint; cdecl; inline;
function get_summary: PAtkObject; cdecl; inline;
function is_column_selected(column: gint): gboolean; cdecl; inline;
function is_row_selected(row: gint): gboolean; cdecl; inline;
function is_selected(row: gint; column: gint): gboolean; cdecl; inline;
function ref_at(row: gint; column: gint): PAtkObject; cdecl; inline;
function remove_column_selection(column: gint): gboolean; cdecl; inline;
function remove_row_selection(row: gint): gboolean; cdecl; inline;
procedure set_caption(caption: PAtkObject); cdecl; inline;
procedure set_column_description(column: gint; description: Pgchar); cdecl; inline;
procedure set_column_header(column: gint; header: PAtkObject); cdecl; inline;
procedure set_row_description(row: gint; description: Pgchar); cdecl; inline;
procedure set_row_header(row: gint; header: PAtkObject); cdecl; inline;
procedure set_summary(accessible: PAtkObject); cdecl; inline;
end;
PPAtkText = ^PAtkText;
PAtkText = ^TAtkText;
PPAtkTextRange = ^PAtkTextRange;
PAtkTextRange = ^TAtkTextRange;
PPAtkTextRectangle = ^PAtkTextRectangle;
PAtkTextRectangle = ^TAtkTextRectangle;
PPAtkTextClipType = ^PAtkTextClipType;
PAtkTextClipType = ^TAtkTextClipType;
PPAtkTextBoundary = ^PAtkTextBoundary;
PAtkTextBoundary = ^TAtkTextBoundary;
TAtkText = object
text_attributes_changed: procedure; cdecl;
text_caret_moved: procedure(object_: gint); cdecl;
text_changed: procedure(object_: gint; p0: gint); cdecl;
text_insert: procedure(object_: gint; p0: gint; p1: Pgchar); cdecl;
text_remove: procedure(object_: gint; p0: gint; p1: Pgchar); cdecl;
text_selection_changed: procedure; cdecl;
text_update: procedure(object_: gint; p0: gint; p1: gint; p2: Pgchar); cdecl;
procedure free_ranges(ranges: PPAtkTextRange); cdecl; inline; static;
function add_selection(start_offset: gint; end_offset: gint): gboolean; cdecl; inline;
function get_bounded_ranges(rect: PAtkTextRectangle; coord_type: TAtkCoordType; x_clip_type: TAtkTextClipType; y_clip_type: TAtkTextClipType): PPAtkTextRange; cdecl; inline;
function get_caret_offset: gint; cdecl; inline;
function get_character_at_offset(offset: gint): gunichar; cdecl; inline;
function get_character_count: gint; cdecl; inline;
procedure get_character_extents(offset: gint; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coords: TAtkCoordType); cdecl; inline;
function get_default_attributes: PAtkAttributeSet; cdecl; inline;
function get_n_selections: gint; cdecl; inline;
function get_offset_at_point(x: gint; y: gint; coords: TAtkCoordType): gint; cdecl; inline;
procedure get_range_extents(start_offset: gint; end_offset: gint; coord_type: TAtkCoordType; rect: PAtkTextRectangle); cdecl; inline;
function get_run_attributes(offset: gint; start_offset: Pgint; end_offset: Pgint): PAtkAttributeSet; cdecl; inline;
function get_selection(selection_num: gint; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; inline;
function get_text(start_offset: gint; end_offset: gint): Pgchar; cdecl; inline;
function get_text_after_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; inline;
function get_text_at_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; inline;
function get_text_before_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; inline;
function remove_selection(selection_num: gint): gboolean; cdecl; inline;
function set_caret_offset(offset: gint): gboolean; cdecl; inline;
function set_selection(selection_num: gint; start_offset: gint; end_offset: gint): gboolean; cdecl; inline;
end;
PPAtkValue = ^PAtkValue;
PAtkValue = ^TAtkValue;
TAtkValue = object
procedure get_current_value(value: PGValue); cdecl; inline;
procedure get_maximum_value(value: PGValue); cdecl; inline;
procedure get_minimum_increment(value: PGValue); cdecl; inline;
procedure get_minimum_value(value: PGValue); cdecl; inline;
function set_current_value(value: PGValue): gboolean; cdecl; inline;
end;
PPAtkWindow = ^PAtkWindow;
PAtkWindow = ^TAtkWindow;
TAtkWindow = object
activate: procedure; cdecl;
create: procedure; cdecl;
deactivate: procedure; cdecl;
destroy_: procedure; cdecl;
maximize: procedure; cdecl;
minimize: procedure; cdecl;
move: procedure; cdecl;
resize: procedure; cdecl;
restore: procedure; cdecl;
end;
PPAtkNoOpObject = ^PAtkNoOpObject;
PAtkNoOpObject = ^TAtkNoOpObject;
TAtkNoOpObject = object(TAtkObject)
function new(obj: PGObject): PAtkNoOpObject; cdecl; inline; static;
end;
PPAtkNoOpObjectClass = ^PAtkNoOpObjectClass;
PAtkNoOpObjectClass = ^TAtkNoOpObjectClass;
TAtkNoOpObjectClass = object
parent_class: TAtkObjectClass;
end;
PPAtkObjectFactory = ^PAtkObjectFactory;
PAtkObjectFactory = ^TAtkObjectFactory;
TAtkObjectFactory = object(TGObject)
function create_accessible(obj: PGObject): PAtkObject; cdecl; inline;
function get_accessible_type: TGType; cdecl; inline;
procedure invalidate; cdecl; inline;
end;
PPAtkNoOpObjectFactory = ^PAtkNoOpObjectFactory;
PAtkNoOpObjectFactory = ^TAtkNoOpObjectFactory;
TAtkNoOpObjectFactory = object(TAtkObjectFactory)
function new: PAtkNoOpObjectFactory; cdecl; inline; static;
end;
PPAtkObjectFactoryClass = ^PAtkObjectFactoryClass;
PAtkObjectFactoryClass = ^TAtkObjectFactoryClass;
TAtkObjectFactoryClass = object
parent_class: TGObjectClass;
create_accessible: function(obj: PGObject): PAtkObject; cdecl;
invalidate: procedure(factory: PAtkObjectFactory); cdecl;
get_accessible_type: function: TGType; cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
end;
PPAtkNoOpObjectFactoryClass = ^PAtkNoOpObjectFactoryClass;
PAtkNoOpObjectFactoryClass = ^TAtkNoOpObjectFactoryClass;
TAtkNoOpObjectFactoryClass = object
parent_class: TAtkObjectFactoryClass;
end;
{ AtkPropertyValues* }
TAtkPropertyValues = record
{ opaque type }
Unknown: Pointer;
end;
PPAtkRelation = ^PAtkRelation;
PAtkRelation = ^TAtkRelation;
TAtkRelationSet = object(TGObject)
relations: gpointer;
function new: PAtkRelationSet; cdecl; inline; static;
procedure add(relation: PAtkRelation); cdecl; inline;
procedure add_relation_by_type(relationship: TAtkRelationType; target: PAtkObject); cdecl; inline;
function contains(relationship: TAtkRelationType): gboolean; cdecl; inline;
function contains_target(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; inline;
function get_n_relations: gint; cdecl; inline;
function get_relation(i: gint): PAtkRelation; cdecl; inline;
function get_relation_by_type(relationship: TAtkRelationType): PAtkRelation; cdecl; inline;
procedure remove(relation: PAtkRelation); cdecl; inline;
end;
PPAtkStateType = ^PAtkStateType;
PAtkStateType = ^TAtkStateType;
TAtkStateSet = object(TGObject)
function new: PAtkStateSet; cdecl; inline; static;
function add_state(type_: TAtkStateType): gboolean; cdecl; inline;
procedure add_states(types: PAtkStateType; n_types: gint); cdecl; inline;
function and_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl; inline;
procedure clear_states; cdecl; inline;
function contains_state(type_: TAtkStateType): gboolean; cdecl; inline;
function contains_states(types: PAtkStateType; n_types: gint): gboolean; cdecl; inline;
function is_empty: gboolean; cdecl; inline;
function or_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl; inline;
function remove_state(type_: TAtkStateType): gboolean; cdecl; inline;
function xor_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl; inline;
end;
PPAtkPlug = ^PAtkPlug;
PAtkPlug = ^TAtkPlug;
TAtkPlug = object(TAtkObject)
function new: PAtkPlug; cdecl; inline; static;
function get_id: Pgchar; cdecl; inline;
end;
PPAtkPlugClass = ^PAtkPlugClass;
PAtkPlugClass = ^TAtkPlugClass;
TAtkPlugClass = object
parent_class: TAtkObjectClass;
get_object_id: function(obj: PAtkPlug): Pgchar; cdecl;
end;
PPAtkRegistry = ^PAtkRegistry;
PAtkRegistry = ^TAtkRegistry;
TAtkRegistry = object(TGObject)
function get_factory(type_: TGType): PAtkObjectFactory; cdecl; inline;
function get_factory_type(type_: TGType): TGType; cdecl; inline;
procedure set_factory_type(type_: TGType; factory_type: TGType); cdecl; inline;
end;
TAtkRelation = object(TGObject)
target1: gpointer;
relationship: TAtkRelationType;
function new(targets: PPAtkObject; n_targets: gint; relationship: TAtkRelationType): PAtkRelation; cdecl; inline; static;
procedure add_target(target: PAtkObject); cdecl; inline;
function get_relation_type: TAtkRelationType; cdecl; inline;
function get_target: PAtkObject; cdecl; inline;
function remove_target(target: PAtkObject): gboolean; cdecl; inline;
property relation_type: TAtkRelationType read get_relation_type { property is writeable but setter not declared } ;
property target: PAtkObject read get_target { property is writeable but setter not declared } ;
end;
PPAtkRelationClass = ^PAtkRelationClass;
PAtkRelationClass = ^TAtkRelationClass;
TAtkRelationClass = object
parent: TGObjectClass;
end;
PPAtkRelationSetClass = ^PAtkRelationSetClass;
PAtkRelationSetClass = ^TAtkRelationSetClass;
TAtkRelationSetClass = object
parent: TGObjectClass;
pad1: TAtkFunction;
pad2: TAtkFunction;
end;
PPAtkSelectionIface = ^PAtkSelectionIface;
PAtkSelectionIface = ^TAtkSelectionIface;
TAtkSelectionIface = object
parent: TGTypeInterface;
add_selection: function(selection: PAtkSelection; i: gint): gboolean; cdecl;
clear_selection: function(selection: PAtkSelection): gboolean; cdecl;
ref_selection: function(selection: PAtkSelection; i: gint): PAtkObject; cdecl;
get_selection_count: function(selection: PAtkSelection): gint; cdecl;
is_child_selected: function(selection: PAtkSelection; i: gint): gboolean; cdecl;
remove_selection: function(selection: PAtkSelection; i: gint): gboolean; cdecl;
select_all_selection: function(selection: PAtkSelection): gboolean; cdecl;
selection_changed: procedure(selection: PAtkSelection); cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
end;
PPAtkSocket = ^PAtkSocket;
PAtkSocket = ^TAtkSocket;
TAtkSocket = object(TAtkObject)
embedded_plug_id: Pgchar;
function new: PAtkSocket; cdecl; inline; static;
procedure embed(plug_id: Pgchar); cdecl; inline;
function is_occupied: gboolean; cdecl; inline;
end;
PPAtkSocketClass = ^PAtkSocketClass;
PAtkSocketClass = ^TAtkSocketClass;
TAtkSocketClass = object
parent_class: TAtkObjectClass;
embed: procedure(obj: PAtkSocket; plug_id: Pgchar); cdecl;
end;
PPAtkStateSetClass = ^PAtkStateSetClass;
PAtkStateSetClass = ^TAtkStateSetClass;
TAtkStateSetClass = object
parent: TGObjectClass;
end;
PPAtkStreamableContent = ^PAtkStreamableContent;
PAtkStreamableContent = ^TAtkStreamableContent;
TAtkStreamableContent = object
function get_mime_type(i: gint): Pgchar; cdecl; inline;
function get_n_mime_types: gint; cdecl; inline;
function get_stream(mime_type: Pgchar): PGIOChannel; cdecl; inline;
function get_uri(mime_type: Pgchar): Pgchar; cdecl; inline;
end;
PPAtkStreamableContentIface = ^PAtkStreamableContentIface;
PAtkStreamableContentIface = ^TAtkStreamableContentIface;
TAtkStreamableContentIface = object
parent: TGTypeInterface;
get_n_mime_types: function(streamable: PAtkStreamableContent): gint; cdecl;
get_mime_type: function(streamable: PAtkStreamableContent; i: gint): Pgchar; cdecl;
get_stream: function(streamable: PAtkStreamableContent; mime_type: Pgchar): PGIOChannel; cdecl;
get_uri: function(streamable: PAtkStreamableContent; mime_type: Pgchar): Pgchar; cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
pad3: TAtkFunction;
end;
PPAtkTableIface = ^PAtkTableIface;
PAtkTableIface = ^TAtkTableIface;
TAtkTableIface = object
parent: TGTypeInterface;
ref_at: function(table: PAtkTable; row: gint; column: gint): PAtkObject; cdecl;
get_index_at: function(table: PAtkTable; row: gint; column: gint): gint; cdecl;
get_column_at_index: function(table: PAtkTable; index_: gint): gint; cdecl;
get_row_at_index: function(table: PAtkTable; index_: gint): gint; cdecl;
get_n_columns: function(table: PAtkTable): gint; cdecl;
get_n_rows: function(table: PAtkTable): gint; cdecl;
get_column_extent_at: function(table: PAtkTable; row: gint; column: gint): gint; cdecl;
get_row_extent_at: function(table: PAtkTable; row: gint; column: gint): gint; cdecl;
get_caption: function(table: PAtkTable): PAtkObject; cdecl;
get_column_description: function(table: PAtkTable; column: gint): Pgchar; cdecl;
get_column_header: function(table: PAtkTable; column: gint): PAtkObject; cdecl;
get_row_description: function(table: PAtkTable; row: gint): Pgchar; cdecl;
get_row_header: function(table: PAtkTable; row: gint): PAtkObject; cdecl;
get_summary: function(table: PAtkTable): PAtkObject; cdecl;
set_caption: procedure(table: PAtkTable; caption: PAtkObject); cdecl;
set_column_description: procedure(table: PAtkTable; column: gint; description: Pgchar); cdecl;
set_column_header: procedure(table: PAtkTable; column: gint; header: PAtkObject); cdecl;
set_row_description: procedure(table: PAtkTable; row: gint; description: Pgchar); cdecl;
set_row_header: procedure(table: PAtkTable; row: gint; header: PAtkObject); cdecl;
set_summary: procedure(table: PAtkTable; accessible: PAtkObject); cdecl;
get_selected_columns: function(table: PAtkTable; selected: PPgint): gint; cdecl;
get_selected_rows: function(table: PAtkTable; selected: PPgint): gint; cdecl;
is_column_selected: function(table: PAtkTable; column: gint): gboolean; cdecl;
is_row_selected: function(table: PAtkTable; row: gint): gboolean; cdecl;
is_selected: function(table: PAtkTable; row: gint; column: gint): gboolean; cdecl;
add_row_selection: function(table: PAtkTable; row: gint): gboolean; cdecl;
remove_row_selection: function(table: PAtkTable; row: gint): gboolean; cdecl;
add_column_selection: function(table: PAtkTable; column: gint): gboolean; cdecl;
remove_column_selection: function(table: PAtkTable; column: gint): gboolean; cdecl;
row_inserted: procedure(table: PAtkTable; row: gint; num_inserted: gint); cdecl;
column_inserted: procedure(table: PAtkTable; column: gint; num_inserted: gint); cdecl;
row_deleted: procedure(table: PAtkTable; row: gint; num_deleted: gint); cdecl;
column_deleted: procedure(table: PAtkTable; column: gint; num_deleted: gint); cdecl;
row_reordered: procedure(table: PAtkTable); cdecl;
column_reordered: procedure(table: PAtkTable); cdecl;
model_changed: procedure(table: PAtkTable); cdecl;
pad1: TAtkFunction;
pad2: TAtkFunction;
pad3: TAtkFunction;
pad4: TAtkFunction;
end;
TAtkTextRectangle = record
x: gint;
y: gint;
width: gint;
height: gint;
end;
TAtkTextRange = object
bounds: TAtkTextRectangle;
start_offset: gint;
end_offset: gint;
content: Pgchar;
end;
PPAtkTextAttribute = ^PAtkTextAttribute;
PAtkTextAttribute = ^TAtkTextAttribute;
PPAtkTextIface = ^PAtkTextIface;
PAtkTextIface = ^TAtkTextIface;
TAtkTextIface = object
parent: TGTypeInterface;
get_text: function(text: PAtkText; start_offset: gint; end_offset: gint): Pgchar; cdecl;
get_text_after_offset: function(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
get_text_at_offset: function(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
get_character_at_offset: function(text: PAtkText; offset: gint): gunichar; cdecl;
get_text_before_offset: function(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
get_caret_offset: function(text: PAtkText): gint; cdecl;
get_run_attributes: function(text: PAtkText; offset: gint; start_offset: Pgint; end_offset: Pgint): PAtkAttributeSet; cdecl;
get_default_attributes: function(text: PAtkText): PAtkAttributeSet; cdecl;
get_character_extents: procedure(text: PAtkText; offset: gint; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coords: TAtkCoordType); cdecl;
get_character_count: function(text: PAtkText): gint; cdecl;
get_offset_at_point: function(text: PAtkText; x: gint; y: gint; coords: TAtkCoordType): gint; cdecl;
get_n_selections: function(text: PAtkText): gint; cdecl;
get_selection: function(text: PAtkText; selection_num: gint; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
add_selection: function(text: PAtkText; start_offset: gint; end_offset: gint): gboolean; cdecl;
remove_selection: function(text: PAtkText; selection_num: gint): gboolean; cdecl;
set_selection: function(text: PAtkText; selection_num: gint; start_offset: gint; end_offset: gint): gboolean; cdecl;
set_caret_offset: function(text: PAtkText; offset: gint): gboolean; cdecl;
text_changed: procedure(text: PAtkText; position: gint; length: gint); cdecl;
text_caret_moved: procedure(text: PAtkText; location: gint); cdecl;
text_selection_changed: procedure(text: PAtkText); cdecl;
text_attributes_changed: procedure(text: PAtkText); cdecl;
get_range_extents: procedure(text: PAtkText; start_offset: gint; end_offset: gint; coord_type: TAtkCoordType; rect: PAtkTextRectangle); cdecl;
get_bounded_ranges: function(text: PAtkText; rect: PAtkTextRectangle; coord_type: TAtkCoordType; x_clip_type: TAtkTextClipType; y_clip_type: TAtkTextClipType): PPAtkTextRange; cdecl;
pad4: TAtkFunction;
end;
PPAtkUtil = ^PAtkUtil;
PAtkUtil = ^TAtkUtil;
TAtkUtil = object(TGObject)
end;
PPAtkUtilClass = ^PAtkUtilClass;
PAtkUtilClass = ^TAtkUtilClass;
PPAtkKeySnoopFunc = ^PAtkKeySnoopFunc;
PAtkKeySnoopFunc = ^TAtkKeySnoopFunc;
TAtkUtilClass = object
parent: TGObjectClass;
add_global_event_listener: function(listener: TGSignalEmissionHook; event_type: Pgchar): guint; cdecl;
remove_global_event_listener: procedure(listener_id: guint); cdecl;
add_key_event_listener: function(listener: TAtkKeySnoopFunc; data: gpointer): guint; cdecl;
remove_key_event_listener: procedure(listener_id: guint); cdecl;
get_root: function: PAtkObject; cdecl;
get_toolkit_name: function: Pgchar; cdecl;
get_toolkit_version: function: Pgchar; cdecl;
end;
PPAtkValueIface = ^PAtkValueIface;
PAtkValueIface = ^TAtkValueIface;
TAtkValueIface = object
parent: TGTypeInterface;
get_current_value: procedure(obj: PAtkValue; value: PGValue); cdecl;
get_maximum_value: procedure(obj: PAtkValue; value: PGValue); cdecl;
get_minimum_value: procedure(obj: PAtkValue; value: PGValue); cdecl;
set_current_value: function(obj: PAtkValue; value: PGValue): gboolean; cdecl;
get_minimum_increment: procedure(obj: PAtkValue; value: PGValue); cdecl;
pad1: TAtkFunction;
end;
PPAtkWindowIface = ^PAtkWindowIface;
PAtkWindowIface = ^TAtkWindowIface;
TAtkWindowIface = object
parent: TGTypeInterface;
_padding_dummy: array [0..15] of gpointer;
end;
PP_AtkPropertyValues = ^P_AtkPropertyValues;
P_AtkPropertyValues = ^T_AtkPropertyValues;
T_AtkPropertyValues = record
property_name: Pgchar;
old_value: TGValue;
new_value: TGValue;
end;
PP_AtkRegistry = ^P_AtkRegistry;
P_AtkRegistry = ^T_AtkRegistry;
T_AtkRegistry = record
parent: TGObject;
factory_type_registry: PGHashTable;
factory_singleton_cache: PGHashTable;
end;
PP_AtkRegistryClass = ^P_AtkRegistryClass;
P_AtkRegistryClass = ^T_AtkRegistryClass;
T_AtkRegistryClass = record
parent_class: TGObjectClass;
end;
function atk_action_do_action(action: PAtkAction; i: gint): gboolean; cdecl; external;
function atk_action_get_description(action: PAtkAction; i: gint): Pgchar; cdecl; external;
function atk_action_get_keybinding(action: PAtkAction; i: gint): Pgchar; cdecl; external;
function atk_action_get_localized_name(action: PAtkAction; i: gint): Pgchar; cdecl; external;
function atk_action_get_n_actions(action: PAtkAction): gint; cdecl; external;
function atk_action_get_name(action: PAtkAction; i: gint): Pgchar; cdecl; external;
function atk_action_get_type: TGType; cdecl; external;
function atk_action_set_description(action: PAtkAction; i: gint; desc: Pgchar): gboolean; cdecl; external;
function atk_add_focus_tracker(focus_tracker: TAtkEventListener): guint; cdecl; external;
function atk_add_global_event_listener(listener: TGSignalEmissionHook; event_type: Pgchar): guint; cdecl; external;
function atk_add_key_event_listener(listener: TAtkKeySnoopFunc; data: gpointer): guint; cdecl; external;
function atk_component_add_focus_handler(component: PAtkComponent; handler: TAtkFocusHandler): guint; cdecl; external;
function atk_component_contains(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl; external;
function atk_component_get_alpha(component: PAtkComponent): gdouble; cdecl; external;
function atk_component_get_layer(component: PAtkComponent): TAtkLayer; cdecl; external;
function atk_component_get_mdi_zorder(component: PAtkComponent): gint; cdecl; external;
function atk_component_get_type: TGType; cdecl; external;
function atk_component_grab_focus(component: PAtkComponent): gboolean; cdecl; external;
function atk_component_ref_accessible_at_point(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): PAtkObject; cdecl; external;
function atk_component_set_extents(component: PAtkComponent; x: gint; y: gint; width: gint; height: gint; coord_type: TAtkCoordType): gboolean; cdecl; external;
function atk_component_set_position(component: PAtkComponent; x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl; external;
function atk_component_set_size(component: PAtkComponent; width: gint; height: gint): gboolean; cdecl; external;
function atk_document_get_attribute_value(document: PAtkDocument; attribute_name: Pgchar): Pgchar; cdecl; external;
function atk_document_get_attributes(document: PAtkDocument): PAtkAttributeSet; cdecl; external;
function atk_document_get_document(document: PAtkDocument): gpointer; cdecl; external;
function atk_document_get_document_type(document: PAtkDocument): Pgchar; cdecl; external;
function atk_document_get_type: TGType; cdecl; external;
function atk_document_set_attribute_value(document: PAtkDocument; attribute_name: Pgchar; attribute_value: Pgchar): gboolean; cdecl; external;
function atk_editable_text_get_type: TGType; cdecl; external;
function atk_editable_text_set_run_attributes(text: PAtkEditableText; attrib_set: PAtkAttributeSet; start_offset: gint; end_offset: gint): gboolean; cdecl; external;
function atk_get_binary_age: guint; cdecl; external;
function atk_get_default_registry: PAtkRegistry; cdecl; external;
function atk_get_focus_object: PAtkObject; cdecl; external;
function atk_get_interface_age: guint; cdecl; external;
function atk_get_major_version: guint; cdecl; external;
function atk_get_micro_version: guint; cdecl; external;
function atk_get_minor_version: guint; cdecl; external;
function atk_get_root: PAtkObject; cdecl; external;
function atk_get_toolkit_name: Pgchar; cdecl; external;
function atk_get_toolkit_version: Pgchar; cdecl; external;
function atk_get_version: Pgchar; cdecl; external;
function atk_gobject_accessible_for_object(obj: PGObject): PAtkObject; cdecl; external;
function atk_gobject_accessible_get_object(obj: PAtkGObjectAccessible): PGObject; cdecl; external;
function atk_gobject_accessible_get_type: TGType; cdecl; external;
function atk_hyperlink_get_end_index(link_: PAtkHyperlink): gint; cdecl; external;
function atk_hyperlink_get_n_anchors(link_: PAtkHyperlink): gint; cdecl; external;
function atk_hyperlink_get_object(link_: PAtkHyperlink; i: gint): PAtkObject; cdecl; external;
function atk_hyperlink_get_start_index(link_: PAtkHyperlink): gint; cdecl; external;
function atk_hyperlink_get_type: TGType; cdecl; external;
function atk_hyperlink_get_uri(link_: PAtkHyperlink; i: gint): Pgchar; cdecl; external;
function atk_hyperlink_impl_get_hyperlink(impl: PAtkHyperlinkImpl): PAtkHyperlink; cdecl; external;
function atk_hyperlink_impl_get_type: TGType; cdecl; external;
function atk_hyperlink_is_inline(link_: PAtkHyperlink): gboolean; cdecl; external;
function atk_hyperlink_is_valid(link_: PAtkHyperlink): gboolean; cdecl; external;
function atk_hypertext_get_link(hypertext: PAtkHypertext; link_index: gint): PAtkHyperlink; cdecl; external;
function atk_hypertext_get_link_index(hypertext: PAtkHypertext; char_index: gint): gint; cdecl; external;
function atk_hypertext_get_n_links(hypertext: PAtkHypertext): gint; cdecl; external;
function atk_hypertext_get_type: TGType; cdecl; external;
function atk_image_get_image_description(image: PAtkImage): Pgchar; cdecl; external;
function atk_image_get_image_locale(image: PAtkImage): Pgchar; cdecl; external;
function atk_image_get_type: TGType; cdecl; external;
function atk_image_set_image_description(image: PAtkImage; description: Pgchar): gboolean; cdecl; external;
function atk_implementor_get_type: TGType; cdecl; external;
function atk_implementor_ref_accessible(implementor: PAtkImplementor): PAtkObject; cdecl; external;
function atk_misc_get_instance: PAtkMisc; cdecl; external;
function atk_misc_get_type: TGType; cdecl; external;
function atk_no_op_object_factory_get_type: TGType; cdecl; external;
function atk_no_op_object_factory_new: PAtkNoOpObjectFactory; cdecl; external;
function atk_no_op_object_get_type: TGType; cdecl; external;
function atk_no_op_object_new(obj: PGObject): PAtkNoOpObject; cdecl; external;
function atk_object_add_relationship(object_: PAtkObject; relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; external;
function atk_object_connect_property_change_handler(accessible: PAtkObject; handler: PAtkPropertyChangeHandler): guint; cdecl; external;
function atk_object_factory_create_accessible(factory: PAtkObjectFactory; obj: PGObject): PAtkObject; cdecl; external;
function atk_object_factory_get_accessible_type(factory: PAtkObjectFactory): TGType; cdecl; external;
function atk_object_factory_get_type: TGType; cdecl; external;
function atk_object_get_attributes(accessible: PAtkObject): PAtkAttributeSet; cdecl; external;
function atk_object_get_description(accessible: PAtkObject): Pgchar; cdecl; external;
function atk_object_get_index_in_parent(accessible: PAtkObject): gint; cdecl; external;
function atk_object_get_n_accessible_children(accessible: PAtkObject): gint; cdecl; external;
function atk_object_get_name(accessible: PAtkObject): Pgchar; cdecl; external;
function atk_object_get_object_locale(accessible: PAtkObject): Pgchar; cdecl; external;
function atk_object_get_parent(accessible: PAtkObject): PAtkObject; cdecl; external;
function atk_object_get_role(accessible: PAtkObject): TAtkRole; cdecl; external;
function atk_object_get_type: TGType; cdecl; external;
function atk_object_ref_accessible_child(accessible: PAtkObject; i: gint): PAtkObject; cdecl; external;
function atk_object_ref_relation_set(accessible: PAtkObject): PAtkRelationSet; cdecl; external;
function atk_object_ref_state_set(accessible: PAtkObject): PAtkStateSet; cdecl; external;
function atk_object_remove_relationship(object_: PAtkObject; relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; external;
function atk_plug_get_id(plug: PAtkPlug): Pgchar; cdecl; external;
function atk_plug_get_type: TGType; cdecl; external;
function atk_plug_new: PAtkPlug; cdecl; external;
function atk_rectangle_get_type: TGType; cdecl; external;
function atk_registry_get_factory(registry: PAtkRegistry; type_: TGType): PAtkObjectFactory; cdecl; external;
function atk_registry_get_factory_type(registry: PAtkRegistry; type_: TGType): TGType; cdecl; external;
function atk_registry_get_type: TGType; cdecl; external;
function atk_relation_get_relation_type(relation: PAtkRelation): TAtkRelationType; cdecl; external;
function atk_relation_get_target(relation: PAtkRelation): PAtkObject; cdecl; external;
function atk_relation_get_type: TGType; cdecl; external;
function atk_relation_new(targets: PPAtkObject; n_targets: gint; relationship: TAtkRelationType): PAtkRelation; cdecl; external;
function atk_relation_remove_target(relation: PAtkRelation; target: PAtkObject): gboolean; cdecl; external;
function atk_relation_set_contains(set_: PAtkRelationSet; relationship: TAtkRelationType): gboolean; cdecl; external;
function atk_relation_set_contains_target(set_: PAtkRelationSet; relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl; external;
function atk_relation_set_get_n_relations(set_: PAtkRelationSet): gint; cdecl; external;
function atk_relation_set_get_relation(set_: PAtkRelationSet; i: gint): PAtkRelation; cdecl; external;
function atk_relation_set_get_relation_by_type(set_: PAtkRelationSet; relationship: TAtkRelationType): PAtkRelation; cdecl; external;
function atk_relation_set_get_type: TGType; cdecl; external;
function atk_relation_set_new: PAtkRelationSet; cdecl; external;
function atk_relation_type_for_name(name: Pgchar): TAtkRelationType; cdecl; external;
function atk_relation_type_get_name(type_: TAtkRelationType): Pgchar; cdecl; external;
function atk_relation_type_register(name: Pgchar): TAtkRelationType; cdecl; external;
function atk_role_for_name(name: Pgchar): TAtkRole; cdecl; external;
function atk_role_get_localized_name(role: TAtkRole): Pgchar; cdecl; external;
function atk_role_get_name(role: TAtkRole): Pgchar; cdecl; external;
function atk_role_register(name: Pgchar): TAtkRole; cdecl; external;
function atk_selection_add_selection(selection: PAtkSelection; i: gint): gboolean; cdecl; external;
function atk_selection_clear_selection(selection: PAtkSelection): gboolean; cdecl; external;
function atk_selection_get_selection_count(selection: PAtkSelection): gint; cdecl; external;
function atk_selection_get_type: TGType; cdecl; external;
function atk_selection_is_child_selected(selection: PAtkSelection; i: gint): gboolean; cdecl; external;
function atk_selection_ref_selection(selection: PAtkSelection; i: gint): PAtkObject; cdecl; external;
function atk_selection_remove_selection(selection: PAtkSelection; i: gint): gboolean; cdecl; external;
function atk_selection_select_all_selection(selection: PAtkSelection): gboolean; cdecl; external;
function atk_socket_get_type: TGType; cdecl; external;
function atk_socket_is_occupied(obj: PAtkSocket): gboolean; cdecl; external;
function atk_socket_new: PAtkSocket; cdecl; external;
function atk_state_set_add_state(set_: PAtkStateSet; type_: TAtkStateType): gboolean; cdecl; external;
function atk_state_set_and_sets(set_: PAtkStateSet; compare_set: PAtkStateSet): PAtkStateSet; cdecl; external;
function atk_state_set_contains_state(set_: PAtkStateSet; type_: TAtkStateType): gboolean; cdecl; external;
function atk_state_set_contains_states(set_: PAtkStateSet; types: PAtkStateType; n_types: gint): gboolean; cdecl; external;
function atk_state_set_get_type: TGType; cdecl; external;
function atk_state_set_is_empty(set_: PAtkStateSet): gboolean; cdecl; external;
function atk_state_set_new: PAtkStateSet; cdecl; external;
function atk_state_set_or_sets(set_: PAtkStateSet; compare_set: PAtkStateSet): PAtkStateSet; cdecl; external;
function atk_state_set_remove_state(set_: PAtkStateSet; type_: TAtkStateType): gboolean; cdecl; external;
function atk_state_set_xor_sets(set_: PAtkStateSet; compare_set: PAtkStateSet): PAtkStateSet; cdecl; external;
function atk_state_type_for_name(name: Pgchar): TAtkStateType; cdecl; external;
function atk_state_type_get_name(type_: TAtkStateType): Pgchar; cdecl; external;
function atk_state_type_register(name: Pgchar): TAtkStateType; cdecl; external;
function atk_streamable_content_get_mime_type(streamable: PAtkStreamableContent; i: gint): Pgchar; cdecl; external;
function atk_streamable_content_get_n_mime_types(streamable: PAtkStreamableContent): gint; cdecl; external;
function atk_streamable_content_get_stream(streamable: PAtkStreamableContent; mime_type: Pgchar): PGIOChannel; cdecl; external;
function atk_streamable_content_get_type: TGType; cdecl; external;
function atk_streamable_content_get_uri(streamable: PAtkStreamableContent; mime_type: Pgchar): Pgchar; cdecl; external;
function atk_table_add_column_selection(table: PAtkTable; column: gint): gboolean; cdecl; external;
function atk_table_add_row_selection(table: PAtkTable; row: gint): gboolean; cdecl; external;
function atk_table_get_caption(table: PAtkTable): PAtkObject; cdecl; external;
function atk_table_get_column_at_index(table: PAtkTable; index_: gint): gint; cdecl; external;
function atk_table_get_column_description(table: PAtkTable; column: gint): Pgchar; cdecl; external;
function atk_table_get_column_extent_at(table: PAtkTable; row: gint; column: gint): gint; cdecl; external;
function atk_table_get_column_header(table: PAtkTable; column: gint): PAtkObject; cdecl; external;
function atk_table_get_index_at(table: PAtkTable; row: gint; column: gint): gint; cdecl; external;
function atk_table_get_n_columns(table: PAtkTable): gint; cdecl; external;
function atk_table_get_n_rows(table: PAtkTable): gint; cdecl; external;
function atk_table_get_row_at_index(table: PAtkTable; index_: gint): gint; cdecl; external;
function atk_table_get_row_description(table: PAtkTable; row: gint): Pgchar; cdecl; external;
function atk_table_get_row_extent_at(table: PAtkTable; row: gint; column: gint): gint; cdecl; external;
function atk_table_get_row_header(table: PAtkTable; row: gint): PAtkObject; cdecl; external;
function atk_table_get_selected_columns(table: PAtkTable; selected: PPgint): gint; cdecl; external;
function atk_table_get_selected_rows(table: PAtkTable; selected: PPgint): gint; cdecl; external;
function atk_table_get_summary(table: PAtkTable): PAtkObject; cdecl; external;
function atk_table_get_type: TGType; cdecl; external;
function atk_table_is_column_selected(table: PAtkTable; column: gint): gboolean; cdecl; external;
function atk_table_is_row_selected(table: PAtkTable; row: gint): gboolean; cdecl; external;
function atk_table_is_selected(table: PAtkTable; row: gint; column: gint): gboolean; cdecl; external;
function atk_table_ref_at(table: PAtkTable; row: gint; column: gint): PAtkObject; cdecl; external;
function atk_table_remove_column_selection(table: PAtkTable; column: gint): gboolean; cdecl; external;
function atk_table_remove_row_selection(table: PAtkTable; row: gint): gboolean; cdecl; external;
function atk_text_add_selection(text: PAtkText; start_offset: gint; end_offset: gint): gboolean; cdecl; external;
function atk_text_attribute_for_name(name: Pgchar): TAtkTextAttribute; cdecl; external;
function atk_text_attribute_get_name(attr: TAtkTextAttribute): Pgchar; cdecl; external;
function atk_text_attribute_get_value(attr: TAtkTextAttribute; index_: gint): Pgchar; cdecl; external;
function atk_text_attribute_register(name: Pgchar): TAtkTextAttribute; cdecl; external;
function atk_text_get_bounded_ranges(text: PAtkText; rect: PAtkTextRectangle; coord_type: TAtkCoordType; x_clip_type: TAtkTextClipType; y_clip_type: TAtkTextClipType): PPAtkTextRange; cdecl; external;
function atk_text_get_caret_offset(text: PAtkText): gint; cdecl; external;
function atk_text_get_character_at_offset(text: PAtkText; offset: gint): gunichar; cdecl; external;
function atk_text_get_character_count(text: PAtkText): gint; cdecl; external;
function atk_text_get_default_attributes(text: PAtkText): PAtkAttributeSet; cdecl; external;
function atk_text_get_n_selections(text: PAtkText): gint; cdecl; external;
function atk_text_get_offset_at_point(text: PAtkText; x: gint; y: gint; coords: TAtkCoordType): gint; cdecl; external;
function atk_text_get_run_attributes(text: PAtkText; offset: gint; start_offset: Pgint; end_offset: Pgint): PAtkAttributeSet; cdecl; external;
function atk_text_get_selection(text: PAtkText; selection_num: gint; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; external;
function atk_text_get_text(text: PAtkText; start_offset: gint; end_offset: gint): Pgchar; cdecl; external;
function atk_text_get_text_after_offset(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; external;
function atk_text_get_text_at_offset(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; external;
function atk_text_get_text_before_offset(text: PAtkText; offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl; external;
function atk_text_get_type: TGType; cdecl; external;
function atk_text_range_get_type: TGType; cdecl; external;
function atk_text_remove_selection(text: PAtkText; selection_num: gint): gboolean; cdecl; external;
function atk_text_set_caret_offset(text: PAtkText; offset: gint): gboolean; cdecl; external;
function atk_text_set_selection(text: PAtkText; selection_num: gint; start_offset: gint; end_offset: gint): gboolean; cdecl; external;
function atk_util_get_type: TGType; cdecl; external;
function atk_value_get_type: TGType; cdecl; external;
function atk_value_set_current_value(obj: PAtkValue; value: PGValue): gboolean; cdecl; external;
function atk_window_get_type: TGType; cdecl; external;
procedure atk_attribute_set_free(attrib_set: PAtkAttributeSet); cdecl; external;
procedure atk_component_get_extents(component: PAtkComponent; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coord_type: TAtkCoordType); cdecl; external;
procedure atk_component_get_position(component: PAtkComponent; x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl; external;
procedure atk_component_get_size(component: PAtkComponent; width: Pgint; height: Pgint); cdecl; external;
procedure atk_component_remove_focus_handler(component: PAtkComponent; handler_id: guint); cdecl; external;
procedure atk_editable_text_copy_text(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl; external;
procedure atk_editable_text_cut_text(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl; external;
procedure atk_editable_text_delete_text(text: PAtkEditableText; start_pos: gint; end_pos: gint); cdecl; external;
procedure atk_editable_text_insert_text(text: PAtkEditableText; string_: Pgchar; length: gint; position: Pgint); cdecl; external;
procedure atk_editable_text_paste_text(text: PAtkEditableText; position: gint); cdecl; external;
procedure atk_editable_text_set_text_contents(text: PAtkEditableText; string_: Pgchar); cdecl; external;
procedure atk_focus_tracker_init(init: TAtkEventListenerInit); cdecl; external;
procedure atk_focus_tracker_notify(object_: PAtkObject); cdecl; external;
procedure atk_image_get_image_position(image: PAtkImage; x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl; external;
procedure atk_image_get_image_size(image: PAtkImage; width: Pgint; height: Pgint); cdecl; external;
procedure atk_misc_threads_enter(misc: PAtkMisc); cdecl; external;
procedure atk_misc_threads_leave(misc: PAtkMisc); cdecl; external;
procedure atk_object_factory_invalidate(factory: PAtkObjectFactory); cdecl; external;
procedure atk_object_initialize(accessible: PAtkObject; data: gpointer); cdecl; external;
procedure atk_object_notify_state_change(accessible: PAtkObject; state: TAtkState; value: gboolean); cdecl; external;
procedure atk_object_remove_property_change_handler(accessible: PAtkObject; handler_id: guint); cdecl; external;
procedure atk_object_set_description(accessible: PAtkObject; description: Pgchar); cdecl; external;
procedure atk_object_set_name(accessible: PAtkObject; name: Pgchar); cdecl; external;
procedure atk_object_set_parent(accessible: PAtkObject; parent: PAtkObject); cdecl; external;
procedure atk_object_set_role(accessible: PAtkObject; role: TAtkRole); cdecl; external;
procedure atk_registry_set_factory_type(registry: PAtkRegistry; type_: TGType; factory_type: TGType); cdecl; external;
procedure atk_relation_add_target(relation: PAtkRelation; target: PAtkObject); cdecl; external;
procedure atk_relation_set_add(set_: PAtkRelationSet; relation: PAtkRelation); cdecl; external;
procedure atk_relation_set_add_relation_by_type(set_: PAtkRelationSet; relationship: TAtkRelationType; target: PAtkObject); cdecl; external;
procedure atk_relation_set_remove(set_: PAtkRelationSet; relation: PAtkRelation); cdecl; external;
procedure atk_remove_focus_tracker(tracker_id: guint); cdecl; external;
procedure atk_remove_global_event_listener(listener_id: guint); cdecl; external;
procedure atk_remove_key_event_listener(listener_id: guint); cdecl; external;
procedure atk_socket_embed(obj: PAtkSocket; plug_id: Pgchar); cdecl; external;
procedure atk_state_set_add_states(set_: PAtkStateSet; types: PAtkStateType; n_types: gint); cdecl; external;
procedure atk_state_set_clear_states(set_: PAtkStateSet); cdecl; external;
procedure atk_table_set_caption(table: PAtkTable; caption: PAtkObject); cdecl; external;
procedure atk_table_set_column_description(table: PAtkTable; column: gint; description: Pgchar); cdecl; external;
procedure atk_table_set_column_header(table: PAtkTable; column: gint; header: PAtkObject); cdecl; external;
procedure atk_table_set_row_description(table: PAtkTable; row: gint; description: Pgchar); cdecl; external;
procedure atk_table_set_row_header(table: PAtkTable; row: gint; header: PAtkObject); cdecl; external;
procedure atk_table_set_summary(table: PAtkTable; accessible: PAtkObject); cdecl; external;
procedure atk_text_free_ranges(ranges: PPAtkTextRange); cdecl; external;
procedure atk_text_get_character_extents(text: PAtkText; offset: gint; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coords: TAtkCoordType); cdecl; external;
procedure atk_text_get_range_extents(text: PAtkText; start_offset: gint; end_offset: gint; coord_type: TAtkCoordType; rect: PAtkTextRectangle); cdecl; external;
procedure atk_value_get_current_value(obj: PAtkValue; value: PGValue); cdecl; external;
procedure atk_value_get_maximum_value(obj: PAtkValue; value: PGValue); cdecl; external;
procedure atk_value_get_minimum_increment(obj: PAtkValue; value: PGValue); cdecl; external;
procedure atk_value_get_minimum_value(obj: PAtkValue; value: PGValue); cdecl; external;
implementation
function TAtkAction.do_action(i: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_action_do_action(@self, i);
end;
function TAtkAction.get_description(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_action_get_description(@self, i);
end;
function TAtkAction.get_keybinding(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_action_get_keybinding(@self, i);
end;
function TAtkAction.get_localized_name(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_action_get_localized_name(@self, i);
end;
function TAtkAction.get_n_actions: gint; cdecl;
begin
Result := LazAtk1.atk_action_get_n_actions(@self);
end;
function TAtkAction.get_name(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_action_get_name(@self, i);
end;
function TAtkAction.set_description(i: gint; desc: Pgchar): gboolean; cdecl;
begin
Result := LazAtk1.atk_action_set_description(@self, i, desc);
end;
procedure TAtkAttribute.set_free(attrib_set: PAtkAttributeSet); cdecl;
begin
LazAtk1.atk_attribute_set_free(attrib_set);
end;
function TAtkComponent.add_focus_handler(handler: TAtkFocusHandler): guint; cdecl;
begin
Result := LazAtk1.atk_component_add_focus_handler(@self, handler);
end;
function TAtkComponent.contains(x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl;
begin
Result := LazAtk1.atk_component_contains(@self, x, y, coord_type);
end;
function TAtkComponent.get_alpha: gdouble; cdecl;
begin
Result := LazAtk1.atk_component_get_alpha(@self);
end;
procedure TAtkComponent.get_extents(x: Pgint; y: Pgint; width: Pgint; height: Pgint; coord_type: TAtkCoordType); cdecl;
begin
LazAtk1.atk_component_get_extents(@self, x, y, width, height, coord_type);
end;
function TAtkComponent.get_layer: TAtkLayer; cdecl;
begin
Result := LazAtk1.atk_component_get_layer(@self);
end;
function TAtkComponent.get_mdi_zorder: gint; cdecl;
begin
Result := LazAtk1.atk_component_get_mdi_zorder(@self);
end;
procedure TAtkComponent.get_position(x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl;
begin
LazAtk1.atk_component_get_position(@self, x, y, coord_type);
end;
procedure TAtkComponent.get_size(width: Pgint; height: Pgint); cdecl;
begin
LazAtk1.atk_component_get_size(@self, width, height);
end;
function TAtkComponent.grab_focus: gboolean; cdecl;
begin
Result := LazAtk1.atk_component_grab_focus(@self);
end;
function TAtkComponent.ref_accessible_at_point(x: gint; y: gint; coord_type: TAtkCoordType): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_component_ref_accessible_at_point(@self, x, y, coord_type);
end;
procedure TAtkComponent.remove_focus_handler(handler_id: guint); cdecl;
begin
LazAtk1.atk_component_remove_focus_handler(@self, handler_id);
end;
function TAtkComponent.set_extents(x: gint; y: gint; width: gint; height: gint; coord_type: TAtkCoordType): gboolean; cdecl;
begin
Result := LazAtk1.atk_component_set_extents(@self, x, y, width, height, coord_type);
end;
function TAtkComponent.set_position(x: gint; y: gint; coord_type: TAtkCoordType): gboolean; cdecl;
begin
Result := LazAtk1.atk_component_set_position(@self, x, y, coord_type);
end;
function TAtkComponent.set_size(width: gint; height: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_component_set_size(@self, width, height);
end;
function TAtkObject.add_relationship(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl;
begin
Result := LazAtk1.atk_object_add_relationship(@self, relationship, target);
end;
function TAtkObject.connect_property_change_handler(handler: PAtkPropertyChangeHandler): guint; cdecl;
begin
Result := LazAtk1.atk_object_connect_property_change_handler(@self, handler);
end;
function TAtkObject.get_attributes: PAtkAttributeSet; cdecl;
begin
Result := LazAtk1.atk_object_get_attributes(@self);
end;
function TAtkObject.get_description: Pgchar; cdecl;
begin
Result := LazAtk1.atk_object_get_description(@self);
end;
function TAtkObject.get_index_in_parent: gint; cdecl;
begin
Result := LazAtk1.atk_object_get_index_in_parent(@self);
end;
function TAtkObject.get_n_accessible_children: gint; cdecl;
begin
Result := LazAtk1.atk_object_get_n_accessible_children(@self);
end;
function TAtkObject.get_name: Pgchar; cdecl;
begin
Result := LazAtk1.atk_object_get_name(@self);
end;
function TAtkObject.get_object_locale: Pgchar; cdecl;
begin
Result := LazAtk1.atk_object_get_object_locale(@self);
end;
function TAtkObject.get_parent: PAtkObject; cdecl;
begin
Result := LazAtk1.atk_object_get_parent(@self);
end;
function TAtkObject.get_role: TAtkRole; cdecl;
begin
Result := LazAtk1.atk_object_get_role(@self);
end;
procedure TAtkObject.initialize(data: gpointer); cdecl;
begin
LazAtk1.atk_object_initialize(@self, data);
end;
procedure TAtkObject.notify_state_change(state: TAtkState; value: gboolean); cdecl;
begin
LazAtk1.atk_object_notify_state_change(@self, state, value);
end;
function TAtkObject.ref_accessible_child(i: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_object_ref_accessible_child(@self, i);
end;
function TAtkObject.ref_relation_set: PAtkRelationSet; cdecl;
begin
Result := LazAtk1.atk_object_ref_relation_set(@self);
end;
function TAtkObject.ref_state_set: PAtkStateSet; cdecl;
begin
Result := LazAtk1.atk_object_ref_state_set(@self);
end;
procedure TAtkObject.remove_property_change_handler(handler_id: guint); cdecl;
begin
LazAtk1.atk_object_remove_property_change_handler(@self, handler_id);
end;
function TAtkObject.remove_relationship(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl;
begin
Result := LazAtk1.atk_object_remove_relationship(@self, relationship, target);
end;
procedure TAtkObject.set_description(description: Pgchar); cdecl;
begin
LazAtk1.atk_object_set_description(@self, description);
end;
procedure TAtkObject.set_name(name: Pgchar); cdecl;
begin
LazAtk1.atk_object_set_name(@self, name);
end;
procedure TAtkObject.set_parent(parent: PAtkObject); cdecl;
begin
LazAtk1.atk_object_set_parent(@self, parent);
end;
procedure TAtkObject.set_role(role: TAtkRole); cdecl;
begin
LazAtk1.atk_object_set_role(@self, role);
end;
function TAtkDocument.get_attribute_value(attribute_name: Pgchar): Pgchar; cdecl;
begin
Result := LazAtk1.atk_document_get_attribute_value(@self, attribute_name);
end;
function TAtkDocument.get_attributes: PAtkAttributeSet; cdecl;
begin
Result := LazAtk1.atk_document_get_attributes(@self);
end;
function TAtkDocument.get_document: gpointer; cdecl;
begin
Result := LazAtk1.atk_document_get_document(@self);
end;
function TAtkDocument.get_document_type: Pgchar; cdecl;
begin
Result := LazAtk1.atk_document_get_document_type(@self);
end;
function TAtkDocument.set_attribute_value(attribute_name: Pgchar; attribute_value: Pgchar): gboolean; cdecl;
begin
Result := LazAtk1.atk_document_set_attribute_value(@self, attribute_name, attribute_value);
end;
procedure TAtkEditableText.copy_text(start_pos: gint; end_pos: gint); cdecl;
begin
LazAtk1.atk_editable_text_copy_text(@self, start_pos, end_pos);
end;
procedure TAtkEditableText.cut_text(start_pos: gint; end_pos: gint); cdecl;
begin
LazAtk1.atk_editable_text_cut_text(@self, start_pos, end_pos);
end;
procedure TAtkEditableText.delete_text(start_pos: gint; end_pos: gint); cdecl;
begin
LazAtk1.atk_editable_text_delete_text(@self, start_pos, end_pos);
end;
procedure TAtkEditableText.insert_text(string_: Pgchar; length: gint; position: Pgint); cdecl;
begin
LazAtk1.atk_editable_text_insert_text(@self, string_, length, position);
end;
procedure TAtkEditableText.paste_text(position: gint); cdecl;
begin
LazAtk1.atk_editable_text_paste_text(@self, position);
end;
function TAtkEditableText.set_run_attributes(attrib_set: PAtkAttributeSet; start_offset: gint; end_offset: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_editable_text_set_run_attributes(@self, attrib_set, start_offset, end_offset);
end;
procedure TAtkEditableText.set_text_contents(string_: Pgchar); cdecl;
begin
LazAtk1.atk_editable_text_set_text_contents(@self, string_);
end;
function TAtkGObjectAccessible.for_object(obj: PGObject): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_gobject_accessible_for_object(obj);
end;
function TAtkGObjectAccessible.get_object: PGObject; cdecl;
begin
Result := LazAtk1.atk_gobject_accessible_get_object(@self);
end;
function TAtkHyperlink.get_end_index: gint; cdecl;
begin
Result := LazAtk1.atk_hyperlink_get_end_index(@self);
end;
function TAtkHyperlink.get_n_anchors: gint; cdecl;
begin
Result := LazAtk1.atk_hyperlink_get_n_anchors(@self);
end;
function TAtkHyperlink.get_object(i: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_hyperlink_get_object(@self, i);
end;
function TAtkHyperlink.get_start_index: gint; cdecl;
begin
Result := LazAtk1.atk_hyperlink_get_start_index(@self);
end;
function TAtkHyperlink.get_uri(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_hyperlink_get_uri(@self, i);
end;
function TAtkHyperlink.is_inline: gboolean; cdecl;
begin
Result := LazAtk1.atk_hyperlink_is_inline(@self);
end;
function TAtkHyperlink.is_valid: gboolean; cdecl;
begin
Result := LazAtk1.atk_hyperlink_is_valid(@self);
end;
function TAtkHyperlinkImpl.get_hyperlink: PAtkHyperlink; cdecl;
begin
Result := LazAtk1.atk_hyperlink_impl_get_hyperlink(@self);
end;
function TAtkHypertext.get_link(link_index: gint): PAtkHyperlink; cdecl;
begin
Result := LazAtk1.atk_hypertext_get_link(@self, link_index);
end;
function TAtkHypertext.get_link_index(char_index: gint): gint; cdecl;
begin
Result := LazAtk1.atk_hypertext_get_link_index(@self, char_index);
end;
function TAtkHypertext.get_n_links: gint; cdecl;
begin
Result := LazAtk1.atk_hypertext_get_n_links(@self);
end;
function TAtkImage.get_image_description: Pgchar; cdecl;
begin
Result := LazAtk1.atk_image_get_image_description(@self);
end;
function TAtkImage.get_image_locale: Pgchar; cdecl;
begin
Result := LazAtk1.atk_image_get_image_locale(@self);
end;
procedure TAtkImage.get_image_position(x: Pgint; y: Pgint; coord_type: TAtkCoordType); cdecl;
begin
LazAtk1.atk_image_get_image_position(@self, x, y, coord_type);
end;
procedure TAtkImage.get_image_size(width: Pgint; height: Pgint); cdecl;
begin
LazAtk1.atk_image_get_image_size(@self, width, height);
end;
function TAtkImage.set_image_description(description: Pgchar): gboolean; cdecl;
begin
Result := LazAtk1.atk_image_set_image_description(@self, description);
end;
function TAtkImplementor.ref_accessible: PAtkObject; cdecl;
begin
Result := LazAtk1.atk_implementor_ref_accessible(@self);
end;
function TAtkMisc.get_instance: PAtkMisc; cdecl;
begin
Result := LazAtk1.atk_misc_get_instance();
end;
procedure TAtkMisc.threads_enter; cdecl;
begin
LazAtk1.atk_misc_threads_enter(@self);
end;
procedure TAtkMisc.threads_leave; cdecl;
begin
LazAtk1.atk_misc_threads_leave(@self);
end;
function TAtkSelection.add_selection(i: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_selection_add_selection(@self, i);
end;
function TAtkSelection.clear_selection: gboolean; cdecl;
begin
Result := LazAtk1.atk_selection_clear_selection(@self);
end;
function TAtkSelection.get_selection_count: gint; cdecl;
begin
Result := LazAtk1.atk_selection_get_selection_count(@self);
end;
function TAtkSelection.is_child_selected(i: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_selection_is_child_selected(@self, i);
end;
function TAtkSelection.ref_selection(i: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_selection_ref_selection(@self, i);
end;
function TAtkSelection.remove_selection(i: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_selection_remove_selection(@self, i);
end;
function TAtkSelection.select_all_selection: gboolean; cdecl;
begin
Result := LazAtk1.atk_selection_select_all_selection(@self);
end;
function TAtkTable.add_column_selection(column: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_add_column_selection(@self, column);
end;
function TAtkTable.add_row_selection(row: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_add_row_selection(@self, row);
end;
function TAtkTable.get_caption: PAtkObject; cdecl;
begin
Result := LazAtk1.atk_table_get_caption(@self);
end;
function TAtkTable.get_column_at_index(index_: gint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_column_at_index(@self, index_);
end;
function TAtkTable.get_column_description(column: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_table_get_column_description(@self, column);
end;
function TAtkTable.get_column_extent_at(row: gint; column: gint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_column_extent_at(@self, row, column);
end;
function TAtkTable.get_column_header(column: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_table_get_column_header(@self, column);
end;
function TAtkTable.get_index_at(row: gint; column: gint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_index_at(@self, row, column);
end;
function TAtkTable.get_n_columns: gint; cdecl;
begin
Result := LazAtk1.atk_table_get_n_columns(@self);
end;
function TAtkTable.get_n_rows: gint; cdecl;
begin
Result := LazAtk1.atk_table_get_n_rows(@self);
end;
function TAtkTable.get_row_at_index(index_: gint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_row_at_index(@self, index_);
end;
function TAtkTable.get_row_description(row: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_table_get_row_description(@self, row);
end;
function TAtkTable.get_row_extent_at(row: gint; column: gint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_row_extent_at(@self, row, column);
end;
function TAtkTable.get_row_header(row: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_table_get_row_header(@self, row);
end;
function TAtkTable.get_selected_columns(selected: PPgint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_selected_columns(@self, selected);
end;
function TAtkTable.get_selected_rows(selected: PPgint): gint; cdecl;
begin
Result := LazAtk1.atk_table_get_selected_rows(@self, selected);
end;
function TAtkTable.get_summary: PAtkObject; cdecl;
begin
Result := LazAtk1.atk_table_get_summary(@self);
end;
function TAtkTable.is_column_selected(column: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_is_column_selected(@self, column);
end;
function TAtkTable.is_row_selected(row: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_is_row_selected(@self, row);
end;
function TAtkTable.is_selected(row: gint; column: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_is_selected(@self, row, column);
end;
function TAtkTable.ref_at(row: gint; column: gint): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_table_ref_at(@self, row, column);
end;
function TAtkTable.remove_column_selection(column: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_remove_column_selection(@self, column);
end;
function TAtkTable.remove_row_selection(row: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_table_remove_row_selection(@self, row);
end;
procedure TAtkTable.set_caption(caption: PAtkObject); cdecl;
begin
LazAtk1.atk_table_set_caption(@self, caption);
end;
procedure TAtkTable.set_column_description(column: gint; description: Pgchar); cdecl;
begin
LazAtk1.atk_table_set_column_description(@self, column, description);
end;
procedure TAtkTable.set_column_header(column: gint; header: PAtkObject); cdecl;
begin
LazAtk1.atk_table_set_column_header(@self, column, header);
end;
procedure TAtkTable.set_row_description(row: gint; description: Pgchar); cdecl;
begin
LazAtk1.atk_table_set_row_description(@self, row, description);
end;
procedure TAtkTable.set_row_header(row: gint; header: PAtkObject); cdecl;
begin
LazAtk1.atk_table_set_row_header(@self, row, header);
end;
procedure TAtkTable.set_summary(accessible: PAtkObject); cdecl;
begin
LazAtk1.atk_table_set_summary(@self, accessible);
end;
procedure TAtkText.free_ranges(ranges: PPAtkTextRange); cdecl;
begin
LazAtk1.atk_text_free_ranges(ranges);
end;
function TAtkText.add_selection(start_offset: gint; end_offset: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_text_add_selection(@self, start_offset, end_offset);
end;
function TAtkText.get_bounded_ranges(rect: PAtkTextRectangle; coord_type: TAtkCoordType; x_clip_type: TAtkTextClipType; y_clip_type: TAtkTextClipType): PPAtkTextRange; cdecl;
begin
Result := LazAtk1.atk_text_get_bounded_ranges(@self, rect, coord_type, x_clip_type, y_clip_type);
end;
function TAtkText.get_caret_offset: gint; cdecl;
begin
Result := LazAtk1.atk_text_get_caret_offset(@self);
end;
function TAtkText.get_character_at_offset(offset: gint): gunichar; cdecl;
begin
Result := LazAtk1.atk_text_get_character_at_offset(@self, offset);
end;
function TAtkText.get_character_count: gint; cdecl;
begin
Result := LazAtk1.atk_text_get_character_count(@self);
end;
procedure TAtkText.get_character_extents(offset: gint; x: Pgint; y: Pgint; width: Pgint; height: Pgint; coords: TAtkCoordType); cdecl;
begin
LazAtk1.atk_text_get_character_extents(@self, offset, x, y, width, height, coords);
end;
function TAtkText.get_default_attributes: PAtkAttributeSet; cdecl;
begin
Result := LazAtk1.atk_text_get_default_attributes(@self);
end;
function TAtkText.get_n_selections: gint; cdecl;
begin
Result := LazAtk1.atk_text_get_n_selections(@self);
end;
function TAtkText.get_offset_at_point(x: gint; y: gint; coords: TAtkCoordType): gint; cdecl;
begin
Result := LazAtk1.atk_text_get_offset_at_point(@self, x, y, coords);
end;
procedure TAtkText.get_range_extents(start_offset: gint; end_offset: gint; coord_type: TAtkCoordType; rect: PAtkTextRectangle); cdecl;
begin
LazAtk1.atk_text_get_range_extents(@self, start_offset, end_offset, coord_type, rect);
end;
function TAtkText.get_run_attributes(offset: gint; start_offset: Pgint; end_offset: Pgint): PAtkAttributeSet; cdecl;
begin
Result := LazAtk1.atk_text_get_run_attributes(@self, offset, start_offset, end_offset);
end;
function TAtkText.get_selection(selection_num: gint; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_text_get_selection(@self, selection_num, start_offset, end_offset);
end;
function TAtkText.get_text(start_offset: gint; end_offset: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_text_get_text(@self, start_offset, end_offset);
end;
function TAtkText.get_text_after_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_text_get_text_after_offset(@self, offset, boundary_type, start_offset, end_offset);
end;
function TAtkText.get_text_at_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_text_get_text_at_offset(@self, offset, boundary_type, start_offset, end_offset);
end;
function TAtkText.get_text_before_offset(offset: gint; boundary_type: TAtkTextBoundary; start_offset: Pgint; end_offset: Pgint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_text_get_text_before_offset(@self, offset, boundary_type, start_offset, end_offset);
end;
function TAtkText.remove_selection(selection_num: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_text_remove_selection(@self, selection_num);
end;
function TAtkText.set_caret_offset(offset: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_text_set_caret_offset(@self, offset);
end;
function TAtkText.set_selection(selection_num: gint; start_offset: gint; end_offset: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_text_set_selection(@self, selection_num, start_offset, end_offset);
end;
procedure TAtkValue.get_current_value(value: PGValue); cdecl;
begin
LazAtk1.atk_value_get_current_value(@self, value);
end;
procedure TAtkValue.get_maximum_value(value: PGValue); cdecl;
begin
LazAtk1.atk_value_get_maximum_value(@self, value);
end;
procedure TAtkValue.get_minimum_increment(value: PGValue); cdecl;
begin
LazAtk1.atk_value_get_minimum_increment(@self, value);
end;
procedure TAtkValue.get_minimum_value(value: PGValue); cdecl;
begin
LazAtk1.atk_value_get_minimum_value(@self, value);
end;
function TAtkValue.set_current_value(value: PGValue): gboolean; cdecl;
begin
Result := LazAtk1.atk_value_set_current_value(@self, value);
end;
function TAtkNoOpObject.new(obj: PGObject): PAtkNoOpObject; cdecl;
begin
Result := LazAtk1.atk_no_op_object_new(obj);
end;
function TAtkObjectFactory.create_accessible(obj: PGObject): PAtkObject; cdecl;
begin
Result := LazAtk1.atk_object_factory_create_accessible(@self, obj);
end;
function TAtkObjectFactory.get_accessible_type: TGType; cdecl;
begin
Result := LazAtk1.atk_object_factory_get_accessible_type(@self);
end;
procedure TAtkObjectFactory.invalidate; cdecl;
begin
LazAtk1.atk_object_factory_invalidate(@self);
end;
function TAtkNoOpObjectFactory.new: PAtkNoOpObjectFactory; cdecl;
begin
Result := LazAtk1.atk_no_op_object_factory_new();
end;
function TAtkRelationSet.new: PAtkRelationSet; cdecl;
begin
Result := LazAtk1.atk_relation_set_new();
end;
procedure TAtkRelationSet.add(relation: PAtkRelation); cdecl;
begin
LazAtk1.atk_relation_set_add(@self, relation);
end;
procedure TAtkRelationSet.add_relation_by_type(relationship: TAtkRelationType; target: PAtkObject); cdecl;
begin
LazAtk1.atk_relation_set_add_relation_by_type(@self, relationship, target);
end;
function TAtkRelationSet.contains(relationship: TAtkRelationType): gboolean; cdecl;
begin
Result := LazAtk1.atk_relation_set_contains(@self, relationship);
end;
function TAtkRelationSet.contains_target(relationship: TAtkRelationType; target: PAtkObject): gboolean; cdecl;
begin
Result := LazAtk1.atk_relation_set_contains_target(@self, relationship, target);
end;
function TAtkRelationSet.get_n_relations: gint; cdecl;
begin
Result := LazAtk1.atk_relation_set_get_n_relations(@self);
end;
function TAtkRelationSet.get_relation(i: gint): PAtkRelation; cdecl;
begin
Result := LazAtk1.atk_relation_set_get_relation(@self, i);
end;
function TAtkRelationSet.get_relation_by_type(relationship: TAtkRelationType): PAtkRelation; cdecl;
begin
Result := LazAtk1.atk_relation_set_get_relation_by_type(@self, relationship);
end;
procedure TAtkRelationSet.remove(relation: PAtkRelation); cdecl;
begin
LazAtk1.atk_relation_set_remove(@self, relation);
end;
function TAtkStateSet.new: PAtkStateSet; cdecl;
begin
Result := LazAtk1.atk_state_set_new();
end;
function TAtkStateSet.add_state(type_: TAtkStateType): gboolean; cdecl;
begin
Result := LazAtk1.atk_state_set_add_state(@self, type_);
end;
procedure TAtkStateSet.add_states(types: PAtkStateType; n_types: gint); cdecl;
begin
LazAtk1.atk_state_set_add_states(@self, types, n_types);
end;
function TAtkStateSet.and_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl;
begin
Result := LazAtk1.atk_state_set_and_sets(@self, compare_set);
end;
procedure TAtkStateSet.clear_states; cdecl;
begin
LazAtk1.atk_state_set_clear_states(@self);
end;
function TAtkStateSet.contains_state(type_: TAtkStateType): gboolean; cdecl;
begin
Result := LazAtk1.atk_state_set_contains_state(@self, type_);
end;
function TAtkStateSet.contains_states(types: PAtkStateType; n_types: gint): gboolean; cdecl;
begin
Result := LazAtk1.atk_state_set_contains_states(@self, types, n_types);
end;
function TAtkStateSet.is_empty: gboolean; cdecl;
begin
Result := LazAtk1.atk_state_set_is_empty(@self);
end;
function TAtkStateSet.or_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl;
begin
Result := LazAtk1.atk_state_set_or_sets(@self, compare_set);
end;
function TAtkStateSet.remove_state(type_: TAtkStateType): gboolean; cdecl;
begin
Result := LazAtk1.atk_state_set_remove_state(@self, type_);
end;
function TAtkStateSet.xor_sets(compare_set: PAtkStateSet): PAtkStateSet; cdecl;
begin
Result := LazAtk1.atk_state_set_xor_sets(@self, compare_set);
end;
function TAtkPlug.new: PAtkPlug; cdecl;
begin
Result := LazAtk1.atk_plug_new();
end;
function TAtkPlug.get_id: Pgchar; cdecl;
begin
Result := LazAtk1.atk_plug_get_id(@self);
end;
function TAtkRegistry.get_factory(type_: TGType): PAtkObjectFactory; cdecl;
begin
Result := LazAtk1.atk_registry_get_factory(@self, type_);
end;
function TAtkRegistry.get_factory_type(type_: TGType): TGType; cdecl;
begin
Result := LazAtk1.atk_registry_get_factory_type(@self, type_);
end;
procedure TAtkRegistry.set_factory_type(type_: TGType; factory_type: TGType); cdecl;
begin
LazAtk1.atk_registry_set_factory_type(@self, type_, factory_type);
end;
function TAtkRelation.new(targets: PPAtkObject; n_targets: gint; relationship: TAtkRelationType): PAtkRelation; cdecl;
begin
Result := LazAtk1.atk_relation_new(targets, n_targets, relationship);
end;
procedure TAtkRelation.add_target(target: PAtkObject); cdecl;
begin
LazAtk1.atk_relation_add_target(@self, target);
end;
function TAtkRelation.get_relation_type: TAtkRelationType; cdecl;
begin
Result := LazAtk1.atk_relation_get_relation_type(@self);
end;
function TAtkRelation.get_target: PAtkObject; cdecl;
begin
Result := LazAtk1.atk_relation_get_target(@self);
end;
function TAtkRelation.remove_target(target: PAtkObject): gboolean; cdecl;
begin
Result := LazAtk1.atk_relation_remove_target(@self, target);
end;
function TAtkSocket.new: PAtkSocket; cdecl;
begin
Result := LazAtk1.atk_socket_new();
end;
procedure TAtkSocket.embed(plug_id: Pgchar); cdecl;
begin
LazAtk1.atk_socket_embed(@self, plug_id);
end;
function TAtkSocket.is_occupied: gboolean; cdecl;
begin
Result := LazAtk1.atk_socket_is_occupied(@self);
end;
function TAtkStreamableContent.get_mime_type(i: gint): Pgchar; cdecl;
begin
Result := LazAtk1.atk_streamable_content_get_mime_type(@self, i);
end;
function TAtkStreamableContent.get_n_mime_types: gint; cdecl;
begin
Result := LazAtk1.atk_streamable_content_get_n_mime_types(@self);
end;
function TAtkStreamableContent.get_stream(mime_type: Pgchar): PGIOChannel; cdecl;
begin
Result := LazAtk1.atk_streamable_content_get_stream(@self, mime_type);
end;
function TAtkStreamableContent.get_uri(mime_type: Pgchar): Pgchar; cdecl;
begin
Result := LazAtk1.atk_streamable_content_get_uri(@self, mime_type);
end;
end.
|