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
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gtk {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class TextView : Gtk.Container, Gtk.IScrollable {
public TextView (IntPtr raw) : base(raw) {}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_new();
public TextView () : base (IntPtr.Zero)
{
if (GetType () != typeof (TextView)) {
CreateNativeObject (new string [0], new GLib.Value[0]);
return;
}
Raw = gtk_text_view_new();
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_pixels_above_lines(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_pixels_above_lines(IntPtr raw, int pixels_above_lines);
[GLib.Property ("pixels-above-lines")]
public int PixelsAboveLines {
get {
int raw_ret = gtk_text_view_get_pixels_above_lines(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_pixels_above_lines(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_pixels_below_lines(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_pixels_below_lines(IntPtr raw, int pixels_below_lines);
[GLib.Property ("pixels-below-lines")]
public int PixelsBelowLines {
get {
int raw_ret = gtk_text_view_get_pixels_below_lines(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_pixels_below_lines(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_pixels_inside_wrap(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_pixels_inside_wrap(IntPtr raw, int pixels_inside_wrap);
[GLib.Property ("pixels-inside-wrap")]
public int PixelsInsideWrap {
get {
int raw_ret = gtk_text_view_get_pixels_inside_wrap(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_pixels_inside_wrap(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_editable(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_editable(IntPtr raw, bool setting);
[GLib.Property ("editable")]
public bool Editable {
get {
bool raw_ret = gtk_text_view_get_editable(Handle);
bool ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_editable(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_wrap_mode(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_wrap_mode(IntPtr raw, int wrap_mode);
[GLib.Property ("wrap-mode")]
public Gtk.WrapMode WrapMode {
get {
int raw_ret = gtk_text_view_get_wrap_mode(Handle);
Gtk.WrapMode ret = (Gtk.WrapMode) raw_ret;
return ret;
}
set {
gtk_text_view_set_wrap_mode(Handle, (int) value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_justification(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_justification(IntPtr raw, int justification);
[GLib.Property ("justification")]
public Gtk.Justification Justification {
get {
int raw_ret = gtk_text_view_get_justification(Handle);
Gtk.Justification ret = (Gtk.Justification) raw_ret;
return ret;
}
set {
gtk_text_view_set_justification(Handle, (int) value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_left_margin(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_left_margin(IntPtr raw, int left_margin);
[GLib.Property ("left-margin")]
public int LeftMargin {
get {
int raw_ret = gtk_text_view_get_left_margin(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_left_margin(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_right_margin(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_right_margin(IntPtr raw, int right_margin);
[GLib.Property ("right-margin")]
public int RightMargin {
get {
int raw_ret = gtk_text_view_get_right_margin(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_right_margin(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_top_margin(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_top_margin(IntPtr raw, int top_margin);
[GLib.Property ("top-margin")]
public int TopMargin {
get {
int raw_ret = gtk_text_view_get_top_margin(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_top_margin(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_bottom_margin(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_bottom_margin(IntPtr raw, int bottom_margin);
[GLib.Property ("bottom-margin")]
public int BottomMargin {
get {
int raw_ret = gtk_text_view_get_bottom_margin(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_bottom_margin(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_indent(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_indent(IntPtr raw, int indent);
[GLib.Property ("indent")]
public int Indent {
get {
int raw_ret = gtk_text_view_get_indent(Handle);
int ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_indent(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_get_tabs(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_tabs(IntPtr raw, IntPtr tabs);
[GLib.Property ("tabs")]
public Pango.TabArray Tabs {
get {
IntPtr raw_ret = gtk_text_view_get_tabs(Handle);
Pango.TabArray ret = raw_ret == IntPtr.Zero ? null : (Pango.TabArray) GLib.Opaque.GetOpaque (raw_ret, typeof (Pango.TabArray), false);
return ret;
}
set {
gtk_text_view_set_tabs(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_cursor_visible(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_cursor_visible(IntPtr raw, bool setting);
[GLib.Property ("cursor-visible")]
public bool CursorVisible {
get {
bool raw_ret = gtk_text_view_get_cursor_visible(Handle);
bool ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_cursor_visible(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_get_buffer(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_buffer(IntPtr raw, IntPtr buffer);
[GLib.Property ("buffer")]
public Gtk.TextBuffer Buffer {
get {
IntPtr raw_ret = gtk_text_view_get_buffer(Handle);
Gtk.TextBuffer ret = GLib.Object.GetObject(raw_ret) as Gtk.TextBuffer;
return ret;
}
set {
gtk_text_view_set_buffer(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_overwrite(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_overwrite(IntPtr raw, bool overwrite);
[GLib.Property ("overwrite")]
public bool Overwrite {
get {
bool raw_ret = gtk_text_view_get_overwrite(Handle);
bool ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_overwrite(Handle, value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_accepts_tab(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_accepts_tab(IntPtr raw, bool accepts_tab);
[GLib.Property ("accepts-tab")]
public bool AcceptsTab {
get {
bool raw_ret = gtk_text_view_get_accepts_tab(Handle);
bool ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_accepts_tab(Handle, value);
}
}
[GLib.Property ("im-module")]
public string ImModule {
get {
GLib.Value val = GetProperty ("im-module");
string ret = (string) val;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value(value);
SetProperty("im-module", val);
val.Dispose ();
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_input_purpose(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_input_purpose(IntPtr raw, int purpose);
[GLib.Property ("input-purpose")]
public Gtk.InputPurpose InputPurpose {
get {
int raw_ret = gtk_text_view_get_input_purpose(Handle);
Gtk.InputPurpose ret = (Gtk.InputPurpose) raw_ret;
return ret;
}
set {
gtk_text_view_set_input_purpose(Handle, (int) value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_input_hints(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_input_hints(IntPtr raw, int hints);
[GLib.Property ("input-hints")]
public Gtk.InputHints InputHints {
get {
int raw_ret = gtk_text_view_get_input_hints(Handle);
Gtk.InputHints ret = (Gtk.InputHints) raw_ret;
return ret;
}
set {
gtk_text_view_set_input_hints(Handle, (int) value);
}
}
[GLib.Property ("populate-all")]
public bool PopulateAll {
get {
GLib.Value val = GetProperty ("populate-all");
bool ret = (bool) val;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value(value);
SetProperty("populate-all", val);
val.Dispose ();
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_monospace(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_monospace(IntPtr raw, bool monospace);
[GLib.Property ("monospace")]
public bool Monospace {
get {
bool raw_ret = gtk_text_view_get_monospace(Handle);
bool ret = raw_ret;
return ret;
}
set {
gtk_text_view_set_monospace(Handle, value);
}
}
[GLib.Property ("error-underline-color")]
public Gdk.Color ErrorUnderlineColor {
get {
GLib.Value val = GetProperty ("error-underline-color");
Gdk.Color ret = (Gdk.Color) val;
val.Dispose ();
return ret;
}
}
[GLib.Signal("select-all")]
public event Gtk.SelectAllHandler SelectAll {
add {
this.AddSignalHandler ("select-all", value, typeof (Gtk.SelectAllArgs));
}
remove {
this.RemoveSignalHandler ("select-all", value);
}
}
[GLib.Signal("toggle-overwrite")]
public event System.EventHandler ToggleOverwrite {
add {
this.AddSignalHandler ("toggle-overwrite", value);
}
remove {
this.RemoveSignalHandler ("toggle-overwrite", value);
}
}
[GLib.Signal("move-cursor")]
public event Gtk.MoveCursorHandler MoveCursor {
add {
this.AddSignalHandler ("move-cursor", value, typeof (Gtk.MoveCursorArgs));
}
remove {
this.RemoveSignalHandler ("move-cursor", value);
}
}
[GLib.Signal("insert-at-cursor")]
public event Gtk.InsertAtCursorHandler InsertAtCursor {
add {
this.AddSignalHandler ("insert-at-cursor", value, typeof (Gtk.InsertAtCursorArgs));
}
remove {
this.RemoveSignalHandler ("insert-at-cursor", value);
}
}
[GLib.Signal("cut-clipboard")]
public event System.EventHandler CutClipboard {
add {
this.AddSignalHandler ("cut-clipboard", value);
}
remove {
this.RemoveSignalHandler ("cut-clipboard", value);
}
}
[GLib.Signal("backspace")]
public event System.EventHandler Backspace {
add {
this.AddSignalHandler ("backspace", value);
}
remove {
this.RemoveSignalHandler ("backspace", value);
}
}
[GLib.Signal("populate-popup")]
public event Gtk.PopulatePopupHandler PopulatePopup {
add {
this.AddSignalHandler ("populate-popup", value, typeof (Gtk.PopulatePopupArgs));
}
remove {
this.RemoveSignalHandler ("populate-popup", value);
}
}
[GLib.Signal("paste-clipboard")]
public event System.EventHandler PasteClipboard {
add {
this.AddSignalHandler ("paste-clipboard", value);
}
remove {
this.RemoveSignalHandler ("paste-clipboard", value);
}
}
[GLib.Signal("toggle-cursor-visible")]
public event System.EventHandler ToggleCursorVisible {
add {
this.AddSignalHandler ("toggle-cursor-visible", value);
}
remove {
this.RemoveSignalHandler ("toggle-cursor-visible", value);
}
}
[GLib.Signal("delete-from-cursor")]
public event Gtk.DeleteFromCursorHandler DeleteFromCursor {
add {
this.AddSignalHandler ("delete-from-cursor", value, typeof (Gtk.DeleteFromCursorArgs));
}
remove {
this.RemoveSignalHandler ("delete-from-cursor", value);
}
}
[GLib.Signal("copy-clipboard")]
public event System.EventHandler CopyClipboard {
add {
this.AddSignalHandler ("copy-clipboard", value);
}
remove {
this.RemoveSignalHandler ("copy-clipboard", value);
}
}
[GLib.Signal("set-anchor")]
public event System.EventHandler SetAnchor {
add {
this.AddSignalHandler ("set-anchor", value);
}
remove {
this.RemoveSignalHandler ("set-anchor", value);
}
}
[GLib.Signal("preedit-changed")]
public event Gtk.PreeditChangedHandler PreeditChanged {
add {
this.AddSignalHandler ("preedit-changed", value, typeof (Gtk.PreeditChangedArgs));
}
remove {
this.RemoveSignalHandler ("preedit-changed", value);
}
}
[GLib.Signal("move-viewport")]
public event Gtk.MoveViewportHandler MoveViewport {
add {
this.AddSignalHandler ("move-viewport", value, typeof (Gtk.MoveViewportArgs));
}
remove {
this.RemoveSignalHandler ("move-viewport", value);
}
}
[GLib.Signal("extend-selection")]
public event Gtk.ExtendSelectionHandler ExtendSelection {
add {
this.AddSignalHandler ("extend-selection", value, typeof (Gtk.ExtendSelectionArgs));
}
remove {
this.RemoveSignalHandler ("extend-selection", value);
}
}
static MoveViewportNativeDelegate MoveViewport_cb_delegate;
static MoveViewportNativeDelegate MoveViewportVMCallback {
get {
if (MoveViewport_cb_delegate == null)
MoveViewport_cb_delegate = new MoveViewportNativeDelegate (MoveViewport_cb);
return MoveViewport_cb_delegate;
}
}
static void OverrideMoveViewport (GLib.GType gtype)
{
OverrideMoveViewport (gtype, MoveViewportVMCallback);
}
static void OverrideMoveViewport (GLib.GType gtype, MoveViewportNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "move-viewport", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void MoveViewportNativeDelegate (IntPtr inst, int p0, int p1);
static void MoveViewport_cb (IntPtr inst, int p0, int p1)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnMoveViewport ((Gtk.ScrollStep) p0, p1);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideMoveViewport")]
protected virtual void OnMoveViewport (Gtk.ScrollStep p0, int p1)
{
InternalMoveViewport (p0, p1);
}
private void InternalMoveViewport (Gtk.ScrollStep p0, int p1)
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (3);
GLib.Value[] vals = new GLib.Value [3];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
vals [1] = new GLib.Value (p0);
inst_and_params.Append (vals [1]);
vals [2] = new GLib.Value (p1);
inst_and_params.Append (vals [2]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static SelectAllNativeDelegate SelectAll_cb_delegate;
static SelectAllNativeDelegate SelectAllVMCallback {
get {
if (SelectAll_cb_delegate == null)
SelectAll_cb_delegate = new SelectAllNativeDelegate (SelectAll_cb);
return SelectAll_cb_delegate;
}
}
static void OverrideSelectAll (GLib.GType gtype)
{
OverrideSelectAll (gtype, SelectAllVMCallback);
}
static void OverrideSelectAll (GLib.GType gtype, SelectAllNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "select-all", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SelectAllNativeDelegate (IntPtr inst, bool p0);
static void SelectAll_cb (IntPtr inst, bool p0)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnSelectAll (p0);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideSelectAll")]
protected virtual void OnSelectAll (bool p0)
{
InternalSelectAll (p0);
}
private void InternalSelectAll (bool p0)
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (2);
GLib.Value[] vals = new GLib.Value [2];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
vals [1] = new GLib.Value (p0);
inst_and_params.Append (vals [1]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static ToggleCursorVisibleNativeDelegate ToggleCursorVisible_cb_delegate;
static ToggleCursorVisibleNativeDelegate ToggleCursorVisibleVMCallback {
get {
if (ToggleCursorVisible_cb_delegate == null)
ToggleCursorVisible_cb_delegate = new ToggleCursorVisibleNativeDelegate (ToggleCursorVisible_cb);
return ToggleCursorVisible_cb_delegate;
}
}
static void OverrideToggleCursorVisible (GLib.GType gtype)
{
OverrideToggleCursorVisible (gtype, ToggleCursorVisibleVMCallback);
}
static void OverrideToggleCursorVisible (GLib.GType gtype, ToggleCursorVisibleNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "toggle-cursor-visible", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ToggleCursorVisibleNativeDelegate (IntPtr inst);
static void ToggleCursorVisible_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnToggleCursorVisible ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideToggleCursorVisible")]
protected virtual void OnToggleCursorVisible ()
{
InternalToggleCursorVisible ();
}
private void InternalToggleCursorVisible ()
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (1);
GLib.Value[] vals = new GLib.Value [1];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static PreeditChangedNativeDelegate PreeditChanged_cb_delegate;
static PreeditChangedNativeDelegate PreeditChangedVMCallback {
get {
if (PreeditChanged_cb_delegate == null)
PreeditChanged_cb_delegate = new PreeditChangedNativeDelegate (PreeditChanged_cb);
return PreeditChanged_cb_delegate;
}
}
static void OverridePreeditChanged (GLib.GType gtype)
{
OverridePreeditChanged (gtype, PreeditChangedVMCallback);
}
static void OverridePreeditChanged (GLib.GType gtype, PreeditChangedNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "preedit-changed", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void PreeditChangedNativeDelegate (IntPtr inst, IntPtr p0);
static void PreeditChanged_cb (IntPtr inst, IntPtr p0)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnPreeditChanged (GLib.Marshaller.PtrToStringGFree(p0));
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverridePreeditChanged")]
protected virtual void OnPreeditChanged (string p0)
{
InternalPreeditChanged (p0);
}
private void InternalPreeditChanged (string p0)
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (2);
GLib.Value[] vals = new GLib.Value [2];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
vals [1] = new GLib.Value (p0);
inst_and_params.Append (vals [1]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static PopulatePopupNativeDelegate PopulatePopup_cb_delegate;
static PopulatePopupNativeDelegate PopulatePopupVMCallback {
get {
if (PopulatePopup_cb_delegate == null)
PopulatePopup_cb_delegate = new PopulatePopupNativeDelegate (PopulatePopup_cb);
return PopulatePopup_cb_delegate;
}
}
static void OverridePopulatePopup (GLib.GType gtype)
{
OverridePopulatePopup (gtype, PopulatePopupVMCallback);
}
static void OverridePopulatePopup (GLib.GType gtype, PopulatePopupNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("populate_popup"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void PopulatePopupNativeDelegate (IntPtr inst, IntPtr popup);
static void PopulatePopup_cb (IntPtr inst, IntPtr popup)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnPopulatePopup (GLib.Object.GetObject(popup) as Gtk.Widget);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverridePopulatePopup")]
protected virtual void OnPopulatePopup (Gtk.Widget popup)
{
InternalPopulatePopup (popup);
}
private void InternalPopulatePopup (Gtk.Widget popup)
{
PopulatePopupNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("populate_popup"));
unmanaged = (PopulatePopupNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(PopulatePopupNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, popup == null ? IntPtr.Zero : popup.Handle);
}
static MoveCursorNativeDelegate MoveCursor_cb_delegate;
static MoveCursorNativeDelegate MoveCursorVMCallback {
get {
if (MoveCursor_cb_delegate == null)
MoveCursor_cb_delegate = new MoveCursorNativeDelegate (MoveCursor_cb);
return MoveCursor_cb_delegate;
}
}
static void OverrideMoveCursor (GLib.GType gtype)
{
OverrideMoveCursor (gtype, MoveCursorVMCallback);
}
static void OverrideMoveCursor (GLib.GType gtype, MoveCursorNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("move_cursor"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void MoveCursorNativeDelegate (IntPtr inst, int step, int count, bool extend_selection);
static void MoveCursor_cb (IntPtr inst, int step, int count, bool extend_selection)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnMoveCursor ((Gtk.MovementStep) step, count, extend_selection);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideMoveCursor")]
protected virtual void OnMoveCursor (Gtk.MovementStep step, int count, bool extend_selection)
{
InternalMoveCursor (step, count, extend_selection);
}
private void InternalMoveCursor (Gtk.MovementStep step, int count, bool extend_selection)
{
MoveCursorNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("move_cursor"));
unmanaged = (MoveCursorNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(MoveCursorNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, (int) step, count, extend_selection);
}
static SetAnchorNativeDelegate SetAnchor_cb_delegate;
static SetAnchorNativeDelegate SetAnchorVMCallback {
get {
if (SetAnchor_cb_delegate == null)
SetAnchor_cb_delegate = new SetAnchorNativeDelegate (SetAnchor_cb);
return SetAnchor_cb_delegate;
}
}
static void OverrideSetAnchor (GLib.GType gtype)
{
OverrideSetAnchor (gtype, SetAnchorVMCallback);
}
static void OverrideSetAnchor (GLib.GType gtype, SetAnchorNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("set_anchor"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SetAnchorNativeDelegate (IntPtr inst);
static void SetAnchor_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnSetAnchor ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideSetAnchor")]
protected virtual void OnSetAnchor ()
{
InternalSetAnchor ();
}
private void InternalSetAnchor ()
{
SetAnchorNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("set_anchor"));
unmanaged = (SetAnchorNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(SetAnchorNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static InsertAtCursorNativeDelegate InsertAtCursor_cb_delegate;
static InsertAtCursorNativeDelegate InsertAtCursorVMCallback {
get {
if (InsertAtCursor_cb_delegate == null)
InsertAtCursor_cb_delegate = new InsertAtCursorNativeDelegate (InsertAtCursor_cb);
return InsertAtCursor_cb_delegate;
}
}
static void OverrideInsertAtCursor (GLib.GType gtype)
{
OverrideInsertAtCursor (gtype, InsertAtCursorVMCallback);
}
static void OverrideInsertAtCursor (GLib.GType gtype, InsertAtCursorNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("insert_at_cursor"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void InsertAtCursorNativeDelegate (IntPtr inst, IntPtr str);
static void InsertAtCursor_cb (IntPtr inst, IntPtr str)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnInsertAtCursor (GLib.Marshaller.Utf8PtrToString (str));
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideInsertAtCursor")]
protected virtual void OnInsertAtCursor (string str)
{
InternalInsertAtCursor (str);
}
private void InternalInsertAtCursor (string str)
{
InsertAtCursorNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("insert_at_cursor"));
unmanaged = (InsertAtCursorNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(InsertAtCursorNativeDelegate));
}
if (unmanaged == null) return;
IntPtr native_str = GLib.Marshaller.StringToPtrGStrdup (str);
unmanaged (this.Handle, native_str);
GLib.Marshaller.Free (native_str);
}
static DeleteFromCursorNativeDelegate DeleteFromCursor_cb_delegate;
static DeleteFromCursorNativeDelegate DeleteFromCursorVMCallback {
get {
if (DeleteFromCursor_cb_delegate == null)
DeleteFromCursor_cb_delegate = new DeleteFromCursorNativeDelegate (DeleteFromCursor_cb);
return DeleteFromCursor_cb_delegate;
}
}
static void OverrideDeleteFromCursor (GLib.GType gtype)
{
OverrideDeleteFromCursor (gtype, DeleteFromCursorVMCallback);
}
static void OverrideDeleteFromCursor (GLib.GType gtype, DeleteFromCursorNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("delete_from_cursor"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void DeleteFromCursorNativeDelegate (IntPtr inst, int type, int count);
static void DeleteFromCursor_cb (IntPtr inst, int type, int count)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnDeleteFromCursor ((Gtk.DeleteType) type, count);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideDeleteFromCursor")]
protected virtual void OnDeleteFromCursor (Gtk.DeleteType type, int count)
{
InternalDeleteFromCursor (type, count);
}
private void InternalDeleteFromCursor (Gtk.DeleteType type, int count)
{
DeleteFromCursorNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("delete_from_cursor"));
unmanaged = (DeleteFromCursorNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DeleteFromCursorNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, (int) type, count);
}
static BackspaceNativeDelegate Backspace_cb_delegate;
static BackspaceNativeDelegate BackspaceVMCallback {
get {
if (Backspace_cb_delegate == null)
Backspace_cb_delegate = new BackspaceNativeDelegate (Backspace_cb);
return Backspace_cb_delegate;
}
}
static void OverrideBackspace (GLib.GType gtype)
{
OverrideBackspace (gtype, BackspaceVMCallback);
}
static void OverrideBackspace (GLib.GType gtype, BackspaceNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("backspace"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void BackspaceNativeDelegate (IntPtr inst);
static void Backspace_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnBackspace ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideBackspace")]
protected virtual void OnBackspace ()
{
InternalBackspace ();
}
private void InternalBackspace ()
{
BackspaceNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("backspace"));
unmanaged = (BackspaceNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(BackspaceNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static CutClipboardNativeDelegate CutClipboard_cb_delegate;
static CutClipboardNativeDelegate CutClipboardVMCallback {
get {
if (CutClipboard_cb_delegate == null)
CutClipboard_cb_delegate = new CutClipboardNativeDelegate (CutClipboard_cb);
return CutClipboard_cb_delegate;
}
}
static void OverrideCutClipboard (GLib.GType gtype)
{
OverrideCutClipboard (gtype, CutClipboardVMCallback);
}
static void OverrideCutClipboard (GLib.GType gtype, CutClipboardNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("cut_clipboard"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void CutClipboardNativeDelegate (IntPtr inst);
static void CutClipboard_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnCutClipboard ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideCutClipboard")]
protected virtual void OnCutClipboard ()
{
InternalCutClipboard ();
}
private void InternalCutClipboard ()
{
CutClipboardNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("cut_clipboard"));
unmanaged = (CutClipboardNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(CutClipboardNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static CopyClipboardNativeDelegate CopyClipboard_cb_delegate;
static CopyClipboardNativeDelegate CopyClipboardVMCallback {
get {
if (CopyClipboard_cb_delegate == null)
CopyClipboard_cb_delegate = new CopyClipboardNativeDelegate (CopyClipboard_cb);
return CopyClipboard_cb_delegate;
}
}
static void OverrideCopyClipboard (GLib.GType gtype)
{
OverrideCopyClipboard (gtype, CopyClipboardVMCallback);
}
static void OverrideCopyClipboard (GLib.GType gtype, CopyClipboardNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("copy_clipboard"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void CopyClipboardNativeDelegate (IntPtr inst);
static void CopyClipboard_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnCopyClipboard ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideCopyClipboard")]
protected virtual void OnCopyClipboard ()
{
InternalCopyClipboard ();
}
private void InternalCopyClipboard ()
{
CopyClipboardNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("copy_clipboard"));
unmanaged = (CopyClipboardNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(CopyClipboardNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static PasteClipboardNativeDelegate PasteClipboard_cb_delegate;
static PasteClipboardNativeDelegate PasteClipboardVMCallback {
get {
if (PasteClipboard_cb_delegate == null)
PasteClipboard_cb_delegate = new PasteClipboardNativeDelegate (PasteClipboard_cb);
return PasteClipboard_cb_delegate;
}
}
static void OverridePasteClipboard (GLib.GType gtype)
{
OverridePasteClipboard (gtype, PasteClipboardVMCallback);
}
static void OverridePasteClipboard (GLib.GType gtype, PasteClipboardNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("paste_clipboard"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void PasteClipboardNativeDelegate (IntPtr inst);
static void PasteClipboard_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnPasteClipboard ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverridePasteClipboard")]
protected virtual void OnPasteClipboard ()
{
InternalPasteClipboard ();
}
private void InternalPasteClipboard ()
{
PasteClipboardNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("paste_clipboard"));
unmanaged = (PasteClipboardNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(PasteClipboardNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static ToggleOverwriteNativeDelegate ToggleOverwrite_cb_delegate;
static ToggleOverwriteNativeDelegate ToggleOverwriteVMCallback {
get {
if (ToggleOverwrite_cb_delegate == null)
ToggleOverwrite_cb_delegate = new ToggleOverwriteNativeDelegate (ToggleOverwrite_cb);
return ToggleOverwrite_cb_delegate;
}
}
static void OverrideToggleOverwrite (GLib.GType gtype)
{
OverrideToggleOverwrite (gtype, ToggleOverwriteVMCallback);
}
static void OverrideToggleOverwrite (GLib.GType gtype, ToggleOverwriteNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("toggle_overwrite"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ToggleOverwriteNativeDelegate (IntPtr inst);
static void ToggleOverwrite_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
__obj.OnToggleOverwrite ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideToggleOverwrite")]
protected virtual void OnToggleOverwrite ()
{
InternalToggleOverwrite ();
}
private void InternalToggleOverwrite ()
{
ToggleOverwriteNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("toggle_overwrite"));
unmanaged = (ToggleOverwriteNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(ToggleOverwriteNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle);
}
static CreateBufferNativeDelegate CreateBuffer_cb_delegate;
static CreateBufferNativeDelegate CreateBufferVMCallback {
get {
if (CreateBuffer_cb_delegate == null)
CreateBuffer_cb_delegate = new CreateBufferNativeDelegate (CreateBuffer_cb);
return CreateBuffer_cb_delegate;
}
}
static void OverrideCreateBuffer (GLib.GType gtype)
{
OverrideCreateBuffer (gtype, CreateBufferVMCallback);
}
static void OverrideCreateBuffer (GLib.GType gtype, CreateBufferNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("create_buffer"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr CreateBufferNativeDelegate (IntPtr inst);
static IntPtr CreateBuffer_cb (IntPtr inst)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
Gtk.TextBuffer __result;
__result = __obj.OnCreateBuffer ();
return __result == null ? IntPtr.Zero : __result.Handle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideCreateBuffer")]
protected virtual Gtk.TextBuffer OnCreateBuffer ()
{
return InternalCreateBuffer ();
}
private Gtk.TextBuffer InternalCreateBuffer ()
{
CreateBufferNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("create_buffer"));
unmanaged = (CreateBufferNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(CreateBufferNativeDelegate));
}
if (unmanaged == null) return null;
IntPtr __result = unmanaged (this.Handle);
return GLib.Object.GetObject(__result) as Gtk.TextBuffer;
}
static DrawLayerNativeDelegate DrawLayer_cb_delegate;
static DrawLayerNativeDelegate DrawLayerVMCallback {
get {
if (DrawLayer_cb_delegate == null)
DrawLayer_cb_delegate = new DrawLayerNativeDelegate (DrawLayer_cb);
return DrawLayer_cb_delegate;
}
}
static void OverrideDrawLayer (GLib.GType gtype)
{
OverrideDrawLayer (gtype, DrawLayerVMCallback);
}
static void OverrideDrawLayer (GLib.GType gtype, DrawLayerNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("draw_layer"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void DrawLayerNativeDelegate (IntPtr inst, int layer, IntPtr cr);
static void DrawLayer_cb (IntPtr inst, int layer, IntPtr cr)
{
Cairo.Context mycr = null;
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
mycr = new Cairo.Context (cr, false);
__obj.OnDrawLayer ((Gtk.TextViewLayer) layer, mycr);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
} finally {
var disposable_cr = mycr as IDisposable;
if (disposable_cr != null)
disposable_cr.Dispose ();
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideDrawLayer")]
protected virtual void OnDrawLayer (Gtk.TextViewLayer layer, Cairo.Context cr)
{
InternalDrawLayer (layer, cr);
}
private void InternalDrawLayer (Gtk.TextViewLayer layer, Cairo.Context cr)
{
DrawLayerNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("draw_layer"));
unmanaged = (DrawLayerNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(DrawLayerNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, (int) layer, cr == null ? IntPtr.Zero : cr.Handle);
}
static ExtendSelectionNativeDelegate ExtendSelection_cb_delegate;
static ExtendSelectionNativeDelegate ExtendSelectionVMCallback {
get {
if (ExtendSelection_cb_delegate == null)
ExtendSelection_cb_delegate = new ExtendSelectionNativeDelegate (ExtendSelection_cb);
return ExtendSelection_cb_delegate;
}
}
static void OverrideExtendSelection (GLib.GType gtype)
{
OverrideExtendSelection (gtype, ExtendSelectionVMCallback);
}
static void OverrideExtendSelection (GLib.GType gtype, ExtendSelectionNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("extend_selection"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate bool ExtendSelectionNativeDelegate (IntPtr inst, int granularity, IntPtr location, IntPtr start, IntPtr end);
static bool ExtendSelection_cb (IntPtr inst, int granularity, IntPtr location, IntPtr start, IntPtr end)
{
try {
TextView __obj = GLib.Object.GetObject (inst, false) as TextView;
bool __result;
__result = __obj.OnExtendSelection ((Gtk.TextExtendSelection) granularity, Gtk.TextIter.New (location), Gtk.TextIter.New (start), Gtk.TextIter.New (end));
return __result;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gtk.TextView), ConnectionMethod="OverrideExtendSelection")]
protected virtual bool OnExtendSelection (Gtk.TextExtendSelection granularity, Gtk.TextIter location, Gtk.TextIter start, Gtk.TextIter end)
{
return InternalExtendSelection (granularity, location, start, end);
}
private bool InternalExtendSelection (Gtk.TextExtendSelection granularity, Gtk.TextIter location, Gtk.TextIter start, Gtk.TextIter end)
{
ExtendSelectionNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("extend_selection"));
unmanaged = (ExtendSelectionNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(ExtendSelectionNativeDelegate));
}
if (unmanaged == null) return false;
IntPtr native_location = GLib.Marshaller.StructureToPtrAlloc (location);
IntPtr native_start = GLib.Marshaller.StructureToPtrAlloc (start);
IntPtr native_end = GLib.Marshaller.StructureToPtrAlloc (end);
bool __result = unmanaged (this.Handle, (int) granularity, native_location, native_start, native_end);
Marshal.FreeHGlobal (native_location);
Marshal.FreeHGlobal (native_start);
Marshal.FreeHGlobal (native_end);
return __result;
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _class_abi = null;
static public new GLib.AbiStruct class_abi {
get {
if (_class_abi == null)
_class_abi = new GLib.AbiStruct (new List<GLib.AbiField>{
new GLib.AbiField("populate_popup"
, Gtk.Container.class_abi.Fields
, (uint) Marshal.SizeOf(typeof(IntPtr)) // populate_popup
, null
, "move_cursor"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("move_cursor"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // move_cursor
, "populate_popup"
, "set_anchor"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("set_anchor"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // set_anchor
, "move_cursor"
, "insert_at_cursor"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("insert_at_cursor"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // insert_at_cursor
, "set_anchor"
, "delete_from_cursor"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("delete_from_cursor"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // delete_from_cursor
, "insert_at_cursor"
, "backspace"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("backspace"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // backspace
, "delete_from_cursor"
, "cut_clipboard"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("cut_clipboard"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // cut_clipboard
, "backspace"
, "copy_clipboard"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("copy_clipboard"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // copy_clipboard
, "cut_clipboard"
, "paste_clipboard"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("paste_clipboard"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // paste_clipboard
, "copy_clipboard"
, "toggle_overwrite"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("toggle_overwrite"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // toggle_overwrite
, "paste_clipboard"
, "create_buffer"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("create_buffer"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // create_buffer
, "toggle_overwrite"
, "draw_layer"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("draw_layer"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // draw_layer
, "create_buffer"
, "extend_selection"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("extend_selection"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // extend_selection
, "draw_layer"
, "_gtk_reserved1"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_gtk_reserved1"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // _gtk_reserved1
, "extend_selection"
, "_gtk_reserved2"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_gtk_reserved2"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // _gtk_reserved2
, "_gtk_reserved1"
, "_gtk_reserved3"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_gtk_reserved3"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // _gtk_reserved3
, "_gtk_reserved2"
, "_gtk_reserved4"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_gtk_reserved4"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // _gtk_reserved4
, "_gtk_reserved3"
, "_gtk_reserved5"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("_gtk_reserved5"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // _gtk_reserved5
, "_gtk_reserved4"
, null
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
});
return _class_abi;
}
}
// End of the ABI representation.
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_add_child_at_anchor(IntPtr raw, IntPtr child, IntPtr anchor);
public void AddChildAtAnchor(Gtk.Widget child, Gtk.TextChildAnchor anchor) {
gtk_text_view_add_child_at_anchor(Handle, child == null ? IntPtr.Zero : child.Handle, anchor == null ? IntPtr.Zero : anchor.Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_add_child_in_window(IntPtr raw, IntPtr child, int which_window, int xpos, int ypos);
public void AddChildInWindow(Gtk.Widget child, Gtk.TextWindowType which_window, int xpos, int ypos) {
gtk_text_view_add_child_in_window(Handle, child == null ? IntPtr.Zero : child.Handle, (int) which_window, xpos, ypos);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_backward_display_line(IntPtr raw, IntPtr iter);
public bool BackwardDisplayLine(ref Gtk.TextIter iter) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_backward_display_line(Handle, native_iter);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_backward_display_line_start(IntPtr raw, IntPtr iter);
public bool BackwardDisplayLineStart(ref Gtk.TextIter iter) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_backward_display_line_start(Handle, native_iter);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_buffer_to_window_coords(IntPtr raw, int win, int buffer_x, int buffer_y, out int window_x, out int window_y);
public void BufferToWindowCoords(Gtk.TextWindowType win, int buffer_x, int buffer_y, out int window_x, out int window_y) {
gtk_text_view_buffer_to_window_coords(Handle, (int) win, buffer_x, buffer_y, out window_x, out window_y);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_forward_display_line(IntPtr raw, IntPtr iter);
public bool ForwardDisplayLine(ref Gtk.TextIter iter) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_forward_display_line(Handle, native_iter);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_forward_display_line_end(IntPtr raw, IntPtr iter);
public bool ForwardDisplayLineEnd(ref Gtk.TextIter iter) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_forward_display_line_end(Handle, native_iter);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_border_window_size(IntPtr raw, int type);
public int GetBorderWindowSize(Gtk.TextWindowType type) {
int raw_ret = gtk_text_view_get_border_window_size(Handle, (int) type);
int ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_get_cursor_locations(IntPtr raw, IntPtr iter, IntPtr strong, IntPtr weak);
public void GetCursorLocations(Gtk.TextIter iter, Gdk.Rectangle strong, Gdk.Rectangle weak) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
IntPtr native_strong = GLib.Marshaller.StructureToPtrAlloc (strong);
IntPtr native_weak = GLib.Marshaller.StructureToPtrAlloc (weak);
gtk_text_view_get_cursor_locations(Handle, native_iter, native_strong, native_weak);
Marshal.FreeHGlobal (native_iter);
Marshal.FreeHGlobal (native_strong);
Marshal.FreeHGlobal (native_weak);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_get_default_attributes(IntPtr raw);
public Gtk.TextAttributes DefaultAttributes {
get {
IntPtr raw_ret = gtk_text_view_get_default_attributes(Handle);
Gtk.TextAttributes ret = raw_ret == IntPtr.Zero ? null : (Gtk.TextAttributes) GLib.Opaque.GetOpaque (raw_ret, typeof (Gtk.TextAttributes), true);
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_iter_at_location(IntPtr raw, IntPtr iter, int x, int y);
public bool GetIterAtLocation(out Gtk.TextIter iter, int x, int y) {
IntPtr native_iter = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (Gtk.TextIter)));
bool raw_ret = gtk_text_view_get_iter_at_location(Handle, native_iter, x, y);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_get_iter_at_position(IntPtr raw, IntPtr iter, out int trailing, int x, int y);
public bool GetIterAtPosition(Gtk.TextIter iter, out int trailing, int x, int y) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_get_iter_at_position(Handle, native_iter, out trailing, x, y);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_get_iter_location(IntPtr raw, IntPtr iter, IntPtr location);
public Gdk.Rectangle GetIterLocation(Gtk.TextIter iter) {
Gdk.Rectangle location;
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
IntPtr native_location = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (Gdk.Rectangle)));
gtk_text_view_get_iter_location(Handle, native_iter, native_location);
Marshal.FreeHGlobal (native_iter);
location = (Gdk.Rectangle) Marshal.PtrToStructure (native_location, typeof (Gdk.Rectangle));
Marshal.FreeHGlobal (native_location);
return location;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_get_line_at_y(IntPtr raw, IntPtr target_iter, int y, out int line_top);
public void GetLineAtY(out Gtk.TextIter target_iter, int y, out int line_top) {
IntPtr native_target_iter = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (Gtk.TextIter)));
gtk_text_view_get_line_at_y(Handle, native_target_iter, y, out line_top);
target_iter = Gtk.TextIter.New (native_target_iter);
Marshal.FreeHGlobal (native_target_iter);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_get_line_yrange(IntPtr raw, IntPtr iter, out int y, out int height);
public void GetLineYrange(Gtk.TextIter iter, out int y, out int height) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
gtk_text_view_get_line_yrange(Handle, native_iter, out y, out height);
Marshal.FreeHGlobal (native_iter);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_get_type();
public static new GLib.GType GType {
get {
IntPtr raw_ret = gtk_text_view_get_type();
GLib.GType ret = new GLib.GType(raw_ret);
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_get_visible_rect(IntPtr raw, IntPtr visible_rect);
public Gdk.Rectangle VisibleRect {
get {
Gdk.Rectangle visible_rect;
IntPtr native_visible_rect = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (Gdk.Rectangle)));
gtk_text_view_get_visible_rect(Handle, native_visible_rect);
visible_rect = (Gdk.Rectangle) Marshal.PtrToStructure (native_visible_rect, typeof (Gdk.Rectangle));
Marshal.FreeHGlobal (native_visible_rect);
return visible_rect;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_text_view_get_window(IntPtr raw, int win);
public Gdk.Window GetWindow(Gtk.TextWindowType win) {
IntPtr raw_ret = gtk_text_view_get_window(Handle, (int) win);
Gdk.Window ret = GLib.Object.GetObject(raw_ret) as Gdk.Window;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_text_view_get_window_type(IntPtr raw, IntPtr window);
public Gtk.TextWindowType GetWindowType(Gdk.Window window) {
int raw_ret = gtk_text_view_get_window_type(Handle, window == null ? IntPtr.Zero : window.Handle);
Gtk.TextWindowType ret = (Gtk.TextWindowType) raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_im_context_filter_keypress(IntPtr raw, IntPtr evnt);
public bool ImContextFilterKeypress(Gdk.EventKey evnt) {
bool raw_ret = gtk_text_view_im_context_filter_keypress(Handle, evnt == null ? IntPtr.Zero : evnt.Handle);
bool ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_move_child(IntPtr raw, IntPtr child, int xpos, int ypos);
public void MoveChild(Gtk.Widget child, int xpos, int ypos) {
gtk_text_view_move_child(Handle, child == null ? IntPtr.Zero : child.Handle, xpos, ypos);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_move_mark_onscreen(IntPtr raw, IntPtr mark);
public bool MoveMarkOnscreen(Gtk.TextMark mark) {
bool raw_ret = gtk_text_view_move_mark_onscreen(Handle, mark == null ? IntPtr.Zero : mark.Handle);
bool ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_move_visually(IntPtr raw, IntPtr iter, int count);
public bool MoveVisually(ref Gtk.TextIter iter, int count) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_move_visually(Handle, native_iter, count);
bool ret = raw_ret;
iter = Gtk.TextIter.New (native_iter);
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_place_cursor_onscreen(IntPtr raw);
public bool PlaceCursorOnscreen() {
bool raw_ret = gtk_text_view_place_cursor_onscreen(Handle);
bool ret = raw_ret;
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_reset_cursor_blink(IntPtr raw);
public void ResetCursorBlink() {
gtk_text_view_reset_cursor_blink(Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_reset_im_context(IntPtr raw);
public void ResetImContext() {
gtk_text_view_reset_im_context(Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_scroll_mark_onscreen(IntPtr raw, IntPtr mark);
public void ScrollMarkOnscreen(Gtk.TextMark mark) {
gtk_text_view_scroll_mark_onscreen(Handle, mark == null ? IntPtr.Zero : mark.Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_scroll_to_iter(IntPtr raw, IntPtr iter, double within_margin, bool use_align, double xalign, double yalign);
public bool ScrollToIter(Gtk.TextIter iter, double within_margin, bool use_align, double xalign, double yalign) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_scroll_to_iter(Handle, native_iter, within_margin, use_align, xalign, yalign);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_scroll_to_mark(IntPtr raw, IntPtr mark, double within_margin, bool use_align, double xalign, double yalign);
public void ScrollToMark(Gtk.TextMark mark, double within_margin, bool use_align, double xalign, double yalign) {
gtk_text_view_scroll_to_mark(Handle, mark == null ? IntPtr.Zero : mark.Handle, within_margin, use_align, xalign, yalign);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_set_border_window_size(IntPtr raw, int type, int size);
public void SetBorderWindowSize(Gtk.TextWindowType type, int size) {
gtk_text_view_set_border_window_size(Handle, (int) type, size);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_text_view_starts_display_line(IntPtr raw, IntPtr iter);
public bool StartsDisplayLine(Gtk.TextIter iter) {
IntPtr native_iter = GLib.Marshaller.StructureToPtrAlloc (iter);
bool raw_ret = gtk_text_view_starts_display_line(Handle, native_iter);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_iter);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_text_view_window_to_buffer_coords(IntPtr raw, int win, int window_x, int window_y, out int buffer_x, out int buffer_y);
public void WindowToBufferCoords(Gtk.TextWindowType win, int window_x, int window_y, out int buffer_x, out int buffer_y) {
gtk_text_view_window_to_buffer_coords(Handle, (int) win, window_x, window_y, out buffer_x, out buffer_y);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_scrollable_get_border(IntPtr raw, IntPtr border);
public bool GetBorder(Gtk.Border border) {
IntPtr native_border = GLib.Marshaller.StructureToPtrAlloc (border);
bool raw_ret = gtk_scrollable_get_border(Handle, native_border);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_border);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_scrollable_get_hadjustment(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_scrollable_set_hadjustment(IntPtr raw, IntPtr hadjustment);
[GLib.Property ("hadjustment")]
public Gtk.Adjustment Hadjustment {
get {
IntPtr raw_ret = gtk_scrollable_get_hadjustment(Handle);
Gtk.Adjustment ret = GLib.Object.GetObject(raw_ret) as Gtk.Adjustment;
return ret;
}
set {
gtk_scrollable_set_hadjustment(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_scrollable_get_vadjustment(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_scrollable_set_vadjustment(IntPtr raw, IntPtr vadjustment);
[GLib.Property ("vadjustment")]
public Gtk.Adjustment Vadjustment {
get {
IntPtr raw_ret = gtk_scrollable_get_vadjustment(Handle);
Gtk.Adjustment ret = GLib.Object.GetObject(raw_ret) as Gtk.Adjustment;
return ret;
}
set {
gtk_scrollable_set_vadjustment(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_scrollable_get_hscroll_policy(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_scrollable_set_hscroll_policy(IntPtr raw, int policy);
[GLib.Property ("hscroll-policy")]
public Gtk.ScrollablePolicy HscrollPolicy {
get {
int raw_ret = gtk_scrollable_get_hscroll_policy(Handle);
Gtk.ScrollablePolicy ret = (Gtk.ScrollablePolicy) raw_ret;
return ret;
}
set {
gtk_scrollable_set_hscroll_policy(Handle, (int) value);
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gtk_scrollable_get_vscroll_policy(IntPtr raw);
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_scrollable_set_vscroll_policy(IntPtr raw, int policy);
[GLib.Property ("vscroll-policy")]
public Gtk.ScrollablePolicy VscrollPolicy {
get {
int raw_ret = gtk_scrollable_get_vscroll_policy(Handle);
Gtk.ScrollablePolicy ret = (Gtk.ScrollablePolicy) raw_ret;
return ret;
}
set {
gtk_scrollable_set_vscroll_policy(Handle, (int) value);
}
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _abi_info = null;
static public new GLib.AbiStruct abi_info {
get {
if (_abi_info == null)
_abi_info = new GLib.AbiStruct (new List<GLib.AbiField>{
new GLib.AbiField("priv"
, Gtk.Container.abi_info.Fields
, (uint) Marshal.SizeOf(typeof(IntPtr)) // priv
, null
, null
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
});
return _abi_info;
}
}
// End of the ABI representation.
#endregion
}
}
|