1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>gtkmm: Gtk::TextIter Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1TextIter.html">TextIter</a>
</div>
</div>
<div class="contents">
<h1>Gtk::TextIter Class Reference<br/>
<small>
[<a class="el" href="group__TextView.html">TextView Classes</a>]</small>
</h1><!-- doxytag: class="Gtk::TextIter" -->
<p>Typefed as <a class="el" href="classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">Gtk::TextBuffer::iterator</a>. <a href="#_details">More...</a></p>
<p><a href="classGtk_1_1TextIter-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <br class="typebreak"/>
<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00400.html">std::bidirectional_iterator_tag</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3a01330bff36d513299c97cd3e877181">iterator_category</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef gunichar </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">value_type</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a1d32cb4ee3ea8790352a473954ddbbd4">difference_type</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">value_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aa0c83319eb101749fe43d587a0db45da">reference</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a42c43f99b310aee6c53adbd6dd71fe51">pointer</a></td></tr>
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a311d1ed5fa8bd0d55d18b743d45bd118">TextIter</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac015411ec402d42fe22dfa048a97d7b2">TextIter</a> (const GtkTextIter* gobject)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkTextIter* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac5fe90901048c857a70fdcf6bfc83e5d">gobj</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. <a href="#ac5fe90901048c857a70fdcf6bfc83e5d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkTextIter* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a050314ca046487d60c14a13085d0b0a3">gobj</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. <a href="#a050314ca046487d60c14a13085d0b0a3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a11ef1de054169a9ca48cca88d03ad04e">operator++</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alias for <a class="el" href="classGtk_1_1TextIter.html#a46acea844c69273d92c63d910eca21c9" title="Moves iter forward by one character offset.">forward_char()</a>. <a href="#a11ef1de054169a9ca48cca88d03ad04e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae27c3a2f0663071f9319fe140f047b72">operator++</a> (int)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ad1fea62e0f049dac87497aadc4e32ac2">operator--</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alias for <a class="el" href="classGtk_1_1TextIter.html#aeff64dab2ff97e06452f4ca7c030b758" title="Moves backward by one character offset.">backward_char()</a>. <a href="#ad1fea62e0f049dac87497aadc4e32ac2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae9050a524dda968db856b3e791fc833d">operator--</a> (int)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">value_type</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a25bc72debbe24fa32719261d591949e7">operator*</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alias for <a class="el" href="classGtk_1_1TextIter.html#a63cd8afd6fb53bdedef424b42bbc66b7" title="Returns the Unicode character at this iterator.">get_char()</a>. <a href="#a25bc72debbe24fa32719261d591949e7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a6d5012897961552a524589378af6c17f">operator bool</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alias for !is_end(). <a href="#a6d5012897961552a524589378af6c17f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextBuffer.html">TextBuffer</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#af2244ebff821e640cd163779711d96a8">get_buffer</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets...">Gtk::TextBuffer</a> this iterator is associated with. <a href="#af2244ebff821e640cd163779711d96a8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a23db9e028b016cda6fd3af40fb3ef1af">get_offset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the character offset of an iterator. <a href="#a23db9e028b016cda6fd3af40fb3ef1af"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae51ca638396eb61fd1997b6c1538f0c7">get_line</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the line number containing the iterator. <a href="#ae51ca638396eb61fd1997b6c1538f0c7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a93ea3d3cfcc39f69555545b4bdd38530">get_line_offset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the character offset of the iterator, counting from the start of a newline-terminated line. <a href="#a93ea3d3cfcc39f69555545b4bdd38530"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a4a0c83b81f49e182c60e7f7c40fad8f8">get_line_index</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the byte index of the iterator, counting from the start of a newline-terminated line. <a href="#a4a0c83b81f49e182c60e7f7c40fad8f8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aff8216613df48ec3ec109ef60e7dbdb2">get_visible_line_offset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the offset in characters from the start of the line to the given <em>iter</em>, not counting characters that are invisible due to tags with the "invisible" flag toggled on. <a href="#aff8216613df48ec3ec109ef60e7dbdb2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a726f03533f659eba9d58cdcb7e3752ae">get_visible_line_index</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of bytes from the start of the line to the given <em>iter</em>, not counting bytes that are invisible due to tags with the "invisible" flag toggled on. <a href="#a726f03533f659eba9d58cdcb7e3752ae"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">gunichar </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a63cd8afd6fb53bdedef424b42bbc66b7">get_char</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the Unicode character at this iterator. <a href="#a63cd8afd6fb53bdedef424b42bbc66b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#acbf2a271e33232170e1c41ccb1aa12e1">get_slice</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the text in the given range. <a href="#acbf2a271e33232170e1c41ccb1aa12e1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a68fceee86d4913529a918872438cff8a">get_text</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <emphasis>text</emphasis> in the given range. <a href="#a68fceee86d4913529a918872438cff8a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a0972fc9b1892e9199c60779634c5bde5">get_visible_slice</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like iter_get_slice(), but invisible text is not included. <a href="#a0972fc9b1892e9199c60779634c5bde5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a15ec6157320b54c7b16952e2005e106b">get_visible_text</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like iter_get_text(), but invisible text is not included. <a href="#a15ec6157320b54c7b16952e2005e106b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac4813d198441c620d2afbec63be45ccc">get_pixbuf</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">If the element at <em>iter</em> is a pixbuf, the pixbuf is returned (with no new reference count added). <a href="#ac4813d198441c620d2afbec63be45ccc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextMark.html">TextMark</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aa6dc67578010ba3d16375d3fd3810ee0">get_marks</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of all <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a> at this location. <a href="#aa6dc67578010ba3d16375d3fd3810ee0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextMark.html">TextMark</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a816e1c24bb5462aec8d4d540044a6239">get_marks</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of all <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a> at this location. <a href="#a816e1c24bb5462aec8d4d540044a6239"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextChildAnchor.html">TextChildAnchor</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ab8ee402bb518aeed4aeef15f29710cb4">get_child_anchor</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">If the location at <em>iter</em> contains a child anchor, the anchor is returned (with no new reference count added). <a href="#ab8ee402bb518aeed4aeef15f29710cb4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <br class="typebreak"/>
<a class="el" href="classGtk_1_1TextChildAnchor.html">TextChildAnchor</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a682ce9b6067548ab103cd3f64867b986">get_child_anchor</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">If the location at <em>iter</em> contains a child anchor, the anchor is returned (with no new reference count added). <a href="#a682ce9b6067548ab103cd3f64867b986"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#af320581d5694946f227130116909c27f">get_toggled_tags</a> (bool toggled_on=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> that are toggled on or off at this point. <a href="#af320581d5694946f227130116909c27f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aeca8604e9583471ca6b76ab14bb1030a">get_toggled_tags</a> (bool toggled_on=true) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> that are toggled on or off at this point. <a href="#aeca8604e9583471ca6b76ab14bb1030a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#afa90f81adb24aa2a32696aad22f78c46">begins_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>tag</em> is toggled on at exactly this point. <a href="#afa90f81adb24aa2a32696aad22f78c46"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a7b25da844d333a260e981c102a7939c6">begins_tag</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a69904722c3b9e761eae2aba31d5a88d5">ends_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>tag</em> is toggled off at exactly this point. <a href="#a69904722c3b9e761eae2aba31d5a88d5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a9cbd50e0caf2f3c4d56af8d3f619b3a6">ends_tag</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a1b8a333956be379051b987521f383c1b">toggles_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This is equivalent to (iter_begins_tag() || iter_ends_tag()), i.e. it tells you whether a range with <em>tag</em> applied to it begins <emphasis>or</emphasis> ends at <em>iter</em>. <a href="#a1b8a333956be379051b987521f383c1b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae9932c4003339e1f294ebd33dec309ed">toggles_tag</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3f3c8fbd79f6f8bd50e3831ee4661a96">has_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>iter</em> is within a range tagged with <em>tag</em>. <a href="#a3f3c8fbd79f6f8bd50e3831ee4661a96"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ab6bc228450c06a466e28717da8e8d1b5">has_tag</a> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae7bb7f1d6de6949cb995d316307ec0bb">get_tags</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of tags that apply to <em>iter</em>, in ascending order of priority (highest-priority tags are last). <a href="#ae7bb7f1d6de6949cb995d316307ec0bb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a><br class="typebreak"/>
< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a749b813bb4c369bff9e04e6f79d487aa">get_tags</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a list of tags that apply to <em>iter</em>, in ascending order of priority (highest-priority tags are last). <a href="#a749b813bb4c369bff9e04e6f79d487aa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3d633d1507cd563706b06e7411486e07">editable</a> (bool default_setting=true) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the character at <em>iter</em> is within an editable region of text. <a href="#a3d633d1507cd563706b06e7411486e07"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a88367b98344313923362b9234ed14f32">can_insert</a> (bool default_editability=true) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Considering the default editability of the buffer, and tags that affect editability, determines whether text inserted at <em>iter</em> would be editable. <a href="#a88367b98344313923362b9234ed14f32"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a727ff792013d3b9d1b2c28ed4b2af514">starts_word</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> begins a natural-language word. <a href="#a727ff792013d3b9d1b2c28ed4b2af514"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a89cf1e2a86328328fdbd63efc1f477be">ends_word</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> ends a natural-language word. <a href="#a89cf1e2a86328328fdbd63efc1f477be"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a63e3578d35cf55bf9ca33bfcac6cf716">inside_word</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> is inside a natural-language word (as opposed to say inside some whitespace). <a href="#a63e3578d35cf55bf9ca33bfcac6cf716"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a5e3ea3c5bcb8aa11ecaeea2be490323b">starts_sentence</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> begins a sentence. <a href="#a5e3ea3c5bcb8aa11ecaeea2be490323b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3cfe850637d87bab19eeedce768461f9">ends_sentence</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> ends a sentence. <a href="#a3cfe850637d87bab19eeedce768461f9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a29ff52b7b859a529ce8036615a7ea11b">inside_sentence</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Determines whether <em>iter</em> is inside a sentence (as opposed to in between two sentences, e.g. after a period and before the first letter of the next sentence). <a href="#a29ff52b7b859a529ce8036615a7ea11b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3af99cb623ef41f2c1ec23e87a27b31a">starts_line</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>iter</em> begins a paragraph, i.e. if iter_get_line_offset() would return 0. <a href="#a3af99cb623ef41f2c1ec23e87a27b31a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aaa5015190ea3032cc5afd1b580e58643">ends_line</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>iter</em> points to the start of the paragraph delimiter characters for a line (delimiters will be either a newline, a carriage return, a carriage return followed by a newline, or a Unicode paragraph separator character). <a href="#aaa5015190ea3032cc5afd1b580e58643"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a6f1cce58629dbc6058576dff992cded0">is_cursor_position</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">See iter_forward_cursor_position() or <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html#ab0b3468a9efcaec7022885d46fd43d09">Pango::LogAttr</a> or pango_break() for details on what a cursor position is. <a href="#a6f1cce58629dbc6058576dff992cded0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#afecdd3d4363598c3cc5058965d0dac2b">get_chars_in_line</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of characters in the line containing <em>iter</em>, including the paragraph delimiters. <a href="#afecdd3d4363598c3cc5058965d0dac2b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a66ae8164fd98bc8552956138800fb547">get_bytes_in_line</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of bytes in the line containing <em>iter</em>, including the paragraph delimiters. <a href="#a66ae8164fd98bc8552956138800fb547"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ab83601605d0226595e4f36477bc666ce">get_attributes</a> (<a class="el" href="classGtk_1_1TextAttributes.html">TextAttributes</a>& values) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Language.html">Pango::Language</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#af47c3ce2b5a03bae097c878c07b5daec">get_language</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A convenience wrapper around iter_get_attributes(), which returns the language in effect at <em>iter</em>. <a href="#af47c3ce2b5a03bae097c878c07b5daec"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a87078ad316a037bdd04a40d85145be3e">is_end</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>iter</em> is the end iterator, i.e. one past the last dereferenceable iterator in the buffer. <a href="#a87078ad316a037bdd04a40d85145be3e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a218044fcce516c2982b2e54225619b93">is_start</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns <code>true</code> if <em>iter</em> is the first iterator in the buffer, that is if <em>iter</em> has a character offset of 0. <a href="#a218044fcce516c2982b2e54225619b93"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a46acea844c69273d92c63d910eca21c9">forward_char</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> forward by one character offset. <a href="#a46acea844c69273d92c63d910eca21c9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aeff64dab2ff97e06452f4ca7c030b758">backward_char</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves backward by one character offset. <a href="#aeff64dab2ff97e06452f4ca7c030b758"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aadbab55d587698d0f51776faa0cc2a43">forward_chars</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> characters if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#aadbab55d587698d0f51776faa0cc2a43"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a4020a5193148a459dcf24bb2bc829870">backward_chars</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> characters backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#a4020a5193148a459dcf24bb2bc829870"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aca8832f0168bbcf8651cff1eb632f13f">forward_line</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> to the start of the next line. <a href="#aca8832f0168bbcf8651cff1eb632f13f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a695ab83b6fbffa39496959a4f9a5eece">backward_line</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> to the start of the previous line. <a href="#a695ab83b6fbffa39496959a4f9a5eece"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#adb054a9ee7862010ad5564571bda2552">forward_lines</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> lines forward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#adb054a9ee7862010ad5564571bda2552"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a8a9e763fe2fd18f11a4156820f39bb9b">backward_lines</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> lines backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#a8a9e763fe2fd18f11a4156820f39bb9b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a05bba655ab512cf1569590d9206d797b">forward_word_end</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves forward to the next word end. <a href="#a05bba655ab512cf1569590d9206d797b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a8f8136c917007d6a4a7c7969221410d2">backward_word_start</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves backward to the previous word start. <a href="#a8f8136c917007d6a4a7c7969221410d2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aa7d74cb53546701ec0b42266ac40e2a1">forward_word_ends</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_forward_word_end() up to <em>count</em> times. <a href="#aa7d74cb53546701ec0b42266ac40e2a1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a14f5b1eeec69bdd6443b75a659407dd8">backward_word_starts</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_backward_word_start() up to <em>count</em> times. <a href="#a14f5b1eeec69bdd6443b75a659407dd8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a506be5cb9d7dd29522b71cddd520bda3">forward_visible_line</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> to the start of the next visible line. <a href="#a506be5cb9d7dd29522b71cddd520bda3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a2d52ce38268847ed46cefca328b478cd">backward_visible_line</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> to the start of the previous visible line. <a href="#a2d52ce38268847ed46cefca328b478cd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a55a295c7dead80d24470f33a67a6dd74">forward_visible_line</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> visible lines forward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#a55a295c7dead80d24470f33a67a6dd74"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a435bac2e52fac10cbd4c5175fcc6893c">backward_visible_lines</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>count</em> visible lines backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). <a href="#a435bac2e52fac10cbd4c5175fcc6893c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac79bd3e6c8cd7ccdc45b8ed8064986e8">forward_visible_word_end</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves forward to the next visible word end. <a href="#ac79bd3e6c8cd7ccdc45b8ed8064986e8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a9e1afad7efe043ebf9f8c8a0aa6b8034">backward_visible_word_start</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves backward to the previous visible word start. <a href="#a9e1afad7efe043ebf9f8c8a0aa6b8034"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ad9a7521c3392d07d24790702433cd1ff">forward_visible_word_ends</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_forward_visible_word_end() up to <em>count</em> times. <a href="#ad9a7521c3392d07d24790702433cd1ff"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a432ef8da68c876335cb020e24b5880d4">backward_visible_word_starts</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_backward_visible_word_start() up to <em>count</em> times. <a href="#a432ef8da68c876335cb020e24b5880d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a2d1c3dc0fa3c7545e6a09aa082e4032e">forward_sentence_end</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves forward to the next sentence end. <a href="#a2d1c3dc0fa3c7545e6a09aa082e4032e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a7e0855474df38a9084db2cec9171140a">backward_sentence_start</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves backward to the previous sentence start; if <em>iter</em> is already at the start of a sentence, moves backward to the next one. <a href="#a7e0855474df38a9084db2cec9171140a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a6aef31e21147f939af5f34ef930f16bf">forward_sentence_ends</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_forward_sentence_end() <em>count</em> times (or until iter_forward_sentence_end() returns <code>false</code>). <a href="#a6aef31e21147f939af5f34ef930f16bf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a86618c5b23bebc739057651aded7751a">backward_sentence_starts</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calls iter_backward_sentence_start() up to <em>count</em> times, or until it returns <code>false</code>. <a href="#a86618c5b23bebc739057651aded7751a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac43e1833c36390271f139096f2246684">forward_cursor_position</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> forward by a single cursor position. <a href="#ac43e1833c36390271f139096f2246684"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ac8a84e76bdbf9c60b214c964a47907d0">backward_cursor_position</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like iter_forward_cursor_position(), but moves backward. <a href="#ac8a84e76bdbf9c60b214c964a47907d0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a8b20683d7513dfb331bb0a1aeffa63c5">forward_cursor_positions</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves up to <em>count</em> cursor positions. <a href="#a8b20683d7513dfb331bb0a1aeffa63c5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a06cd242a69337fdbd712dfa784f2d494">backward_cursor_positions</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves up to <em>count</em> cursor positions. <a href="#a06cd242a69337fdbd712dfa784f2d494"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a647f1e0b30b3ad9470d67f8d42108d6a">forward_visible_cursor_position</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> forward to the next visible cursor position. <a href="#a647f1e0b30b3ad9470d67f8d42108d6a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3ff24ef7f2c58692eb320365cd0d8001">backward_visible_cursor_position</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> forward to the previous visible cursor position. <a href="#a3ff24ef7f2c58692eb320365cd0d8001"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a770ab9cd1f2dd86d586567cb19f8d9a4">forward_visible_cursor_positions</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves up to <em>count</em> visible cursor positions. <a href="#a770ab9cd1f2dd86d586567cb19f8d9a4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a455e4560fbd1fa19a6f8caea4348255f">backward_visible_cursor_positions</a> (int <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01162.html#ga81511cd7112567fa262b05bb22e69874">count</a>)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves up to <em>count</em> visible cursor positions. <a href="#a455e4560fbd1fa19a6f8caea4348255f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a00ce173ce4d3622cc36e48d5bff2374f">set_offset</a> (int char_offset)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>iter</em> to point to <em>char_offset</em>. <a href="#a00ce173ce4d3622cc36e48d5bff2374f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#abfba7a50f3ec781d151cc5643e1b4083">set_line</a> (int line_number)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves iterator <em>iter</em> to the start of the line <em>line_number</em>. <a href="#abfba7a50f3ec781d151cc5643e1b4083"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a62c90b4327191537170c796a23d06b25">set_line_offset</a> (int char_on_line)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> within a line, to a new <emphasis>character</emphasis> (not byte) offset. <a href="#a62c90b4327191537170c796a23d06b25"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#af63b8c2520413efdde54dd8ad5670579">set_line_index</a> (int byte_on_line)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Same as iter_set_line_offset(), but works with a <emphasis>byte</emphasis> index. <a href="#af63b8c2520413efdde54dd8ad5670579"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a70abfc30933f0e8dec3f014128443dc4">forward_to_end</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves <em>iter</em> forward to the "end iterator," which points one past the last valid character in the buffer. <a href="#a70abfc30933f0e8dec3f014128443dc4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a31f8195cab1810e35b88122d2ebd7b90">forward_to_line_end</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves the iterator to point to the paragraph delimiter characters, which will be either a newline, a carriage return, a carriage return/newline in sequence, or the Unicode paragraph separator character. <a href="#a31f8195cab1810e35b88122d2ebd7b90"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a7ccd69e5353e073ce841ff0e02ac6a7e">set_visible_line_offset</a> (int char_on_line)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like iter_set_line_offset(), but the offset is in visible characters, i.e. text with a tag making it invisible is not counted in the offset. <a href="#a7ccd69e5353e073ce841ff0e02ac6a7e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a40b3039e099a9c3d752b8a3809d1ae4d">set_visible_line_index</a> (int byte_on_line)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Like iter_set_line_index(), but the index is in visible bytes, i.e. text with a tag making it invisible is not counted in the index. <a href="#a40b3039e099a9c3d752b8a3809d1ae4d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a89b4fc66df6e0b9b8046c2f70b261629">forward_to_tag_toggle</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves forward to the next toggle (on or off) of the <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> <em>tag</em>, or to the next toggle of any tag if <em>tag</em> is <code>0</code>. <a href="#a89b4fc66df6e0b9b8046c2f70b261629"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ad17e2abaf014a0796ad7c668ca378d58">backward_to_tag_toggle</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& tag)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Moves backward to the next toggle (on or off) of the <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> <em>tag</em>, or to the next toggle of any tag if <em>tag</em> is <code>0</code>. <a href="#ad17e2abaf014a0796ad7c668ca378d58"></a><br/></td></tr>
<tr><td class="memTemplParams" colspan="2">template<class Predicate > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a3103d609ff2e2a08a2297141dff0fee4">forward_find_char</a> (const Predicate& predicate, const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& limit)</td></tr>
<tr><td class="memTemplParams" colspan="2">template<class Predicate > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a1dd44d882c6ce3b85408712d3296c124">forward_find_char</a> (const Predicate& predicate)</td></tr>
<tr><td class="memTemplParams" colspan="2">template<class Predicate > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aef34c49b64ffeb38094e42807279cc7f">backward_find_char</a> (const Predicate& predicate, const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& limit)</td></tr>
<tr><td class="memTemplParams" colspan="2">template<class Predicate > </td></tr>
<tr><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a7426256ea8ef836a507f5b2b85f7ec36">backward_find_char</a> (const Predicate& predicate)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ae74bf1b660263296292752cb2795bea3">forward_search</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& str, <a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> flags, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_start, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_end, const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& limit) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Searches forward for <em>str</em>. <a href="#ae74bf1b660263296292752cb2795bea3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#adfa8920e9c706937136f4d2cdb75b83c">forward_search</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& str, <a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> flags, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_start, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Same as <a class="el" href="classGtk_1_1TextIter.html#ae74bf1b660263296292752cb2795bea3" title="Searches forward for str.">forward_search()</a>, but searchs to the end. <a href="#adfa8920e9c706937136f4d2cdb75b83c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a0750fba2d45f6ed4a314340b2b522019">backward_search</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& str, <a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> flags, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_start, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_end, const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& limit) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Same as iter_forward_search(), but moves backward. <a href="#a0750fba2d45f6ed4a314340b2b522019"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#aea0239e99764c15e789cfe3b0d871676">backward_search</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& str, <a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> flags, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_start, <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& match_end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Same as <a class="el" href="classGtk_1_1TextIter.html#a0750fba2d45f6ed4a314340b2b522019" title="Same as iter_forward_search(), but moves backward.">backward_search()</a>, but searches to the start. <a href="#aea0239e99764c15e789cfe3b0d871676"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a179ef78b967ddcd1b2b5bc04a883785c">compare</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& rhs) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A qsort()-style function that returns negative if <em>lhs</em> is less than <em>rhs</em>, positive if <em>lhs</em> is greater than <em>rhs</em>, and 0 if they're equal. <a href="#a179ef78b967ddcd1b2b5bc04a883785c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#ab537dff76037393f0abec24859561f3c">in_range</a> (const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>&<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01154.html#ga1bd4227a2c4a6cc74342b797384fbab2">start</a>, const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& end) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Checks whether <em>iter</em> falls in the range [ <em>start</em>, <em>end</em>). <a href="#ab537dff76037393f0abec24859561f3c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a4d3c25edf1efe92f5313ac740781238b">order</a> (<a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& second)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Swaps the value of <em>first</em> and <em>second</em> if <em>second</em> comes before <em>first</em> in the buffer. <a href="#a4d3c25edf1efe92f5313ac740781238b"></a><br/></td></tr>
<tr><td colspan="2"><h2>Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkTextIter </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a533d80230ee6366bc575bed7369f4afb">gobject_</a></td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1TextIter.html">Gtk::TextIter</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a5497a6a3458131b32c6aaa0fcab3f511">wrap</a> (GtkTextIter* object)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1TextIter.html">Gtk::TextIter</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1TextIter.html#a5d77ba6925f3144ad49e36412791b7aa">wrap</a> (const GtkTextIter* object)</td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>Typefed as <a class="el" href="classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">Gtk::TextBuffer::iterator</a>. </p>
<p>An iterator represents a position between two characters in the text buffer. Iterators are not valid indefinitely; whenever the buffer is modified in a way that affects the number of characters in the buffer, all outstanding iterators become invalid. (Note that deleting 5 characters and then reinserting 5 still invalidates iterators, though you end up with the same number of characters you pass through a state with a different number).</p>
<p>Because of this, iterators can't be used to preserve positions across buffer modifications. To preserve a position, the <a class="el" href="classGtk_1_1TextMark.html">Gtk::TextBuffer::Mark</a> object is ideal.</p>
<p>You can iterate over characters, words, lines, and sentences, but <a class="el" href="classGtk_1_1TextIter.html#a25bc72debbe24fa32719261d591949e7" title="Alias for get_char().">operator*()</a> and <a class="el" href="classGtk_1_1TextIter.html#a11ef1de054169a9ca48cca88d03ad04e" title="Alias for forward_char().">operator++()</a> deal only in characters. </p>
<hr/><h2>Member Typedef Documentation</h2>
<a class="anchor" id="a1d32cb4ee3ea8790352a473954ddbbd4"></a><!-- doxytag: member="Gtk::TextIter::difference_type" ref="a1d32cb4ee3ea8790352a473954ddbbd4" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef int <a class="el" href="classGtk_1_1TextIter.html#a1d32cb4ee3ea8790352a473954ddbbd4">Gtk::TextIter::difference_type</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a3a01330bff36d513299c97cd3e877181"></a><!-- doxytag: member="Gtk::TextIter::iterator_category" ref="a3a01330bff36d513299c97cd3e877181" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00400.html">std::bidirectional_iterator_tag</a> <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00400.html">Gtk::TextIter::iterator_category</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a42c43f99b310aee6c53adbd6dd71fe51"></a><!-- doxytag: member="Gtk::TextIter::pointer" ref="a42c43f99b310aee6c53adbd6dd71fe51" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef void <a class="el" href="classGtk_1_1TextIter.html#a42c43f99b310aee6c53adbd6dd71fe51">Gtk::TextIter::pointer</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aa0c83319eb101749fe43d587a0db45da"></a><!-- doxytag: member="Gtk::TextIter::reference" ref="aa0c83319eb101749fe43d587a0db45da" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef <a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">value_type</a> <a class="el" href="classGtk_1_1TextIter.html#aa0c83319eb101749fe43d587a0db45da">Gtk::TextIter::reference</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ae1f6efe5a5875e7198e3de43c64e2db0"></a><!-- doxytag: member="Gtk::TextIter::value_type" ref="ae1f6efe5a5875e7198e3de43c64e2db0" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef gunichar <a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">Gtk::TextIter::value_type</a></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a311d1ed5fa8bd0d55d18b743d45bd118"></a><!-- doxytag: member="Gtk::TextIter::TextIter" ref="a311d1ed5fa8bd0d55d18b743d45bd118" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::TextIter::TextIter </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac015411ec402d42fe22dfa048a97d7b2"></a><!-- doxytag: member="Gtk::TextIter::TextIter" ref="ac015411ec402d42fe22dfa048a97d7b2" args="(const GtkTextIter *gobject)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::TextIter::TextIter </td>
<td>(</td>
<td class="paramtype">const GtkTextIter * </td>
<td class="paramname"> <em>gobject</em></td>
<td> ) </td>
<td><code> [explicit]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="aeff64dab2ff97e06452f4ca7c030b758"></a><!-- doxytag: member="Gtk::TextIter::backward_char" ref="aeff64dab2ff97e06452f4ca7c030b758" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_char </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves backward by one character offset. </p>
<p>Returns <code>true</code> if movement was possible; if <em>iter</em> was the first in the buffer (character offset 0), iter_backward_char() returns <code>false</code> for convenience when writing loops. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether movement was possible. </dd></dl>
</div>
</div>
<a class="anchor" id="a4020a5193148a459dcf24bb2bc829870"></a><!-- doxytag: member="Gtk::TextIter::backward_chars" ref="a4020a5193148a459dcf24bb2bc829870" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_chars </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> characters backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the iterator moved onto a dereferenceable position; if the iterator didn't move, or moved onto the end iterator, then <code>false</code> is returned. If <em>count</em> is 0, the function does nothing and returns <code>false</code>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of characters to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="ac8a84e76bdbf9c60b214c964a47907d0"></a><!-- doxytag: member="Gtk::TextIter::backward_cursor_position" ref="ac8a84e76bdbf9c60b214c964a47907d0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_cursor_position </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like iter_forward_cursor_position(), but moves backward. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved. </dd></dl>
</div>
</div>
<a class="anchor" id="a06cd242a69337fdbd712dfa784f2d494"></a><!-- doxytag: member="Gtk::TextIter::backward_cursor_positions" ref="a06cd242a69337fdbd712dfa784f2d494" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_cursor_positions </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves up to <em>count</em> cursor positions. </p>
<p>See iter_forward_cursor_position() for details. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of positions to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a7426256ea8ef836a507f5b2b85f7ec36"></a><!-- doxytag: member="Gtk::TextIter::backward_find_char" ref="a7426256ea8ef836a507f5b2b85f7ec36" args="(const Predicate &predicate)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class Predicate > </div>
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_find_char </td>
<td>(</td>
<td class="paramtype">const Predicate & </td>
<td class="paramname"> <em>predicate</em></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aef34c49b64ffeb38094e42807279cc7f"></a><!-- doxytag: member="Gtk::TextIter::backward_find_char" ref="aef34c49b64ffeb38094e42807279cc7f" args="(const Predicate &predicate, const TextIter &limit)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class Predicate > </div>
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_find_char </td>
<td>(</td>
<td class="paramtype">const Predicate & </td>
<td class="paramname"> <em>predicate</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>limit</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a695ab83b6fbffa39496959a4f9a5eece"></a><!-- doxytag: member="Gtk::TextIter::backward_line" ref="a695ab83b6fbffa39496959a4f9a5eece" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> to the start of the previous line. </p>
<p>Returns <code>true</code> if <em>iter</em> could be moved; i.e. if <em>iter</em> was at character offset 0, this function returns <code>false</code>. Therefore if <em>iter</em> was already on line 0, but not at the start of the line, <em>iter</em> is snapped to the start of the line and the function returns <code>true</code>. (Note that this implies that in a loop calling this function, the line number may not change on every iteration, if your first iteration is on line 0.) </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved. </dd></dl>
</div>
</div>
<a class="anchor" id="a8a9e763fe2fd18f11a4156820f39bb9b"></a><!-- doxytag: member="Gtk::TextIter::backward_lines" ref="a8a9e763fe2fd18f11a4156820f39bb9b" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_lines </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> lines backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the iterator moved onto a dereferenceable position; if the iterator didn't move, or moved onto the end iterator, then <code>false</code> is returned. If <em>count</em> is 0, the function does nothing and returns <code>false</code>. If <em>count</em> is negative, moves forward by 0 - <em>count</em> lines. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of lines to move backward. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="aea0239e99764c15e789cfe3b0d871676"></a><!-- doxytag: member="Gtk::TextIter::backward_search" ref="aea0239e99764c15e789cfe3b0d871676" args="(const Glib::ustring &str, TextSearchFlags flags, TextIter &match_start, TextIter &match_end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_search </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> </td>
<td class="paramname"> <em>flags</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_end</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Same as <a class="el" href="classGtk_1_1TextIter.html#a0750fba2d45f6ed4a314340b2b522019" title="Same as iter_forward_search(), but moves backward.">backward_search()</a>, but searches to the start. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>Search string. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>flags</em> </td><td>Bitmask of flags affecting the search. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_start</em> </td><td>Return location for start of match, or <code>0</code>. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_end</em> </td><td>Return location for end of match, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether a match was found. </dd></dl>
</div>
</div>
<a class="anchor" id="a0750fba2d45f6ed4a314340b2b522019"></a><!-- doxytag: member="Gtk::TextIter::backward_search" ref="a0750fba2d45f6ed4a314340b2b522019" args="(const Glib::ustring &str, TextSearchFlags flags, TextIter &match_start, TextIter &match_end, const TextIter &limit) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_search </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> </td>
<td class="paramname"> <em>flags</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_end</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>limit</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Same as iter_forward_search(), but moves backward. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>Search string. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>flags</em> </td><td>Bitmask of flags affecting the search. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_start</em> </td><td>Return location for start of match. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_end</em> </td><td>Return location for end of match. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>limit</em> </td><td>Location of last possible <em>match_start</em>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether a match was found. </dd></dl>
</div>
</div>
<a class="anchor" id="a7e0855474df38a9084db2cec9171140a"></a><!-- doxytag: member="Gtk::TextIter::backward_sentence_start" ref="a7e0855474df38a9084db2cec9171140a" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_sentence_start </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves backward to the previous sentence start; if <em>iter</em> is already at the start of a sentence, moves backward to the next one. </p>
<p>Sentence boundaries are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text boundary algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a86618c5b23bebc739057651aded7751a"></a><!-- doxytag: member="Gtk::TextIter::backward_sentence_starts" ref="a86618c5b23bebc739057651aded7751a" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_sentence_starts </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_backward_sentence_start() up to <em>count</em> times, or until it returns <code>false</code>. </p>
<p>If <em>count</em> is negative, moves forward instead of backward. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of sentences to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="ad17e2abaf014a0796ad7c668ca378d58"></a><!-- doxytag: member="Gtk::TextIter::backward_to_tag_toggle" ref="ad17e2abaf014a0796ad7c668ca378d58" args="(const Glib::RefPtr< TextTag > &tag)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_to_tag_toggle </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves backward to the next toggle (on or off) of the <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> <em>tag</em>, or to the next toggle of any tag if <em>tag</em> is <code>0</code>. </p>
<p>If no matching tag toggles are found, returns <code>false</code>, otherwise <code>true</code>. Does not return toggles located at <em>iter</em>, only toggles before <em>iter</em>. Sets <em>iter</em> to the location of the toggle, or the start of the buffer if no toggle is found. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether we found a tag toggle before <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a3ff24ef7f2c58692eb320365cd0d8001"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_cursor_position" ref="a3ff24ef7f2c58692eb320365cd0d8001" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_cursor_position </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> forward to the previous visible cursor position. </p>
<p>See iter_backward_cursor_position() for details.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000235">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a455e4560fbd1fa19a6f8caea4348255f"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_cursor_positions" ref="a455e4560fbd1fa19a6f8caea4348255f" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_cursor_positions </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves up to <em>count</em> visible cursor positions. </p>
<p>See iter_backward_cursor_position() for details.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000237">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of positions to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a2d52ce38268847ed46cefca328b478cd"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_line" ref="a2d52ce38268847ed46cefca328b478cd" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> to the start of the previous visible line. </p>
<p>Returns <code>true</code> if <em>iter</em> could be moved; i.e. if <em>iter</em> was at character offset 0, this function returns <code>false</code>. Therefore if <em>iter</em> was already on line 0, but not at the start of the line, <em>iter</em> is snapped to the start of the line and the function returns <code>true</code>. (Note that this implies that in a loop calling this function, the line number may not change on every iteration, if your first iteration is on line 0.)</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000041">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved. </dd></dl>
</div>
</div>
<a class="anchor" id="a435bac2e52fac10cbd4c5175fcc6893c"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_lines" ref="a435bac2e52fac10cbd4c5175fcc6893c" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_lines </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> visible lines backward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the iterator moved onto a dereferenceable position; if the iterator didn't move, or moved onto the end iterator, then <code>false</code> is returned. If <em>count</em> is 0, the function does nothing and returns <code>false</code>. If <em>count</em> is negative, moves forward by 0 - <em>count</em> lines.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000043">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of lines to move backward. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a9e1afad7efe043ebf9f8c8a0aa6b8034"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_word_start" ref="a9e1afad7efe043ebf9f8c8a0aa6b8034" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_word_start </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves backward to the previous visible word start. </p>
<p>(If <em>iter</em> is currently on a word start, moves backward to the next one after that.) Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms).</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000231">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a432ef8da68c876335cb020e24b5880d4"></a><!-- doxytag: member="Gtk::TextIter::backward_visible_word_starts" ref="a432ef8da68c876335cb020e24b5880d4" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_visible_word_starts </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_backward_visible_word_start() up to <em>count</em> times. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000233">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of times to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a8f8136c917007d6a4a7c7969221410d2"></a><!-- doxytag: member="Gtk::TextIter::backward_word_start" ref="a8f8136c917007d6a4a7c7969221410d2" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_word_start </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves backward to the previous word start. </p>
<p>(If <em>iter</em> is currently on a word start, moves backward to the next one after that.) Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a14f5b1eeec69bdd6443b75a659407dd8"></a><!-- doxytag: member="Gtk::TextIter::backward_word_starts" ref="a14f5b1eeec69bdd6443b75a659407dd8" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::backward_word_starts </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_backward_word_start() up to <em>count</em> times. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of times to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a7b25da844d333a260e981c102a7939c6"></a><!-- doxytag: member="Gtk::TextIter::begins_tag" ref="a7b25da844d333a260e981c102a7939c6" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::begins_tag </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="afa90f81adb24aa2a32696aad22f78c46"></a><!-- doxytag: member="Gtk::TextIter::begins_tag" ref="afa90f81adb24aa2a32696aad22f78c46" args="(const Glib::RefPtr< const TextTag > &tag) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::begins_tag </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>tag</em> is toggled on at exactly this point. </p>
<p>If <em>tag</em> is <code>0</code>, returns <code>true</code> if any tag is toggled on at this point. Note that the iter_begins_tag() returns <code>true</code> if <em>iter</em> is the <emphasis>start</emphasis> of the tagged range; iter_has_tag() tells you whether an iterator is <emphasis>within</emphasis> a tagged range. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is the start of a range tagged with <em>tag</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a88367b98344313923362b9234ed14f32"></a><!-- doxytag: member="Gtk::TextIter::can_insert" ref="a88367b98344313923362b9234ed14f32" args="(bool default_editability=true) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::can_insert </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>default_editability</em> = <code>true</code></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Considering the default editability of the buffer, and tags that affect editability, determines whether text inserted at <em>iter</em> would be editable. </p>
<p>If text inserted at <em>iter</em> would be editable then the user should be allowed to insert text at <em>iter</em>. <a class="el" href="classGtk_1_1TextBuffer.html#a5ae3a0c42cf66591c116dbb5ab3efd5f" title="Like insert(), but the insertion will not occur if iter is at a non-editable location...">Gtk::TextBuffer::insert_interactive()</a> uses this function to decide whether insertions are allowed at a given position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>default_editability</em> </td><td><code>true</code> if text is editable by default. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether text inserted at <em>iter</em> would be editable. </dd></dl>
</div>
</div>
<a class="anchor" id="a179ef78b967ddcd1b2b5bc04a883785c"></a><!-- doxytag: member="Gtk::TextIter::compare" ref="a179ef78b967ddcd1b2b5bc04a883785c" args="(const TextIter &rhs) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::compare </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>rhs</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>A qsort()-style function that returns negative if <em>lhs</em> is less than <em>rhs</em>, positive if <em>lhs</em> is greater than <em>rhs</em>, and 0 if they're equal. </p>
<p>Ordering is in character offset order, i.e. the first character in the buffer is less than the second character in the buffer. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>rhs</em> </td><td>Another <a class="el" href="classGtk_1_1TextIter.html" title="Typefed as Gtk::TextBuffer::iterator.">Gtk::TextIter</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>-1 if <em>lhs</em> is less than <em>rhs</em>, 1 if <em>lhs</em> is greater, 0 if they are equal. </dd></dl>
</div>
</div>
<a class="anchor" id="a3d633d1507cd563706b06e7411486e07"></a><!-- doxytag: member="Gtk::TextIter::editable" ref="a3d633d1507cd563706b06e7411486e07" args="(bool default_setting=true) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::editable </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>default_setting</em> = <code>true</code></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns whether the character at <em>iter</em> is within an editable region of text. </p>
<p>Non-editable text is "locked" and can't be changed by the user via <a class="el" href="classGtk_1_1TextView.html" title="Multi-line text editing widget.">Gtk::TextView</a>. This function is simply a convenience wrapper around iter_get_attributes(). If no tags applied to this text affect editability, <em>default_setting</em> will be returned.</p>
<p>You don't want to use this function to decide whether text can be inserted at <em>iter</em>, because for insertion you don't want to know whether the char at <em>iter</em> is inside an editable range, you want to know whether a new character inserted at <em>iter</em> would be inside an editable range. Use iter_can_insert() to handle this case. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>default_setting</em> </td><td><code>true</code> if text is editable by default. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is inside an editable range. </dd></dl>
</div>
</div>
<a class="anchor" id="aaa5015190ea3032cc5afd1b580e58643"></a><!-- doxytag: member="Gtk::TextIter::ends_line" ref="aaa5015190ea3032cc5afd1b580e58643" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::ends_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>iter</em> points to the start of the paragraph delimiter characters for a line (delimiters will be either a newline, a carriage return, a carriage return followed by a newline, or a Unicode paragraph separator character). </p>
<p>Note that an iterator pointing to the <code>\n</code> of a <code>\r</code><code>\n</code> pair will not be counted as the end of a line, the line ends before the <code>\r</code>. The end iterator is considered to be at the end of a line, even though there are no paragraph delimiter chars there. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is at the end of a line. </dd></dl>
</div>
</div>
<a class="anchor" id="a3cfe850637d87bab19eeedce768461f9"></a><!-- doxytag: member="Gtk::TextIter::ends_sentence" ref="a3cfe850637d87bab19eeedce768461f9" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::ends_sentence </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> ends a sentence. </p>
<p>Sentence boundaries are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text boundary algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is at the end of a sentence. </dd></dl>
</div>
</div>
<a class="anchor" id="a9cbd50e0caf2f3c4d56af8d3f619b3a6"></a><!-- doxytag: member="Gtk::TextIter::ends_tag" ref="a9cbd50e0caf2f3c4d56af8d3f619b3a6" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::ends_tag </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a69904722c3b9e761eae2aba31d5a88d5"></a><!-- doxytag: member="Gtk::TextIter::ends_tag" ref="a69904722c3b9e761eae2aba31d5a88d5" args="(const Glib::RefPtr< const TextTag > &tag) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::ends_tag </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>tag</em> is toggled off at exactly this point. </p>
<p>If <em>tag</em> is <code>0</code>, returns <code>true</code> if any tag is toggled off at this point. Note that the iter_ends_tag() returns <code>true</code> if <em>iter</em> is the <emphasis>end</emphasis> of the tagged range; iter_has_tag() tells you whether an iterator is <emphasis>within</emphasis> a tagged range. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is the end of a range tagged with <em>tag</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a89cf1e2a86328328fdbd63efc1f477be"></a><!-- doxytag: member="Gtk::TextIter::ends_word" ref="a89cf1e2a86328328fdbd63efc1f477be" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::ends_word </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> ends a natural-language word. </p>
<p>Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is at the end of a word. </dd></dl>
</div>
</div>
<a class="anchor" id="a46acea844c69273d92c63d910eca21c9"></a><!-- doxytag: member="Gtk::TextIter::forward_char" ref="a46acea844c69273d92c63d910eca21c9" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_char </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> forward by one character offset. </p>
<p>Note that images embedded in the buffer occupy 1 character slot, so iter_forward_char() may actually move onto an image instead of a character, if you have images in your buffer. If <em>iter</em> is the end iterator or one character before it, <em>iter</em> will now point at the end iterator, and iter_forward_char() returns <code>false</code> for convenience when writing loops. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="aadbab55d587698d0f51776faa0cc2a43"></a><!-- doxytag: member="Gtk::TextIter::forward_chars" ref="aadbab55d587698d0f51776faa0cc2a43" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_chars </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> characters if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the new position of <em>iter</em> is different from its original position, and dereferenceable (the last iterator in the buffer is not dereferenceable). If <em>count</em> is 0, the function does nothing and returns <code>false</code>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of characters to move, may be negative. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="ac43e1833c36390271f139096f2246684"></a><!-- doxytag: member="Gtk::TextIter::forward_cursor_position" ref="ac43e1833c36390271f139096f2246684" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_cursor_position </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> forward by a single cursor position. </p>
<p>Cursor positions are (unsurprisingly) positions where the cursor can appear. Perhaps surprisingly, there may not be a cursor position between all characters. The most common example for European languages would be a carriage return/newline sequence. For some Unicode characters, the equivalent of say the letter "a" with an accent mark will be represented as two characters, first the letter then a "combining
mark" that causes the accent to be rendered; so the cursor can't go between those two characters. See also the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html#ab0b3468a9efcaec7022885d46fd43d09">Pango::LogAttr</a> structure and pango_break() function. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a8b20683d7513dfb331bb0a1aeffa63c5"></a><!-- doxytag: member="Gtk::TextIter::forward_cursor_positions" ref="a8b20683d7513dfb331bb0a1aeffa63c5" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_cursor_positions </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves up to <em>count</em> cursor positions. </p>
<p>See iter_forward_cursor_position() for details. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of positions to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a1dd44d882c6ce3b85408712d3296c124"></a><!-- doxytag: member="Gtk::TextIter::forward_find_char" ref="a1dd44d882c6ce3b85408712d3296c124" args="(const Predicate &predicate)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class Predicate > </div>
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_find_char </td>
<td>(</td>
<td class="paramtype">const Predicate & </td>
<td class="paramname"> <em>predicate</em></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a3103d609ff2e2a08a2297141dff0fee4"></a><!-- doxytag: member="Gtk::TextIter::forward_find_char" ref="a3103d609ff2e2a08a2297141dff0fee4" args="(const Predicate &predicate, const TextIter &limit)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class Predicate > </div>
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_find_char </td>
<td>(</td>
<td class="paramtype">const Predicate & </td>
<td class="paramname"> <em>predicate</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>limit</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aca8832f0168bbcf8651cff1eb632f13f"></a><!-- doxytag: member="Gtk::TextIter::forward_line" ref="aca8832f0168bbcf8651cff1eb632f13f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> to the start of the next line. </p>
<p>If the iter is already on the last line of the buffer, moves the iter to the end of the current line. If after the operation, the iter is at the end of the buffer and not dereferencable, returns <code>false</code>. Otherwise, returns <code>true</code>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> can be dereferenced. </dd></dl>
</div>
</div>
<a class="anchor" id="adb054a9ee7862010ad5564571bda2552"></a><!-- doxytag: member="Gtk::TextIter::forward_lines" ref="adb054a9ee7862010ad5564571bda2552" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_lines </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> lines forward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the iterator moved onto a dereferenceable position; if the iterator didn't move, or moved onto the end iterator, then <code>false</code> is returned. If <em>count</em> is 0, the function does nothing and returns <code>false</code>. If <em>count</em> is negative, moves backward by 0 - <em>count</em> lines. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of lines to move forward. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="adfa8920e9c706937136f4d2cdb75b83c"></a><!-- doxytag: member="Gtk::TextIter::forward_search" ref="adfa8920e9c706937136f4d2cdb75b83c" args="(const Glib::ustring &str, TextSearchFlags flags, TextIter &match_start, TextIter &match_end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_search </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> </td>
<td class="paramname"> <em>flags</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_end</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Same as <a class="el" href="classGtk_1_1TextIter.html#ae74bf1b660263296292752cb2795bea3" title="Searches forward for str.">forward_search()</a>, but searchs to the end. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>A search string. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>flags</em> </td><td>Flags affecting how the search is done. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_start</em> </td><td>Return location for start of match, or <code>0</code>. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_end</em> </td><td>Return location for end of match, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether a match was found. </dd></dl>
</div>
</div>
<a class="anchor" id="ae74bf1b660263296292752cb2795bea3"></a><!-- doxytag: member="Gtk::TextIter::forward_search" ref="ae74bf1b660263296292752cb2795bea3" args="(const Glib::ustring &str, TextSearchFlags flags, TextIter &match_start, TextIter &match_end, const TextIter &limit) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_search </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga45bb48ef86a7da2535de94066029bc29">TextSearchFlags</a> </td>
<td class="paramname"> <em>flags</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>match_end</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>limit</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Searches forward for <em>str</em>. </p>
<p>Any match is returned by setting <em>match_start</em> to the first character of the match and <em>match_end</em> to the first character after the match. The search will not continue past <em>limit</em>. Note that a search is a linear or O(n) operation, so you may wish to use <em>limit</em> to avoid locking up your UI on large buffers.</p>
<p>If the <a class="el" href="group__gtkmmEnums.html#gga45bb48ef86a7da2535de94066029bc29a0b28cb0bb916b26583fc45f408fe3862">Gtk::TEXT_SEARCH_VISIBLE_ONLY</a> flag is present, the match may have invisible text interspersed in <em>str</em>. i.e. <em>str</em> will be a possibly-noncontiguous subsequence of the matched range. similarly, if you specify <a class="el" href="group__gtkmmEnums.html#gga45bb48ef86a7da2535de94066029bc29a9e7c657edf1a930f28a43fb22314d063">Gtk::TEXT_SEARCH_TEXT_ONLY</a>, the match may have pixbufs or child widgets mixed inside the matched range. If these flags are not given, the match must be exact; the special 0xFFFC character in <em>str</em> will match embedded pixbufs or child widgets. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>str</em> </td><td>A search string. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>flags</em> </td><td>Flags affecting how the search is done. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_start</em> </td><td>Return location for start of match. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>match_end</em> </td><td>Return location for end of match. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>limit</em> </td><td>Bound for the search. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether a match was found. </dd></dl>
</div>
</div>
<a class="anchor" id="a2d1c3dc0fa3c7545e6a09aa082e4032e"></a><!-- doxytag: member="Gtk::TextIter::forward_sentence_end" ref="a2d1c3dc0fa3c7545e6a09aa082e4032e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_sentence_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves forward to the next sentence end. </p>
<p>(If <em>iter</em> is at the end of a sentence, moves to the next end of sentence.) Sentence boundaries are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text boundary algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a6aef31e21147f939af5f34ef930f16bf"></a><!-- doxytag: member="Gtk::TextIter::forward_sentence_ends" ref="a6aef31e21147f939af5f34ef930f16bf" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_sentence_ends </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_forward_sentence_end() <em>count</em> times (or until iter_forward_sentence_end() returns <code>false</code>). </p>
<p>If <em>count</em> is negative, moves backward instead of forward. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of sentences to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a70abfc30933f0e8dec3f014128443dc4"></a><!-- doxytag: member="Gtk::TextIter::forward_to_end" ref="a70abfc30933f0e8dec3f014128443dc4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::forward_to_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> forward to the "end iterator," which points one past the last valid character in the buffer. </p>
<p>iter_get_char() called on the end iterator returns 0, which is convenient for writing loops. </p>
</div>
</div>
<a class="anchor" id="a31f8195cab1810e35b88122d2ebd7b90"></a><!-- doxytag: member="Gtk::TextIter::forward_to_line_end" ref="a31f8195cab1810e35b88122d2ebd7b90" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_to_line_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves the iterator to point to the paragraph delimiter characters, which will be either a newline, a carriage return, a carriage return/newline in sequence, or the Unicode paragraph separator character. </p>
<p>If the iterator is already at the paragraph delimiter characters, moves to the paragraph delimiter characters for the next line. If <em>iter</em> is on the last line in the buffer, which does not end in paragraph delimiters, moves to the end iterator (end of the last line), and returns <code>false</code>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new location is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a89b4fc66df6e0b9b8046c2f70b261629"></a><!-- doxytag: member="Gtk::TextIter::forward_to_tag_toggle" ref="a89b4fc66df6e0b9b8046c2f70b261629" args="(const Glib::RefPtr< TextTag > &tag)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_to_tag_toggle </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves forward to the next toggle (on or off) of the <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> <em>tag</em>, or to the next toggle of any tag if <em>tag</em> is <code>0</code>. </p>
<p>If no matching tag toggles are found, returns <code>false</code>, otherwise <code>true</code>. Does not return toggles located at <em>iter</em>, only toggles after <em>iter</em>. Sets <em>iter</em> to the location of the toggle, or to the end of the buffer if no toggle is found. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether we found a tag toggle after <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a647f1e0b30b3ad9470d67f8d42108d6a"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_cursor_position" ref="a647f1e0b30b3ad9470d67f8d42108d6a" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_cursor_position </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> forward to the next visible cursor position. </p>
<p>See iter_forward_cursor_position() for details.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000234">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a770ab9cd1f2dd86d586567cb19f8d9a4"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_cursor_positions" ref="a770ab9cd1f2dd86d586567cb19f8d9a4" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_cursor_positions </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves up to <em>count</em> visible cursor positions. </p>
<p>See iter_forward_cursor_position() for details.</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000236">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of positions to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if we moved and the new position is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a55a295c7dead80d24470f33a67a6dd74"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_line" ref="a55a295c7dead80d24470f33a67a6dd74" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_line </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>count</em> visible lines forward, if possible (if <em>count</em> would move past the start or end of the buffer, moves to the start or end of the buffer). </p>
<p>The return value indicates whether the iterator moved onto a dereferenceable position; if the iterator didn't move, or moved onto the end iterator, then <code>false</code> is returned. If <em>count</em> is 0, the function does nothing and returns <code>false</code>. If <em>count</em> is negative, moves backward by 0 - <em>count</em> lines.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000042">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of lines to move forward. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> moved and is dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="a506be5cb9d7dd29522b71cddd520bda3"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_line" ref="a506be5cb9d7dd29522b71cddd520bda3" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> to the start of the next visible line. </p>
<p>Returns <code>true</code> if there was a next line to move to, and <code>false</code> if <em>iter</em> was simply moved to the end of the buffer and is now not dereferenceable, or if <em>iter</em> was already at the end of the buffer.</p>
<dl class="since_2_8"><dt><b><a class="el" href="since_2_8.html#_since_2_8000040">Since gtkmm 2.8:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> can be dereferenced. </dd></dl>
</div>
</div>
<a class="anchor" id="ac79bd3e6c8cd7ccdc45b8ed8064986e8"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_word_end" ref="ac79bd3e6c8cd7ccdc45b8ed8064986e8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_word_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves forward to the next visible word end. </p>
<p>(If <em>iter</em> is currently on a word end, moves forward to the next one after that.) Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms).</p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000230">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="ad9a7521c3392d07d24790702433cd1ff"></a><!-- doxytag: member="Gtk::TextIter::forward_visible_word_ends" ref="ad9a7521c3392d07d24790702433cd1ff" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_visible_word_ends </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_forward_visible_word_end() up to <em>count</em> times. </p>
<dl class="since_2_4"><dt><b><a class="el" href="since_2_4.html#_since_2_4000232">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of times to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a05bba655ab512cf1569590d9206d797b"></a><!-- doxytag: member="Gtk::TextIter::forward_word_end" ref="a05bba655ab512cf1569590d9206d797b" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_word_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves forward to the next word end. </p>
<p>(If <em>iter</em> is currently on a word end, moves forward to the next one after that.) Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="aa7d74cb53546701ec0b42266ac40e2a1"></a><!-- doxytag: member="Gtk::TextIter::forward_word_ends" ref="aa7d74cb53546701ec0b42266ac40e2a1" args="(int count)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::forward_word_ends </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>count</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Calls iter_forward_word_end() up to <em>count</em> times. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>count</em> </td><td>Number of times to move. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> moved and is not the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="ab83601605d0226595e4f36477bc666ce"></a><!-- doxytag: member="Gtk::TextIter::get_attributes" ref="ab83601605d0226595e4f36477bc666ce" args="(TextAttributes &values) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::get_attributes </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextAttributes.html">TextAttributes</a>& </td>
<td class="paramname"> <em>values</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="af2244ebff821e640cd163779711d96a8"></a><!-- doxytag: member="Gtk::TextIter::get_buffer" ref="af2244ebff821e640cd163779711d96a8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1TextBuffer.html">TextBuffer</a>> Gtk::TextIter::get_buffer </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets...">Gtk::TextBuffer</a> this iterator is associated with. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The buffer. </dd></dl>
</div>
</div>
<a class="anchor" id="a66ae8164fd98bc8552956138800fb547"></a><!-- doxytag: member="Gtk::TextIter::get_bytes_in_line" ref="a66ae8164fd98bc8552956138800fb547" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_bytes_in_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the number of bytes in the line containing <em>iter</em>, including the paragraph delimiters. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Number of bytes in the line. </dd></dl>
</div>
</div>
<a class="anchor" id="a63cd8afd6fb53bdedef424b42bbc66b7"></a><!-- doxytag: member="Gtk::TextIter::get_char" ref="a63cd8afd6fb53bdedef424b42bbc66b7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gunichar Gtk::TextIter::get_char </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the Unicode character at this iterator. </p>
<p>(Equivalent to operator* on a C++ iterator.) If the element at this iterator is a non-character element, such as an image embedded in the buffer, the Unicode "unknown" character 0xFFFC is returned. If invoked on the end iterator, zero is returned; zero is not a valid Unicode character. So you can write a loop which ends when iter_get_char() returns 0. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A Unicode character, or 0 if <em>iter</em> is not dereferenceable. </dd></dl>
</div>
</div>
<a class="anchor" id="afecdd3d4363598c3cc5058965d0dac2b"></a><!-- doxytag: member="Gtk::TextIter::get_chars_in_line" ref="afecdd3d4363598c3cc5058965d0dac2b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_chars_in_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the number of characters in the line containing <em>iter</em>, including the paragraph delimiters. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Number of characters in the line. </dd></dl>
</div>
</div>
<a class="anchor" id="a682ce9b6067548ab103cd3f64867b986"></a><!-- doxytag: member="Gtk::TextIter::get_child_anchor" ref="a682ce9b6067548ab103cd3f64867b986" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGtk_1_1TextChildAnchor.html">TextChildAnchor</a>> Gtk::TextIter::get_child_anchor </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>If the location at <em>iter</em> contains a child anchor, the anchor is returned (with no new reference count added). </p>
<p>Otherwise, <code>0</code> is returned. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The anchor at <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab8ee402bb518aeed4aeef15f29710cb4"></a><!-- doxytag: member="Gtk::TextIter::get_child_anchor" ref="ab8ee402bb518aeed4aeef15f29710cb4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1TextChildAnchor.html">TextChildAnchor</a>> Gtk::TextIter::get_child_anchor </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>If the location at <em>iter</em> contains a child anchor, the anchor is returned (with no new reference count added). </p>
<p>Otherwise, <code>0</code> is returned. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The anchor at <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="af47c3ce2b5a03bae097c878c07b5daec"></a><!-- doxytag: member="Gtk::TextIter::get_language" ref="af47c3ce2b5a03bae097c878c07b5daec" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/classPango_1_1Language.html">Pango::Language</a> Gtk::TextIter::get_language </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>A convenience wrapper around iter_get_attributes(), which returns the language in effect at <em>iter</em>. </p>
<p>If no tags affecting language apply to <em>iter</em>, the return value is identical to that of gtk_get_default_language(). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Language in effect at <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ae51ca638396eb61fd1997b6c1538f0c7"></a><!-- doxytag: member="Gtk::TextIter::get_line" ref="ae51ca638396eb61fd1997b6c1538f0c7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the line number containing the iterator. </p>
<p>Lines in a <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets...">Gtk::TextBuffer</a> are numbered beginning with 0 for the first line in the buffer. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A line number. </dd></dl>
</div>
</div>
<a class="anchor" id="a4a0c83b81f49e182c60e7f7c40fad8f8"></a><!-- doxytag: member="Gtk::TextIter::get_line_index" ref="a4a0c83b81f49e182c60e7f7c40fad8f8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_line_index </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the byte index of the iterator, counting from the start of a newline-terminated line. </p>
<p>Remember that <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets...">Gtk::TextBuffer</a> encodes text in UTF-8, and that characters can require a variable number of bytes to represent. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Distance from start of line, in bytes. </dd></dl>
</div>
</div>
<a class="anchor" id="a93ea3d3cfcc39f69555545b4bdd38530"></a><!-- doxytag: member="Gtk::TextIter::get_line_offset" ref="a93ea3d3cfcc39f69555545b4bdd38530" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_line_offset </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the character offset of the iterator, counting from the start of a newline-terminated line. </p>
<p>The first character on the line has offset 0. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Offset from start of line. </dd></dl>
</div>
</div>
<a class="anchor" id="a816e1c24bb5462aec8d4d540044a6239"></a><!-- doxytag: member="Gtk::TextIter::get_marks" ref="a816e1c24bb5462aec8d4d540044a6239" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGtk_1_1TextMark.html">TextMark</a>> > Gtk::TextIter::get_marks </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of all <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a> at this location. </p>
<p>Because marks are not iterable (they don't take up any "space" in the buffer, they are just marks in between iterable locations), multiple marks can exist in the same place. The returned list is not in any meaningful order. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="aa6dc67578010ba3d16375d3fd3810ee0"></a><!-- doxytag: member="Gtk::TextIter::get_marks" ref="aa6dc67578010ba3d16375d3fd3810ee0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1TextMark.html">TextMark</a>> > Gtk::TextIter::get_marks </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of all <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a> at this location. </p>
<p>Because marks are not iterable (they don't take up any "space" in the buffer, they are just marks in between iterable locations), multiple marks can exist in the same place. The returned list is not in any meaningful order. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of <a class="el" href="classGtk_1_1TextMark.html" title="Typedefed as Gtk::TextBuffer::Mark.">Gtk::TextMark</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a23db9e028b016cda6fd3af40fb3ef1af"></a><!-- doxytag: member="Gtk::TextIter::get_offset" ref="a23db9e028b016cda6fd3af40fb3ef1af" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_offset </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the character offset of an iterator. </p>
<p>Each character in a <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets...">Gtk::TextBuffer</a> has an offset, starting with 0 for the first character in the buffer. Use <a class="el" href="classGtk_1_1TextBuffer.html#ae92edc6a06a9a5fae2ee99f762bb59ff">Gtk::TextBuffer::get_iter_at_offset()</a> to convert an offset back into an iterator. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A character offset. </dd></dl>
</div>
</div>
<a class="anchor" id="ac4813d198441c620d2afbec63be45ccc"></a><!-- doxytag: member="Gtk::TextIter::get_pixbuf" ref="ac4813d198441c620d2afbec63be45ccc" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> Gtk::TextIter::get_pixbuf </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>If the element at <em>iter</em> is a pixbuf, the pixbuf is returned (with no new reference count added). </p>
<p>Otherwise, <code>0</code> is returned. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The pixbuf at <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="acbf2a271e33232170e1c41ccb1aa12e1"></a><!-- doxytag: member="Gtk::TextIter::get_slice" ref="acbf2a271e33232170e1c41ccb1aa12e1" args="(const TextIter &end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::TextIter::get_slice </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>end</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the text in the given range. </p>
<p>A "slice" is an array of characters encoded in UTF-8 format, including the Unicode "unknown" character 0xFFFC for iterable non-character elements in the buffer, such as images. Because images are encoded in the slice, byte and character offsets in the returned array will correspond to byte offsets in the text buffer. Note that 0xFFFC can occur in normal text as well, so it is not a reliable indicator that a pixbuf or widget is in the buffer. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>end</em> </td><td>Iterator at end of a range. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Slice of text from the buffer. </dd></dl>
</div>
</div>
<a class="anchor" id="a749b813bb4c369bff9e04e6f79d487aa"></a><!-- doxytag: member="Gtk::TextIter::get_tags" ref="a749b813bb4c369bff9e04e6f79d487aa" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a>> > Gtk::TextIter::get_tags </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of tags that apply to <em>iter</em>, in ascending order of priority (highest-priority tags are last). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="ae7bb7f1d6de6949cb995d316307ec0bb"></a><!-- doxytag: member="Gtk::TextIter::get_tags" ref="ae7bb7f1d6de6949cb995d316307ec0bb" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1TextTag.html">TextTag</a>> > Gtk::TextIter::get_tags </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of tags that apply to <em>iter</em>, in ascending order of priority (highest-priority tags are last). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>List of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a68fceee86d4913529a918872438cff8a"></a><!-- doxytag: member="Gtk::TextIter::get_text" ref="a68fceee86d4913529a918872438cff8a" args="(const TextIter &end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::TextIter::get_text </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>end</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <emphasis>text</emphasis> in the given range. </p>
<p>If the range contains non-text elements such as images, the character and byte offsets in the returned string will not correspond to character and byte offsets in the buffer. If you want offsets to correspond, see iter_get_slice(). </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>end</em> </td><td>Iterator at end of a range. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Array of characters from the buffer. </dd></dl>
</div>
</div>
<a class="anchor" id="aeca8604e9583471ca6b76ab14bb1030a"></a><!-- doxytag: member="Gtk::TextIter::get_toggled_tags" ref="aeca8604e9583471ca6b76ab14bb1030a" args="(bool toggled_on=true) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a>> > Gtk::TextIter::get_toggled_tags </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>toggled_on</em> = <code>true</code></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> that are toggled on or off at this point. </p>
<p>(If <em>toggled_on</em> is <code>true</code>, the list contains tags that are toggled on.) If a tag is toggled on at <em>iter</em>, then some non-empty range of characters following <em>iter</em> has that tag applied to it. If a tag is toggled off, then some non-empty range following <em>iter</em> does <emphasis>not</emphasis> have the tag applied to it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>toggled_on</em> </td><td><code>true</code> to get toggled-on tags. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Tags toggled at this point. </dd></dl>
</div>
</div>
<a class="anchor" id="af320581d5694946f227130116909c27f"></a><!-- doxytag: member="Gtk::TextIter::get_toggled_tags" ref="af320581d5694946f227130116909c27f" args="(bool toggled_on=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1SListHandle.html">Glib::SListHandle</a>< <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGtk_1_1TextTag.html">TextTag</a>> > Gtk::TextIter::get_toggled_tags </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>toggled_on</em> = <code>true</code></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a list of <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> that are toggled on or off at this point. </p>
<p>(If <em>toggled_on</em> is <code>true</code>, the list contains tags that are toggled on.) If a tag is toggled on at <em>iter</em>, then some non-empty range of characters following <em>iter</em> has that tag applied to it. If a tag is toggled off, then some non-empty range following <em>iter</em> does <emphasis>not</emphasis> have the tag applied to it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>toggled_on</em> </td><td><code>true</code> to get toggled-on tags. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Tags toggled at this point. </dd></dl>
</div>
</div>
<a class="anchor" id="a726f03533f659eba9d58cdcb7e3752ae"></a><!-- doxytag: member="Gtk::TextIter::get_visible_line_index" ref="a726f03533f659eba9d58cdcb7e3752ae" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_visible_line_index </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the number of bytes from the start of the line to the given <em>iter</em>, not counting bytes that are invisible due to tags with the "invisible" flag toggled on. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Byte index of <em>iter</em> with respect to the start of the line. </dd></dl>
</div>
</div>
<a class="anchor" id="aff8216613df48ec3ec109ef60e7dbdb2"></a><!-- doxytag: member="Gtk::TextIter::get_visible_line_offset" ref="aff8216613df48ec3ec109ef60e7dbdb2" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::TextIter::get_visible_line_offset </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the offset in characters from the start of the line to the given <em>iter</em>, not counting characters that are invisible due to tags with the "invisible" flag toggled on. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Offset in visible characters from the start of the line. </dd></dl>
</div>
</div>
<a class="anchor" id="a0972fc9b1892e9199c60779634c5bde5"></a><!-- doxytag: member="Gtk::TextIter::get_visible_slice" ref="a0972fc9b1892e9199c60779634c5bde5" args="(const TextIter &end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::TextIter::get_visible_slice </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>end</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like iter_get_slice(), but invisible text is not included. </p>
<p><a class="el" href="classGtk_1_1Invisible.html" title="This widget is used internally in GTK+, and is probably not useful for application...">Invisible</a> text is usually invisible because a <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> with the "invisible" attribute turned on has been applied to it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>end</em> </td><td>Iterator at end of range. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Slice of text from the buffer. </dd></dl>
</div>
</div>
<a class="anchor" id="a15ec6157320b54c7b16952e2005e106b"></a><!-- doxytag: member="Gtk::TextIter::get_visible_text" ref="a15ec6157320b54c7b16952e2005e106b" args="(const TextIter &end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::TextIter::get_visible_text </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>end</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like iter_get_text(), but invisible text is not included. </p>
<p><a class="el" href="classGtk_1_1Invisible.html" title="This widget is used internally in GTK+, and is probably not useful for application...">Invisible</a> text is usually invisible because a <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a> with the "invisible" attribute turned on has been applied to it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>end</em> </td><td>Iterator at end of range. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>String containing visible text in the range. </dd></dl>
</div>
</div>
<a class="anchor" id="a050314ca046487d60c14a13085d0b0a3"></a><!-- doxytag: member="Gtk::TextIter::gobj" ref="a050314ca046487d60c14a13085d0b0a3" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GtkTextIter* Gtk::TextIter::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C instance. </p>
</div>
</div>
<a class="anchor" id="ac5fe90901048c857a70fdcf6bfc83e5d"></a><!-- doxytag: member="Gtk::TextIter::gobj" ref="ac5fe90901048c857a70fdcf6bfc83e5d" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkTextIter* Gtk::TextIter::gobj </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Provides access to the underlying C instance. </p>
</div>
</div>
<a class="anchor" id="ab6bc228450c06a466e28717da8e8d1b5"></a><!-- doxytag: member="Gtk::TextIter::has_tag" ref="ab6bc228450c06a466e28717da8e8d1b5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::has_tag </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a3f3c8fbd79f6f8bd50e3831ee4661a96"></a><!-- doxytag: member="Gtk::TextIter::has_tag" ref="a3f3c8fbd79f6f8bd50e3831ee4661a96" args="(const Glib::RefPtr< const TextTag > &tag) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::has_tag </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>iter</em> is within a range tagged with <em>tag</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is tagged with <em>tag</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="ab537dff76037393f0abec24859561f3c"></a><!-- doxytag: member="Gtk::TextIter::in_range" ref="ab537dff76037393f0abec24859561f3c" args="(const TextIter &start, const TextIter &end) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::in_range </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>start</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>end</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Checks whether <em>iter</em> falls in the range [ <em>start</em>, <em>end</em>). </p>
<p><em>start</em> and <em>end</em> must be in ascending order. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>start</em> </td><td>Start of range. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>end</em> </td><td>End of range. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is in the range. </dd></dl>
</div>
</div>
<a class="anchor" id="a29ff52b7b859a529ce8036615a7ea11b"></a><!-- doxytag: member="Gtk::TextIter::inside_sentence" ref="a29ff52b7b859a529ce8036615a7ea11b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::inside_sentence </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> is inside a sentence (as opposed to in between two sentences, e.g. after a period and before the first letter of the next sentence). </p>
<p>Sentence boundaries are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text boundary algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is inside a sentence. </dd></dl>
</div>
</div>
<a class="anchor" id="a63e3578d35cf55bf9ca33bfcac6cf716"></a><!-- doxytag: member="Gtk::TextIter::inside_word" ref="a63e3578d35cf55bf9ca33bfcac6cf716" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::inside_word </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> is inside a natural-language word (as opposed to say inside some whitespace). </p>
<p>Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is inside a word. </dd></dl>
</div>
</div>
<a class="anchor" id="a6f1cce58629dbc6058576dff992cded0"></a><!-- doxytag: member="Gtk::TextIter::is_cursor_position" ref="a6f1cce58629dbc6058576dff992cded0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::is_cursor_position </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>See iter_forward_cursor_position() or <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html#ab0b3468a9efcaec7022885d46fd43d09">Pango::LogAttr</a> or pango_break() for details on what a cursor position is. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the cursor can be placed at <em>iter</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a87078ad316a037bdd04a40d85145be3e"></a><!-- doxytag: member="Gtk::TextIter::is_end" ref="a87078ad316a037bdd04a40d85145be3e" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::is_end </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>iter</em> is the end iterator, i.e. one past the last dereferenceable iterator in the buffer. </p>
<p>iter_is_end() is the most efficient way to check whether an iterator is the end iterator. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is the end iterator. </dd></dl>
</div>
</div>
<a class="anchor" id="a218044fcce516c2982b2e54225619b93"></a><!-- doxytag: member="Gtk::TextIter::is_start" ref="a218044fcce516c2982b2e54225619b93" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::is_start </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>iter</em> is the first iterator in the buffer, that is if <em>iter</em> has a character offset of 0. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> is the first in the buffer. </dd></dl>
</div>
</div>
<a class="anchor" id="a6d5012897961552a524589378af6c17f"></a><!-- doxytag: member="Gtk::TextIter::operator bool" ref="a6d5012897961552a524589378af6c17f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::TextIter::operator bool </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Alias for !is_end(). </p>
</div>
</div>
<a class="anchor" id="a25bc72debbe24fa32719261d591949e7"></a><!-- doxytag: member="Gtk::TextIter::operator*" ref="a25bc72debbe24fa32719261d591949e7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TextIter.html#ae1f6efe5a5875e7198e3de43c64e2db0">value_type</a> Gtk::TextIter::operator* </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Alias for <a class="el" href="classGtk_1_1TextIter.html#a63cd8afd6fb53bdedef424b42bbc66b7" title="Returns the Unicode character at this iterator.">get_char()</a>. </p>
</div>
</div>
<a class="anchor" id="ae27c3a2f0663071f9319fe140f047b72"></a><!-- doxytag: member="Gtk::TextIter::operator++" ref="ae27c3a2f0663071f9319fe140f047b72" args="(int)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a> Gtk::TextIter::operator++ </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a11ef1de054169a9ca48cca88d03ad04e"></a><!-- doxytag: member="Gtk::TextIter::operator++" ref="a11ef1de054169a9ca48cca88d03ad04e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& Gtk::TextIter::operator++ </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Alias for <a class="el" href="classGtk_1_1TextIter.html#a46acea844c69273d92c63d910eca21c9" title="Moves iter forward by one character offset.">forward_char()</a>. </p>
</div>
</div>
<a class="anchor" id="ae9050a524dda968db856b3e791fc833d"></a><!-- doxytag: member="Gtk::TextIter::operator--" ref="ae9050a524dda968db856b3e791fc833d" args="(int)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1TextIter.html">TextIter</a> Gtk::TextIter::operator-- </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ad1fea62e0f049dac87497aadc4e32ac2"></a><!-- doxytag: member="Gtk::TextIter::operator--" ref="ad1fea62e0f049dac87497aadc4e32ac2" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& Gtk::TextIter::operator-- </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Alias for <a class="el" href="classGtk_1_1TextIter.html#aeff64dab2ff97e06452f4ca7c030b758" title="Moves backward by one character offset.">backward_char()</a>. </p>
</div>
</div>
<a class="anchor" id="a4d3c25edf1efe92f5313ac740781238b"></a><!-- doxytag: member="Gtk::TextIter::order" ref="a4d3c25edf1efe92f5313ac740781238b" args="(TextIter &second)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::order </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1TextIter.html">TextIter</a>& </td>
<td class="paramname"> <em>second</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Swaps the value of <em>first</em> and <em>second</em> if <em>second</em> comes before <em>first</em> in the buffer. </p>
<p>That is, ensures that <em>first</em> and <em>second</em> are in sequence. Most text buffer functions that take a range call this automatically on your behalf, so there's no real reason to call it yourself in those cases. There are some exceptions, such as iter_in_range(), that expect a pre-sorted range. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>second</em> </td><td>Another <a class="el" href="classGtk_1_1TextIter.html" title="Typefed as Gtk::TextBuffer::iterator.">Gtk::TextIter</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abfba7a50f3ec781d151cc5643e1b4083"></a><!-- doxytag: member="Gtk::TextIter::set_line" ref="abfba7a50f3ec781d151cc5643e1b4083" args="(int line_number)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_line </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>line_number</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves iterator <em>iter</em> to the start of the line <em>line_number</em>. </p>
<p>If <em>line_number</em> is negative or larger than the number of lines in the buffer, moves <em>iter</em> to the start of the last line in the buffer. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>line_number</em> </td><td>Line number (counted from 0). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="af63b8c2520413efdde54dd8ad5670579"></a><!-- doxytag: member="Gtk::TextIter::set_line_index" ref="af63b8c2520413efdde54dd8ad5670579" args="(int byte_on_line)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_line_index </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>byte_on_line</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Same as iter_set_line_offset(), but works with a <emphasis>byte</emphasis> index. </p>
<p>The given byte index must be at the start of a character, it can't be in the middle of a UTF-8 encoded character. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>byte_on_line</em> </td><td>A byte index relative to the start of <em>iter's</em> current line. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a62c90b4327191537170c796a23d06b25"></a><!-- doxytag: member="Gtk::TextIter::set_line_offset" ref="a62c90b4327191537170c796a23d06b25" args="(int char_on_line)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_line_offset </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>char_on_line</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Moves <em>iter</em> within a line, to a new <emphasis>character</emphasis> (not byte) offset. </p>
<p>The given character offset must be less than or equal to the number of characters in the line; if equal, <em>iter</em> moves to the start of the next line. See iter_set_line_index() if you have a byte index rather than a character offset. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>char_on_line</em> </td><td>A character offset relative to the start of <em>iter's</em> current line. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a00ce173ce4d3622cc36e48d5bff2374f"></a><!-- doxytag: member="Gtk::TextIter::set_offset" ref="a00ce173ce4d3622cc36e48d5bff2374f" args="(int char_offset)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_offset </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>char_offset</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets <em>iter</em> to point to <em>char_offset</em>. </p>
<p><em>char_offset</em> counts from the start of the entire text buffer, starting with 0. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>char_offset</em> </td><td>A character number. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a40b3039e099a9c3d752b8a3809d1ae4d"></a><!-- doxytag: member="Gtk::TextIter::set_visible_line_index" ref="a40b3039e099a9c3d752b8a3809d1ae4d" args="(int byte_on_line)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_visible_line_index </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>byte_on_line</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like iter_set_line_index(), but the index is in visible bytes, i.e. text with a tag making it invisible is not counted in the index. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>byte_on_line</em> </td><td>A byte index. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7ccd69e5353e073ce841ff0e02ac6a7e"></a><!-- doxytag: member="Gtk::TextIter::set_visible_line_offset" ref="a7ccd69e5353e073ce841ff0e02ac6a7e" args="(int char_on_line)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::TextIter::set_visible_line_offset </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"> <em>char_on_line</em></td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Like iter_set_line_offset(), but the offset is in visible characters, i.e. text with a tag making it invisible is not counted in the offset. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>char_on_line</em> </td><td>A character offset. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a3af99cb623ef41f2c1ec23e87a27b31a"></a><!-- doxytag: member="Gtk::TextIter::starts_line" ref="a3af99cb623ef41f2c1ec23e87a27b31a" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::starts_line </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns <code>true</code> if <em>iter</em> begins a paragraph, i.e. if iter_get_line_offset() would return 0. </p>
<p>However this function is potentially more efficient than iter_get_line_offset() because it doesn't have to compute the offset, it just has to see whether it's 0. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>iter</em> begins a line. </dd></dl>
</div>
</div>
<a class="anchor" id="a5e3ea3c5bcb8aa11ecaeea2be490323b"></a><!-- doxytag: member="Gtk::TextIter::starts_sentence" ref="a5e3ea3c5bcb8aa11ecaeea2be490323b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::starts_sentence </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> begins a sentence. </p>
<p>Sentence boundaries are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> text boundary algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is at the start of a sentence. </dd></dl>
</div>
</div>
<a class="anchor" id="a727ff792013d3b9d1b2c28ed4b2af514"></a><!-- doxytag: member="Gtk::TextIter::starts_word" ref="a727ff792013d3b9d1b2c28ed4b2af514" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::starts_word </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Determines whether <em>iter</em> begins a natural-language word. </p>
<p>Word breaks are determined by <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> and should be correct for nearly any language (if not, the correct fix would be to the <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/namespacePango.html">Pango</a> word break algorithms). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>iter</em> is at the start of a word. </dd></dl>
</div>
</div>
<a class="anchor" id="ae9932c4003339e1f294ebd33dec309ed"></a><!-- doxytag: member="Gtk::TextIter::toggles_tag" ref="ae9932c4003339e1f294ebd33dec309ed" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::toggles_tag </td>
<td>(</td>
<td class="paramname"></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a1b8a333956be379051b987521f383c1b"></a><!-- doxytag: member="Gtk::TextIter::toggles_tag" ref="a1b8a333956be379051b987521f383c1b" args="(const Glib::RefPtr< const TextTag > &tag) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::TextIter::toggles_tag </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGtk_1_1TextTag.html">TextTag</a> >& </td>
<td class="paramname"> <em>tag</em></td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>This is equivalent to (iter_begins_tag() || iter_ends_tag()), i.e. it tells you whether a range with <em>tag</em> applied to it begins <emphasis>or</emphasis> ends at <em>iter</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tag</em> </td><td>A <a class="el" href="classGtk_1_1TextTag.html" title="Typedefed as Gtk::TextBuffer::Tag.">Gtk::TextTag</a>, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Whether <em>tag</em> is toggled on or off at <em>iter</em>. </dd></dl>
</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a5d77ba6925f3144ad49e36412791b7aa"></a><!-- doxytag: member="Gtk::TextIter::wrap" ref="a5d77ba6925f3144ad49e36412791b7aa" args="(const GtkTextIter *object)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1TextIter.html">Gtk::TextIter</a>& wrap </td>
<td>(</td>
<td class="paramtype">const GtkTextIter * </td>
<td class="paramname"> <em>object</em></td>
<td> ) </td>
<td><code> [related]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<a class="anchor" id="a5497a6a3458131b32c6aaa0fcab3f511"></a><!-- doxytag: member="Gtk::TextIter::wrap" ref="a5497a6a3458131b32c6aaa0fcab3f511" args="(GtkTextIter *object)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1TextIter.html">Gtk::TextIter</a>& wrap </td>
<td>(</td>
<td class="paramtype">GtkTextIter * </td>
<td class="paramname"> <em>object</em></td>
<td> ) </td>
<td><code> [related]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<dl><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a533d80230ee6366bc575bed7369f4afb"></a><!-- doxytag: member="Gtk::TextIter::gobject_" ref="a533d80230ee6366bc575bed7369f4afb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkTextIter <a class="el" href="classGtk_1_1TextIter.html#a533d80230ee6366bc575bed7369f4afb">Gtk::TextIter::gobject_</a><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/textiter.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:22:03 2010 for gtkmm by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|