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
|
/* -*- 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 <hints.hxx>
#include <comphelper/flagguard.hxx>
#include <tools/line.hxx>
#include <editeng/opaqitem.hxx>
#include <editeng/protitem.hxx>
#include <vcl/settings.hxx>
#include <fmtpdsc.hxx>
#include <fmtsrnd.hxx>
#include <pagedesc.hxx>
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <ftnfrm.hxx>
#include <flyfrm.hxx>
#include <tabfrm.hxx>
#include <rowfrm.hxx>
#include <cellfrm.hxx>
#include <txtfrm.hxx>
#include <notxtfrm.hxx>
#include <viewopt.hxx>
#include <DocumentSettingManager.hxx>
#include <viscrs.hxx>
#include <dflyobj.hxx>
#include <crstate.hxx>
#include <dcontact.hxx>
#include <sortedobjs.hxx>
#include <txatbase.hxx>
#include <fmtfld.hxx>
#include <fldbas.hxx>
#include <frmatr.hxx>
#include <frmtool.hxx>
#include <ndtxt.hxx>
#include <undobj.hxx>
#include <swselectionlist.hxx>
#include <comphelper/lok.hxx>
#include <osl/diagnose.h>
namespace {
bool lcl_GetModelPositionForViewPoint_Objects( const SwPageFrame* pPageFrame, bool bSearchBackground,
SwPosition *pPos, Point const & rPoint, SwCursorMoveState* pCMS )
{
bool bRet = false;
Point aPoint( rPoint );
SwOrderIter aIter( pPageFrame );
aIter.Top();
while ( aIter() )
{
const SwVirtFlyDrawObj* pObj =
static_cast<const SwVirtFlyDrawObj*>(aIter());
const SwAnchoredObject* pAnchoredObj = GetUserCall( aIter() )->GetAnchoredObj( aIter() );
const SwFormatSurround& rSurround = pAnchoredObj->GetFrameFormat().GetSurround();
const SvxOpaqueItem& rOpaque = pAnchoredObj->GetFrameFormat().GetOpaque();
bool bInBackground = ( rSurround.GetSurround() == css::text::WrapTextMode_THROUGH ) && !rOpaque.GetValue();
bool bBackgroundMatches = bInBackground == bSearchBackground;
const SwFlyFrame* pFly = pObj ? pObj->GetFlyFrame() : nullptr;
if ( pFly && bBackgroundMatches &&
( ( pCMS && pCMS->m_bSetInReadOnly ) ||
!pFly->IsProtected() ) &&
pFly->GetModelPositionForViewPoint( pPos, aPoint, pCMS ) )
{
bRet = true;
break;
}
if ( pCMS && pCMS->m_bStop )
return false;
aIter.Prev();
}
return bRet;
}
double lcl_getDistance( const SwRect& rRect, const Point& rPoint )
{
double nDist = 0.0;
// If the point is inside the rectangle, then distance is 0
// Otherwise, compute the distance to the center of the rectangle.
if ( !rRect.Contains( rPoint ) )
{
tools::Line aLine( rPoint, rRect.Center( ) );
nDist = aLine.GetLength( );
}
return nDist;
}
}
namespace {
//For SwFlyFrame::GetModelPositionForViewPoint
class SwCursorOszControl
{
public:
// So the compiler can initialize the class already. No DTOR and member
// as public members
const SwFlyFrame* m_pEntry;
const SwFlyFrame* m_pStack1;
const SwFlyFrame* m_pStack2;
bool ChkOsz( const SwFlyFrame *pFly )
{
bool bRet = true;
if (pFly != m_pStack1 && pFly != m_pStack2)
{
m_pStack1 = m_pStack2;
m_pStack2 = pFly;
bRet = false;
}
return bRet;
}
void Entry( const SwFlyFrame *pFly )
{
if (!m_pEntry)
m_pEntry = m_pStack1 = pFly;
}
void Exit( const SwFlyFrame *pFly )
{
if (pFly == m_pEntry)
m_pEntry = m_pStack1 = m_pStack2 = nullptr;
}
};
}
static SwCursorOszControl g_OszCtrl = { nullptr, nullptr, nullptr };
/** Searches the ContentFrame owning the PrtArea containing the point. */
bool SwLayoutFrame::GetModelPositionForViewPoint( SwPosition *pPos, Point &rPoint,
SwCursorMoveState* pCMS, bool ) const
{
vcl::RenderContext* pRenderContext = getRootFrame()->GetCurrShell()->GetOut();
bool bRet = false;
const SwFrame *pFrame = Lower();
while ( !bRet && pFrame )
{
pFrame->Calc(pRenderContext);
// #i43742# New function
const bool bContentCheck = pFrame->IsTextFrame() && pCMS && pCMS->m_bContentCheck;
const SwRect aPaintRect( bContentCheck ?
pFrame->UnionFrame() :
pFrame->GetPaintArea() );
if ( aPaintRect.Contains( rPoint ) &&
( bContentCheck || pFrame->GetModelPositionForViewPoint( pPos, rPoint, pCMS ) ) )
bRet = true;
else
pFrame = pFrame->GetNext();
if ( pCMS && pCMS->m_bStop )
return false;
}
return bRet;
}
/** Searches the page containing the searched point. */
bool SwPageFrame::GetModelPositionForViewPoint( SwPosition *pPos, Point &rPoint,
SwCursorMoveState* pCMS, bool bTestBackground ) const
{
Point aPoint( rPoint );
// check, if we have to adjust the point
if ( !getFrameArea().Contains( aPoint ) )
{
aPoint.setX( std::max( aPoint.X(), getFrameArea().Left() ) );
aPoint.setX( std::min( aPoint.X(), getFrameArea().Right() ) );
aPoint.setY( std::max( aPoint.Y(), getFrameArea().Top() ) );
aPoint.setY( std::min( aPoint.Y(), getFrameArea().Bottom() ) );
}
bool bRet = false;
//Could it be a free flying one?
//If his content should be protected, we can't set the Cursor in it, thus
//all changes should be impossible.
if ( GetSortedObjs() )
{
bRet = lcl_GetModelPositionForViewPoint_Objects( this, false, pPos, rPoint, pCMS );
}
if ( !bRet )
{
SwPosition aBackPos( *pPos );
SwPosition aTextPos( *pPos );
//We fix the StartPoint if no Content below the page 'answers' and then
//start all over again one page before the current one.
//However we can't use Flys in such a case.
if (!SwLayoutFrame::GetModelPositionForViewPoint(&aTextPos, aPoint, pCMS))
{
if ( pCMS && (pCMS->m_bStop || pCMS->m_bExactOnly) )
{
pCMS->m_bStop = true;
return false;
}
const SwContentFrame *pCnt = GetContentPos( aPoint, false, false, pCMS, false );
// GetContentPos may have modified pCMS
if ( pCMS && pCMS->m_bStop )
return false;
bool bTextRet = false;
OSL_ENSURE( pCnt, "Cursor is gone to a Black hole" );
if( pCMS && pCMS->m_pFill && pCnt->IsTextFrame() )
bTextRet = pCnt->GetModelPositionForViewPoint( &aTextPos, rPoint, pCMS );
else
bTextRet = pCnt->GetModelPositionForViewPoint( &aTextPos, aPoint, pCMS );
if ( !bTextRet )
{
// Set point to pCnt, delete mark
// this may happen, if pCnt is hidden
if (pCnt->IsTextFrame())
{
aTextPos = static_cast<SwTextFrame const*>(pCnt)->MapViewToModelPos(TextFrameIndex(0));
}
else
{
assert(pCnt->IsNoTextFrame());
aTextPos = SwPosition( *static_cast<SwNoTextFrame const*>(pCnt)->GetNode() );
}
}
}
SwContentNode* pContentNode = aTextPos.nNode.GetNode().GetContentNode();
bool bConsiderBackground = true;
// If the text position is a clickable field, then that should have priority.
if (pContentNode && pContentNode->IsTextNode())
{
SwTextNode* pTextNd = pContentNode->GetTextNode();
SwTextAttr* pTextAttr = pTextNd->GetTextAttrForCharAt(aTextPos.nContent.GetIndex(), RES_TXTATR_FIELD);
if (pTextAttr)
{
const SwField* pField = pTextAttr->GetFormatField().GetField();
if (pField->IsClickable())
bConsiderBackground = false;
}
}
bool bBackRet = false;
// Check objects in the background if nothing else matched
if ( GetSortedObjs() )
{
bBackRet = lcl_GetModelPositionForViewPoint_Objects( this, true, &aBackPos, rPoint, pCMS );
}
if (bConsiderBackground && bTestBackground && bBackRet)
{
(*pPos) = aBackPos;
}
else if (!bBackRet)
{
(*pPos) = aTextPos;
}
else // bBackRet && !(bConsiderBackground && bTestBackground)
{
/* In order to provide a selection as accurate as possible when we have both
* text and background object, then we compute the distance between both
* would-be positions and the click point. The shortest distance wins.
*/
double nTextDistance = 0;
bool bValidTextDistance = false;
if (pContentNode)
{
SwContentFrame* pTextFrame = pContentNode->getLayoutFrame( getRootFrame( ) );
// try this again but prefer the "previous" position
SwCursorMoveState aMoveState;
SwCursorMoveState *const pState(pCMS ? pCMS : &aMoveState);
comphelper::FlagRestorationGuard g(
pState->m_bPosMatchesBounds, true);
SwPosition prevTextPos(*pPos);
if (SwLayoutFrame::GetModelPositionForViewPoint(&prevTextPos, aPoint, pState))
{
SwRect aTextRect;
pTextFrame->GetCharRect(aTextRect, prevTextPos);
if (prevTextPos.nContent < pContentNode->Len())
{
// aRextRect is just a line on the left edge of the
// previous character; to get a better measure from
// lcl_getDistance, extend that to a rectangle over
// the entire character.
SwPosition const nextTextPos(prevTextPos.nNode,
SwIndex(prevTextPos.nContent, +1));
SwRect nextTextRect;
pTextFrame->GetCharRect(nextTextRect, nextTextPos);
SwRectFnSet aRectFnSet(pTextFrame);
if (aRectFnSet.GetTop(aTextRect) ==
aRectFnSet.GetTop(nextTextRect)) // same line?
{
// need to handle mixed RTL/LTR portions somehow
if (aRectFnSet.GetLeft(aTextRect) <
aRectFnSet.GetLeft(nextTextRect))
{
aRectFnSet.SetRight( aTextRect,
aRectFnSet.GetLeft(nextTextRect));
}
else // RTL
{
aRectFnSet.SetLeft( aTextRect,
aRectFnSet.GetLeft(nextTextRect));
}
}
}
nTextDistance = lcl_getDistance(aTextRect, rPoint);
bValidTextDistance = true;
}
}
double nBackDistance = 0;
bool bValidBackDistance = false;
SwContentNode* pBackNd = aBackPos.nNode.GetNode( ).GetContentNode( );
if ( pBackNd && bConsiderBackground)
{
// FIXME There are still cases were we don't have the proper node here.
SwContentFrame* pBackFrame = pBackNd->getLayoutFrame( getRootFrame( ) );
if (pBackFrame)
{
SwRect rBackRect;
pBackFrame->GetCharRect( rBackRect, aBackPos );
nBackDistance = lcl_getDistance( rBackRect, rPoint );
bValidBackDistance = true;
}
}
if ( bValidTextDistance && bValidBackDistance && basegfx::fTools::more( nTextDistance, nBackDistance ) )
{
(*pPos) = aBackPos;
}
else
{
(*pPos) = aTextPos;
}
}
}
rPoint = aPoint;
return true;
}
bool SwLayoutFrame::FillSelection( SwSelectionList& rList, const SwRect& rRect ) const
{
if( rRect.Overlaps(GetPaintArea()) )
{
const SwFrame* pFrame = Lower();
while( pFrame )
{
pFrame->FillSelection( rList, rRect );
pFrame = pFrame->GetNext();
}
}
return false;
}
bool SwPageFrame::FillSelection( SwSelectionList& rList, const SwRect& rRect ) const
{
bool bRet = false;
if( rRect.Overlaps(GetPaintArea()) )
{
bRet = SwLayoutFrame::FillSelection( rList, rRect );
if( GetSortedObjs() )
{
const SwSortedObjs &rObjs = *GetSortedObjs();
for (SwAnchoredObject* pAnchoredObj : rObjs)
{
const SwFlyFrame* pFly = pAnchoredObj->DynCastFlyFrame();
if( !pFly )
continue;
if( pFly->FillSelection( rList, rRect ) )
bRet = true;
}
}
}
return bRet;
}
bool SwRootFrame::FillSelection( SwSelectionList& aSelList, const SwRect& rRect) const
{
const SwFrame *pPage = Lower();
const tools::Long nBottom = rRect.Bottom();
while( pPage )
{
if( pPage->getFrameArea().Top() < nBottom )
{
if( pPage->getFrameArea().Bottom() > rRect.Top() )
pPage->FillSelection( aSelList, rRect );
pPage = pPage->GetNext();
}
else
pPage = nullptr;
}
return !aSelList.isEmpty();
}
/** Primary passes the call to the first page.
*
* @return false, if the passed Point gets changed
*/
bool SwRootFrame::GetModelPositionForViewPoint( SwPosition *pPos, Point &rPoint,
SwCursorMoveState* pCMS, bool bTestBackground ) const
{
const bool bOldAction = IsCallbackActionEnabled();
const_cast<SwRootFrame*>(this)->SetCallbackActionEnabled( false );
OSL_ENSURE( (Lower() && Lower()->IsPageFrame()), "No PageFrame found." );
if( pCMS && pCMS->m_pFill )
pCMS->m_bFillRet = false;
Point aOldPoint = rPoint;
// search for page containing rPoint. The borders around the pages are considered
const SwPageFrame* pPage = GetPageAtPos( rPoint, nullptr, true );
// #i95626#
// special handling for <rPoint> beyond root frames area
if ( !pPage &&
rPoint.X() > getFrameArea().Right() &&
rPoint.Y() > getFrameArea().Bottom() )
{
pPage = dynamic_cast<const SwPageFrame*>(Lower());
while ( pPage && pPage->GetNext() )
{
pPage = dynamic_cast<const SwPageFrame*>(pPage->GetNext());
}
}
if ( pPage )
{
pPage->SwPageFrame::GetModelPositionForViewPoint( pPos, rPoint, pCMS, bTestBackground );
}
const_cast<SwRootFrame*>(this)->SetCallbackActionEnabled( bOldAction );
if( pCMS )
{
if( pCMS->m_bStop )
return false;
if( pCMS->m_pFill )
return pCMS->m_bFillRet;
}
return aOldPoint == rPoint;
}
/**
* If this is about a Content-carrying cell the Cursor will be force inserted into one of the ContentFrames
* if there are no other options.
*
* There is no entry for protected cells.
*/
bool SwCellFrame::GetModelPositionForViewPoint( SwPosition *pPos, Point &rPoint,
SwCursorMoveState* pCMS, bool ) const
{
vcl::RenderContext* pRenderContext = getRootFrame()->GetCurrShell()->GetOut();
// cell frame does not necessarily have a lower (split table cell)
if ( !Lower() )
return false;
if ( !(pCMS && pCMS->m_bSetInReadOnly) &&
GetFormat()->GetProtect().IsContentProtected() )
return false;
if ( pCMS && pCMS->m_eState == CursorMoveState::TableSel )
{
const SwTabFrame *pTab = FindTabFrame();
if ( pTab->IsFollow() && pTab->IsInHeadline( *this ) )
{
pCMS->m_bStop = true;
return false;
}
}
if ( Lower() )
{
if ( Lower()->IsLayoutFrame() )
return SwLayoutFrame::GetModelPositionForViewPoint( pPos, rPoint, pCMS );
else
{
Calc(pRenderContext);
bool bRet = false;
const SwFrame *pFrame = Lower();
while ( pFrame && !bRet )
{
pFrame->Calc(pRenderContext);
if ( pFrame->getFrameArea().Contains( rPoint ) )
{
bRet = pFrame->GetModelPositionForViewPoint( pPos, rPoint, pCMS );
if ( pCMS && pCMS->m_bStop )
return false;
}
pFrame = pFrame->GetNext();
}
if ( !bRet )
{
const bool bFill = pCMS && pCMS->m_pFill;
Point aPoint( rPoint );
const SwContentFrame *pCnt = GetContentPos( rPoint, true );
if( bFill && pCnt->IsTextFrame() )
{
rPoint = aPoint;
}
pCnt->GetModelPositionForViewPoint( pPos, rPoint, pCMS );
}
return true;
}
}
return false;
}
//Problem: If two Flys have the same size and share the same position then
//they end inside each other.
//Because we recursively check if a Point doesn't randomly lie inside another
//fly which lies completely inside the current Fly we could trigger an endless
//loop with the mentioned situation above.
//Using the helper class SwCursorOszControl we prevent the recursion. During
//a recursion GetModelPositionForViewPoint picks the one which lies on top.
bool SwFlyFrame::GetModelPositionForViewPoint( SwPosition *pPos, Point &rPoint,
SwCursorMoveState* pCMS, bool ) const
{
vcl::RenderContext* pRenderContext = getRootFrame()->GetCurrShell()->GetOut();
g_OszCtrl.Entry( this );
//If the Points lies inside the Fly, we try hard to set the Cursor inside it.
//However if the Point sits inside a Fly which is completely located inside
//the current one, we call GetModelPositionForViewPoint for it.
Calc(pRenderContext);
bool bInside = getFrameArea().Contains( rPoint ) && Lower();
bool bRet = false;
//If a Frame contains a graphic, but only text was requested, it basically
//won't accept the Cursor.
if ( bInside && pCMS && pCMS->m_eState == CursorMoveState::SetOnlyText &&
(!Lower() || Lower()->IsNoTextFrame()) )
bInside = false;
const SwPageFrame *pPage = FindPageFrame();
if ( bInside && pPage && pPage->GetSortedObjs() )
{
SwOrderIter aIter( pPage );
aIter.Top();
while ( aIter() && !bRet )
{
const SwVirtFlyDrawObj* pObj = static_cast<const SwVirtFlyDrawObj*>(aIter());
const SwFlyFrame* pFly = pObj ? pObj->GetFlyFrame() : nullptr;
if ( pFly && pFly->getFrameArea().Contains( rPoint ) &&
getFrameArea().Contains( pFly->getFrameArea() ) )
{
if (g_OszCtrl.ChkOsz(pFly))
break;
bRet = pFly->GetModelPositionForViewPoint( pPos, rPoint, pCMS );
if ( bRet )
break;
if ( pCMS && pCMS->m_bStop )
return false;
}
aIter.Next();
}
}
while ( bInside && !bRet )
{
const SwFrame *pFrame = Lower();
while ( pFrame && !bRet )
{
pFrame->Calc(pRenderContext);
if ( pFrame->getFrameArea().Contains( rPoint ) )
{
bRet = pFrame->GetModelPositionForViewPoint( pPos, rPoint, pCMS );
if ( pCMS && pCMS->m_bStop )
return false;
}
pFrame = pFrame->GetNext();
}
if ( !bRet )
{
const bool bFill = pCMS && pCMS->m_pFill;
Point aPoint( rPoint );
const SwContentFrame *pCnt = GetContentPos( rPoint, true, false, pCMS );
if ( pCMS && pCMS->m_bStop )
return false;
if( bFill && pCnt->IsTextFrame() )
{
rPoint = aPoint;
}
pCnt->GetModelPositionForViewPoint( pPos, rPoint, pCMS );
bRet = true;
}
}
g_OszCtrl.Exit( this );
return bRet;
}
/** Layout dependent cursor travelling */
bool SwNoTextFrame::LeftMargin(SwPaM *pPam) const
{
if( &pPam->GetNode() != GetNode() )
return false;
const_cast<SwContentNode*>(GetNode())->
MakeStartIndex(&pPam->GetPoint()->nContent);
return true;
}
bool SwNoTextFrame::RightMargin(SwPaM *pPam, bool) const
{
if( &pPam->GetNode() != GetNode() )
return false;
const_cast<SwContentNode*>(GetNode())->
MakeEndIndex(&pPam->GetPoint()->nContent);
return true;
}
static const SwContentFrame *lcl_GetNxtCnt( const SwContentFrame* pCnt )
{
return pCnt->GetNextContentFrame();
}
static const SwContentFrame *lcl_GetPrvCnt( const SwContentFrame* pCnt )
{
return pCnt->GetPrevContentFrame();
}
typedef const SwContentFrame *(*GetNxtPrvCnt)( const SwContentFrame* );
/// Frame in repeated headline?
static bool lcl_IsInRepeatedHeadline( const SwFrame *pFrame,
const SwTabFrame** ppTFrame = nullptr )
{
const SwTabFrame *pTab = pFrame->FindTabFrame();
if( ppTFrame )
*ppTFrame = pTab;
return pTab && pTab->IsFollow() && pTab->IsInHeadline( *pFrame );
}
/// Skip protected table cells. Optionally also skip repeated headlines.
//MA 1998-01-26: Chg also skip other protected areas
//FME: Skip follow flow cells
static const SwContentFrame * lcl_MissProtectedFrames( const SwContentFrame *pCnt,
GetNxtPrvCnt fnNxtPrv,
bool bMissHeadline,
bool bInReadOnly,
bool bMissFollowFlowLine )
{
if ( pCnt && pCnt->IsInTab() )
{
bool bProtect = true;
while ( pCnt && bProtect )
{
const SwLayoutFrame *pCell = pCnt->GetUpper();
while ( pCell && !pCell->IsCellFrame() )
pCell = pCell->GetUpper();
if ( !pCell ||
( ( bInReadOnly || !pCell->GetFormat()->GetProtect().IsContentProtected() ) &&
( !bMissHeadline || !lcl_IsInRepeatedHeadline( pCell ) ) &&
( !bMissFollowFlowLine || !pCell->IsInFollowFlowRow() ) &&
!pCell->IsCoveredCell() ) )
bProtect = false;
else
pCnt = (*fnNxtPrv)( pCnt );
}
}
else if ( !bInReadOnly )
while ( pCnt && pCnt->IsProtected() )
pCnt = (*fnNxtPrv)( pCnt );
return pCnt;
}
static bool lcl_UpDown( SwPaM *pPam, const SwContentFrame *pStart,
GetNxtPrvCnt fnNxtPrv, bool bInReadOnly )
{
OSL_ENSURE( FrameContainsNode(*pStart, pPam->GetNode().GetIndex()),
"lcl_UpDown doesn't work for others." );
const SwContentFrame *pCnt = nullptr;
//We have to cheat a little bit during a table selection: Go to the
//beginning of the cell while going up and go to the end of the cell while
//going down.
bool bTableSel = false;
if ( pStart->IsInTab() &&
pPam->GetNode().StartOfSectionNode() !=
pPam->GetNode( false ).StartOfSectionNode() )
{
bTableSel = true;
const SwLayoutFrame *pCell = pStart->GetUpper();
while ( !pCell->IsCellFrame() )
pCell = pCell->GetUpper();
// Check, if cell has a Prev/Follow cell:
const bool bFwd = ( fnNxtPrv == lcl_GetNxtCnt );
const SwLayoutFrame* pTmpCell = bFwd ?
static_cast<const SwCellFrame*>(pCell)->GetFollowCell() :
static_cast<const SwCellFrame*>(pCell)->GetPreviousCell();
const SwContentFrame* pTmpStart = pStart;
while ( pTmpCell && nullptr != ( pTmpStart = pTmpCell->ContainsContent() ) )
{
pCell = pTmpCell;
pTmpCell = bFwd ?
static_cast<const SwCellFrame*>(pCell)->GetFollowCell() :
static_cast<const SwCellFrame*>(pCell)->GetPreviousCell();
}
const SwContentFrame *pNxt = pCnt = pTmpStart;
while ( pCell->IsAnLower( pNxt ) )
{
pCnt = pNxt;
pNxt = (*fnNxtPrv)( pNxt );
}
}
pCnt = (*fnNxtPrv)( pCnt ? pCnt : pStart );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
const SwTabFrame *pStTab = pStart->FindTabFrame();
const SwTabFrame *pTable = nullptr;
const bool bTab = pStTab || (pCnt && pCnt->IsInTab());
bool bEnd = !bTab;
const SwFrame* pVertRefFrame = pStart;
if ( bTableSel && pStTab )
pVertRefFrame = pStTab;
SwRectFnSet aRectFnSet(pVertRefFrame);
SwTwips nX = 0;
if ( bTab )
{
// pStart or pCnt is inside a table. nX will be used for travelling:
SwRect aRect( pStart->getFrameArea() );
pStart->GetCharRect( aRect, *pPam->GetPoint() );
Point aCenter = aRect.Center();
nX = aRectFnSet.IsVert() ? aCenter.Y() : aCenter.X();
pTable = pCnt ? pCnt->FindTabFrame() : nullptr;
if ( !pTable )
pTable = pStTab;
if ( pStTab &&
!pStTab->GetUpper()->IsInTab() &&
!pTable->GetUpper()->IsInTab() )
{
const SwFrame *pCell = pStart->GetUpper();
while ( pCell && !pCell->IsCellFrame() )
pCell = pCell->GetUpper();
OSL_ENSURE( pCell, "could not find the cell" );
nX = aRectFnSet.XInc(aRectFnSet.GetLeft(pCell->getFrameArea()),
aRectFnSet.GetWidth(pCell->getFrameArea()) / 2);
//The flow leads from one table to the next. The X-value needs to be
//corrected based on the middle of the starting cell by the amount
//of the offset of the tables.
if ( pStTab != pTable )
{
nX += aRectFnSet.GetLeft(pTable->getFrameArea()) -
aRectFnSet.GetLeft(pStTab->getFrameArea());
}
}
// Restrict nX to the left and right borders of pTab:
// (is this really necessary?)
if (pTable && !pTable->GetUpper()->IsInTab())
{
const bool bRTL = pTable->IsRightToLeft();
const tools::Long nPrtLeft = bRTL ?
aRectFnSet.GetPrtRight(*pTable) :
aRectFnSet.GetPrtLeft(*pTable);
if (bRTL != (aRectFnSet.XDiff(nPrtLeft, nX) > 0))
nX = nPrtLeft;
else
{
const tools::Long nPrtRight = bRTL ?
aRectFnSet.GetPrtLeft(*pTable) :
aRectFnSet.GetPrtRight(*pTable);
if (bRTL != (aRectFnSet.XDiff(nX, nPrtRight) > 0))
nX = nPrtRight;
}
}
}
do
{
//If I'm in the DocumentBody, I want to stay there.
if ( pStart->IsInDocBody() )
{
while ( pCnt && (!pCnt->IsInDocBody() ||
(pCnt->IsTextFrame() && static_cast<const SwTextFrame*>(pCnt)->IsHiddenNow())))
{
pCnt = (*fnNxtPrv)( pCnt );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
}
}
//If I'm in the FootNoteArea, I try to reach the next FootNoteArea in
//case of necessity.
else if ( pStart->IsInFootnote() )
{
while ( pCnt && (!pCnt->IsInFootnote() ||
(pCnt->IsTextFrame() && static_cast<const SwTextFrame*>(pCnt)->IsHiddenNow())))
{
pCnt = (*fnNxtPrv)( pCnt );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
}
}
//In Flys we can go ahead blindly as long as we find a Content.
else if ( pStart->IsInFly() )
{
if ( pCnt && pCnt->IsTextFrame() && static_cast<const SwTextFrame*>(pCnt)->IsHiddenNow() )
{
pCnt = (*fnNxtPrv)( pCnt );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
}
}
//Otherwise I'll just refuse to leave to current area.
else if ( pCnt )
{
const SwFrame *pUp = pStart->GetUpper();
while (pUp && pUp->GetUpper() && !(pUp->GetType() & FRM_HEADFOOT))
pUp = pUp->GetUpper();
bool bSame = false;
const SwFrame *pCntUp = pCnt->GetUpper();
while ( pCntUp && !bSame )
{
if ( pUp == pCntUp )
bSame = true;
else
pCntUp = pCntUp->GetUpper();
}
if ( !bSame )
pCnt = nullptr;
else if (pCnt->IsTextFrame() && static_cast<const SwTextFrame*>(pCnt)->IsHiddenNow()) // i73332
{
pCnt = (*fnNxtPrv)( pCnt );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
}
}
if ( bTab )
{
if ( !pCnt )
bEnd = true;
else
{
const SwTabFrame *pTab = pCnt->FindTabFrame();
if( !pTab )
bEnd = true;
else
{
if ( pTab != pTable )
{
//The flow leads from one table to the next. The X-value
//needs to be corrected by the amount of the offset of
//the tables
if ( pTable &&
!pTab->GetUpper()->IsInTab() &&
!pTable->GetUpper()->IsInTab() )
nX += pTab->getFrameArea().Left() - pTable->getFrameArea().Left();
pTable = pTab;
}
const SwLayoutFrame *pCell = pCnt->GetUpper();
while ( pCell && !pCell->IsCellFrame() )
pCell = pCell->GetUpper();
Point aInsideCell;
Point aInsideCnt;
if ( pCell )
{
tools::Long nTmpTop = aRectFnSet.GetTop(pCell->getFrameArea());
if ( aRectFnSet.IsVert() )
{
if ( nTmpTop )
nTmpTop = aRectFnSet.XInc(nTmpTop, -1);
aInsideCell = Point( nTmpTop, nX );
}
else
aInsideCell = Point( nX, nTmpTop );
}
tools::Long nTmpTop = aRectFnSet.GetTop(pCnt->getFrameArea());
if ( aRectFnSet.IsVert() )
{
if ( nTmpTop )
nTmpTop = aRectFnSet.XInc(nTmpTop, -1);
aInsideCnt = Point( nTmpTop, nX );
}
else
aInsideCnt = Point( nX, nTmpTop );
if ( pCell && pCell->getFrameArea().Contains( aInsideCell ) )
{
bEnd = true;
//Get the right Content out of the cell.
if ( !pCnt->getFrameArea().Contains( aInsideCnt ) )
{
pCnt = pCell->ContainsContent();
if ( fnNxtPrv == lcl_GetPrvCnt )
while ( pCell->IsAnLower(pCnt->GetNextContentFrame()) )
pCnt = pCnt->GetNextContentFrame();
}
}
else if ( pCnt->getFrameArea().Contains( aInsideCnt ) )
bEnd = true;
}
}
if ( !bEnd )
{
pCnt = (*fnNxtPrv)( pCnt );
pCnt = ::lcl_MissProtectedFrames( pCnt, fnNxtPrv, true, bInReadOnly, bTableSel );
}
}
} while ( !bEnd ||
(pCnt && pCnt->IsTextFrame() && static_cast<const SwTextFrame*>(pCnt)->IsHiddenNow()));
if (pCnt == nullptr)
{
return false;
}
if (pCnt->IsTextFrame())
{
SwTextFrame const*const pFrame(static_cast<SwTextFrame const*>(pCnt));
*pPam->GetPoint() = pFrame->MapViewToModelPos(TextFrameIndex(
fnNxtPrv == lcl_GetPrvCnt
? pFrame->GetText().getLength()
: 0));
}
else
{ // set the Point on the Content-Node
assert(pCnt->IsNoTextFrame());
SwContentNode *const pCNd = const_cast<SwContentNode*>(static_cast<SwNoTextFrame const*>(pCnt)->GetNode());
pPam->GetPoint()->nNode = *pCNd;
if ( fnNxtPrv == lcl_GetPrvCnt )
pCNd->MakeEndIndex( &pPam->GetPoint()->nContent );
else
pCNd->MakeStartIndex( &pPam->GetPoint()->nContent );
}
return true;
}
bool SwContentFrame::UnitUp( SwPaM* pPam, const SwTwips, bool bInReadOnly ) const
{
return ::lcl_UpDown( pPam, this, lcl_GetPrvCnt, bInReadOnly );
}
bool SwContentFrame::UnitDown( SwPaM* pPam, const SwTwips, bool bInReadOnly ) const
{
return ::lcl_UpDown( pPam, this, lcl_GetNxtCnt, bInReadOnly );
}
/** Returns the number of the current page.
*
* If the method gets a PaM then the current page is the one in which the PaM sits. Otherwise the
* current page is the first one inside the VisibleArea. We only work on available pages!
*/
sal_uInt16 SwRootFrame::GetCurrPage( const SwPaM *pActualCursor ) const
{
OSL_ENSURE( pActualCursor, "got no page cursor" );
SwFrame const*const pActFrame = pActualCursor->GetPoint()->nNode.GetNode().
GetContentNode()->getLayoutFrame(this,
pActualCursor->GetPoint());
return pActFrame->FindPageFrame()->GetPhyPageNum();
}
/** Returns a PaM which sits at the beginning of the requested page.
*
* Formatting is done as far as necessary.
* The PaM sits on the last page, if the page number was chosen too big.
*
* @return Null, if the operation was not possible.
*/
sal_uInt16 SwRootFrame::SetCurrPage( SwCursor* pToSet, sal_uInt16 nPageNum )
{
vcl::RenderContext* pRenderContext = GetCurrShell() ? GetCurrShell()->GetOut() : nullptr;
OSL_ENSURE( Lower() && Lower()->IsPageFrame(), "No page available." );
SwPageFrame *pPage = static_cast<SwPageFrame*>(Lower());
bool bEnd =false;
while ( !bEnd && pPage->GetPhyPageNum() != nPageNum )
{ if ( pPage->GetNext() )
pPage = static_cast<SwPageFrame*>(pPage->GetNext());
else
{ //Search the first ContentFrame and format until a new page is started
//or until the ContentFrame are all done.
const SwContentFrame *pContent = pPage->ContainsContent();
while ( pContent && pPage->IsAnLower( pContent ) )
{
pContent->Calc(pRenderContext);
pContent = pContent->GetNextContentFrame();
}
//Either this is a new page or we found the last page.
if ( pPage->GetNext() )
pPage = static_cast<SwPageFrame*>(pPage->GetNext());
else
bEnd = true;
}
}
//pPage now points to the 'requested' page. Now we have to create the PaM
//on the beginning of the first ContentFrame in the body-text.
//If this is a footnote-page, the PaM will be set in the first footnote.
const SwContentFrame *pContent = pPage->ContainsContent();
if ( pPage->IsFootnotePage() )
while ( pContent && !pContent->IsInFootnote() )
pContent = pContent->GetNextContentFrame();
else
while ( pContent && !pContent->IsInDocBody() )
pContent = pContent->GetNextContentFrame();
if ( pContent )
{
assert(pContent->IsTextFrame());
SwTextFrame const*const pFrame(static_cast<const SwTextFrame*>(pContent));
*pToSet->GetPoint() = pFrame->MapViewToModelPos(pFrame->GetOffset());
SwShellCursor* pSCursor = dynamic_cast<SwShellCursor*>(pToSet);
if( pSCursor )
{
Point &rPt = pSCursor->GetPtPos();
rPt = pContent->getFrameArea().Pos();
rPt += pContent->getFramePrintArea().Pos();
}
return pPage->GetPhyPageNum();
}
return 0;
}
SwContentFrame *GetFirstSub( const SwLayoutFrame *pLayout )
{
return const_cast<SwPageFrame*>(static_cast<const SwPageFrame*>(pLayout))->FindFirstBodyContent();
}
SwContentFrame *GetLastSub( const SwLayoutFrame *pLayout )
{
return const_cast<SwPageFrame*>(static_cast<const SwPageFrame*>(pLayout))->FindLastBodyContent();
}
SwLayoutFrame *GetNextFrame( const SwLayoutFrame *pFrame )
{
SwLayoutFrame *pNext =
(pFrame->GetNext() && pFrame->GetNext()->IsLayoutFrame()) ?
const_cast<SwLayoutFrame*>(static_cast<const SwLayoutFrame*>(pFrame->GetNext())) : nullptr;
// #i39402# in case of an empty page
if(pNext && !pNext->ContainsContent())
pNext = (pNext->GetNext() && pNext->GetNext()->IsLayoutFrame()) ?
static_cast<SwLayoutFrame*>(pNext->GetNext()) : nullptr;
return pNext;
}
SwLayoutFrame *GetThisFrame( const SwLayoutFrame *pFrame )
{
return const_cast<SwLayoutFrame*>(pFrame);
}
SwLayoutFrame *GetPrevFrame( const SwLayoutFrame *pFrame )
{
SwLayoutFrame *pPrev =
(pFrame->GetPrev() && pFrame->GetPrev()->IsLayoutFrame()) ?
const_cast<SwLayoutFrame*>(static_cast<const SwLayoutFrame*>(pFrame->GetPrev())) : nullptr;
// #i39402# in case of an empty page
if(pPrev && !pPrev->ContainsContent())
pPrev = (pPrev->GetPrev() && pPrev->GetPrev()->IsLayoutFrame()) ?
static_cast<SwLayoutFrame*>(pPrev->GetPrev()) : nullptr;
return pPrev;
}
/**
* Returns the first/last Contentframe (controlled using the parameter fnPosPage)
* of the current/previous/next page (controlled using the parameter fnWhichPage).
*/
bool GetFrameInPage( const SwContentFrame *pCnt, SwWhichPage fnWhichPage,
SwPosPage fnPosPage, SwPaM *pPam )
{
//First find the requested page, at first the current, then the one which
//was requests through fnWichPage.
const SwLayoutFrame *pLayoutFrame = pCnt->FindPageFrame();
if ( !pLayoutFrame || (nullptr == (pLayoutFrame = (*fnWhichPage)(pLayoutFrame))) )
return false;
//Now the desired ContentFrame below the page
pCnt = (*fnPosPage)(pLayoutFrame);
if( nullptr == pCnt )
return false;
else
{
// repeated headlines in tables
if ( pCnt->IsInTab() && fnPosPage == GetFirstSub )
{
const SwTabFrame* pTab = pCnt->FindTabFrame();
if ( pTab->IsFollow() )
{
if ( pTab->IsInHeadline( *pCnt ) )
{
SwLayoutFrame* pRow = pTab->GetFirstNonHeadlineRow();
if ( pRow )
{
// We are in the first line of a follow table
// with repeated headings.
// To actually make a "real" move we take the first content
// of the next row
pCnt = pRow->ContainsContent();
if ( ! pCnt )
return false;
}
}
}
}
assert(pCnt->IsTextFrame());
SwTextFrame const*const pFrame(static_cast<const SwTextFrame*>(pCnt));
TextFrameIndex const nIdx((fnPosPage == GetFirstSub)
? pFrame->GetOffset()
: (pFrame->GetFollow())
? pFrame->GetFollow()->GetOffset() - TextFrameIndex(1)
: TextFrameIndex(pFrame->GetText().getLength()));
*pPam->GetPoint() = pFrame->MapViewToModelPos(nIdx);
return true;
}
}
static sal_uInt64 CalcDiff(const Point &rPt1, const Point &rPt2)
{
//Calculate the distance between the two points.
//'delta' X^2 + 'delta'Y^2 = 'distance'^2
sal_uInt64 dX = std::max( rPt1.X(), rPt2.X() ) -
std::min( rPt1.X(), rPt2.X() ),
dY = std::max( rPt1.Y(), rPt2.Y() ) -
std::min( rPt1.Y(), rPt2.Y() );
return (dX * dX) + (dY * dY);
}
/** Check if the point lies inside the page part in which also the ContentFrame lies.
*
* In this context header, page body, footer and footnote-container count as page part.
* This will suit the purpose that the ContentFrame which lies in the "right" page part will be
* accepted instead of one which doesn't lie there although his distance to the point is shorter.
*/
static const SwLayoutFrame* lcl_Inside( const SwContentFrame *pCnt, Point const & rPt )
{
const SwLayoutFrame* pUp = pCnt->GetUpper();
while( pUp )
{
if( pUp->IsPageBodyFrame() || pUp->IsFooterFrame() || pUp->IsHeaderFrame() )
{
if( rPt.Y() >= pUp->getFrameArea().Top() && rPt.Y() <= pUp->getFrameArea().Bottom() )
return pUp;
return nullptr;
}
if( pUp->IsFootnoteContFrame() )
return pUp->getFrameArea().Contains( rPt ) ? pUp : nullptr;
pUp = pUp->GetUpper();
}
return nullptr;
}
/** Search for the nearest Content to pass.
*
* Considers the previous, the current and the next page.
* If no content is found, the area gets expanded until one is found.
*
* @return The 'semantically correct' position inside the PrtArea of the found ContentFrame.
*/
const SwContentFrame *SwLayoutFrame::GetContentPos( Point& rPoint,
const bool bDontLeave,
const bool bBodyOnly,
SwCursorMoveState *pCMS,
const bool bDefaultExpand ) const
{
//Determine the first ContentFrame.
const SwLayoutFrame *pStart = (!bDontLeave && bDefaultExpand && GetPrev()) ?
static_cast<const SwLayoutFrame*>(GetPrev()) : this;
const SwContentFrame *pContent = pStart->ContainsContent();
if ( !pContent && (GetPrev() && !bDontLeave) )
pContent = ContainsContent();
if ( bBodyOnly && pContent && !pContent->IsInDocBody() )
while ( pContent && !pContent->IsInDocBody() )
pContent = pContent->GetNextContentFrame();
const SwContentFrame *pActual= pContent;
const SwLayoutFrame *pInside = nullptr;
sal_uInt16 nMaxPage = GetPhyPageNum() + (bDefaultExpand ? 1 : 0);
Point aPoint = rPoint;
sal_uInt64 nDistance = SAL_MAX_UINT64;
while ( true ) //A loop to be sure we always find one.
{
while ( pContent &&
((!bDontLeave || IsAnLower( pContent )) &&
(pContent->GetPhyPageNum() <= nMaxPage)) )
{
if ( pContent->getFrameArea().Width() &&
( !bBodyOnly || pContent->IsInDocBody() ) )
{
//If the Content lies in a protected area (cell, Footnote, section),
//we search the next Content which is not protected.
const SwContentFrame *pComp = pContent;
pContent = ::lcl_MissProtectedFrames( pContent, lcl_GetNxtCnt, false,
pCMS && pCMS->m_bSetInReadOnly, false );
if ( pComp != pContent )
continue;
if ( !pContent->IsTextFrame() || !static_cast<const SwTextFrame*>(pContent)->IsHiddenNow() )
{
SwRect aContentFrame( pContent->UnionFrame() );
if ( aContentFrame.Contains( rPoint ) )
{
pActual = pContent;
aPoint = rPoint;
break;
}
//The distance from rPoint to the nearest Point of pContent
//will now be calculated.
Point aContentPoint( rPoint );
//First set the vertical position
if ( aContentFrame.Top() > aContentPoint.Y() )
aContentPoint.setY( aContentFrame.Top() );
else if ( aContentFrame.Bottom() < aContentPoint.Y() )
aContentPoint.setY( aContentFrame.Bottom() );
//Now the horizontal position
if ( aContentFrame.Left() > aContentPoint.X() )
aContentPoint.setX( aContentFrame.Left() );
else if ( aContentFrame.Right() < aContentPoint.X() )
aContentPoint.setX( aContentFrame.Right() );
// pInside is a page area in which the point lies. As soon
// as pInside != 0 only frames are accepted which are
// placed inside.
if( !pInside || ( pInside->IsAnLower( pContent ) &&
( !pContent->IsInFootnote() || pInside->IsFootnoteContFrame() ) ) )
{
const sal_uInt64 nDiff = ::CalcDiff(aContentPoint, rPoint);
bool bBetter = nDiff < nDistance; // This one is nearer
if( !pInside )
{
pInside = lcl_Inside( pContent, rPoint );
if( pInside ) // In the "right" page area
bBetter = true;
}
if( bBetter )
{
aPoint = aContentPoint;
nDistance = nDiff;
pActual = pContent;
}
}
}
}
pContent = pContent->GetNextContentFrame();
if ( bBodyOnly )
while ( pContent && !pContent->IsInDocBody() )
pContent = pContent->GetNextContentFrame();
}
if ( !pActual )
{ //If we not yet found one we have to expand the searched
//area, sometime we will find one!
//MA 1997-01-09: Opt for many empty pages - if we only search inside
//the body, we can expand the searched area sufficiently in one step.
if ( bBodyOnly )
{
while ( !pContent && pStart->GetPrev() )
{
++nMaxPage;
if( !pStart->GetPrev()->IsLayoutFrame() )
return nullptr;
pStart = static_cast<const SwLayoutFrame*>(pStart->GetPrev());
if( pStart->IsInDocBody() )
pContent = pStart->ContainsContent();
else
{
const SwPageFrame *pPage = pStart->FindPageFrame();
if( !pPage )
return nullptr;
pContent = pPage->FindFirstBodyContent();
}
}
if ( !pContent ) // Somewhere down the road we have to start with one!
{
const SwPageFrame *pPage = pStart->FindPageFrame();
if( !pPage )
return nullptr;
pContent = pPage->GetUpper()->ContainsContent();
while ( pContent && !pContent->IsInDocBody() )
pContent = pContent->GetNextContentFrame();
if ( !pContent )
return nullptr; // There is no document content yet!
}
}
else
{
++nMaxPage;
if ( pStart->GetPrev() )
{
if( !pStart->GetPrev()->IsLayoutFrame() )
return nullptr;
pStart = static_cast<const SwLayoutFrame*>(pStart->GetPrev());
pContent = pStart->ContainsContent();
}
else // Somewhere down the road we have to start with one!
{
const SwPageFrame *pPage = pStart->FindPageFrame();
if( !pPage )
return nullptr;
pContent = pPage->GetUpper()->ContainsContent();
}
}
pActual = pContent;
}
else
break;
}
OSL_ENSURE( pActual, "no Content found." );
OSL_ENSURE( !bBodyOnly || pActual->IsInDocBody(), "Content not in Body." );
//Special case for selecting tables not in repeated TableHeadlines.
if ( pActual->IsInTab() && pCMS && pCMS->m_eState == CursorMoveState::TableSel )
{
const SwTabFrame *pTab = pActual->FindTabFrame();
if ( pTab->IsFollow() && pTab->IsInHeadline( *pActual ) )
{
pCMS->m_bStop = true;
return nullptr;
}
}
//A small correction at the first/last
Size aActualSize( pActual->getFramePrintArea().SSize() );
if ( aActualSize.Height() > pActual->GetUpper()->getFramePrintArea().Height() )
aActualSize.setHeight( pActual->GetUpper()->getFramePrintArea().Height() );
SwRectFnSet aRectFnSet(pActual);
if ( !pActual->GetPrev() &&
aRectFnSet.YDiff( aRectFnSet.GetPrtTop(*pActual),
aRectFnSet.IsVert() ? rPoint.X() : rPoint.Y() ) > 0 )
{
aPoint.setY( pActual->getFrameArea().Top() + pActual->getFramePrintArea().Top() );
aPoint.setX( pActual->getFrameArea().Left() +
( pActual->IsRightToLeft() || aRectFnSet.IsVert() ?
pActual->getFramePrintArea().Right() :
pActual->getFramePrintArea().Left() ) );
}
else if ( !pActual->GetNext() &&
aRectFnSet.YDiff( aRectFnSet.GetPrtBottom(*pActual),
aRectFnSet.IsVert() ? rPoint.X() : rPoint.Y() ) < 0 )
{
aPoint.setY( pActual->getFrameArea().Top() + pActual->getFramePrintArea().Bottom() );
aPoint.setX( pActual->getFrameArea().Left() +
( pActual->IsRightToLeft() || aRectFnSet.IsVert() ?
pActual->getFramePrintArea().Left() :
pActual->getFramePrintArea().Right() ) );
}
//Bring the Point into the PrtArea
const SwRect aRect( pActual->getFrameArea().Pos() + pActual->getFramePrintArea().Pos(),
aActualSize );
if ( aPoint.Y() < aRect.Top() )
aPoint.setY( aRect.Top() );
else if ( aPoint.Y() > aRect.Bottom() )
aPoint.setY( aRect.Bottom() );
if ( aPoint.X() < aRect.Left() )
aPoint.setX( aRect.Left() );
else if ( aPoint.X() > aRect.Right() )
aPoint.setX( aRect.Right() );
rPoint = aPoint;
return pActual;
}
/** Same as SwLayoutFrame::GetContentPos(). Specialized for fields and border. */
void SwPageFrame::GetContentPosition( const Point &rPt, SwPosition &rPos ) const
{
//Determine the first ContentFrame.
const SwContentFrame *pContent = ContainsContent();
if ( pContent )
{
//Look back one more (if possible).
const SwContentFrame *pTmp = pContent->GetPrevContentFrame();
while ( pTmp && !pTmp->IsInDocBody() )
pTmp = pTmp->GetPrevContentFrame();
if ( pTmp )
pContent = pTmp;
}
else
pContent = GetUpper()->ContainsContent();
const SwContentFrame *pAct = pContent;
Point aAct = rPt;
sal_uInt64 nDist = SAL_MAX_UINT64;
while ( pContent )
{
SwRect aContentFrame( pContent->UnionFrame() );
if ( aContentFrame.Contains( rPt ) )
{
//This is the nearest one.
pAct = pContent;
break;
}
//Calculate the distance from rPt to the nearest point of pContent.
Point aPoint( rPt );
//Calculate the vertical position first
if ( aContentFrame.Top() > rPt.Y() )
aPoint.setY( aContentFrame.Top() );
else if ( aContentFrame.Bottom() < rPt.Y() )
aPoint.setY( aContentFrame.Bottom() );
//And now the horizontal position
if ( aContentFrame.Left() > rPt.X() )
aPoint.setX( aContentFrame.Left() );
else if ( aContentFrame.Right() < rPt.X() )
aPoint.setX( aContentFrame.Right() );
const sal_uInt64 nDiff = ::CalcDiff( aPoint, rPt );
if ( nDiff < nDist )
{
aAct = aPoint;
nDist = nDiff;
pAct = pContent;
}
else if ( aContentFrame.Top() > getFrameArea().Bottom() )
//In terms of fields, it's not possible to be closer any more!
break;
pContent = pContent->GetNextContentFrame();
while ( pContent && !pContent->IsInDocBody() )
pContent = pContent->GetNextContentFrame();
}
//Bring the point into the PrtArea.
const SwRect aRect( pAct->getFrameArea().Pos() + pAct->getFramePrintArea().Pos(), pAct->getFramePrintArea().SSize() );
if ( aAct.Y() < aRect.Top() )
aAct.setY( aRect.Top() );
else if ( aAct.Y() > aRect.Bottom() )
aAct.setY( aRect.Bottom() );
if ( aAct.X() < aRect.Left() )
aAct.setX( aRect.Left() );
else if ( aAct.X() > aRect.Right() )
aAct.setX( aRect.Right() );
if (!pAct->isFrameAreaDefinitionValid() ||
(pAct->IsTextFrame() && !static_cast<SwTextFrame const*>(pAct)->HasPara()))
{
// ContentFrame not formatted -> always on node-beginning
// tdf#100635 also if the SwTextFrame would require reformatting,
// which is unwanted in case this is called from text formatting code
rPos = static_cast<SwTextFrame const*>(pAct)->MapViewToModelPos(TextFrameIndex(0));
}
else
{
SwCursorMoveState aTmpState( CursorMoveState::SetOnlyText );
pAct->GetModelPositionForViewPoint( &rPos, aAct, &aTmpState );
}
}
/** Search the nearest Content to the passed point.
*
* Only search inside the BodyText.
* @note Only the nearest vertically one will be searched.
* @note JP 11.10.2001: only in tables we try to find the right column - Bug 72294
*/
Point SwRootFrame::GetNextPrevContentPos( const Point& rPoint, bool bNext ) const
{
vcl::RenderContext* pRenderContext = GetCurrShell() ? GetCurrShell()->GetOut() : nullptr;
// #123110# - disable creation of an action by a callback
// event during processing of this method. Needed because formatting is
// triggered by this method.
DisableCallbackAction aDisableCallbackAction(const_cast<SwRootFrame&>(*this));
//Search the first ContentFrame and his successor in the body area.
//To be efficient (and not formatting too much) we'll start at the correct
//page.
const SwLayoutFrame *pPage = static_cast<const SwLayoutFrame*>(Lower());
if( pPage )
while( pPage->GetNext() && pPage->getFrameArea().Bottom() < rPoint.Y() )
pPage = static_cast<const SwLayoutFrame*>(pPage->GetNext());
const SwContentFrame *pCnt = pPage ? pPage->ContainsContent() : ContainsContent();
while ( pCnt && !pCnt->IsInDocBody() )
pCnt = pCnt->GetNextContentFrame();
if ( !pCnt )
return Point( 0, 0 );
pCnt->Calc(pRenderContext);
if( !bNext )
{
// As long as the point lies before the first ContentFrame and there are
// still precedent pages I'll go to the next page.
while ( rPoint.Y() < pCnt->getFrameArea().Top() && pPage->GetPrev() )
{
pPage = static_cast<const SwLayoutFrame*>(pPage->GetPrev());
pCnt = pPage->ContainsContent();
while ( !pCnt )
{
pPage = static_cast<const SwLayoutFrame*>(pPage->GetPrev());
if ( pPage )
pCnt = pPage->ContainsContent();
else
return ContainsContent()->UnionFrame().Pos();
}
pCnt->Calc(pRenderContext);
}
}
//Does the point lie above the first ContentFrame?
if ( rPoint.Y() < pCnt->getFrameArea().Top() && !lcl_IsInRepeatedHeadline( pCnt ) )
return pCnt->UnionFrame().Pos();
Point aRet(0, 0);
do
{
//Does the point lie in the current ContentFrame?
SwRect aContentFrame( pCnt->UnionFrame() );
if ( aContentFrame.Contains( rPoint ) && !lcl_IsInRepeatedHeadline( pCnt ))
{
aRet = rPoint;
break;
}
//Is the current one the last ContentFrame?
//If the next ContentFrame lies behind the point, then the current on is the
//one we searched.
const SwContentFrame *pNxt = pCnt->GetNextContentFrame();
while ( pNxt && !pNxt->IsInDocBody() )
pNxt = pNxt->GetNextContentFrame();
//Does the point lie behind the last ContentFrame?
if ( !pNxt )
{
aRet = Point( aContentFrame.Right(), aContentFrame.Bottom() );
break;
}
//If the next ContentFrame lies behind the point then it is the one we
//searched.
const SwTabFrame* pTFrame;
pNxt->Calc(pRenderContext);
if( pNxt->getFrameArea().Top() > rPoint.Y() &&
!lcl_IsInRepeatedHeadline( pCnt, &pTFrame ) &&
( !pTFrame || pNxt->getFrameArea().Left() > rPoint.X() ))
{
if (bNext)
aRet = pNxt->getFrameArea().Pos();
else
aRet = Point( aContentFrame.Right(), aContentFrame.Bottom() );
break;
}
pCnt = pNxt;
}
while (pCnt);
return aRet;
}
/** Returns the absolute document position of the desired page.
*
* Formatting is done only as far as needed and only if bFormat=true.
* Pos is set to the one of the last page, if the page number was chosen too big.
*
* @return Null, if the operation failed.
*/
Point SwRootFrame::GetPagePos( sal_uInt16 nPageNum ) const
{
OSL_ENSURE( Lower() && Lower()->IsPageFrame(), "No page available." );
const SwPageFrame *pPage = static_cast<const SwPageFrame*>(Lower());
while ( true )
{
if ( pPage->GetPhyPageNum() >= nPageNum || !pPage->GetNext() )
break;
pPage = static_cast<const SwPageFrame*>(pPage->GetNext());
}
return pPage->getFrameArea().Pos();
}
/** get page frame by physical page number
*
* @return pointer to the page frame with the given physical page number
*/
SwPageFrame* SwRootFrame::GetPageByPageNum( sal_uInt16 _nPageNum ) const
{
const SwPageFrame* pPageFrame = static_cast<const SwPageFrame*>( Lower() );
while ( pPageFrame && pPageFrame->GetPhyPageNum() < _nPageNum )
{
pPageFrame = static_cast<const SwPageFrame*>( pPageFrame->GetNext() );
}
if ( pPageFrame && pPageFrame->GetPhyPageNum() == _nPageNum )
{
return const_cast<SwPageFrame*>( pPageFrame );
}
else
{
return nullptr;
}
}
/**
* @return true, when the given physical pagenumber doesn't exist or this page is an empty page.
*/
bool SwRootFrame::IsDummyPage( sal_uInt16 nPageNum ) const
{
if( !Lower() || !nPageNum || nPageNum > GetPageNum() )
return true;
const SwPageFrame *pPage = static_cast<const SwPageFrame*>(Lower());
while( pPage && nPageNum < pPage->GetPhyPageNum() )
pPage = static_cast<const SwPageFrame*>(pPage->GetNext());
return !pPage || pPage->IsEmptyPage();
}
/** Is the Frame or rather the Section in which it lies protected?
*
* Also Fly in Fly in ... and Footnotes
*/
bool SwFrame::IsProtected() const
{
if (IsTextFrame())
{
const SwDoc *pDoc = &static_cast<const SwTextFrame*>(this)->GetDoc();
bool isFormProtected=pDoc->GetDocumentSettingManager().get(DocumentSettingId::PROTECT_FORM );
if (isFormProtected)
{
return false; // TODO a hack for now, well deal with it later, I we return true here we have a "double" locking
}
}
//The Frame can be protected in borders, cells or sections.
//Also goes up FlyFrames recursive and from footnote to anchor.
const SwFrame *pFrame = this;
do
{
if (pFrame->IsTextFrame())
{ // sw_redlinehide: redlines can't overlap section nodes, so any node will do
if (static_cast<SwTextFrame const*>(pFrame)->GetTextNodeFirst()->IsInProtectSect())
{
return true;
}
}
else if ( pFrame->IsContentFrame() )
{
assert(pFrame->IsNoTextFrame());
if (static_cast<const SwNoTextFrame*>(pFrame)->GetNode() &&
static_cast<const SwNoTextFrame*>(pFrame)->GetNode()->IsInProtectSect())
{
return true;
}
}
else
{
if ( static_cast<const SwLayoutFrame*>(pFrame)->GetFormat() &&
static_cast<const SwLayoutFrame*>(pFrame)->GetFormat()->
GetProtect().IsContentProtected() )
return true;
if ( pFrame->IsCoveredCell() )
return true;
}
if ( pFrame->IsFlyFrame() )
{
//In a chain the protection of the content can be specified by the
//master of the chain.
if ( static_cast<const SwFlyFrame*>(pFrame)->GetPrevLink() )
{
const SwFlyFrame *pMaster = static_cast<const SwFlyFrame*>(pFrame);
do
{ pMaster = pMaster->GetPrevLink();
} while ( pMaster->GetPrevLink() );
if ( pMaster->IsProtected() )
return true;
}
pFrame = static_cast<const SwFlyFrame*>(pFrame)->GetAnchorFrame();
}
else if ( pFrame->IsFootnoteFrame() )
pFrame = static_cast<const SwFootnoteFrame*>(pFrame)->GetRef();
else
pFrame = pFrame->GetUpper();
} while ( pFrame );
return false;
}
/** @return the physical page number */
sal_uInt16 SwFrame::GetPhyPageNum() const
{
const SwPageFrame *pPage = FindPageFrame();
return pPage ? pPage->GetPhyPageNum() : 0;
}
/** Decides if the page want to be a right page or not.
*
* If the first content of the page has a page descriptor, we take the follow
* of the page descriptor of the last not empty page. If this descriptor allows
* only right(left) pages and the page isn't an empty page then it wants to be
* such right(left) page. If the descriptor allows right and left pages, we
* look for a number offset in the first content. If there is one, odd number
* results right pages (or left pages if document starts with even number),
* even number results left pages (or right pages if document starts with even
* number).
* If there is no number offset, we take the physical page number instead,
* but a previous empty page doesn't count.
*/
bool SwFrame::WannaRightPage() const
{
const SwPageFrame *pPage = FindPageFrame();
if ( !pPage || !pPage->GetUpper() )
return true;
const SwFrame *pFlow = pPage->FindFirstBodyContent();
const SwPageDesc *pDesc = nullptr;
::std::optional<sal_uInt16> oPgNum;
if ( pFlow )
{
if ( pFlow->IsInTab() )
pFlow = pFlow->FindTabFrame();
const SwFlowFrame *pTmp = SwFlowFrame::CastFlowFrame( pFlow );
if ( !pTmp->IsFollow() )
{
const SwFormatPageDesc& rPgDesc = pFlow->GetPageDescItem();
pDesc = rPgDesc.GetPageDesc();
oPgNum = rPgDesc.GetNumOffset();
}
}
if ( !pDesc )
{
SwPageFrame *pPrv = const_cast<SwPageFrame*>(static_cast<const SwPageFrame*>(pPage->GetPrev()));
if( pPrv && pPrv->IsEmptyPage() )
pPrv = static_cast<SwPageFrame*>(pPrv->GetPrev());
if( pPrv )
pDesc = pPrv->GetPageDesc()->GetFollow();
else
{
const SwDoc* pDoc = pPage->GetFormat()->GetDoc();
pDesc = &pDoc->GetPageDesc( 0 );
}
}
OSL_ENSURE( pDesc, "No pagedescriptor" );
bool isRightPage;
if( oPgNum )
isRightPage = sw::IsRightPageByNumber(*mpRoot, *oPgNum);
else
{
isRightPage = pPage->OnRightPage();
if( pPage->GetPrev() && static_cast<const SwPageFrame*>(pPage->GetPrev())->IsEmptyPage() )
isRightPage = !isRightPage;
}
if( !pPage->IsEmptyPage() )
{
if( !pDesc->GetRightFormat() )
isRightPage = false;
else if( !pDesc->GetLeftFormat() )
isRightPage = true;
}
return isRightPage;
}
bool SwFrame::OnFirstPage() const
{
bool bRet = false;
const SwPageFrame *pPage = FindPageFrame();
if (pPage)
{
const SwPageFrame* pPrevFrame = dynamic_cast<const SwPageFrame*>(pPage->GetPrev());
if (pPrevFrame)
{
// first page of layout may be empty page, but only if it starts with "Left Page" style
const SwPageDesc* pDesc = pPage->GetPageDesc();
bRet = pPrevFrame->GetPageDesc() != pDesc;
}
else
bRet = true;
}
return bRet;
}
void SwFrame::Calc(vcl::RenderContext* pRenderContext) const
{
if ( !isFrameAreaPositionValid() || !isFramePrintAreaValid() || !isFrameAreaSizeValid() )
{
const_cast<SwFrame*>(this)->PrepareMake(pRenderContext);
}
}
Point SwFrame::GetRelPos() const
{
Point aRet( getFrameArea().Pos() );
// here we cast since SwLayoutFrame is declared only as forwarded
aRet -= GetUpper()->getFramePrintArea().Pos();
aRet -= GetUpper()->getFrameArea().Pos();
return aRet;
}
/** @return the virtual page number with the offset. */
sal_uInt16 SwFrame::GetVirtPageNum() const
{
const SwPageFrame *pPage = FindPageFrame();
if ( !pPage || !pPage->GetUpper() )
return 0;
sal_uInt16 nPhyPage = pPage->GetPhyPageNum();
if ( !static_cast<const SwRootFrame*>(pPage->GetUpper())->IsVirtPageNum() )
return nPhyPage;
//Search the nearest section using the virtual page number.
//Because searching backwards needs a lot of time we search specific using
//the dependencies. From the PageDescs we get the attributes and from the
//attributes we get the sections.
const SwPageFrame *pVirtPage = nullptr;
const SwFrame *pFrame = nullptr;
const SfxItemPool &rPool = pPage->GetFormat()->GetDoc()->GetAttrPool();
for (const SfxPoolItem* pItem : rPool.GetItemSurrogates(RES_PAGEDESC))
{
const SwFormatPageDesc *pDesc = dynamic_cast<const SwFormatPageDesc*>(pItem);
if ( !pDesc )
continue;
if ( pDesc->GetNumOffset() && pDesc->GetDefinedIn() )
{
const sw::BroadcastingModify *pMod = pDesc->GetDefinedIn();
SwVirtPageNumInfo aInfo( pPage );
pMod->GetInfo( aInfo );
if ( aInfo.GetPage() )
{
if( !pVirtPage || aInfo.GetPage()->GetPhyPageNum() > pVirtPage->GetPhyPageNum() )
{
pVirtPage = aInfo.GetPage();
pFrame = aInfo.GetFrame();
}
}
}
}
if ( pFrame )
{
::std::optional<sal_uInt16> oNumOffset = pFrame->GetPageDescItem().GetNumOffset();
if (oNumOffset)
{
return nPhyPage - pFrame->GetPhyPageNum() + *oNumOffset;
}
else
{
return nPhyPage - pFrame->GetPhyPageNum();
}
}
return nPhyPage;
}
/** Determines and sets those cells which are enclosed by the selection. */
bool SwRootFrame::MakeTableCursors( SwTableCursor& rTableCursor )
{
//Find Union-Rects and tables (Follows) of the selection.
OSL_ENSURE( rTableCursor.GetContentNode() && rTableCursor.GetContentNode( false ),
"Tabselection not on Cnt." );
bool bRet = false;
// For new table models there's no need to ask the layout...
if( rTableCursor.NewTableSelection() )
return true;
Point aPtPt, aMkPt;
{
SwShellCursor* pShCursor = dynamic_cast<SwShellCursor*>(&rTableCursor);
if( pShCursor )
{
aPtPt = pShCursor->GetPtPos();
aMkPt = pShCursor->GetMkPos();
}
}
// #151012# Made code robust here
const SwContentNode* pTmpStartNode = rTableCursor.GetContentNode();
const SwContentNode* pTmpEndNode = rTableCursor.GetContentNode(false);
std::pair<Point, bool> tmp(aPtPt, false);
const SwFrame *const pTmpStartFrame = pTmpStartNode ? pTmpStartNode->getLayoutFrame(this, nullptr, &tmp) : nullptr;
tmp.first = aMkPt;
const SwFrame *const pTmpEndFrame = pTmpEndNode ? pTmpEndNode->getLayoutFrame(this, nullptr, &tmp) : nullptr;
const SwLayoutFrame* pStart = pTmpStartFrame ? pTmpStartFrame->GetUpper() : nullptr;
const SwLayoutFrame* pEnd = pTmpEndFrame ? pTmpEndFrame->GetUpper() : nullptr;
OSL_ENSURE( pStart && pEnd, "MakeTableCursors: Good to have the code robust here!" );
/* #109590# Only change table boxes if the frames are
valid. Needed because otherwise the table cursor after moving
table cells by dnd resulted in an empty tables cursor. */
if ( pStart && pEnd && pStart->isFrameAreaDefinitionValid() && pEnd->isFrameAreaDefinitionValid())
{
SwSelUnions aUnions;
::MakeSelUnions( aUnions, pStart, pEnd );
SwSelBoxes aNew;
const bool bReadOnlyAvailable = rTableCursor.IsReadOnlyAvailable();
for (SwSelUnion & rUnion : aUnions)
{
const SwTabFrame *pTable = rUnion.GetTable();
// Skip any repeated headlines in the follow:
SwLayoutFrame* pRow = pTable->IsFollow() ?
pTable->GetFirstNonHeadlineRow() :
const_cast<SwLayoutFrame*>(static_cast<const SwLayoutFrame*>(pTable->Lower()));
while ( pRow )
{
if ( pRow->getFrameArea().Overlaps( rUnion.GetUnion() ) )
{
const SwLayoutFrame *pCell = pRow->FirstCell();
while ( pCell && pRow->IsAnLower( pCell ) )
{
OSL_ENSURE( pCell->IsCellFrame(), "Frame without cell" );
if( IsFrameInTableSel( rUnion.GetUnion(), pCell ) &&
(bReadOnlyAvailable ||
!pCell->GetFormat()->GetProtect().IsContentProtected()))
{
SwTableBox* pInsBox = const_cast<SwTableBox*>(
static_cast<const SwCellFrame*>(pCell)->GetTabBox());
aNew.insert( pInsBox );
}
if ( pCell->GetNext() )
{
pCell = static_cast<const SwLayoutFrame*>(pCell->GetNext());
if ( pCell->Lower() && pCell->Lower()->IsRowFrame() )
pCell = pCell->FirstCell();
}
else
{
const SwLayoutFrame* pLastCell = pCell;
do
{
pCell = pCell->GetNextLayoutLeaf();
} while ( pCell && pLastCell->IsAnLower( pCell ) );
// For sections with columns
if( pCell && pCell->IsInTab() )
{
while( !pCell->IsCellFrame() )
{
pCell = pCell->GetUpper();
OSL_ENSURE( pCell, "Where's my cell?" );
}
}
}
}
}
pRow = static_cast<SwLayoutFrame*>(pRow->GetNext());
}
}
rTableCursor.ActualizeSelection( aNew );
bRet = true;
}
return bRet;
}
static void Sub( SwRegionRects& rRegion, const SwRect& rRect )
{
if( rRect.Width() > 1 && rRect.Height() > 1 &&
rRect.Overlaps( rRegion.GetOrigin() ))
rRegion -= rRect;
}
static void Add( SwRegionRects& rRegion, const SwRect& rRect )
{
if( rRect.Width() > 1 && rRect.Height() > 1 )
rRegion += rRect;
}
/*
* The following situations can happen:
* 1. Start and end lie in one screen-row and in the same node
* -> one rectangle out of start and end; and we're okay
* 2. Start and end lie in one frame (therefore in the same node!)
* -> expand start to the right, end to the left and if more than two
* screen-rows are involved - calculate the in-between
* 3. Start and end lie in different frames
* -> expand start to the right until frame-end, calculate Rect
* expand end to the left until frame-start, calculate Rect
* and if more than two frames are involved add the PrtArea of all
* frames which lie in between
*
* Big reorganization because of the FlyFrame - those need to be locked out.
* Exceptions: - The Fly in which the selection took place (if it took place
* in a Fly)
* - The Flys which are underrun by the text
* - The Flys which are anchored to somewhere inside the selection.
* Functioning: First a SwRegion with a root gets initialized.
* Out of the region the inverted sections are cut out. The
* section gets compressed and finally inverted and thereby the
* inverted rectangles are available.
* In the end the Flys are cut out of the section.
*/
void SwRootFrame::CalcFrameRects(SwShellCursor &rCursor)
{
SwPosition *pStartPos = rCursor.Start(),
*pEndPos = rCursor.End();
SwViewShell *pSh = GetCurrShell();
bool bIgnoreVisArea = true;
if (pSh)
bIgnoreVisArea = pSh->GetViewOptions()->IsPDFExport() || comphelper::LibreOfficeKit::isActive();
// #i12836# enhanced pdf
SwRegionRects aRegion( !bIgnoreVisArea ?
pSh->VisArea() :
getFrameArea() );
if( !pStartPos->nNode.GetNode().IsContentNode() ||
!pStartPos->nNode.GetNode().GetContentNode()->getLayoutFrame(this) ||
( pStartPos->nNode != pEndPos->nNode &&
( !pEndPos->nNode.GetNode().IsContentNode() ||
!pEndPos->nNode.GetNode().GetContentNode()->getLayoutFrame(this) ) ) )
{
return;
}
DisableCallbackAction a(*this); // the GetCharRect below may format
//First obtain the ContentFrames for the start and the end - those are needed
//anyway.
std::pair<Point, bool> tmp(rCursor.GetSttPos(), true);
SwContentFrame* pStartFrame = pStartPos->nNode.GetNode().
GetContentNode()->getLayoutFrame(this, pStartPos, &tmp);
tmp.first = rCursor.GetEndPos();
SwContentFrame* pEndFrame = pEndPos->nNode.GetNode().
GetContentNode()->getLayoutFrame(this, pEndPos, &tmp);
assert(pStartFrame && pEndFrame && "No ContentFrames found.");
//tdf#119224 start and end are expected to exist for the scope of this function
SwFrameDeleteGuard aStartFrameGuard(pStartFrame), aEndFrameGuard(pEndFrame);
//Do not subtract the FlyFrames in which selected Frames lie.
SwSortedObjs aSortObjs;
if ( pStartFrame->IsInFly() )
{
const SwAnchoredObject* pObj = pStartFrame->FindFlyFrame();
OSL_ENSURE( pObj, "No Start Object." );
if (pObj) aSortObjs.Insert( *const_cast<SwAnchoredObject*>(pObj) );
const SwAnchoredObject* pObj2 = pEndFrame->FindFlyFrame();
OSL_ENSURE( pObj2, "SwRootFrame::CalcFrameRects(..) - FlyFrame missing - looks like an invalid selection" );
if ( pObj2 != nullptr && pObj2 != pObj )
{
aSortObjs.Insert( *const_cast<SwAnchoredObject*>(pObj2) );
}
}
// if a selection which is not allowed exists, we correct what is not
// allowed (header/footer/table-headline) for two pages.
do { // middle check loop
const SwLayoutFrame* pSttLFrame = pStartFrame->GetUpper();
const SwFrameType cHdFtTableHd = SwFrameType::Header | SwFrameType::Footer | SwFrameType::Tab;
while( pSttLFrame &&
! (cHdFtTableHd & pSttLFrame->GetType() ))
pSttLFrame = pSttLFrame->GetUpper();
if( !pSttLFrame )
break;
const SwLayoutFrame* pEndLFrame = pEndFrame->GetUpper();
while( pEndLFrame &&
! (cHdFtTableHd & pEndLFrame->GetType() ))
pEndLFrame = pEndLFrame->GetUpper();
if( !pEndLFrame )
break;
OSL_ENSURE( pEndLFrame->GetType() == pSttLFrame->GetType(),
"Selection over different content" );
switch( pSttLFrame->GetType() )
{
case SwFrameType::Header:
case SwFrameType::Footer:
// On different pages? Then always on the start-page
if( pEndLFrame->FindPageFrame() != pSttLFrame->FindPageFrame() )
{
// Set end- to the start-ContentFrame
if( pStartPos == rCursor.GetPoint() )
pEndFrame = pStartFrame;
else
pStartFrame = pEndFrame;
}
break;
case SwFrameType::Tab:
// On different pages? Then check for table-headline
{
const SwTabFrame* pTabFrame = static_cast<const SwTabFrame*>(pSttLFrame);
if( ( pTabFrame->GetFollow() ||
static_cast<const SwTabFrame*>(pEndLFrame)->GetFollow() ) &&
pTabFrame->GetTable()->GetRowsToRepeat() > 0 &&
pTabFrame->GetLower() != static_cast<const SwTabFrame*>(pEndLFrame)->GetLower() &&
( lcl_IsInRepeatedHeadline( pStartFrame ) ||
lcl_IsInRepeatedHeadline( pEndFrame ) ) )
{
// Set end- to the start-ContentFrame
if( pStartPos == rCursor.GetPoint() )
pEndFrame = pStartFrame;
else
pStartFrame = pEndFrame;
}
}
break;
default: break;
}
} while( false );
SwCursorMoveState aTmpState( CursorMoveState::NONE );
aTmpState.m_b2Lines = true;
aTmpState.m_bNoScroll = true;
aTmpState.m_nCursorBidiLevel = pStartFrame->IsRightToLeft() ? 1 : 0;
//ContentRects to Start- and EndFrames.
SwRect aStRect, aEndRect;
pStartFrame->GetCharRect( aStRect, *pStartPos, &aTmpState );
std::unique_ptr<Sw2LinesPos> pSt2Pos = std::move(aTmpState.m_p2Lines);
aTmpState.m_nCursorBidiLevel = pEndFrame->IsRightToLeft() ? 1 : 0;
pEndFrame->GetCharRect( aEndRect, *pEndPos, &aTmpState );
std::unique_ptr<Sw2LinesPos> pEnd2Pos = std::move(aTmpState.m_p2Lines);
SwRect aStFrame ( pStartFrame->UnionFrame( true ) );
aStFrame.Intersection( pStartFrame->GetPaintArea() );
SwRect aEndFrame( pStartFrame == pEndFrame ? aStFrame : pEndFrame->UnionFrame( true ) );
if( pStartFrame != pEndFrame )
{
aEndFrame.Intersection( pEndFrame->GetPaintArea() );
}
SwRectFnSet aRectFnSet(pStartFrame);
const bool bR2L = pStartFrame->IsRightToLeft();
const bool bEndR2L = pEndFrame->IsRightToLeft();
const bool bB2T = pStartFrame->IsVertLRBT();
// If there's no doubleline portion involved or start and end are both
// in the same doubleline portion, all works fine, but otherwise
// we need the following...
if( pSt2Pos != pEnd2Pos && ( !pSt2Pos || !pEnd2Pos ||
pSt2Pos->aPortion != pEnd2Pos->aPortion ) )
{
// If we have a start(end) position inside a doubleline portion
// the surrounded part of the doubleline portion is subtracted
// from the region and the aStRect(aEndRect) is set to the
// end(start) of the doubleline portion.
if( pSt2Pos )
{
SwRect aTmp( aStRect );
// BiDi-Portions are swimming against the current.
const bool bPorR2L = ( MultiPortionType::BIDI == pSt2Pos->nMultiType ) ?
! bR2L :
bR2L;
if( MultiPortionType::BIDI == pSt2Pos->nMultiType &&
aRectFnSet.GetWidth(pSt2Pos->aPortion2) )
{
// nested bidi portion
tools::Long nRightAbs = aRectFnSet.GetRight(pSt2Pos->aPortion);
nRightAbs -= aRectFnSet.GetLeft(pSt2Pos->aPortion2);
tools::Long nLeftAbs = nRightAbs - aRectFnSet.GetWidth(pSt2Pos->aPortion2);
aRectFnSet.SetRight( aTmp, nRightAbs );
if ( ! pEnd2Pos || pEnd2Pos->aPortion != pSt2Pos->aPortion )
{
SwRect aTmp2( pSt2Pos->aPortion );
aRectFnSet.SetRight( aTmp2, nLeftAbs );
aTmp2.Intersection( aEndFrame );
Sub( aRegion, aTmp2 );
}
}
else
{
if( bPorR2L )
aRectFnSet.SetLeft( aTmp, aRectFnSet.GetLeft(pSt2Pos->aPortion) );
else
aRectFnSet.SetRight( aTmp, aRectFnSet.GetRight(pSt2Pos->aPortion) );
}
if( MultiPortionType::ROT_90 == pSt2Pos->nMultiType ||
aRectFnSet.GetTop(pSt2Pos->aPortion) ==
aRectFnSet.GetTop(aTmp) )
{
aRectFnSet.SetTop( aTmp, aRectFnSet.GetTop(pSt2Pos->aLine) );
}
aTmp.Intersection( aStFrame );
Sub( aRegion, aTmp );
SwTwips nTmp = aRectFnSet.GetBottom(pSt2Pos->aLine);
if( MultiPortionType::ROT_90 != pSt2Pos->nMultiType &&
aRectFnSet.BottomDist( aStRect, nTmp ) > 0 )
{
aRectFnSet.SetTop( aTmp, aRectFnSet.GetBottom(aTmp) );
aRectFnSet.SetBottom( aTmp, nTmp );
if( aRectFnSet.BottomDist( aStRect, aRectFnSet.GetBottom(pSt2Pos->aPortion) ) > 0 )
{
if( bPorR2L )
aRectFnSet.SetRight( aTmp, aRectFnSet.GetRight(pSt2Pos->aPortion) );
else
aRectFnSet.SetLeft( aTmp, aRectFnSet.GetLeft(pSt2Pos->aPortion) );
}
aTmp.Intersection( aStFrame );
Sub( aRegion, aTmp );
}
aStRect = pSt2Pos->aLine;
aRectFnSet.SetLeft( aStRect, bR2L ?
aRectFnSet.GetLeft(pSt2Pos->aPortion) :
aRectFnSet.GetRight(pSt2Pos->aPortion) );
aRectFnSet.SetWidth( aStRect, 1 );
}
if( pEnd2Pos )
{
SwRectFnSet fnRectX(pEndFrame);
SwRect aTmp( aEndRect );
// BiDi-Portions are swimming against the current.
const bool bPorR2L = ( MultiPortionType::BIDI == pEnd2Pos->nMultiType ) ?
! bEndR2L :
bEndR2L;
if( MultiPortionType::BIDI == pEnd2Pos->nMultiType &&
fnRectX.GetWidth(pEnd2Pos->aPortion2) )
{
// nested bidi portion
tools::Long nRightAbs = fnRectX.GetRight(pEnd2Pos->aPortion);
nRightAbs = nRightAbs - fnRectX.GetLeft(pEnd2Pos->aPortion2);
tools::Long nLeftAbs = nRightAbs - fnRectX.GetWidth(pEnd2Pos->aPortion2);
fnRectX.SetLeft( aTmp, nLeftAbs );
if ( ! pSt2Pos || pSt2Pos->aPortion != pEnd2Pos->aPortion )
{
SwRect aTmp2( pEnd2Pos->aPortion );
fnRectX.SetLeft( aTmp2, nRightAbs );
aTmp2.Intersection( aEndFrame );
Sub( aRegion, aTmp2 );
}
}
else
{
if ( bPorR2L )
fnRectX.SetRight( aTmp, fnRectX.GetRight(pEnd2Pos->aPortion) );
else
fnRectX.SetLeft( aTmp, fnRectX.GetLeft(pEnd2Pos->aPortion) );
}
if( MultiPortionType::ROT_90 == pEnd2Pos->nMultiType ||
fnRectX.GetBottom(pEnd2Pos->aPortion) ==
fnRectX.GetBottom(aEndRect) )
{
fnRectX.SetBottom( aTmp, fnRectX.GetBottom(pEnd2Pos->aLine) );
}
aTmp.Intersection( aEndFrame );
Sub( aRegion, aTmp );
// The next statement means neither ruby nor rotate(90):
if( MultiPortionType::RUBY != pEnd2Pos->nMultiType && MultiPortionType::ROT_90 != pEnd2Pos->nMultiType )
{
SwTwips nTmp = fnRectX.GetTop(pEnd2Pos->aLine);
if( fnRectX.GetTop(aEndRect) != nTmp )
{
fnRectX.SetBottom( aTmp, fnRectX.GetTop(aTmp) );
fnRectX.SetTop( aTmp, nTmp );
if( fnRectX.GetTop(aEndRect) !=
fnRectX.GetTop(pEnd2Pos->aPortion) )
{
if( bPorR2L )
fnRectX.SetLeft( aTmp, fnRectX.GetLeft(pEnd2Pos->aPortion) );
else
fnRectX.SetRight( aTmp, fnRectX.GetRight(pEnd2Pos->aPortion) );
}
aTmp.Intersection( aEndFrame );
Sub( aRegion, aTmp );
}
}
aEndRect = pEnd2Pos->aLine;
fnRectX.SetLeft( aEndRect, bEndR2L ?
fnRectX.GetRight(pEnd2Pos->aPortion) :
fnRectX.GetLeft(pEnd2Pos->aPortion) );
fnRectX.SetWidth( aEndRect, 1 );
}
}
else if( pSt2Pos && pEnd2Pos &&
MultiPortionType::BIDI == pSt2Pos->nMultiType &&
MultiPortionType::BIDI == pEnd2Pos->nMultiType &&
pSt2Pos->aPortion == pEnd2Pos->aPortion &&
pSt2Pos->aPortion2 != pEnd2Pos->aPortion2 )
{
// This is the ugly special case, where the selection starts and
// ends in the same bidi portion but one start or end is inside a
// nested bidi portion.
if ( aRectFnSet.GetWidth(pSt2Pos->aPortion2) )
{
SwRect aTmp( aStRect );
tools::Long nRightAbs = aRectFnSet.GetRight(pSt2Pos->aPortion);
nRightAbs -= aRectFnSet.GetLeft(pSt2Pos->aPortion2);
tools::Long nLeftAbs = nRightAbs - aRectFnSet.GetWidth(pSt2Pos->aPortion2);
aRectFnSet.SetRight( aTmp, nRightAbs );
aTmp.Intersection( aStFrame );
Sub( aRegion, aTmp );
aStRect = pSt2Pos->aLine;
aRectFnSet.SetLeft( aStRect, bR2L ? nRightAbs : nLeftAbs );
aRectFnSet.SetWidth( aStRect, 1 );
}
SwRectFnSet fnRectX(pEndFrame);
if ( fnRectX.GetWidth(pEnd2Pos->aPortion2) )
{
SwRect aTmp( aEndRect );
tools::Long nRightAbs = fnRectX.GetRight(pEnd2Pos->aPortion);
nRightAbs -= fnRectX.GetLeft(pEnd2Pos->aPortion2);
tools::Long nLeftAbs = nRightAbs - fnRectX.GetWidth(pEnd2Pos->aPortion2);
fnRectX.SetLeft( aTmp, nLeftAbs );
aTmp.Intersection( aEndFrame );
Sub( aRegion, aTmp );
aEndRect = pEnd2Pos->aLine;
fnRectX.SetLeft( aEndRect, bEndR2L ? nLeftAbs : nRightAbs );
fnRectX.SetWidth( aEndRect, 1 );
}
}
// The charrect may be outside the paintarea (for cursortravelling)
// but the selection has to be restricted to the paintarea
if( aStRect.Left() < aStFrame.Left() )
aStRect.Left( aStFrame.Left() );
else if( aStRect.Left() > aStFrame.Right() )
aStRect.Left( aStFrame.Right() );
SwTwips nTmp = aStRect.Right();
if( nTmp < aStFrame.Left() )
aStRect.Right( aStFrame.Left() );
else if( nTmp > aStFrame.Right() )
aStRect.Right( aStFrame.Right() );
if( aEndRect.Left() < aEndFrame.Left() )
aEndRect.Left( aEndFrame.Left() );
else if( aEndRect.Left() > aEndFrame.Right() )
aEndRect.Left( aEndFrame.Right() );
nTmp = aEndRect.Right();
if( nTmp < aEndFrame.Left() )
aEndRect.Right( aEndFrame.Left() );
else if( nTmp > aEndFrame.Right() )
aEndRect.Right( aEndFrame.Right() );
if( pStartFrame == pEndFrame )
{
bool bSameRotatedOrBidi = pSt2Pos && pEnd2Pos &&
( MultiPortionType::BIDI == pSt2Pos->nMultiType ||
MultiPortionType::ROT_270 == pSt2Pos->nMultiType ||
MultiPortionType::ROT_90 == pSt2Pos->nMultiType ) &&
pSt2Pos->aPortion == pEnd2Pos->aPortion;
//case 1: (Same frame and same row)
if( bSameRotatedOrBidi ||
aRectFnSet.GetTop(aStRect) == aRectFnSet.GetTop(aEndRect) )
{
Point aTmpSt( aStRect.Pos() );
Point aTmpEnd( aEndRect.Right(), aEndRect.Bottom() );
if (bSameRotatedOrBidi || bR2L || bB2T)
{
if( aTmpSt.Y() > aTmpEnd.Y() )
{
tools::Long nTmpY = aTmpEnd.Y();
aTmpEnd.setY( aTmpSt.Y() );
aTmpSt.setY( nTmpY );
}
if( aTmpSt.X() > aTmpEnd.X() )
{
tools::Long nTmpX = aTmpEnd.X();
aTmpEnd.setX( aTmpSt.X() );
aTmpSt.setX( nTmpX );
}
}
SwRect aTmp( aTmpSt, aTmpEnd );
// Bug 34888: If content is selected which doesn't take space
// away (i.e. PostIts, RefMarks, TOXMarks), then at
// least set the width of the Cursor.
if( 1 == aRectFnSet.GetWidth(aTmp) &&
pStartPos->nContent.GetIndex() !=
pEndPos->nContent.GetIndex() )
{
OutputDevice* pOut = pSh->GetOut();
tools::Long nCursorWidth = pOut->GetSettings().GetStyleSettings().
GetCursorSize();
aRectFnSet.SetWidth( aTmp, pOut->PixelToLogic(
Size( nCursorWidth, 0 ) ).Width() );
}
aTmp.Intersection( aStFrame );
Sub( aRegion, aTmp );
}
//case 2: (Same frame, but not the same line)
else
{
SwTwips lLeft, lRight;
if( pSt2Pos && pEnd2Pos && pSt2Pos->aPortion == pEnd2Pos->aPortion )
{
lLeft = aRectFnSet.GetLeft(pSt2Pos->aPortion);
lRight = aRectFnSet.GetRight(pSt2Pos->aPortion);
}
else
{
lLeft = aRectFnSet.GetLeft(pStartFrame->getFrameArea()) +
aRectFnSet.GetLeft(pStartFrame->getFramePrintArea());
lRight = aRectFnSet.GetRight(aEndFrame);
}
if( lLeft < aRectFnSet.GetLeft(aStFrame) )
lLeft = aRectFnSet.GetLeft(aStFrame);
if( lRight > aRectFnSet.GetRight(aStFrame) )
lRight = aRectFnSet.GetRight(aStFrame);
SwRect aSubRect( aStRect );
//First line
if( bR2L )
aRectFnSet.SetLeft( aSubRect, lLeft );
else
aRectFnSet.SetRight( aSubRect, lRight );
Sub( aRegion, aSubRect );
//If there's at least a twips between start- and endline,
//so the whole area between will be added.
SwTwips aTmpBottom = aRectFnSet.GetBottom(aStRect);
SwTwips aTmpTop = aRectFnSet.GetTop(aEndRect);
if( aTmpBottom != aTmpTop )
{
aRectFnSet.SetLeft( aSubRect, lLeft );
aRectFnSet.SetRight( aSubRect, lRight );
aRectFnSet.SetTop( aSubRect, aTmpBottom );
aRectFnSet.SetBottom( aSubRect, aTmpTop );
Sub( aRegion, aSubRect );
}
//and the last line
aSubRect = aEndRect;
if( bR2L )
aRectFnSet.SetRight( aSubRect, lRight );
else
aRectFnSet.SetLeft( aSubRect, lLeft );
Sub( aRegion, aSubRect );
}
}
//case 3: (Different frames, maybe with other frames between)
else
{
//The startframe first...
SwRect aSubRect( aStRect );
if( bR2L )
aRectFnSet.SetLeft( aSubRect, aRectFnSet.GetLeft(aStFrame));
else
aRectFnSet.SetRight( aSubRect, aRectFnSet.GetRight(aStFrame));
Sub( aRegion, aSubRect );
SwTwips nTmpTwips = aRectFnSet.GetBottom(aStRect);
if( aRectFnSet.GetBottom(aStFrame) != nTmpTwips )
{
aSubRect = aStFrame;
aRectFnSet.SetTop( aSubRect, nTmpTwips );
Sub( aRegion, aSubRect );
}
//Now the frames between, if there are any
bool const bBody = pStartFrame->IsInDocBody();
const SwTableBox* pCellBox = pStartFrame->GetUpper()->IsCellFrame() ?
static_cast<const SwCellFrame*>(pStartFrame->GetUpper())->GetTabBox() : nullptr;
if (pSh->IsSelectAll())
pCellBox = nullptr;
const SwContentFrame *pContent = pStartFrame->GetNextContentFrame();
SwRect aPrvRect;
OSL_ENSURE( pContent,
"<SwRootFrame::CalcFrameRects(..)> - no content frame. This is a serious defect" );
while ( pContent && pContent != pEndFrame )
{
if ( pContent->IsInFly() )
{
const SwAnchoredObject* pObj = pContent->FindFlyFrame();
if (!aSortObjs.Contains(*pObj))
{ // is this even possible, assuming valid cursor pos.?
aSortObjs.Insert( *const_cast<SwAnchoredObject*>(pObj) );
}
}
// Consider only frames which have the same IsInDocBody value like pStartFrame
// If pStartFrame is inside a SwCellFrame, consider only frames which are inside the
// same cell frame (or its follow cell)
const SwTableBox* pTmpCellBox = pContent->GetUpper()->IsCellFrame() ?
static_cast<const SwCellFrame*>(pContent->GetUpper())->GetTabBox() : nullptr;
if (pSh->IsSelectAll())
pTmpCellBox = nullptr;
if ( bBody == pContent->IsInDocBody() &&
( !pCellBox || pCellBox == pTmpCellBox ) )
{
SwRect aCRect( pContent->UnionFrame( true ) );
aCRect.Intersection( pContent->GetPaintArea() );
if( aCRect.Overlaps( aRegion.GetOrigin() ))
{
SwRect aTmp( aPrvRect );
aTmp.Union( aCRect );
if ( (aPrvRect.Height() * aPrvRect.Width() +
aCRect.Height() * aCRect.Width()) ==
(aTmp.Height() * aTmp.Width()) )
{
aPrvRect.Union( aCRect );
}
else
{
if ( aPrvRect.HasArea() )
Sub( aRegion, aPrvRect );
aPrvRect = aCRect;
}
}
}
pContent = pContent->GetNextContentFrame();
OSL_ENSURE( pContent,
"<SwRootFrame::CalcFrameRects(..)> - no content frame. This is a serious defect!" );
}
if ( aPrvRect.HasArea() )
Sub( aRegion, aPrvRect );
//At least the endframe...
aRectFnSet.Refresh(pEndFrame);
nTmpTwips = aRectFnSet.GetTop(aEndRect);
if( aRectFnSet.GetTop(aEndFrame) != nTmpTwips )
{
aSubRect = aEndFrame;
aRectFnSet.SetBottom( aSubRect, nTmpTwips );
Sub( aRegion, aSubRect );
}
aSubRect = aEndRect;
if( bEndR2L )
aRectFnSet.SetRight(aSubRect, aRectFnSet.GetRight(aEndFrame));
else
aRectFnSet.SetLeft( aSubRect, aRectFnSet.GetLeft(aEndFrame) );
Sub( aRegion, aSubRect );
}
aRegion.Invert();
pSt2Pos.reset();
pEnd2Pos.reset();
// Cut out Flys during loop. We don't cut out Flys when:
// - the Lower is StartFrame/EndFrame (FlyInCnt and all other Flys which again
// sit in it)
// - if in the Z-order we have Flys above those in which the StartFrame is
// placed
// - if they are anchored to inside the selection and thus part of it
const SwPageFrame *pPage = pStartFrame->FindPageFrame();
const SwPageFrame *pEndPage = pEndFrame->FindPageFrame();
while ( pPage )
{
if ( pPage->GetSortedObjs() )
{
const SwSortedObjs &rObjs = *pPage->GetSortedObjs();
for (SwAnchoredObject* pAnchoredObj : rObjs)
{
const SwFlyFrame* pFly = pAnchoredObj->DynCastFlyFrame();
if ( !pFly )
continue;
const SwVirtFlyDrawObj* pObj = pFly->GetVirtDrawObj();
const SwFormatSurround &rSur = pFly->GetFormat()->GetSurround();
SwFormatAnchor const& rAnchor(pAnchoredObj->GetFrameFormat().GetAnchor());
const SwPosition* anchoredAt = rAnchor.GetContentAnchor();
bool inSelection = (
anchoredAt != nullptr
&& ( (rAnchor.GetAnchorId() == RndStdIds::FLY_AT_CHAR
&& IsDestroyFrameAnchoredAtChar(*anchoredAt, *pStartPos, *pEndPos))
|| (rAnchor.GetAnchorId() == RndStdIds::FLY_AT_PARA
&& IsSelectFrameAnchoredAtPara(*anchoredAt, *pStartPos, *pEndPos))));
if( inSelection )
Add( aRegion, pFly->getFrameArea() );
else if ( !pFly->IsAnLower( pStartFrame ) &&
(rSur.GetSurround() != css::text::WrapTextMode_THROUGH &&
!rSur.IsContour()) )
{
if ( aSortObjs.Contains( *pAnchoredObj ) )
continue;
bool bSub = true;
const sal_uInt32 nPos = pObj->GetOrdNum();
for ( size_t k = 0; bSub && k < aSortObjs.size(); ++k )
{
assert( dynamic_cast< const SwFlyFrame *>( aSortObjs[k] ) &&
"<SwRootFrame::CalcFrameRects(..)> - object in <aSortObjs> of unexpected type" );
const SwFlyFrame* pTmp = static_cast<SwFlyFrame*>(aSortObjs[k]);
do
{
if ( nPos < pTmp->GetVirtDrawObj()->GetOrdNumDirect() )
{
bSub = false;
}
else
{
pTmp = pTmp->GetAnchorFrame()->FindFlyFrame();
}
} while ( bSub && pTmp );
}
if ( bSub )
Sub( aRegion, pFly->getFrameArea() );
}
}
}
if ( pPage == pEndPage )
break;
else
pPage = static_cast<const SwPageFrame*>(pPage->GetNext());
}
//Because it looks better, we close the DropCaps.
SwRect aDropRect;
if ( pStartFrame->IsTextFrame() )
{
if ( static_cast<const SwTextFrame*>(pStartFrame)->GetDropRect( aDropRect ) )
Sub( aRegion, aDropRect );
}
if ( pEndFrame != pStartFrame && pEndFrame->IsTextFrame() )
{
if ( static_cast<const SwTextFrame*>(pEndFrame)->GetDropRect( aDropRect ) )
Sub( aRegion, aDropRect );
}
rCursor.assign( aRegion.begin(), aRegion.end() );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|