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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <hintids.hxx>
#include <editeng/protitem.hxx>
#include <com/sun/star/i18n/WordType.hpp>
#include <com/sun/star/i18n/XBreakIterator.hpp>
#include <unotools/charclass.hxx>
#include <svl/ctloptions.hxx>
#include <svl/srchitem.hxx>
#include <swmodule.hxx>
#include <fmtcntnt.hxx>
#include <swtblfmt.hxx>
#include <swcrsr.hxx>
#include <unocrsr.hxx>
#include <bookmark.hxx>
#include <doc.hxx>
#include <IDocumentUndoRedo.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <IDocumentLayoutAccess.hxx>
#include <docary.hxx>
#include <ndtxt.hxx>
#include <section.hxx>
#include <swtable.hxx>
#include <cntfrm.hxx>
#include <rootfrm.hxx>
#include <txtfrm.hxx>
#include <notxtfrm.hxx>
#include <scriptinfo.hxx>
#include <crstate.hxx>
#include <docsh.hxx>
#include <viewsh.hxx>
#include <frmatr.hxx>
#include <breakit.hxx>
#include <mdiexp.hxx>
#include <strings.hrc>
#include <redline.hxx>
#include <txatbase.hxx>
#include <IDocumentMarkAccess.hxx>
#include <memory>
#include <comphelper/lok.hxx>
#include <editsh.hxx>
#include <viewopt.hxx>
using namespace ::com::sun::star::i18n;
const sal_uInt16 coSrchRplcThreshold = 60000;
namespace {
struct PercentHdl
{
SwDocShell* pDSh;
sal_uLong nActPos;
bool bBack, bNodeIdx;
PercentHdl( sal_uLong nStt, sal_uLong nEnd, SwDocShell* pSh )
: pDSh(pSh), nActPos(nStt), bBack(false), bNodeIdx(false)
{
bBack = (nStt > nEnd);
if( bBack )
{
sal_uLong n = nStt; nStt = nEnd; nEnd = n;
}
::StartProgress( STR_STATSTR_SEARCH, nStt, nEnd );
}
explicit PercentHdl( const SwPaM& rPam )
: pDSh( rPam.GetDoc().GetDocShell() )
{
sal_Int32 nStt, nEnd;
if( rPam.GetPoint()->nNode == rPam.GetMark()->nNode )
{
bNodeIdx = false;
nStt = rPam.GetMark()->nContent.GetIndex();
nEnd = rPam.GetPoint()->nContent.GetIndex();
}
else
{
bNodeIdx = true;
nStt = sal_Int32(rPam.GetMark()->nNode.GetIndex());
nEnd = sal_Int32(rPam.GetPoint()->nNode.GetIndex());
}
nActPos = nStt;
bBack = (nStt > nEnd );
if( bBack )
{
sal_uLong n = nStt; nStt = nEnd; nEnd = n;
}
::StartProgress( STR_STATSTR_SEARCH, nStt, nEnd, pDSh );
}
~PercentHdl() { ::EndProgress( pDSh ); }
void NextPos( sal_uLong nPos ) const
{ ::SetProgressState( bBack ? nActPos - nPos : nPos, pDSh ); }
void NextPos( SwPosition const & rPos ) const
{
sal_Int32 nPos;
if( bNodeIdx )
nPos = sal_Int32(rPos.nNode.GetIndex());
else
nPos = rPos.nContent.GetIndex();
::SetProgressState( bBack ? nActPos - nPos : nPos, pDSh );
}
};
}
SwCursor::SwCursor( const SwPosition &rPos, SwPaM* pRing )
: SwPaM( rPos, pRing )
, m_nRowSpanOffset(0)
, m_nCursorBidiLevel(0)
, m_bColumnSelection(false)
{
}
// @@@ semantic: no copy ctor.
SwCursor::SwCursor(SwCursor const& rCpy, SwPaM *const pRing)
: SwPaM( rCpy, pRing )
, m_nRowSpanOffset(rCpy.m_nRowSpanOffset)
, m_nCursorBidiLevel(rCpy.m_nCursorBidiLevel)
, m_bColumnSelection(rCpy.m_bColumnSelection)
{
}
SwCursor::~SwCursor()
{
}
SwCursor* SwCursor::Create( SwPaM* pRing ) const
{
return new SwCursor( *GetPoint(), pRing );
}
bool SwCursor::IsReadOnlyAvailable() const
{
return false;
}
bool SwCursor::IsSkipOverHiddenSections() const
{
return true;
}
bool SwCursor::IsSkipOverProtectSections() const
{
return !IsReadOnlyAvailable();
}
// CreateNewSavePos is virtual so that derived classes of cursor can implement
// own SaveObjects if needed and validate them in the virtual check routines.
void SwCursor::SaveState()
{
m_vSavePos.emplace_back( *this );
}
void SwCursor::RestoreState()
{
if (!m_vSavePos.empty()) // Robust
{
m_vSavePos.pop_back();
}
}
/// determine if point is outside of the node-array's content area
bool SwCursor::IsNoContent() const
{
return GetPoint()->nNode.GetIndex() <
GetDoc().GetNodes().GetEndOfExtras().GetIndex();
}
bool SwCursor::IsSelOvrCheck(SwCursorSelOverFlags)
{
return false;
}
// extracted from IsSelOvr()
bool SwTableCursor::IsSelOvrCheck(SwCursorSelOverFlags eFlags)
{
SwNodes& rNds = GetDoc().GetNodes();
// check sections of nodes array
if( (SwCursorSelOverFlags::CheckNodeSection & eFlags)
&& HasMark() )
{
SwNodeIndex aOldPos( rNds, GetSavePos()->nNode );
if( !CheckNodesRange( aOldPos, GetPoint()->nNode, true ))
{
GetPoint()->nNode = aOldPos;
GetPoint()->nContent.Assign( GetContentNode(), GetSavePos()->nContent );
return true;
}
}
return SwCursor::IsSelOvrCheck(eFlags);
}
namespace
{
const SwTextAttr* InputFieldAtPos(SwPosition const *pPos)
{
SwTextNode* pTextNd = pPos->nNode.GetNode().GetTextNode();
if (!pTextNd)
return nullptr;
return pTextNd->GetTextAttrAt(pPos->nContent.GetIndex(), RES_TXTATR_INPUTFIELD, SwTextNode::PARENT);
}
}
bool SwCursor::IsSelOvr( SwCursorSelOverFlags eFlags )
{
SwDoc& rDoc = GetDoc();
SwNodes& rNds = rDoc.GetNodes();
bool bSkipOverHiddenSections = IsSkipOverHiddenSections();
bool bSkipOverProtectSections = IsSkipOverProtectSections();
if ( IsSelOvrCheck( eFlags ) )
{
return true;
}
if (m_vSavePos.back().nNode != GetPoint()->nNode.GetIndex() &&
// (1997) in UI-ReadOnly everything is allowed
( !rDoc.GetDocShell() || !rDoc.GetDocShell()->IsReadOnlyUI() ))
{
// check new sections
SwNodeIndex& rPtIdx = GetPoint()->nNode;
const SwSectionNode* pSectNd = rPtIdx.GetNode().FindSectionNode();
if( pSectNd &&
((bSkipOverHiddenSections && pSectNd->GetSection().IsHiddenFlag() ) ||
(bSkipOverProtectSections && pSectNd->GetSection().IsProtectFlag() )))
{
if( !( SwCursorSelOverFlags::ChangePos & eFlags ) )
{
// then we're already done
RestoreSavePos();
return true;
}
// set cursor to new position:
SwNodeIndex aIdx( rPtIdx );
sal_Int32 nContentPos = m_vSavePos.back().nContent;
bool bGoNxt = m_vSavePos.back().nNode < rPtIdx.GetIndex();
SwContentNode* pCNd = bGoNxt
? rNds.GoNextSection( &rPtIdx, bSkipOverHiddenSections, bSkipOverProtectSections)
: SwNodes::GoPrevSection( &rPtIdx, bSkipOverHiddenSections, bSkipOverProtectSections);
if( !pCNd && ( SwCursorSelOverFlags::EnableRevDirection & eFlags ))
{
bGoNxt = !bGoNxt;
pCNd = bGoNxt ? rNds.GoNextSection( &rPtIdx, bSkipOverHiddenSections, bSkipOverProtectSections)
: SwNodes::GoPrevSection( &rPtIdx, bSkipOverHiddenSections, bSkipOverProtectSections);
}
bool bIsValidPos = nullptr != pCNd;
const bool bValidNodesRange = bIsValidPos &&
::CheckNodesRange( rPtIdx, aIdx, true );
if( !bValidNodesRange )
{
rPtIdx = m_vSavePos.back().nNode;
pCNd = rPtIdx.GetNode().GetContentNode();
if( !pCNd )
{
bIsValidPos = false;
nContentPos = 0;
rPtIdx = aIdx;
pCNd = rPtIdx.GetNode().GetContentNode();
if( !pCNd )
{
// then to the beginning of the document
rPtIdx = rNds.GetEndOfExtras();
pCNd = rNds.GoNext( &rPtIdx );
}
}
}
// register ContentIndex:
const sal_Int32 nTmpPos = bIsValidPos ? (bGoNxt ? 0 : pCNd->Len()) : nContentPos;
GetPoint()->nContent.Assign( pCNd, nTmpPos );
if( !bIsValidPos || !bValidNodesRange ||
IsInProtectTable( true ) )
return true;
}
// is there a protected section in the section?
if( HasMark() && bSkipOverProtectSections)
{
SwNodeOffset nSttIdx = GetMark()->nNode.GetIndex(),
nEndIdx = GetPoint()->nNode.GetIndex();
if( nEndIdx <= nSttIdx )
{
SwNodeOffset nTmp = nSttIdx;
nSttIdx = nEndIdx;
nEndIdx = nTmp;
}
const SwSectionFormats& rFormats = rDoc.GetSections();
for( SwSectionFormats::size_type n = 0; n < rFormats.size(); ++n )
{
const SwSectionFormat* pFormat = rFormats[n];
const SvxProtectItem& rProtect = pFormat->GetProtect();
if( rProtect.IsContentProtected() )
{
const SwFormatContent& rContent = pFormat->GetContent(false);
OSL_ENSURE( rContent.GetContentIdx(), "No SectionNode?" );
SwNodeOffset nIdx = rContent.GetContentIdx()->GetIndex();
if( nSttIdx <= nIdx && nEndIdx >= nIdx )
{
// if it is no linked section then we cannot select it
const SwSection& rSect = *pFormat->GetSection();
if( SectionType::Content == rSect.GetType() )
{
RestoreSavePos();
return true;
}
}
}
}
}
}
const SwNode* pNd = &GetPoint()->nNode.GetNode();
if( pNd->IsContentNode() && !dynamic_cast<SwUnoCursor*>(this) )
{
const SwContentFrame* pFrame = static_cast<const SwContentNode*>(pNd)->getLayoutFrame( rDoc.getIDocumentLayoutAccess().GetCurrentLayout() );
if ( (SwCursorSelOverFlags::ChangePos & eFlags) //allowed to change position if it's a bad one
&& pFrame && pFrame->isFrameAreaDefinitionValid()
&& !pFrame->getFrameArea().Height() //a bad zero height position
&& !InputFieldAtPos(GetPoint()) ) //unless it's a (vertical) input field
{
// skip to the next/prev valid paragraph with a layout
SwNodeIndex& rPtIdx = GetPoint()->nNode;
bool bGoNxt = m_vSavePos.back().nNode < rPtIdx.GetIndex();
for (;;)
{
pFrame = bGoNxt ? pFrame->GetNextContentFrame() : pFrame->GetPrevContentFrame();
if (!pFrame || 0 != pFrame->getFrameArea().Height() )
break;
}
// #i72394# skip to prev/next valid paragraph with a layout in case
// the first search did not succeed:
if( !pFrame )
{
bGoNxt = !bGoNxt;
pFrame = static_cast<const SwContentNode*>(pNd)->getLayoutFrame( rDoc.getIDocumentLayoutAccess().GetCurrentLayout() );
while ( pFrame && 0 == pFrame->getFrameArea().Height() )
{
pFrame = bGoNxt ? pFrame->GetNextContentFrame()
: pFrame->GetPrevContentFrame();
}
}
if (pFrame != nullptr)
{
if (pFrame->IsTextFrame())
{
SwTextFrame const*const pTextFrame(static_cast<SwTextFrame const*>(pFrame));
*GetPoint() = pTextFrame->MapViewToModelPos(TextFrameIndex(
bGoNxt ? 0 : pTextFrame->GetText().getLength()));
}
else
{
assert(pFrame->IsNoTextFrame());
SwContentNode *const pCNd = const_cast<SwContentNode*>(
static_cast<SwNoTextFrame const*>(pFrame)->GetNode());
assert(pCNd);
// set this ContentNode as new position
rPtIdx = *pCNd;
// assign corresponding ContentIndex
const sal_Int32 nTmpPos = bGoNxt ? 0 : pCNd->Len();
GetPoint()->nContent.Assign( pCNd, nTmpPos );
}
if (rPtIdx.GetIndex() == m_vSavePos.back().nNode
&& GetPoint()->nContent.GetIndex() == m_vSavePos.back().nContent)
{
// new position equals saved one
// --> trigger restore of saved pos by setting <pFrame> to NULL - see below
pFrame = nullptr;
}
if ( IsInProtectTable( true ) )
{
// new position in protected table
// --> trigger restore of saved pos by setting <pFrame> to NULL - see below
pFrame = nullptr;
}
}
}
if( !pFrame )
{
DeleteMark();
RestoreSavePos();
return true; // we need a frame
}
}
// is the cursor allowed to be in a protected node?
if( !( SwCursorSelOverFlags::ChangePos & eFlags ) && !IsAtValidPos() )
{
DeleteMark();
RestoreSavePos();
return true;
}
if( !HasMark() )
return false;
// check for invalid sections
if( !::CheckNodesRange( GetMark()->nNode, GetPoint()->nNode, true ))
{
DeleteMark();
RestoreSavePos();
return true; // we need a frame
}
pNd = &GetMark()->nNode.GetNode();
if( pNd->IsContentNode()
&& !static_cast<const SwContentNode*>(pNd)->getLayoutFrame( rDoc.getIDocumentLayoutAccess().GetCurrentLayout() )
&& !dynamic_cast<SwUnoCursor*>(this) )
{
DeleteMark();
RestoreSavePos();
return true; // we need a frame
}
// ensure that selection is only inside an InputField or contains the InputField completely
{
const SwTextAttr* pInputFieldTextAttrAtPoint = InputFieldAtPos(GetPoint());
const SwTextAttr* pInputFieldTextAttrAtMark = InputFieldAtPos(GetMark());
if ( pInputFieldTextAttrAtPoint != pInputFieldTextAttrAtMark )
{
const SwNodeOffset nRefNodeIdx =
( SwCursorSelOverFlags::Toggle & eFlags )
? m_vSavePos.back().nNode
: GetMark()->nNode.GetIndex();
const sal_Int32 nRefContentIdx =
( SwCursorSelOverFlags::Toggle & eFlags )
? m_vSavePos.back().nContent
: GetMark()->nContent.GetIndex();
const bool bIsForwardSelection =
nRefNodeIdx < GetPoint()->nNode.GetIndex()
|| ( nRefNodeIdx == GetPoint()->nNode.GetIndex()
&& nRefContentIdx < GetPoint()->nContent.GetIndex() );
if ( pInputFieldTextAttrAtPoint != nullptr )
{
const sal_Int32 nNewPointPos =
bIsForwardSelection ? *(pInputFieldTextAttrAtPoint->End()) : pInputFieldTextAttrAtPoint->GetStart();
SwTextNode* pTextNdAtPoint = GetPoint()->nNode.GetNode().GetTextNode();
GetPoint()->nContent.Assign( pTextNdAtPoint, nNewPointPos );
}
if ( pInputFieldTextAttrAtMark != nullptr )
{
const sal_Int32 nNewMarkPos =
bIsForwardSelection ? pInputFieldTextAttrAtMark->GetStart() : *(pInputFieldTextAttrAtMark->End());
SwTextNode* pTextNdAtMark = GetMark()->nNode.GetNode().GetTextNode();
GetMark()->nContent.Assign( pTextNdAtMark, nNewMarkPos );
}
}
}
const SwTableNode* pPtNd = GetPoint()->nNode.GetNode().FindTableNode();
const SwTableNode* pMrkNd = GetMark()->nNode.GetNode().FindTableNode();
// both in no or in same table node
if( ( !pMrkNd && !pPtNd ) || pPtNd == pMrkNd )
return false;
// in different tables or only mark in table
if( pMrkNd )
{
// not allowed, so go back to old position
RestoreSavePos();
// Cursor stays at old position
return true;
}
// Note: this cannot happen in TableMode
// Only Point in Table then go behind/in front of table
if (SwCursorSelOverFlags::ChangePos & eFlags)
{
bool bSelTop = GetPoint()->nNode.GetIndex() <
((SwCursorSelOverFlags::Toggle & eFlags)
? m_vSavePos.back().nNode : GetMark()->nNode.GetIndex());
do { // loop for table after table
SwNodeOffset nSEIdx = pPtNd->EndOfSectionIndex();
SwNodeOffset nSttEndTable = nSEIdx + 1;
if( bSelTop )
nSttEndTable = rNds[ nSEIdx ]->StartOfSectionIndex() - 1;
GetPoint()->nNode = nSttEndTable;
const SwNode* pMyNd = &(GetNode());
if( pMyNd->IsSectionNode() || ( pMyNd->IsEndNode() &&
pMyNd->StartOfSectionNode()->IsSectionNode() ) )
{
pMyNd = bSelTop
? SwNodes::GoPrevSection( &GetPoint()->nNode,true,false )
: rNds.GoNextSection( &GetPoint()->nNode,true,false );
/* #i12312# Handle failure of Go{Prev|Next}Section */
if ( nullptr == pMyNd)
break;
pPtNd = pMyNd->FindTableNode();
if( pPtNd )
continue;
}
// we permit these
if( pMyNd->IsContentNode() &&
::CheckNodesRange( GetMark()->nNode,
GetPoint()->nNode, true ))
{
// table in table
const SwTableNode* pOuterTableNd = pMyNd->FindTableNode();
if ( pOuterTableNd )
pMyNd = pOuterTableNd;
else
{
SwContentNode* pCNd = const_cast<SwContentNode*>(static_cast<const SwContentNode*>(pMyNd));
GetPoint()->nContent.Assign( pCNd, bSelTop ? pCNd->Len() : 0 );
return false;
}
}
if( bSelTop )
{
if ( !pMyNd->IsEndNode() )
break;
pPtNd = pMyNd->FindTableNode();
}
else
pPtNd = pMyNd->GetTableNode();
if (!pPtNd)
break;
} while( true );
}
// stay on old position
RestoreSavePos();
return true;
}
bool SwCursor::IsInProtectTable( bool bMove, bool bChgCursor )
{
SwContentNode* pCNd = GetContentNode();
if( !pCNd )
return false;
// No table, no protected cell:
const SwTableNode* pTableNode = pCNd->FindTableNode();
if ( !pTableNode )
return false;
// Current position == last save position?
if (m_vSavePos.back().nNode == GetPoint()->nNode.GetIndex())
return false;
// Check for covered cell:
bool bInCoveredCell = false;
const SwStartNode* pTmpSttNode = pCNd->FindTableBoxStartNode();
OSL_ENSURE( pTmpSttNode, "In table, therefore I expect to get a SwTableBoxStartNode" );
const SwTableBox* pBox = pTmpSttNode ? pTableNode->GetTable().GetTableBox( pTmpSttNode->GetIndex() ) : nullptr; //Robust #151355
if ( pBox && pBox->getRowSpan() < 1 ) // Robust #151270
bInCoveredCell = true;
// Positions of covered cells are not acceptable:
if ( !bInCoveredCell )
{
// Position not protected?
if ( !pCNd->IsProtect() )
return false;
// Cursor in protected cells allowed?
if ( IsReadOnlyAvailable() )
return false;
}
// If we reach this point, we are in a protected or covered table cell!
if( !bMove )
{
if( bChgCursor )
// restore the last save position
RestoreSavePos();
return true; // Cursor stays at old position
}
// We are in a protected table cell. Traverse top to bottom?
if (m_vSavePos.back().nNode < GetPoint()->nNode.GetIndex())
{
// search next valid box
// if there is another StartNode after the EndNode of a cell then
// there is another cell
SwNodeIndex aCellStt( *GetNode().FindTableBoxStartNode()->EndOfSectionNode(), 1 );
bool bProt = true;
GoNextCell:
for (;;) {
if( !aCellStt.GetNode().IsStartNode() )
break;
++aCellStt;
pCNd = aCellStt.GetNode().GetContentNode();
if( !pCNd )
pCNd = aCellStt.GetNodes().GoNext( &aCellStt );
bProt = pCNd->IsProtect();
if( !bProt )
break;
aCellStt.Assign( *pCNd->FindTableBoxStartNode()->EndOfSectionNode(), 1 );
}
SetNextCursor:
if( !bProt ) // found free cell
{
GetPoint()->nNode = aCellStt;
SwContentNode* pTmpCNd = GetContentNode();
if( pTmpCNd )
{
GetPoint()->nContent.Assign( pTmpCNd, 0 );
return false;
}
return IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos );
}
// end of table, so go to next node
++aCellStt;
SwNode* pNd = &aCellStt.GetNode();
if( pNd->IsEndNode() || HasMark())
{
// if only table in FlyFrame or SSelection then stay on old position
if( bChgCursor )
RestoreSavePos();
return true;
}
else if( pNd->IsTableNode() && aCellStt++ )
goto GoNextCell;
bProt = false; // index is now on a content node
goto SetNextCursor;
}
// search for the previous valid box
{
// if there is another EndNode in front of the StartNode than there
// exists a previous cell
SwNodeIndex aCellStt( *GetNode().FindTableBoxStartNode(), -1 );
SwNode* pNd;
bool bProt = true;
GoPrevCell:
for (;;) {
pNd = &aCellStt.GetNode();
if( !pNd->IsEndNode() )
break;
aCellStt.Assign( *pNd->StartOfSectionNode(), +1 );
pCNd = aCellStt.GetNode().GetContentNode();
if( !pCNd )
pCNd = pNd->GetNodes().GoNext( &aCellStt );
bProt = pCNd->IsProtect();
if( !bProt )
break;
aCellStt.Assign( *pNd->FindTableBoxStartNode(), -1 );
}
SetPrevCursor:
if( !bProt ) // found free cell
{
GetPoint()->nNode = aCellStt;
SwContentNode* pTmpCNd = GetContentNode();
if( pTmpCNd )
{
GetPoint()->nContent.Assign( pTmpCNd, 0 );
return false;
}
return IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos );
}
// at the beginning of a table, so go to next node
--aCellStt;
pNd = &aCellStt.GetNode();
if( pNd->IsStartNode() || HasMark() )
{
// if only table in FlyFrame or SSelection then stay on old position
if( bChgCursor )
RestoreSavePos();
return true;
}
else if( pNd->StartOfSectionNode()->IsTableNode() && aCellStt-- )
goto GoPrevCell;
bProt = false; // index is now on a content node
goto SetPrevCursor;
}
}
/// Return <true> if cursor can be set to this position
bool SwCursor::IsAtValidPos( bool bPoint ) const
{
const SwDoc& rDoc = GetDoc();
const SwPosition* pPos = bPoint ? GetPoint() : GetMark();
const SwNode* pNd = &pPos->nNode.GetNode();
if( pNd->IsContentNode() && !static_cast<const SwContentNode*>(pNd)->getLayoutFrame( rDoc.getIDocumentLayoutAccess().GetCurrentLayout() ) &&
!dynamic_cast<const SwUnoCursor*>(this) )
{
return false;
}
// #i45129# - in UI-ReadOnly everything is allowed
if( !rDoc.GetDocShell() || !rDoc.GetDocShell()->IsReadOnlyUI() )
return true;
const bool bCursorInReadOnly = IsReadOnlyAvailable();
if( !bCursorInReadOnly && pNd->IsProtect() )
return false;
const SwSectionNode* pSectNd = pNd->FindSectionNode();
return !pSectNd
|| !(pSectNd->GetSection().IsHiddenFlag() ||
( !bCursorInReadOnly && pSectNd->GetSection().IsProtectFlag() ));
}
void SwCursor::SaveTableBoxContent( const SwPosition* ) {}
/// set range for search in document
SwMoveFnCollection const & SwCursor::MakeFindRange( SwDocPositions nStart,
SwDocPositions nEnd, SwPaM* pRange ) const
{
pRange->SetMark();
FillFindPos( nStart, *pRange->GetMark() );
FillFindPos( nEnd, *pRange->GetPoint() );
// determine direction of search
return ( SwDocPositions::Start == nStart || SwDocPositions::OtherStart == nStart ||
(SwDocPositions::Curr == nStart &&
(SwDocPositions::End == nEnd || SwDocPositions::OtherEnd == nEnd ) ))
? fnMoveForward : fnMoveBackward;
}
static sal_uLong lcl_FindSelection( SwFindParas& rParas, SwCursor* pCurrentCursor,
SwMoveFnCollection const & fnMove, SwCursor*& pFndRing,
SwPaM& aRegion, FindRanges eFndRngs,
bool bInReadOnly, bool& bCancel )
{
SwDoc& rDoc = pCurrentCursor->GetDoc();
bool const bDoesUndo = rDoc.GetIDocumentUndoRedo().DoesUndo();
int nFndRet = 0;
sal_uLong nFound = 0;
const bool bSrchBkwrd = &fnMove == &fnMoveBackward;
SwPaM *pTmpCursor = pCurrentCursor, *pSaveCursor = pCurrentCursor;
std::unique_ptr<SvxSearchItem> xSearchItem;
// only create progress bar for ShellCursor
bool bIsUnoCursor = dynamic_cast<SwUnoCursor*>(pCurrentCursor) != nullptr;
std::unique_ptr<PercentHdl> pPHdl;
sal_uInt16 nCursorCnt = 0;
if( FindRanges::InSel & eFndRngs )
{
while( pCurrentCursor != ( pTmpCursor = pTmpCursor->GetNext() ))
++nCursorCnt;
if( nCursorCnt && !bIsUnoCursor )
pPHdl.reset(new PercentHdl( 0, nCursorCnt, rDoc.GetDocShell() ));
}
else
pSaveCursor = pSaveCursor->GetPrev();
bool bEnd = false;
do {
aRegion.SetMark();
// independent from search direction: SPoint is always bigger than mark
// if the search area is valid
SwPosition *pSttPos = aRegion.GetMark(),
*pEndPos = aRegion.GetPoint();
*pSttPos = *pTmpCursor->Start();
*pEndPos = *pTmpCursor->End();
if( bSrchBkwrd )
aRegion.Exchange();
if( !nCursorCnt && !pPHdl && !bIsUnoCursor )
pPHdl.reset(new PercentHdl( aRegion ));
// as long as found and not at same position
while( *pSttPos <= *pEndPos )
{
nFndRet = rParas.DoFind(*pCurrentCursor, fnMove, aRegion, bInReadOnly, xSearchItem);
if( 0 == nFndRet ||
( pFndRing &&
*pFndRing->GetPoint() == *pCurrentCursor->GetPoint() &&
*pFndRing->GetMark() == *pCurrentCursor->GetMark() ))
break;
if( !( FIND_NO_RING & nFndRet ))
{
// #i24084# - create ring similar to the one in CreateCursor
SwCursor* pNew = pCurrentCursor->Create( pFndRing );
if( !pFndRing )
pFndRing = pNew;
pNew->SetMark();
*pNew->GetMark() = *pCurrentCursor->GetMark();
}
++nFound;
if( !( eFndRngs & FindRanges::InSelAll) )
{
bEnd = true;
break;
}
if ((coSrchRplcThreshold == nFound)
&& rDoc.GetIDocumentUndoRedo().DoesUndo()
&& rParas.IsReplaceMode())
{
short nRet = pCurrentCursor->MaxReplaceArived();
if( RET_YES == nRet )
{
rDoc.GetIDocumentUndoRedo().DelAllUndoObj();
rDoc.GetIDocumentUndoRedo().DoUndo(false);
}
else
{
bEnd = true;
if(RET_CANCEL == nRet)
{
bCancel = true;
}
break;
}
}
if( bSrchBkwrd )
// move pEndPos in front of the found area
*pEndPos = *pCurrentCursor->Start();
else
// move pSttPos behind the found area
*pSttPos = *pCurrentCursor->End();
if( *pSttPos == *pEndPos )
// in area but at the end => done
break;
if( !nCursorCnt && pPHdl )
{
pPHdl->NextPos( *aRegion.GetMark() );
}
}
if( bEnd || !( eFndRngs & ( FindRanges::InSelAll | FindRanges::InSel )) )
break;
pTmpCursor = pTmpCursor->GetNext();
if( nCursorCnt && pPHdl )
{
pPHdl->NextPos( ++pPHdl->nActPos );
}
} while( pTmpCursor != pSaveCursor && pTmpCursor->GetNext() != pTmpCursor);
if( nFound && !pFndRing ) // if no ring should be created
pFndRing = pCurrentCursor->Create();
rDoc.GetIDocumentUndoRedo().DoUndo(bDoesUndo);
return nFound;
}
static bool lcl_MakeSelFwrd( const SwNode& rSttNd, const SwNode& rEndNd,
SwPaM& rPam, bool bFirst )
{
if( rSttNd.GetIndex() + 1 == rEndNd.GetIndex() )
return false;
SwNodes& rNds = rPam.GetDoc().GetNodes();
rPam.DeleteMark();
SwContentNode* pCNd;
if( !bFirst )
{
rPam.GetPoint()->nNode = rSttNd;
pCNd = rNds.GoNext( &rPam.GetPoint()->nNode );
if( !pCNd )
return false;
pCNd->MakeStartIndex( &rPam.GetPoint()->nContent );
}
else if( rSttNd.GetIndex() > rPam.GetPoint()->nNode.GetIndex() ||
rPam.GetPoint()->nNode.GetIndex() >= rEndNd.GetIndex() )
// not in this section
return false;
rPam.SetMark();
rPam.GetPoint()->nNode = rEndNd;
pCNd = SwNodes::GoPrevious( &rPam.GetPoint()->nNode );
if( !pCNd )
return false;
pCNd->MakeEndIndex( &rPam.GetPoint()->nContent );
return *rPam.GetMark() < *rPam.GetPoint();
}
static bool lcl_MakeSelBkwrd( const SwNode& rSttNd, const SwNode& rEndNd,
SwPaM& rPam, bool bFirst )
{
if( rEndNd.GetIndex() + 1 == rSttNd.GetIndex() )
return false;
SwNodes& rNds = rPam.GetDoc().GetNodes();
rPam.DeleteMark();
SwContentNode* pCNd;
if( !bFirst )
{
rPam.GetPoint()->nNode = rSttNd;
pCNd = SwNodes::GoPrevious( &rPam.GetPoint()->nNode );
if( !pCNd )
return false;
pCNd->MakeEndIndex( &rPam.GetPoint()->nContent );
}
else if( rEndNd.GetIndex() > rPam.GetPoint()->nNode.GetIndex() ||
rPam.GetPoint()->nNode.GetIndex() >= rSttNd.GetIndex() )
return false; // not in this section
rPam.SetMark();
rPam.GetPoint()->nNode = rEndNd;
pCNd = rNds.GoNext( &rPam.GetPoint()->nNode );
if( !pCNd )
return false;
pCNd->MakeStartIndex( &rPam.GetPoint()->nContent );
return *rPam.GetPoint() < *rPam.GetMark();
}
// this method "searches" for all use cases because in SwFindParas is always the
// correct parameters and respective search method
sal_uLong SwCursor::FindAll( SwFindParas& rParas,
SwDocPositions nStart, SwDocPositions nEnd,
FindRanges eFndRngs, bool& bCancel )
{
bCancel = false;
SwCursorSaveState aSaveState( *this );
// create region without adding it to the ring
SwPaM aRegion( *GetPoint() );
SwMoveFnCollection const & fnMove = MakeFindRange( nStart, nEnd, &aRegion );
sal_uLong nFound = 0;
const bool bMvBkwrd = &fnMove == &fnMoveBackward;
bool bInReadOnly = IsReadOnlyAvailable();
std::unique_ptr<SvxSearchItem> xSearchItem;
SwCursor* pFndRing = nullptr;
SwNodes& rNds = GetDoc().GetNodes();
// search in sections?
if( FindRanges::InSel & eFndRngs )
{
// if string was not found in region then get all sections (cursors
// stays unchanged)
nFound = lcl_FindSelection( rParas, this, fnMove,
pFndRing, aRegion, eFndRngs,
bInReadOnly, bCancel );
if( 0 == nFound )
return nFound;
// found string at least once; it's all in new Cursor ring thus delete old one
while( GetNext() != this )
delete GetNext();
*GetPoint() = *pFndRing->GetPoint();
SetMark();
*GetMark() = *pFndRing->GetMark();
pFndRing->GetRingContainer().merge( GetRingContainer() );
delete pFndRing;
}
else if( FindRanges::InOther & eFndRngs )
{
// put cursor as copy of current into ring
// chaining points always to first created, so forward
SwCursor* pSav = Create( this ); // save the current cursor
// if already outside of body text search from this position or start at
// 1. base section
if( bMvBkwrd
? lcl_MakeSelBkwrd( rNds.GetEndOfExtras(),
*rNds.GetEndOfPostIts().StartOfSectionNode(),
*this, rNds.GetEndOfExtras().GetIndex() >=
GetPoint()->nNode.GetIndex() )
: lcl_MakeSelFwrd( *rNds.GetEndOfPostIts().StartOfSectionNode(),
rNds.GetEndOfExtras(), *this,
rNds.GetEndOfExtras().GetIndex() >=
GetPoint()->nNode.GetIndex() ))
{
nFound = lcl_FindSelection( rParas, this, fnMove, pFndRing,
aRegion, eFndRngs, bInReadOnly, bCancel );
}
if( !nFound )
{
// put back the old one
*GetPoint() = *pSav->GetPoint();
if( pSav->HasMark() )
{
SetMark();
*GetMark() = *pSav->GetMark();
}
else
DeleteMark();
return 0;
}
if( !( FindRanges::InSelAll & eFndRngs ))
{
// there should only be a single one, thus add it
// independent from search direction: SPoint is always bigger than
// mark if the search area is valid
*GetPoint() = *pFndRing->GetPoint();
SetMark();
*GetMark() = *pFndRing->GetMark();
}
else
{
// found string at least once; it's all in new Cursor ring thus delete old one
while( GetNext() != this )
delete GetNext();
*GetPoint() = *pFndRing->GetPoint();
SetMark();
*GetMark() = *pFndRing->GetMark();
pFndRing->GetRingContainer().merge( GetRingContainer() );
}
delete pFndRing;
}
else if( FindRanges::InSelAll & eFndRngs )
{
SwCursor* pSav = Create( this ); // save the current cursor
const SwNode* pSttNd = ( FindRanges::InBodyOnly & eFndRngs )
? rNds.GetEndOfContent().StartOfSectionNode()
: rNds.GetEndOfPostIts().StartOfSectionNode();
if( bMvBkwrd
? lcl_MakeSelBkwrd( rNds.GetEndOfContent(), *pSttNd, *this, false )
: lcl_MakeSelFwrd( *pSttNd, rNds.GetEndOfContent(), *this, false ))
{
nFound = lcl_FindSelection( rParas, this, fnMove, pFndRing,
aRegion, eFndRngs, bInReadOnly, bCancel );
}
if( !nFound )
{
// put back the old one
*GetPoint() = *pSav->GetPoint();
if( pSav->HasMark() )
{
SetMark();
*GetMark() = *pSav->GetMark();
}
else
DeleteMark();
return 0;
}
while( GetNext() != this )
delete GetNext();
*GetPoint() = *pFndRing->GetPoint();
SetMark();
*GetMark() = *pFndRing->GetMark();
pFndRing->GetRingContainer().merge( GetRingContainer() );
delete pFndRing;
}
else
{
// if a GetMark is set then keep the GetMark of the found object
// This allows spanning an area with this search.
SwPosition aMarkPos( *GetMark() );
const bool bMarkPos = HasMark() && (eFndRngs == FindRanges::InBody);
nFound = rParas.DoFind(*this, fnMove, aRegion, bInReadOnly, xSearchItem) ? 1 : 0;
if (0 != nFound && bMarkPos)
*GetMark() = aMarkPos;
}
if( nFound && SwCursor::IsSelOvr( SwCursorSelOverFlags::Toggle ) )
nFound = 0;
return nFound;
}
void SwCursor::FillFindPos( SwDocPositions ePos, SwPosition& rPos ) const
{
bool bIsStart = true;
SwContentNode* pCNd = nullptr;
SwNodes& rNds = GetDoc().GetNodes();
switch( ePos )
{
case SwDocPositions::Start:
rPos.nNode = *rNds.GetEndOfContent().StartOfSectionNode();
pCNd = rNds.GoNext( &rPos.nNode );
break;
case SwDocPositions::End:
rPos.nNode = rNds.GetEndOfContent();
pCNd = SwNodes::GoPrevious( &rPos.nNode );
bIsStart = false;
break;
case SwDocPositions::OtherStart:
rPos.nNode = *rNds[ SwNodeOffset(0) ];
pCNd = rNds.GoNext( &rPos.nNode );
break;
case SwDocPositions::OtherEnd:
rPos.nNode = *rNds.GetEndOfContent().StartOfSectionNode();
pCNd = SwNodes::GoPrevious( &rPos.nNode );
bIsStart = false;
break;
default:
rPos = *GetPoint();
}
if( pCNd )
{
rPos.nContent.Assign( pCNd, bIsStart ? 0 : pCNd->Len() );
}
}
short SwCursor::MaxReplaceArived()
{
return RET_YES;
}
namespace {
struct HideWrapper
{
// either the frame's text or the node's text (possibly pre-filtered)
OUString const* m_pText;
// this is actually a TextFrameIndex but all of the i18n code uses sal_Int32
sal_Int32 m_nPtIndex;
// if mapping is needed, use this frame
SwTextFrame * m_pFrame;
// input in the constructor, output (via mapping) in the destructor
SwTextNode *& m_rpTextNode;
sal_Int32 & m_rPtPos;
HideWrapper(SwRootFrame const*const pLayout,
SwTextNode *& rpTextNode, sal_Int32 & rPtPos,
OUString const*const pFilteredNodeText = nullptr)
: m_pText(pFilteredNodeText)
, m_pFrame(nullptr)
, m_rpTextNode(rpTextNode)
, m_rPtPos(rPtPos)
{
if (pLayout && pLayout->HasMergedParas())
{
m_pFrame = static_cast<SwTextFrame*>(rpTextNode->getLayoutFrame(pLayout));
m_pText = &m_pFrame->GetText();
m_nPtIndex = sal_Int32(m_pFrame->MapModelToView(rpTextNode, rPtPos));
}
else
{
if (!m_pText)
{
m_pText = &rpTextNode->GetText();
}
m_nPtIndex = rPtPos;
}
}
~HideWrapper()
{
AssignBack(m_rpTextNode, m_rPtPos);
}
void AssignBack(SwTextNode *& rpTextNode, sal_Int32 & rPtPos)
{
if (0 <= m_nPtIndex && m_pFrame)
{
std::pair<SwTextNode*, sal_Int32> const pos(
m_pFrame->MapViewToModel(TextFrameIndex(m_nPtIndex)));
rpTextNode = pos.first;
rPtPos = pos.second;
}
else
{
rPtPos = m_nPtIndex;
}
}
};
} // namespace
bool SwCursor::SelectWord( SwViewShell const * pViewShell, const Point* pPt )
{
return SelectWordWT( pViewShell, WordType::ANYWORD_IGNOREWHITESPACES, pPt );
}
bool SwCursor::IsStartWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout) const
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
HideWrapper w(pLayout, pTextNd, nPtPos);
bRet = g_pBreakIt->GetBreakIter()->isBeginWord(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos )),
nWordType );
}
return bRet;
}
bool SwCursor::IsEndWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout) const
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
HideWrapper w(pLayout, pTextNd, nPtPos);
bRet = g_pBreakIt->GetBreakIter()->isEndWord(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType );
}
return bRet;
}
bool SwCursor::IsInWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout) const
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos);
Boundary aBoundary = g_pBreakIt->GetBreakIter()->getWordBoundary(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType,
true );
bRet = aBoundary.startPos != aBoundary.endPos &&
aBoundary.startPos <= w.m_nPtIndex &&
w.m_nPtIndex <= aBoundary.endPos;
w.m_nPtIndex = aBoundary.startPos; // hack: convert startPos back...
}
if(bRet)
{
const CharClass& rCC = GetAppCharClass();
bRet = rCC.isLetterNumeric(pTextNd->GetText(), nPtPos);
}
}
return bRet;
}
bool SwCursor::IsStartEndSentence(bool bEnd, SwRootFrame const*const pLayout) const
{
bool bRet = bEnd ?
GetContentNode() && GetPoint()->nContent == GetContentNode()->Len() :
GetPoint()->nContent.GetIndex() == 0;
if ((pLayout != nullptr && pLayout->HasMergedParas()) || !bRet)
{
SwCursor aCursor(*GetPoint(), nullptr);
SwPosition aOrigPos = *aCursor.GetPoint();
aCursor.GoSentence(bEnd ? SwCursor::END_SENT : SwCursor::START_SENT, pLayout);
bRet = aOrigPos == *aCursor.GetPoint();
}
return bRet;
}
bool SwCursor::GoStartWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout)
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
SwCursorSaveState aSave( *this );
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos);
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->getWordBoundary(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType,
false ).startPos;
}
if (nPtPos < pTextNd->GetText().getLength() && nPtPos >= 0)
{
*GetPoint() = SwPosition(*pTextNd, nPtPos);
if( !IsSelOvr() )
bRet = true;
}
}
return bRet;
}
bool SwCursor::GoEndWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout)
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
SwCursorSaveState aSave( *this );
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos);
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->getWordBoundary(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType,
true ).endPos;
}
if (nPtPos <= pTextNd->GetText().getLength() && nPtPos >= 0 &&
GetPoint()->nContent.GetIndex() != nPtPos )
{
*GetPoint() = SwPosition(*pTextNd, nPtPos);
if( !IsSelOvr() )
bRet = true;
}
}
return bRet;
}
bool SwCursor::GoNextWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout)
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
SwCursorSaveState aSave( *this );
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos);
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->nextWord(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang(nPtPos, 1) ),
nWordType ).startPos;
}
if (nPtPos <= pTextNd->GetText().getLength() && nPtPos >= 0)
{
*GetPoint() = SwPosition(*pTextNd, nPtPos);
if( !IsSelOvr() )
bRet = true;
}
}
return bRet;
}
bool SwCursor::GoPrevWordWT(sal_Int16 nWordType, SwRootFrame const*const pLayout)
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
SwCursorSaveState aSave( *this );
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos);
const sal_Int32 nPtStart = w.m_nPtIndex;
if (w.m_nPtIndex)
{
--w.m_nPtIndex;
w.AssignBack(pTextNd, nPtPos);
}
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->previousWord(
*w.m_pText, nPtStart,
g_pBreakIt->GetLocale( pTextNd->GetLang(nPtPos, 1) ),
nWordType ).startPos;
}
if (nPtPos < pTextNd->GetText().getLength() && nPtPos >= 0)
{
*GetPoint() = SwPosition(*pTextNd, nPtPos);
if( !IsSelOvr() )
bRet = true;
}
}
return bRet;
}
bool SwCursor::SelectWordWT( SwViewShell const * pViewShell, sal_Int16 nWordType, const Point* pPt )
{
SwCursorSaveState aSave( *this );
bool bRet = false;
DeleteMark();
const SwRootFrame* pLayout = pViewShell->GetLayout();
if( pPt && nullptr != pLayout )
{
// set the cursor to the layout position
Point aPt( *pPt );
pLayout->GetModelPositionForViewPoint( GetPoint(), aPt );
}
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
// Should we select the whole fieldmark?
const IDocumentMarkAccess* pMarksAccess = GetDoc().getIDocumentMarkAccess( );
sw::mark::IFieldmark const*const pMark(pMarksAccess->getFieldmarkFor(*GetPoint()));
if (pMark && (IDocumentMarkAccess::GetType(*pMark) == IDocumentMarkAccess::MarkType::TEXT_FIELDMARK
|| IDocumentMarkAccess::GetType(*pMark) == IDocumentMarkAccess::MarkType::DATE_FIELDMARK))
{
*GetPoint() = sw::mark::FindFieldSep(*pMark);
++GetPoint()->nContent; // Don't select the separator
const SwPosition& rEnd = pMark->GetMarkEnd();
assert(pMark->GetMarkEnd() != *GetPoint());
SetMark();
GetMark()->nNode = rEnd.nNode;
GetMark()->nContent = rEnd.nContent;
--GetMark()->nContent; // Don't select the end delimiter
bRet = true;
}
else
{
bool bForward = true;
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
HideWrapper w(pViewShell->GetLayout(), pTextNd, nPtPos);
Boundary aBndry( g_pBreakIt->GetBreakIter()->getWordBoundary(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType,
bForward ));
if (comphelper::LibreOfficeKit::isActive() && aBndry.startPos == aBndry.endPos && w.m_nPtIndex > 0)
{
// nPtPos is the end of the paragraph, select the last word then.
--w.m_nPtIndex;
w.AssignBack(pTextNd, nPtPos);
aBndry = g_pBreakIt->GetBreakIter()->getWordBoundary(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pTextNd->GetLang( nPtPos ) ),
nWordType,
bForward );
}
SwTextNode * pStartNode(pTextNd);
sal_Int32 nStartIndex;
w.m_nPtIndex = aBndry.startPos;
w.AssignBack(pStartNode, nStartIndex);
SwTextNode * pEndNode(pTextNd);
sal_Int32 nEndIndex;
w.m_nPtIndex = aBndry.endPos;
w.AssignBack(pEndNode, nEndIndex);
if( aBndry.startPos != aBndry.endPos )
{
*GetPoint() = SwPosition(*pEndNode, nEndIndex);
if( !IsSelOvr() )
{
SetMark();
*GetMark() = SwPosition(*pStartNode, nStartIndex);
if (sw::mark::IMark* pAnnotationMark = pMarksAccess->getAnnotationMarkFor(*GetPoint()))
{
// An annotation mark covers the selected word. Check
// if it covers only the word: in that case we select
// the comment anchor as well.
bool bStartMatch = GetMark()->nNode == pAnnotationMark->GetMarkStart().nNode &&
GetMark()->nContent == pAnnotationMark->GetMarkStart().nContent;
bool bEndMatch = GetPoint()->nNode == pAnnotationMark->GetMarkEnd().nNode &&
GetPoint()->nContent.GetIndex() + 1 == pAnnotationMark->GetMarkEnd().nContent.GetIndex();
if (bStartMatch && bEndMatch)
++GetPoint()->nContent;
}
if( !IsSelOvr() )
bRet = true;
}
}
}
}
if( !bRet )
{
DeleteMark();
RestoreSavePos();
}
return bRet;
}
static OUString lcl_MaskDeletedRedlines( const SwTextNode* pTextNd )
{
OUString aRes;
if (pTextNd)
{
//mask deleted redlines
OUString sNodeText(pTextNd->GetText());
const SwDoc& rDoc = pTextNd->GetDoc();
const bool bShowChg = IDocumentRedlineAccess::IsShowChanges( rDoc.getIDocumentRedlineAccess().GetRedlineFlags() );
if ( bShowChg )
{
SwRedlineTable::size_type nAct = rDoc.getIDocumentRedlineAccess().GetRedlinePos( *pTextNd, RedlineType::Any );
for ( ; nAct < rDoc.getIDocumentRedlineAccess().GetRedlineTable().size(); nAct++ )
{
const SwRangeRedline* pRed = rDoc.getIDocumentRedlineAccess().GetRedlineTable()[ nAct ];
if ( pRed->Start()->nNode > pTextNd->GetIndex() )
break;
if( RedlineType::Delete == pRed->GetType() )
{
sal_Int32 nStart, nEnd;
pRed->CalcStartEnd( pTextNd->GetIndex(), nStart, nEnd );
while ( nStart < nEnd && nStart < sNodeText.getLength() )
sNodeText = sNodeText.replaceAt( nStart++, 1, rtl::OUStringChar(CH_TXTATR_INWORD) );
}
}
}
aRes = sNodeText;
}
return aRes;
}
bool SwCursor::GoSentence(SentenceMoveType eMoveType, SwRootFrame const*const pLayout)
{
bool bRet = false;
SwTextNode* pTextNd = GetNode().GetTextNode();
if (pTextNd)
{
OUString const sNodeText(lcl_MaskDeletedRedlines(pTextNd));
SwCursorSaveState aSave( *this );
sal_Int32 nPtPos = GetPoint()->nContent.GetIndex();
{
HideWrapper w(pLayout, pTextNd, nPtPos, &sNodeText);
switch ( eMoveType )
{
case START_SENT: /* when modifying: see also ExpandToSentenceBorders below! */
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->beginOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale(pTextNd->GetLang(nPtPos)));
break;
case END_SENT: /* when modifying: see also ExpandToSentenceBorders below! */
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->endOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale(pTextNd->GetLang(nPtPos)));
break;
case NEXT_SENT:
{
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->endOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale(pTextNd->GetLang(nPtPos)));
if (w.m_nPtIndex >= 0 && w.m_nPtIndex < w.m_pText->getLength())
{
do
{
++w.m_nPtIndex;
}
while (w.m_nPtIndex < w.m_pText->getLength()
&& (*w.m_pText)[w.m_nPtIndex] == ' ');
}
break;
}
case PREV_SENT:
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->beginOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale(pTextNd->GetLang(nPtPos)));
if (w.m_nPtIndex == 0)
return false; // the previous sentence is not in this paragraph
if (w.m_nPtIndex > 0)
{
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->beginOfSentence(
*w.m_pText, w.m_nPtIndex - 1,
g_pBreakIt->GetLocale(pTextNd->GetLang(nPtPos)));
}
break;
}
}
// it is allowed to place the PaM just behind the last
// character in the text thus <= ...Len
if (nPtPos <= pTextNd->GetText().getLength() && nPtPos >= 0)
{
*GetPoint() = SwPosition(*pTextNd, nPtPos);
if( !IsSelOvr() )
bRet = true;
}
}
return bRet;
}
void SwCursor::ExpandToSentenceBorders(SwRootFrame const*const pLayout)
{
SwTextNode* pStartNd = Start()->nNode.GetNode().GetTextNode();
SwTextNode* pEndNd = End()->nNode.GetNode().GetTextNode();
if (!pStartNd || !pEndNd)
return;
if (!HasMark())
SetMark();
OUString sStartText( lcl_MaskDeletedRedlines( pStartNd ) );
OUString sEndText( pStartNd == pEndNd? sStartText : lcl_MaskDeletedRedlines( pEndNd ) );
SwCursorSaveState aSave( *this );
sal_Int32 nStartPos = Start()->nContent.GetIndex();
sal_Int32 nEndPos = End()->nContent.GetIndex();
{
HideWrapper w(pLayout, pStartNd, nStartPos, &sStartText);
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->beginOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pStartNd->GetLang( nStartPos ) ) );
}
{
HideWrapper w(pLayout, pEndNd, nEndPos, &sEndText);
w.m_nPtIndex = g_pBreakIt->GetBreakIter()->endOfSentence(
*w.m_pText, w.m_nPtIndex,
g_pBreakIt->GetLocale( pEndNd->GetLang( nEndPos ) ) );
}
// it is allowed to place the PaM just behind the last
// character in the text thus <= ...Len
if (nStartPos <= pStartNd->GetText().getLength() && nStartPos >= 0)
{
*GetMark() = SwPosition(*pStartNd, nStartPos);
}
if (nEndPos <= pEndNd->GetText().getLength() && nEndPos >= 0)
{
*GetPoint() = SwPosition(*pEndNd, nEndPos);
}
}
bool SwTableCursor::LeftRight( bool bLeft, sal_uInt16 nCnt, sal_uInt16 /*nMode*/,
bool /*bVisualAllowed*/, bool /*bSkipHidden*/, bool /*bInsertCursor*/,
SwRootFrame const*, bool /*isFieldNames*/)
{
return bLeft ? GoPrevCell( nCnt )
: GoNextCell( nCnt );
}
// calculate cursor bidi level: extracted from LeftRight()
const SwContentFrame*
SwCursor::DoSetBidiLevelLeftRight(
bool & io_rbLeft, bool bVisualAllowed, bool bInsertCursor)
{
// calculate cursor bidi level
const SwContentFrame* pSttFrame = nullptr;
SwNode& rNode = GetPoint()->nNode.GetNode();
if( rNode.IsTextNode() )
{
const SwTextNode& rTNd = *rNode.GetTextNode();
SwIndex& rIdx = GetPoint()->nContent;
sal_Int32 nPos = rIdx.GetIndex();
const SvtCTLOptions& rCTLOptions = SW_MOD()->GetCTLOptions();
if ( bVisualAllowed && rCTLOptions.IsCTLFontEnabled() &&
SvtCTLOptions::MOVEMENT_VISUAL ==
rCTLOptions.GetCTLCursorMovement() )
{
// for visual cursor travelling (used in bidi layout)
// we first have to convert the logic to a visual position
Point aPt;
std::pair<Point, bool> const tmp(aPt, true);
pSttFrame = rTNd.getLayoutFrame(
GetDoc().getIDocumentLayoutAccess().GetCurrentLayout(),
GetPoint(), &tmp);
if( pSttFrame )
{
sal_uInt8 nCursorLevel = GetCursorBidiLevel();
bool bForward = ! io_rbLeft;
SwTextFrame *const pTF(const_cast<SwTextFrame*>(
static_cast<const SwTextFrame*>(pSttFrame)));
TextFrameIndex nTFIndex(pTF->MapModelToViewPos(*GetPoint()));
pTF->PrepareVisualMove( nTFIndex, nCursorLevel,
bForward, bInsertCursor );
*GetPoint() = pTF->MapViewToModelPos(nTFIndex);
SetCursorBidiLevel( nCursorLevel );
io_rbLeft = ! bForward;
}
}
else
{
SwTextFrame const* pFrame;
const SwScriptInfo* pSI = SwScriptInfo::GetScriptInfo(rTNd, &pFrame);
if ( pSI )
{
const sal_Int32 nMoveOverPos = io_rbLeft ?
( nPos ? nPos - 1 : 0 ) :
nPos;
TextFrameIndex nIndex(pFrame->MapModelToView(&rTNd, nMoveOverPos));
SetCursorBidiLevel( pSI->DirType(nIndex) );
}
}
}
return pSttFrame;
}
bool SwCursor::LeftRight( bool bLeft, sal_uInt16 nCnt, sal_uInt16 nMode,
bool bVisualAllowed,bool bSkipHidden, bool bInsertCursor,
SwRootFrame const*const pLayout, bool isFieldNames)
{
// calculate cursor bidi level
SwNode& rNode = GetPoint()->nNode.GetNode();
const SwContentFrame* pSttFrame = // may side-effect bLeft!
DoSetBidiLevelLeftRight(bLeft, bVisualAllowed, bInsertCursor);
// can the cursor be moved n times?
SwCursorSaveState aSave( *this );
SwMoveFnCollection const & fnMove = bLeft ? fnMoveBackward : fnMoveForward;
SwGoInDoc fnGo;
if ( bSkipHidden )
fnGo = CRSR_SKIP_CELLS == nMode ? GoInContentCellsSkipHidden : GoInContentSkipHidden;
else
fnGo = CRSR_SKIP_CELLS == nMode ? GoInContentCells : GoInContent;
SwTextFrame const* pFrame(nullptr);
if (pLayout)
{
pFrame = static_cast<SwTextFrame*>(rNode.GetContentNode()->getLayoutFrame(pLayout));
if (pFrame)
{
while (pFrame->GetPrecede())
{
pFrame = static_cast<SwTextFrame const*>(pFrame->GetPrecede());
}
}
}
while( nCnt )
{
SwNodeIndex aOldNodeIdx( GetPoint()->nNode );
TextFrameIndex beforeIndex(-1);
if (pFrame)
{
beforeIndex = pFrame->MapModelToViewPos(*GetPoint());
}
if (!bLeft && pLayout && pLayout->GetFieldmarkMode() == sw::FieldmarkMode::ShowResult)
{
SwTextNode const*const pNode(GetPoint()->nNode.GetNode().GetTextNode());
assert(pNode);
if (pNode->Len() != GetPoint()->nContent.GetIndex()
&& pNode->GetText()[GetPoint()->nContent.GetIndex()] == CH_TXT_ATR_FIELDSTART)
{
IDocumentMarkAccess const& rIDMA(*GetDoc().getIDocumentMarkAccess());
sw::mark::IFieldmark const*const pMark(rIDMA.getFieldmarkAt(*GetPoint()));
assert(pMark);
*GetPoint() = sw::mark::FindFieldSep(*pMark);
}
}
if ( !Move( fnMove, fnGo ) )
{
const SwEditShell* pSh = GetDoc().GetEditShell();
const SwViewOption* pViewOptions = pSh ? pSh->GetViewOptions() : nullptr;
if (pViewOptions && pViewOptions->IsShowOutlineContentVisibilityButton())
{
// Fixes crash that occurs in documents with outline content folded at the end of
// the document. When the cursor is at the end of the visible document and
// right arrow key is pressed Move fails after moving the cursor to the
// end of the document model, which doesn't have a node frame and causes
// weird numbers to be displayed in the statusbar page number count. Left
// arrow, when in this state, causes a crash without RestoredSavePos() added here.
RestoreSavePos();
}
break;
}
if (pFrame)
{
SwTextFrame const* pNewFrame(static_cast<SwTextFrame const*>(
GetPoint()->nNode.GetNode().GetContentNode()->getLayoutFrame(pLayout)));
if (pNewFrame)
{
while (pNewFrame->GetPrecede())
{
pNewFrame = static_cast<SwTextFrame const*>(pNewFrame->GetPrecede());
}
}
// sw_redlinehide: fully redline-deleted nodes don't have frames...
if (pFrame == pNewFrame || !pNewFrame)
{
if (!pNewFrame || beforeIndex == pFrame->MapModelToViewPos(*GetPoint()))
{
continue; // moving inside delete redline, doesn't count...
}
}
else
{
// assume iteration is stable & returns the same frame
assert(!pFrame->IsAnFollow(pNewFrame) && !pNewFrame->IsAnFollow(pFrame));
pFrame = pNewFrame;
}
}
if (bLeft && pLayout && pLayout->GetFieldmarkMode() == sw::FieldmarkMode::ShowCommand)
{
SwTextNode const*const pNode(GetPoint()->nNode.GetNode().GetTextNode());
assert(pNode);
if (pNode->Len() != GetPoint()->nContent.GetIndex()
&& pNode->GetText()[GetPoint()->nContent.GetIndex()] == CH_TXT_ATR_FIELDEND)
{
IDocumentMarkAccess const& rIDMA(*GetDoc().getIDocumentMarkAccess());
sw::mark::IFieldmark const*const pMark(rIDMA.getFieldmarkAt(*GetPoint()));
assert(pMark);
*GetPoint() = sw::mark::FindFieldSep(*pMark);
}
}
if (isFieldNames)
{
SwTextNode const*const pNode(GetPoint()->nNode.GetNode().GetTextNode());
assert(pNode);
SwTextAttr const*const pInputField(pNode->GetTextAttrAt(
GetPoint()->nContent.GetIndex(), RES_TXTATR_INPUTFIELD, SwTextNode::PARENT));
if (pInputField)
{
continue; // skip over input fields
}
}
// If we were located inside a covered cell but our position has been
// corrected, we check if the last move has moved the cursor to a
// different table cell. In this case we set the cursor to the stored
// covered position and redo the move:
if (m_nRowSpanOffset)
{
const SwNode* pOldTabBoxSttNode = aOldNodeIdx.GetNode().FindTableBoxStartNode();
const SwTableNode* pOldTabSttNode = pOldTabBoxSttNode ? pOldTabBoxSttNode->FindTableNode() : nullptr;
const SwNode* pNewTabBoxSttNode = GetPoint()->nNode.GetNode().FindTableBoxStartNode();
const SwTableNode* pNewTabSttNode = pNewTabBoxSttNode ? pNewTabBoxSttNode->FindTableNode() : nullptr;
const bool bCellChanged = pOldTabSttNode && pNewTabSttNode &&
pOldTabSttNode == pNewTabSttNode &&
pOldTabBoxSttNode && pNewTabBoxSttNode &&
pOldTabBoxSttNode != pNewTabBoxSttNode;
if ( bCellChanged )
{
// Set cursor to start/end of covered cell:
SwTableBox* pTableBox = pOldTabBoxSttNode->GetTableBox();
if ( pTableBox && pTableBox->getRowSpan() > 1 )
{
pTableBox = & pTableBox->FindEndOfRowSpan(
pOldTabSttNode->GetTable(),
o3tl::narrowing<sal_uInt16>(pTableBox->getRowSpan() + m_nRowSpanOffset));
SwNodeIndex& rPtIdx = GetPoint()->nNode;
SwNodeIndex aNewIdx( *pTableBox->GetSttNd() );
rPtIdx = aNewIdx;
GetDoc().GetNodes().GoNextSection( &rPtIdx, false, false );
SwContentNode* pContentNode = GetContentNode();
if ( pContentNode )
{
GetPoint()->nContent.Assign( pContentNode, bLeft ? pContentNode->Len() : 0 );
// Redo the move:
if ( !Move( fnMove, fnGo ) )
break;
}
}
m_nRowSpanOffset = 0;
}
}
// Check if I'm inside a covered cell. Correct cursor if necessary and
// store covered cell:
const SwNode* pTableBoxStartNode = GetPoint()->nNode.GetNode().FindTableBoxStartNode();
if ( pTableBoxStartNode )
{
const SwTableBox* pTableBox = pTableBoxStartNode->GetTableBox();
if ( pTableBox && pTableBox->getRowSpan() < 1 )
{
// Store the row span offset:
m_nRowSpanOffset = pTableBox->getRowSpan();
// Move cursor to non-covered cell:
const SwTableNode* pTableNd = pTableBoxStartNode->FindTableNode();
pTableBox = & pTableBox->FindStartOfRowSpan( pTableNd->GetTable() );
SwNodeIndex& rPtIdx = GetPoint()->nNode;
SwNodeIndex aNewIdx( *pTableBox->GetSttNd() );
rPtIdx = aNewIdx;
GetDoc().GetNodes().GoNextSection( &rPtIdx, false, false );
SwContentNode* pContentNode = GetContentNode();
if ( pContentNode )
{
GetPoint()->nContent.Assign( pContentNode, bLeft ? pContentNode->Len() : 0 );
}
}
}
--nCnt;
}
// here come some special rules for visual cursor travelling
if ( pSttFrame )
{
SwNode& rTmpNode = GetPoint()->nNode.GetNode();
if ( &rTmpNode != &rNode && rTmpNode.IsTextNode() )
{
Point aPt;
std::pair<Point, bool> const tmp(aPt, true);
const SwContentFrame* pEndFrame = rTmpNode.GetTextNode()->getLayoutFrame(
GetDoc().getIDocumentLayoutAccess().GetCurrentLayout(),
GetPoint(), &tmp);
if ( pEndFrame )
{
if ( ! pEndFrame->IsRightToLeft() != ! pSttFrame->IsRightToLeft() )
{
if ( ! bLeft )
pEndFrame->RightMargin( this );
else
pEndFrame->LeftMargin( this );
}
}
}
}
return 0 == nCnt && !IsInProtectTable( true ) &&
!IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos );
}
// calculate cursor bidi level: extracted from UpDown()
void SwCursor::DoSetBidiLevelUpDown()
{
SwNode& rNode = GetPoint()->nNode.GetNode();
if ( !rNode.IsTextNode() )
return;
SwTextFrame const* pFrame;
const SwScriptInfo* pSI =
SwScriptInfo::GetScriptInfo( *rNode.GetTextNode(), &pFrame );
if ( !pSI )
return;
SwIndex& rIdx = GetPoint()->nContent;
const sal_Int32 nPos = rIdx.GetIndex();
if (!(nPos && nPos < rNode.GetTextNode()->GetText().getLength()))
return;
TextFrameIndex const nIndex(pFrame->MapModelToView(rNode.GetTextNode(), nPos));
const sal_uInt8 nCurrLevel = pSI->DirType( nIndex );
const sal_uInt8 nPrevLevel = pSI->DirType( nIndex - TextFrameIndex(1) );
if ( nCurrLevel % 2 != nPrevLevel % 2 )
{
// set cursor level to the lower of the two levels
SetCursorBidiLevel( std::min( nCurrLevel, nPrevLevel ) );
}
else
SetCursorBidiLevel( nCurrLevel );
}
bool SwCursor::UpDown( bool bUp, sal_uInt16 nCnt,
Point const * pPt, tools::Long nUpDownX,
SwRootFrame & rLayout)
{
SwTableCursor* pTableCursor = dynamic_cast<SwTableCursor*>(this);
bool bAdjustTableCursor = false;
// If the point/mark of the table cursor in the same box then set cursor to
// beginning of the box
if( pTableCursor && GetNode().StartOfSectionNode() ==
GetNode( false ).StartOfSectionNode() )
{
if ( End() != GetPoint() )
Exchange();
bAdjustTableCursor = true;
}
bool bRet = false;
Point aPt;
if( pPt )
aPt = *pPt;
std::pair<Point, bool> const temp(aPt, true);
SwContentFrame* pFrame = GetContentNode()->getLayoutFrame(&rLayout, GetPoint(), &temp);
if( pFrame )
{
SwCursorSaveState aSave( *this );
if( !pPt )
{
SwRect aTmpRect;
pFrame->GetCharRect( aTmpRect, *GetPoint() );
aPt = aTmpRect.Pos();
nUpDownX = pFrame->IsVertical() ?
aPt.getY() - pFrame->getFrameArea().Top() :
aPt.getX() - pFrame->getFrameArea().Left();
}
// It is allowed to move footnotes in other footnotes but not sections
const bool bChkRange = !pFrame->IsInFootnote() || HasMark();
const SwPosition aOldPos( *GetPoint() );
const bool bInReadOnly = IsReadOnlyAvailable();
if ( bAdjustTableCursor && !bUp )
{
// Special case: We have a table cursor but the start box has more
// than one paragraph. If we want to go down, we have to set the
// point to the last frame in the table box. This is only necessary
// if we do not already have a table selection
const SwStartNode* pTableNd = GetNode().FindTableBoxStartNode();
OSL_ENSURE( pTableNd, "pTableCursor without SwTableNode?" );
if ( pTableNd ) // safety first
{
const SwNode* pEndNd = pTableNd->EndOfSectionNode();
GetPoint()->nNode = *pEndNd;
pTableCursor->Move( fnMoveBackward, GoInNode );
std::pair<Point, bool> const tmp(aPt, true);
pFrame = GetContentNode()->getLayoutFrame(&rLayout, GetPoint(), &tmp);
}
}
while( nCnt &&
(bUp ? pFrame->UnitUp( this, nUpDownX, bInReadOnly )
: pFrame->UnitDown( this, nUpDownX, bInReadOnly ) ) &&
CheckNodesRange( aOldPos.nNode, GetPoint()->nNode, bChkRange ))
{
std::pair<Point, bool> const tmp(aPt, true);
pFrame = GetContentNode()->getLayoutFrame(&rLayout, GetPoint(), &tmp);
--nCnt;
}
// iterate over whole number of items?
if( !nCnt && !IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos ) )
{
if( !pTableCursor )
{
// try to position the cursor at half of the char-rect's height
DisableCallbackAction a(rLayout);
std::pair<Point, bool> const tmp(aPt, true);
pFrame = GetContentNode()->getLayoutFrame(&rLayout, GetPoint(), &tmp);
SwCursorMoveState eTmpState( CursorMoveState::UpDown );
eTmpState.m_bSetInReadOnly = bInReadOnly;
SwRect aTmpRect;
pFrame->GetCharRect( aTmpRect, *GetPoint(), &eTmpState );
if ( pFrame->IsVertical() )
{
aPt.setX(aTmpRect.Center().getX());
pFrame->Calc(rLayout.GetCurrShell()->GetOut());
aPt.setY(pFrame->getFrameArea().Top() + nUpDownX);
}
else
{
aPt.setY(aTmpRect.Center().getY());
pFrame->Calc(rLayout.GetCurrShell()->GetOut());
aPt.setX(pFrame->getFrameArea().Left() + nUpDownX);
}
pFrame->GetModelPositionForViewPoint( GetPoint(), aPt, &eTmpState );
}
bRet = !IsSelOvr( SwCursorSelOverFlags::Toggle | SwCursorSelOverFlags::ChangePos );
}
else if (!pFrame->IsInFootnote()) // tdf#150457 Jump to the begin/end
// of the first/last line only if the
// cursor is not inside a footenote
{
sal_Int32 nOffset = 0;
// Jump to beginning or end of line when the cursor at first or last line.
if(!bUp)
{
SwTextNode* pTextNd = GetPoint()->nNode.GetNode().GetTextNode();
if (pTextNd)
nOffset = pTextNd->GetText().getLength();
}
const SwPosition aPos(*GetContentNode(), nOffset);
//if cursor has already been at start or end of file,
//Update cursor to change nUpDownX.
if ( aOldPos.nContent.GetIndex() == nOffset )
{
if (SwEditShell* pSh = GetDoc().GetEditShell())
pSh->UpdateCursor();
bRet = false;
}
else{
*GetPoint() = aPos; // just give a new position
bRet = true;
}
}
else
*GetPoint() = aOldPos;
DoSetBidiLevelUpDown(); // calculate cursor bidi level
}
return bRet;
}
bool SwCursor::LeftRightMargin(SwRootFrame const& rLayout, bool bLeft, bool bAPI)
{
Point aPt;
std::pair<Point, bool> const tmp(aPt, true);
SwContentFrame const*const pFrame = GetContentNode()->getLayoutFrame(
&rLayout, GetPoint(), &tmp);
// calculate cursor bidi level
if ( pFrame )
SetCursorBidiLevel( pFrame->IsRightToLeft() ? 1 : 0 );
SwCursorSaveState aSave( *this );
return pFrame
&& (bLeft ? pFrame->LeftMargin( this ) : pFrame->RightMargin( this, bAPI ) )
&& !IsSelOvr( SwCursorSelOverFlags::Toggle | SwCursorSelOverFlags::ChangePos );
}
bool SwCursor::IsAtLeftRightMargin(SwRootFrame const& rLayout, bool bLeft, bool bAPI) const
{
bool bRet = false;
Point aPt;
std::pair<Point, bool> const tmp(aPt, true);
SwContentFrame const*const pFrame = GetContentNode()->getLayoutFrame(
&rLayout, GetPoint(), &tmp);
if( pFrame )
{
SwPaM aPam( *GetPoint() );
if( !bLeft && aPam.GetPoint()->nContent.GetIndex() )
--aPam.GetPoint()->nContent;
bRet = (bLeft ? pFrame->LeftMargin( &aPam )
: pFrame->RightMargin( &aPam, bAPI ))
&& (!pFrame->IsTextFrame()
|| static_cast<SwTextFrame const*>(pFrame)->MapModelToViewPos(*aPam.GetPoint())
== static_cast<SwTextFrame const*>(pFrame)->MapModelToViewPos(*GetPoint()));
}
return bRet;
}
bool SwCursor::SttEndDoc( bool bStt )
{
SwCursorSaveState aSave( *this );
// Never jump over section boundaries during selection!
// Can the cursor still moved on?
SwMoveFnCollection const & fnMove = bStt ? fnMoveBackward : fnMoveForward;
bool bRet = (!HasMark() || !IsNoContent() ) &&
Move( fnMove, GoInDoc ) &&
!IsInProtectTable( true ) &&
!IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos |
SwCursorSelOverFlags::EnableRevDirection );
return bRet;
}
bool SwCursor::GoPrevNextCell( bool bNext, sal_uInt16 nCnt )
{
const SwTableNode* pTableNd = GetPoint()->nNode.GetNode().FindTableNode();
if( !pTableNd )
return false;
// If there is another EndNode in front of the cell's StartNode then there
// exists a previous cell
SwCursorSaveState aSave( *this );
SwNodeIndex& rPtIdx = GetPoint()->nNode;
while( nCnt-- )
{
const SwNode* pTableBoxStartNode = rPtIdx.GetNode().FindTableBoxStartNode();
const SwTableBox* pTableBox = pTableBoxStartNode->GetTableBox();
// Check if we have to move the cursor to a covered cell before
// proceeding:
if (m_nRowSpanOffset)
{
if ( pTableBox && pTableBox->getRowSpan() > 1 )
{
pTableBox = & pTableBox->FindEndOfRowSpan( pTableNd->GetTable(),
o3tl::narrowing<sal_uInt16>(pTableBox->getRowSpan() + m_nRowSpanOffset));
SwNodeIndex aNewIdx( *pTableBox->GetSttNd() );
rPtIdx = aNewIdx;
pTableBoxStartNode = rPtIdx.GetNode().FindTableBoxStartNode();
}
m_nRowSpanOffset = 0;
}
const SwNode* pTmpNode = bNext ?
pTableBoxStartNode->EndOfSectionNode() :
pTableBoxStartNode;
SwNodeIndex aCellIdx( *pTmpNode, bNext ? 1 : -1 );
if( (bNext && !aCellIdx.GetNode().IsStartNode()) ||
(!bNext && !aCellIdx.GetNode().IsEndNode()) )
return false;
if (bNext)
rPtIdx = aCellIdx;
else
rPtIdx.Assign(*aCellIdx.GetNode().StartOfSectionNode());
pTableBoxStartNode = rPtIdx.GetNode().FindTableBoxStartNode();
pTableBox = pTableBoxStartNode->GetTableBox();
if ( pTableBox && pTableBox->getRowSpan() < 1 )
{
m_nRowSpanOffset = pTableBox->getRowSpan();
// move cursor to non-covered cell:
pTableBox = & pTableBox->FindStartOfRowSpan( pTableNd->GetTable() );
SwNodeIndex aNewIdx( *pTableBox->GetSttNd() );
rPtIdx = aNewIdx;
}
}
++rPtIdx;
if( !rPtIdx.GetNode().IsContentNode() )
GetDoc().GetNodes().GoNextSection( &rPtIdx, true, false );
GetPoint()->nContent.Assign( GetContentNode(), 0 );
return !IsInProtectTable( true );
}
bool SwTableCursor::GotoTable( const OUString& )
{
return false; // invalid action
}
bool SwCursor::GotoTable( const OUString& rName )
{
bool bRet = false;
if ( !HasMark() )
{
SwTable* pTmpTable = SwTable::FindTable( GetDoc().FindTableFormatByName( rName ) );
if( pTmpTable )
{
// a table in a normal nodes array
SwCursorSaveState aSave( *this );
GetPoint()->nNode = *pTmpTable->GetTabSortBoxes()[ 0 ]->
GetSttNd()->FindTableNode();
Move( fnMoveForward, GoInContent );
bRet = !IsSelOvr();
}
}
return bRet;
}
bool SwCursor::GotoTableBox( const OUString& rName )
{
bool bRet = false;
const SwTableNode* pTableNd = GetPoint()->nNode.GetNode().FindTableNode();
if( pTableNd )
{
// retrieve box by name
const SwTableBox* pTableBox = pTableNd->GetTable().GetTableBox( rName );
if( pTableBox && pTableBox->GetSttNd() &&
( !pTableBox->GetFrameFormat()->GetProtect().IsContentProtected() ||
IsReadOnlyAvailable() ) )
{
SwCursorSaveState aSave( *this );
GetPoint()->nNode = *pTableBox->GetSttNd();
Move( fnMoveForward, GoInContent );
bRet = !IsSelOvr();
}
}
return bRet;
}
bool SwCursor::MovePara(SwWhichPara fnWhichPara, SwMoveFnCollection const & fnPosPara )
{
// for optimization test something before
const SwNode* pNd = &GetPoint()->nNode.GetNode();
bool bShortCut = false;
if ( fnWhichPara == GoCurrPara )
{
// #i41048#
// If fnWhichPara == GoCurrPara then (*fnWhichPara)( *this, fnPosPara )
// can already move the cursor to a different text node. In this case
// we better check if IsSelOvr().
const SwContentNode* pContentNd = pNd->GetContentNode();
if ( pContentNd )
{
const sal_Int32 nSttEnd = &fnPosPara == &fnMoveForward ? 0 : pContentNd->Len();
if ( GetPoint()->nContent.GetIndex() != nSttEnd )
bShortCut = true;
}
}
else
{
if ( pNd->IsTextNode() &&
pNd->GetNodes()[ pNd->GetIndex() +
SwNodeOffset(fnWhichPara == GoNextPara ? 1 : -1 ) ]->IsTextNode() )
bShortCut = true;
}
if ( bShortCut )
return (*fnWhichPara)( *this, fnPosPara );
// else we must use the SaveStructure, because the next/prev is not
// a same node type.
SwCursorSaveState aSave( *this );
return (*fnWhichPara)( *this, fnPosPara ) &&
!IsInProtectTable( true ) &&
!IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos );
}
bool SwCursor::MoveSection( SwWhichSection fnWhichSect,
SwMoveFnCollection const & fnPosSect)
{
SwCursorSaveState aSave( *this );
return (*fnWhichSect)( *this, fnPosSect ) &&
!IsInProtectTable( true ) &&
!IsSelOvr( SwCursorSelOverFlags::Toggle |
SwCursorSelOverFlags::ChangePos );
}
void SwCursor::RestoreSavePos()
{
// This method is not supposed to be used in cases when nodes may be
// deleted; detect such cases, but do not crash (example: fdo#40831).
SwNodeOffset uNodeCount(GetPoint()->nNode.GetNodes().Count());
OSL_ENSURE(m_vSavePos.empty() || m_vSavePos.back().nNode < uNodeCount,
"SwCursor::RestoreSavePos: invalid node: "
"probably something was deleted; consider using SwUnoCursor instead");
if (m_vSavePos.empty() || m_vSavePos.back().nNode >= uNodeCount)
return;
GetPoint()->nNode = m_vSavePos.back().nNode;
sal_Int32 nIdx = 0;
if ( GetContentNode() )
{
if (m_vSavePos.back().nContent <= GetContentNode()->Len())
nIdx = m_vSavePos.back().nContent;
else
{
nIdx = GetContentNode()->Len();
OSL_FAIL("SwCursor::RestoreSavePos: invalid content index");
}
}
GetPoint()->nContent.Assign( GetContentNode(), nIdx );
}
SwTableCursor::SwTableCursor( const SwPosition &rPos )
: SwCursor( rPos, nullptr )
{
m_bParked = false;
m_bChanged = false;
m_nTablePtNd = SwNodeOffset(0);
m_nTableMkNd = SwNodeOffset(0);
m_nTablePtCnt = 0;
m_nTableMkCnt = 0;
}
SwTableCursor::~SwTableCursor() {}
static bool
lcl_SeekEntry(const SwSelBoxes& rTmp, SwStartNode const*const pSrch,
size_t & o_rFndPos)
{
SwNodeOffset nIdx = pSrch->GetIndex();
size_t nO = rTmp.size();
if( nO > 0 )
{
nO--;
size_t nU = 0;
while( nU <= nO )
{
size_t nM = nU + ( nO - nU ) / 2;
if( rTmp[ nM ]->GetSttNd() == pSrch )
{
o_rFndPos = nM;
return true;
}
else if( rTmp[ nM ]->GetSttIdx() < nIdx )
nU = nM + 1;
else if( nM == 0 )
return false;
else
nO = nM - 1;
}
}
return false;
}
SwCursor* SwTableCursor::MakeBoxSels( SwCursor* pCurrentCursor )
{
if (m_bChanged)
{
if (m_bParked)
{
// move back into content
Exchange();
Move( fnMoveForward );
Exchange();
Move( fnMoveForward );
m_bParked = false;
}
m_bChanged = false;
// create temporary copies so that all boxes that
// have already cursors can be removed
SwSelBoxes aTmp(m_SelectedBoxes);
// compare old and new ones
SwNodes& rNds = pCurrentCursor->GetDoc().GetNodes();
const SwStartNode* pSttNd;
SwPaM* pCur = pCurrentCursor;
do {
size_t nPos;
bool bDel = false;
pSttNd = pCur->GetPoint()->nNode.GetNode().FindTableBoxStartNode();
if( !pCur->HasMark() || !pSttNd ||
pSttNd != pCur->GetMark()->nNode.GetNode().FindTableBoxStartNode() )
bDel = true;
else if( lcl_SeekEntry( aTmp, pSttNd, nPos ))
{
SwNodeIndex aIdx( *pSttNd, 1 );
const SwNode* pNd = &aIdx.GetNode();
if( !pNd->IsContentNode() )
pNd = rNds.GoNextSection( &aIdx, true, false );
SwPosition* pPos = pCur->GetMark();
if( pNd != &pPos->nNode.GetNode() )
pPos->nNode = *pNd;
pPos->nContent.Assign( const_cast<SwContentNode*>(static_cast<const SwContentNode*>(pNd)), 0 );
aIdx.Assign( *pSttNd->EndOfSectionNode(), - 1 );
pNd = &aIdx.GetNode();
if( !pNd->IsContentNode() )
pNd = SwNodes::GoPrevSection( &aIdx, true, false );
pPos = pCur->GetPoint();
if (pNd && pNd != &pPos->nNode.GetNode())
pPos->nNode = *pNd;
pPos->nContent.Assign(const_cast<SwContentNode*>(static_cast<const SwContentNode*>(pNd)), pNd ? static_cast<const SwContentNode*>(pNd)->Len() : 0);
aTmp.erase( aTmp.begin() + nPos );
}
else
bDel = true;
pCur = pCur->GetNext();
if( bDel )
{
SwPaM* pDel = pCur->GetPrev();
if( pDel == pCurrentCursor )
pCurrentCursor->DeleteMark();
else
delete pDel;
}
} while ( pCurrentCursor != pCur );
for (size_t nPos = 0; nPos < aTmp.size(); ++nPos)
{
pSttNd = aTmp[ nPos ]->GetSttNd();
SwNodeIndex aIdx( *pSttNd, 1 );
if( &aIdx.GetNodes() != &rNds )
break;
SwNode* pNd = &aIdx.GetNode();
if( !pNd->IsContentNode() )
pNd = rNds.GoNextSection( &aIdx, true, false );
SwPaM *const pNew = (!pCurrentCursor->IsMultiSelection() && !pCurrentCursor->HasMark())
? pCurrentCursor
: pCurrentCursor->Create( pCurrentCursor );
pNew->GetPoint()->nNode = *pNd;
pNew->GetPoint()->nContent.Assign( static_cast<SwContentNode*>(pNd), 0 );
pNew->SetMark();
SwPosition* pPos = pNew->GetPoint();
pPos->nNode.Assign( *pSttNd->EndOfSectionNode(), - 1 );
pNd = &pPos->nNode.GetNode();
if( !pNd->IsContentNode() )
pNd = SwNodes::GoPrevSection( &pPos->nNode, true, false );
pPos->nContent.Assign(static_cast<SwContentNode*>(pNd), pNd ? static_cast<SwContentNode*>(pNd)->Len() : 0);
}
}
return pCurrentCursor;
}
void SwTableCursor::InsertBox( const SwTableBox& rTableBox )
{
SwTableBox* pBox = const_cast<SwTableBox*>(&rTableBox);
m_SelectedBoxes.insert(pBox);
m_bChanged = true;
}
void SwTableCursor::DeleteBox(size_t const nPos)
{
m_SelectedBoxes.erase(m_SelectedBoxes.begin() + nPos);
m_bChanged = true;
}
bool SwTableCursor::NewTableSelection()
{
bool bRet = false;
const SwNode *pStart = GetNode().FindTableBoxStartNode();
const SwNode *pEnd = GetNode(false).FindTableBoxStartNode();
if( pStart && pEnd )
{
const SwTableNode *pTableNode = pStart->FindTableNode();
if( pTableNode == pEnd->FindTableNode() &&
pTableNode->GetTable().IsNewModel() )
{
bRet = true;
SwSelBoxes aNew(m_SelectedBoxes);
pTableNode->GetTable().CreateSelection( pStart, pEnd, aNew,
SwTable::SEARCH_NONE, false );
ActualizeSelection( aNew );
}
}
return bRet;
}
void SwTableCursor::ActualizeSelection( const SwSelBoxes &rNew )
{
size_t nOld = 0, nNew = 0;
while (nOld < m_SelectedBoxes.size() && nNew < rNew.size())
{
SwTableBox const*const pPOld = m_SelectedBoxes[ nOld ];
const SwTableBox* pPNew = rNew[ nNew ];
if( pPOld == pPNew )
{ // this box will stay
++nOld;
++nNew;
}
else if( pPOld->GetSttIdx() < pPNew->GetSttIdx() )
{
DeleteBox( nOld ); // this box has to go
}
else
{
InsertBox( *pPNew ); // this is a new one
++nOld;
++nNew;
}
}
while (nOld < m_SelectedBoxes.size())
{
DeleteBox( nOld ); // some more to delete
}
for ( ; nNew < rNew.size(); ++nNew ) // some more to insert
{
InsertBox( *rNew[ nNew ] );
}
}
bool SwTableCursor::IsCursorMovedUpdate()
{
if( !IsCursorMoved() )
return false;
m_nTableMkNd = GetMark()->nNode.GetIndex();
m_nTablePtNd = GetPoint()->nNode.GetIndex();
m_nTableMkCnt = GetMark()->nContent.GetIndex();
m_nTablePtCnt = GetPoint()->nContent.GetIndex();
return true;
}
/// park table cursor on the boxes' start node
void SwTableCursor::ParkCursor()
{
// de-register index from text node
SwNode* pNd = &GetPoint()->nNode.GetNode();
if( !pNd->IsStartNode() )
pNd = pNd->StartOfSectionNode();
GetPoint()->nNode = *pNd;
GetPoint()->nContent.Assign( nullptr, 0 );
pNd = &GetMark()->nNode.GetNode();
if( !pNd->IsStartNode() )
pNd = pNd->StartOfSectionNode();
GetMark()->nNode = *pNd;
GetMark()->nContent.Assign( nullptr, 0 );
m_bChanged = true;
m_bParked = true;
}
bool SwTableCursor::HasReadOnlyBoxSel() const
{
bool bRet = false;
for (size_t n = m_SelectedBoxes.size(); n; )
{
if (m_SelectedBoxes[--n]->GetFrameFormat()->GetProtect().IsContentProtected())
{
bRet = true;
break;
}
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|