1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "pam.hxx"
#include "swtable.hxx"
#include "frame.hxx"
#include "rootfrm.hxx"
#include "pagefrm.hxx"
#include "flyfrm.hxx"
#include "viewsh.hxx"
#include "doc.hxx"
#include "viewimp.hxx"
#include "viewopt.hxx"
#include "dflyobj.hxx"
#include "frmtool.hxx"
#include "dcontact.hxx"
#include <editeng/brkitem.hxx>
#include <editeng/keepitem.hxx>
#include <fmtsrnd.hxx>
#include <fmtanchr.hxx>
#include <fmtpdsc.hxx>
#include <editeng/ulspitem.hxx>
#include <tgrditem.hxx>
#include <txtftn.hxx>
#include <fmtftn.hxx>
#include <editeng/pgrditem.hxx>
#include <paratr.hxx>
#include "ftnfrm.hxx"
#include "txtfrm.hxx"
#include "tabfrm.hxx"
#include "pagedesc.hxx"
#include "layact.hxx"
#include "fmtornt.hxx"
#include "flyfrms.hxx"
#include "sectfrm.hxx"
#include "section.hxx"
#include "dbg_lay.hxx"
#include "lineinfo.hxx"
#include <fmtclbl.hxx>
#include <sortedobjs.hxx>
#include <layouter.hxx>
#include <fmtfollowtextflow.hxx>
#include <switerator.hxx>
sal_Bool SwFlowFrm::bMoveBwdJump = sal_False;
/*************************************************************************
|*
|* SwFlowFrm::SwFlowFrm()
|*
|*************************************************************************/
SwFlowFrm::SwFlowFrm( SwFrm &rFrm ) :
rThis( rFrm ),
m_pFollow( 0 ),
m_pPrecede( 0 ),
bLockJoin( false ),
bUndersized( false ),
bFlyLock( false )
{}
SwFlowFrm::~SwFlowFrm()
{
if (m_pFollow)
{
m_pFollow->m_pPrecede = 0;
}
if (m_pPrecede)
{
m_pPrecede->m_pFollow = 0;
}
}
void SwFlowFrm::SetFollow(SwFlowFrm *const pFollow)
{
if (m_pFollow)
{
assert(this == m_pFollow->m_pPrecede);
m_pFollow->m_pPrecede = 0;
}
m_pFollow = pFollow;
if (m_pFollow != NULL)
{
if (m_pFollow->m_pPrecede) // re-chaining pFollow?
{
assert(m_pFollow == m_pFollow->m_pPrecede->m_pFollow);
m_pFollow->m_pPrecede->m_pFollow = 0;
}
m_pFollow->m_pPrecede = this;
}
}
/*************************************************************************
|*
|* SwFlowFrm::IsFollowLocked()
|* return sal_True if any follow has the JoinLocked flag
|*
|*************************************************************************/
sal_Bool SwFlowFrm::HasLockedFollow() const
{
const SwFlowFrm* pFrm = GetFollow();
while( pFrm )
{
if( pFrm->IsJoinLocked() )
return sal_True;
pFrm = pFrm->GetFollow();
}
return sal_False;
}
/*************************************************************************
|*
|* SwFlowFrm::IsKeepFwdMoveAllowed()
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsKeepFwdMoveAllowed()
{
//Wenn der Vorgaenger das KeepAttribut traegt und auch dessen
//Vorgaenger usw. bis zum ersten der Kette und fuer diesen das
//IsFwdMoveAllowed ein sal_False liefert, so ist das Moven eben nicht erlaubt.
SwFrm *pFrm = &rThis;
if ( !pFrm->IsInFtn() )
do
{ if ( pFrm->GetAttrSet()->GetKeep().GetValue() )
pFrm = pFrm->GetIndPrev();
else
return sal_True;
} while ( pFrm );
//Siehe IsFwdMoveAllowed()
sal_Bool bRet = sal_False;
if ( pFrm && pFrm->GetIndPrev() )
bRet = sal_True;
return bRet;
}
/*************************************************************************
|*
|* SwFlowFrm::CheckKeep()
|*
|*************************************************************************/
void SwFlowFrm::CheckKeep()
{
//Den 'letzten' Vorgaenger mit KeepAttribut anstossen, denn
//die ganze Truppe koennte zuruckrutschen.
SwFrm *pPre = rThis.GetIndPrev();
if( pPre->IsSctFrm() )
{
SwFrm *pLast = ((SwSectionFrm*)pPre)->FindLastCntnt();
if( pLast && pLast->FindSctFrm() == pPre )
pPre = pLast;
else
return;
}
SwFrm* pTmp;
sal_Bool bKeep;
while ( sal_True == (bKeep = pPre->GetAttrSet()->GetKeep().GetValue()) &&
0 != ( pTmp = pPre->GetIndPrev() ) )
{
if( pTmp->IsSctFrm() )
{
SwFrm *pLast = ((SwSectionFrm*)pTmp)->FindLastCntnt();
if( pLast && pLast->FindSctFrm() == pTmp )
pTmp = pLast;
else
break;
}
pPre = pTmp;
}
if ( bKeep )
pPre->InvalidatePos();
}
/*************************************************************************
|*
|* SwFlowFrm::IsKeep()
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsKeep( const SwAttrSet& rAttrs, bool bCheckIfLastRowShouldKeep ) const
{
// 1. The keep attribute is ignored inside footnotes
// 2. For compatibility reasons, the keep attribute is
// ignored for frames inside table cells
// 3. If bBreakCheck is set to true, this function only checks
// if there are any break after attributes set at rAttrs
// or break before attributes set for the next content (or next table)
sal_Bool bKeep = bCheckIfLastRowShouldKeep ||
( !rThis.IsInFtn() &&
( !rThis.IsInTab() || rThis.IsTabFrm() ) &&
rAttrs.GetKeep().GetValue() );
OSL_ENSURE( !bCheckIfLastRowShouldKeep || rThis.IsTabFrm(),
"IsKeep with bCheckIfLastRowShouldKeep should only be used for tabfrms" );
// Ignore keep attribute if there are break situations:
if ( bKeep )
{
switch ( rAttrs.GetBreak().GetBreak() )
{
case SVX_BREAK_COLUMN_AFTER:
case SVX_BREAK_COLUMN_BOTH:
case SVX_BREAK_PAGE_AFTER:
case SVX_BREAK_PAGE_BOTH:
{
bKeep = sal_False;
}
default: break;
}
if ( bKeep )
{
SwFrm *pNxt;
if( 0 != (pNxt = rThis.FindNextCnt()) &&
(!m_pFollow || pNxt != m_pFollow->GetFrm()))
{
// #135914#
// The last row of a table only keeps with the next content
// it they are in the same section:
if ( bCheckIfLastRowShouldKeep )
{
const SwSection* pThisSection = 0;
const SwSection* pNextSection = 0;
const SwSectionFrm* pThisSectionFrm = rThis.FindSctFrm();
const SwSectionFrm* pNextSectionFrm = pNxt->FindSctFrm();
if ( pThisSectionFrm )
pThisSection = pThisSectionFrm->GetSection();
if ( pNextSectionFrm )
pNextSection = pNextSectionFrm->GetSection();
if ( pThisSection != pNextSection )
bKeep = sal_False;
}
if ( bKeep )
{
const SwAttrSet* pSet = NULL;
if ( pNxt->IsInTab() )
{
SwTabFrm* pTab = pNxt->FindTabFrm();
if ( ! rThis.IsInTab() || rThis.FindTabFrm() != pTab )
pSet = &pTab->GetFmt()->GetAttrSet();
}
if ( ! pSet )
pSet = pNxt->GetAttrSet();
OSL_ENSURE( pSet, "No AttrSet to check keep attribute" );
if ( pSet->GetPageDesc().GetPageDesc() )
bKeep = sal_False;
else switch ( pSet->GetBreak().GetBreak() )
{
case SVX_BREAK_COLUMN_BEFORE:
case SVX_BREAK_COLUMN_BOTH:
case SVX_BREAK_PAGE_BEFORE:
case SVX_BREAK_PAGE_BOTH:
bKeep = sal_False;
default: break;
}
}
}
}
}
return bKeep;
}
/*************************************************************************
|*
|* SwFlowFrm::BwdMoveNecessary()
|*
|*************************************************************************/
sal_uInt8 SwFlowFrm::BwdMoveNecessary( const SwPageFrm *pPage, const SwRect &rRect )
{
// Der return-Wert entscheidet mit,
// ob auf Zurueckgeflossen werden muss, (3)
// ob das gute alte WouldFit gerufen werden kann (0, 1)
// oder ob ein Umhaengen und eine Probeformatierung sinnvoll ist (2)
// dabei bedeutet Bit 1, dass Objekte an mir selbst verankert sind
// und Bit 2, dass ich anderen Objekten ausweichen muss.
//Wenn ein SurroundObj, dass einen Umfluss wuenscht mit dem Rect ueberlappt
//ist der Fluss notwendig (weil die Verhaeltnisse nicht geschaetzt werden
//koennen), es kann allerdings ggf. eine TestFormatierung stattfinden.
//Wenn das SurroundObj ein Fly ist und ich selbst ein Lower bin oder der Fly
//Lower von mir ist, so spielt er keine Rolle.
//Wenn das SurroundObj in einem zeichengebunden Fly verankert ist, und ich
//selbst nicht Lower dieses Zeichengebundenen Flys bin, so spielt der Fly
//keine Rolle.
//#32639# Wenn das Objekt bei mir verankert ist kann ich es
//vernachlaessigen, weil es hoechstwahrscheinlich (!?) mitfliesst,
//eine TestFormatierung ist dann allerdings nicht erlaubt!
sal_uInt8 nRet = 0;
SwFlowFrm *pTmp = this;
do
{ // Wenn an uns oder einem Follow Objekte haengen, so
// kann keine ProbeFormatierung stattfinden, da absatzgebundene
// nicht richtig beruecksichtigt wuerden und zeichengebundene sollten
// gar nicht zur Probe formatiert werden.
if( pTmp->GetFrm()->GetDrawObjs() )
nRet = 1;
pTmp = pTmp->GetFollow();
} while ( !nRet && pTmp );
if ( pPage->GetSortedObjs() )
{
// #i28701# - new type <SwSortedObjs>
const SwSortedObjs &rObjs = *pPage->GetSortedObjs();
sal_uLong nIndex = ULONG_MAX;
for ( sal_uInt16 i = 0; nRet < 3 && i < rObjs.Count(); ++i )
{
// #i28701# - consider changed type of
// <SwSortedObjs> entries.
SwAnchoredObject* pObj = rObjs[i];
const SwFrmFmt& rFmt = pObj->GetFrmFmt();
const SwRect aRect( pObj->GetObjRect() );
if ( aRect.IsOver( rRect ) &&
rFmt.GetSurround().GetSurround() != SURROUND_THROUGHT )
{
if( rThis.IsLayoutFrm() && //Fly Lower von This?
Is_Lower_Of( &rThis, pObj->GetDrawObj() ) )
continue;
if( pObj->ISA(SwFlyFrm) )
{
const SwFlyFrm *pFly = static_cast<const SwFlyFrm*>(pObj);
if ( pFly->IsAnLower( &rThis ) )//This Lower vom Fly?
continue;
}
const SwFrm* pAnchor = pObj->GetAnchorFrm();
if ( pAnchor == &rThis )
{
nRet |= 1;
continue;
}
//Nicht wenn das Objekt im Textfluss hinter mir verankert ist,
//denn dann weiche ich ihm nicht aus.
if ( ::IsFrmInSameKontext( pAnchor, &rThis ) )
{
if ( rFmt.GetAnchor().GetAnchorId() == FLY_AT_PARA )
{
// Den Index des anderen erhalten wir immer ueber das Ankerattr.
sal_uLong nTmpIndex = rFmt.GetAnchor().GetCntntAnchor()->nNode.GetIndex();
// Jetzt wird noch ueberprueft, ob der aktuelle Absatz vor dem
// Anker des verdraengenden Objekts im Text steht, dann wird
// nicht ausgewichen.
// Der Index wird moeglichst ueber einen SwFmtAnchor ermittelt,
// da sonst recht teuer.
if( ULONG_MAX == nIndex )
{
const SwNode *pNode;
if ( rThis.IsCntntFrm() )
pNode = ((SwCntntFrm&)rThis).GetNode();
else if( rThis.IsSctFrm() )
pNode = ((SwSectionFmt*)((SwSectionFrm&)rThis).
GetFmt())->GetSectionNode();
else
{
OSL_ENSURE( rThis.IsTabFrm(), "new FowFrm?" );
pNode = ((SwTabFrm&)rThis).GetTable()->
GetTabSortBoxes()[0]->GetSttNd()->FindTableNode();
}
nIndex = pNode->GetIndex();
}
if( nIndex < nTmpIndex )
continue;
}
}
else
continue;
nRet |= 2;
}
}
}
return nRet;
}
/*************************************************************************
|*
|* SwFlowFrm::CutTree(), PasteTree(), MoveSubTree()
|*
|* Beschreibung Eine Spezialisierte Form des Cut() und Paste(), die
|* eine ganze Kette umhaengt (naehmlich this und folgende). Dabei werden
|* nur minimale Operationen und Benachrichtigungen ausgefuehrt.
|*
|*************************************************************************/
SwLayoutFrm *SwFlowFrm::CutTree( SwFrm *pStart )
{
//Der Start und alle Nachbarn werden ausgeschnitten, sie werden aneinander-
//gereiht und ein Henkel auf den ersten wird zurueckgeliefert.
//Zurueckbleibende werden geeignet invalidiert.
SwLayoutFrm *pLay = pStart->GetUpper();
if ( pLay->IsInFtn() )
pLay = pLay->FindFtnFrm();
// #i58846#
// <pPrepare( PREP_QUOVADIS )> only for frames in footnotes
if( pStart->IsInFtn() )
{
SwFrm* pTmp = pStart->GetIndPrev();
if( pTmp )
pTmp->Prepare( PREP_QUOVADIS );
}
//Nur fix auschneiden und zwar so, dass klare Verhaeltnisse bei den
//Verlassenen herrschen. Die Pointer der ausgeschnittenen Kette zeigen
//noch wer weiss wo hin.
if ( pStart == pStart->GetUpper()->Lower() )
pStart->GetUpper()->pLower = 0;
if ( pStart->GetPrev() )
{
pStart->GetPrev()->pNext = 0;
pStart->pPrev = 0;
}
if ( pLay->IsFtnFrm() )
{
if ( !pLay->Lower() && !pLay->IsColLocked() &&
!((SwFtnFrm*)pLay)->IsBackMoveLocked() )
{
pLay->Cut();
delete pLay;
}
else
{
sal_Bool bUnlock = !((SwFtnFrm*)pLay)->IsBackMoveLocked();
((SwFtnFrm*)pLay)->LockBackMove();
pLay->InvalidateSize();
pLay->Calc();
SwCntntFrm *pCnt = pLay->ContainsCntnt();
while ( pCnt && pLay->IsAnLower( pCnt ) )
{
//Kann sein, dass der CntFrm gelockt ist, wir wollen hier nicht
//in eine endlose Seitenwanderung hineinlaufen und rufen das
//Calc garnicht erst!
OSL_ENSURE( pCnt->IsTxtFrm(), "Die Graphic ist gelandet." );
if ( ((SwTxtFrm*)pCnt)->IsLocked() ||
((SwTxtFrm*)pCnt)->GetFollow() == pStart )
break;
pCnt->Calc();
pCnt = pCnt->GetNextCntntFrm();
}
if( bUnlock )
((SwFtnFrm*)pLay)->UnlockBackMove();
}
pLay = 0;
}
return pLay;
}
sal_Bool SwFlowFrm::PasteTree( SwFrm *pStart, SwLayoutFrm *pParent, SwFrm *pSibling,
SwFrm *pOldParent )
{
//returnt sal_True wenn in der Kette ein LayoutFrm steht.
sal_Bool bRet = sal_False;
//Die mit pStart beginnende Kette wird vor den Sibling unter den Parent
//gehaengt. Fuer geeignete Invalidierung wird ebenfalls gesorgt.
//Ich bekomme eine fertige Kette. Der Anfang der Kette muss verpointert
//werden, dann alle Upper fuer die Kette und schliesslich dass Ende.
//Unterwegs werden alle geeignet invalidiert.
if ( pSibling )
{
if ( 0 != (pStart->pPrev = pSibling->GetPrev()) )
pStart->GetPrev()->pNext = pStart;
else
pParent->pLower = pStart;
pSibling->_InvalidatePos();
pSibling->_InvalidatePrt();
}
else
{
if ( 0 == (pStart->pPrev = pParent->Lower()) )
pParent->pLower = pStart;
else
//Modified for #i100782#,04/03/2009
//If the pParent has more than 1 child nodes, former design will
//ignore them directly without any collection work. It will make some
//dangling pointers. This lead the crash...
//The new design will find the last child of pParent in loop way, and
//add the pStart after the last child.
// pParent->Lower()->pNext = pStart;
{
SwFrm* pTemp = pParent->pLower;
while (pTemp)
{
if (pTemp->pNext)
pTemp = pTemp->pNext;
else
{
pStart->pPrev = pTemp;
pTemp->pNext = pStart;
break;
}
}
}
//End modification for #i100782#,04/03/2009
// #i27145#
if ( pParent->IsSctFrm() )
{
// We have no sibling because pParent is a section frame and
// has just been created to contain some content. The printing
// area of the frame behind pParent has to be invalidated, so
// that the correct distance between pParent and the next frame
// can be calculated.
pParent->InvalidateNextPrtArea();
}
}
SwFrm *pFloat = pStart;
SwFrm *pLst = 0;
SWRECTFN( pParent )
SwTwips nGrowVal = 0;
do
{ pFloat->pUpper = pParent;
pFloat->_InvalidateAll();
pFloat->CheckDirChange();
//Ich bin Freund des TxtFrm und darf deshalb so einiges. Das mit
//dem CacheIdx scheint etwas riskant!
if ( pFloat->IsTxtFrm() )
{
if ( ((SwTxtFrm*)pFloat)->GetCacheIdx() != USHRT_MAX )
((SwTxtFrm*)pFloat)->Init(); //Ich bin sein Freund.
}
else
bRet = sal_True;
nGrowVal += (pFloat->Frm().*fnRect->fnGetHeight)();
if ( pFloat->GetNext() )
pFloat = pFloat->GetNext();
else
{
pLst = pFloat;
pFloat = 0;
}
} while ( pFloat );
if ( pSibling )
{
pLst->pNext = pSibling;
pSibling->pPrev = pLst;
if( pSibling->IsInFtn() )
{
if( pSibling->IsSctFrm() )
pSibling = ((SwSectionFrm*)pSibling)->ContainsAny();
if( pSibling )
pSibling->Prepare( PREP_ERGOSUM );
}
}
if ( nGrowVal )
{
if ( pOldParent && pOldParent->IsBodyFrm() ) //Fuer variable Seitenhoehe beim Browsen
pOldParent->Shrink( nGrowVal );
pParent->Grow( nGrowVal );
}
if ( pParent->IsFtnFrm() )
((SwFtnFrm*)pParent)->InvalidateNxtFtnCnts( pParent->FindPageFrm() );
return bRet;
}
void SwFlowFrm::MoveSubTree( SwLayoutFrm* pParent, SwFrm* pSibling )
{
OSL_ENSURE( pParent, "Kein Parent uebergeben." );
OSL_ENSURE( rThis.GetUpper(), "Wo kommen wir denn her?" );
//Sparsamer benachrichtigen wenn eine Action laeuft.
ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
const SwViewImp *pImp = pSh ? pSh->Imp() : 0;
const sal_Bool bComplete = pImp && pImp->IsAction() && pImp->GetLayAction().IsComplete();
if ( !bComplete )
{
SwFrm *pPre = rThis.GetIndPrev();
if ( pPre )
{
pPre->SetRetouche();
// #115759# - follow-up of #i26250#
// invalidate printing area of previous frame, if it's in a table
if ( pPre->GetUpper()->IsInTab() )
{
pPre->_InvalidatePrt();
}
pPre->InvalidatePage();
}
else
{ rThis.GetUpper()->SetCompletePaint();
rThis.GetUpper()->InvalidatePage();
}
}
SwPageFrm *pOldPage = rThis.FindPageFrm();
SwLayoutFrm *pOldParent = CutTree( &rThis );
const sal_Bool bInvaLay = PasteTree( &rThis, pParent, pSibling, pOldParent );
// Wenn durch das Cut&Paste ein leerer SectionFrm entstanden ist, sollte
// dieser automatisch verschwinden.
SwSectionFrm *pSct;
// #126020# - adjust check for empty section
// #130797# - correct fix #126020#
if ( pOldParent && !pOldParent->Lower() &&
( pOldParent->IsInSct() &&
!(pSct = pOldParent->FindSctFrm())->ContainsCntnt() &&
!pSct->ContainsAny( true ) ) )
{
pSct->DelEmpty( sal_False );
}
// In einem spaltigen Bereich rufen wir lieber kein Calc "von unten"
if( !rThis.IsInSct() &&
( !rThis.IsInTab() || ( rThis.IsTabFrm() && !rThis.GetUpper()->IsInTab() ) ) )
rThis.GetUpper()->Calc();
else if( rThis.GetUpper()->IsSctFrm() )
{
SwSectionFrm* pTmpSct = (SwSectionFrm*)rThis.GetUpper();
sal_Bool bOld = pTmpSct->IsCntntLocked();
pTmpSct->SetCntntLock( sal_True );
pTmpSct->Calc();
if( !bOld )
pTmpSct->SetCntntLock( sal_False );
}
SwPageFrm *pPage = rThis.FindPageFrm();
if ( pOldPage != pPage )
{
rThis.InvalidatePage( pPage );
if ( rThis.IsLayoutFrm() )
{
SwCntntFrm *pCnt = ((SwLayoutFrm*)&rThis)->ContainsCntnt();
if ( pCnt )
pCnt->InvalidatePage( pPage );
}
else if ( pSh && pSh->GetDoc()->GetLineNumberInfo().IsRestartEachPage()
&& pPage->FindFirstBodyCntnt() == &rThis )
{
rThis._InvalidateLineNum();
}
}
if ( bInvaLay || (pSibling && pSibling->IsLayoutFrm()) )
rThis.GetUpper()->InvalidatePage( pPage );
}
/*************************************************************************
|*
|* SwFlowFrm::IsAnFollow()
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsAnFollow( const SwFlowFrm *pAssumed ) const
{
const SwFlowFrm *pFoll = this;
do
{ if ( pAssumed == pFoll )
return sal_True;
pFoll = pFoll->GetFollow();
} while ( pFoll );
return sal_False;
}
/*************************************************************************
|*
|* SwFlowFrm::FindMaster()
|*
|*************************************************************************/
SwTxtFrm* SwCntntFrm::FindMaster() const
{
OSL_ENSURE( IsFollow(), "SwCntntFrm::FindMaster(): !IsFollow" );
const SwCntntFrm* pPrec = GetPrecede();
if ( pPrec && pPrec->HasFollow() && pPrec->GetFollow() == this )
{
OSL_ENSURE( pPrec->IsTxtFrm(), "NoTxtFrm with follow found" );
return ( SwTxtFrm* )pPrec;
}
OSL_FAIL( "Follow ist lost in Space." );
return 0;
}
SwSectionFrm* SwSectionFrm::FindMaster() const
{
OSL_ENSURE( IsFollow(), "SwSectionFrm::FindMaster(): !IsFollow" );
SwIterator<SwSectionFrm,SwFmt> aIter( *pSection->GetFmt() );
SwSectionFrm* pSect = aIter.First();
while ( pSect )
{
if( pSect->GetFollow() == this )
return pSect;
pSect = aIter.Next();
}
OSL_FAIL( "Follow ist lost in Space." );
return 0;
}
SwTabFrm* SwTabFrm::FindMaster( bool bFirstMaster ) const
{
OSL_ENSURE( IsFollow(), "SwTabFrm::FindMaster(): !IsFollow" );
SwIterator<SwTabFrm,SwFmt> aIter( *GetTable()->GetFrmFmt() );
SwTabFrm* pTab = aIter.First();
while ( pTab )
{
if ( bFirstMaster )
{
//
// Optimization. This makes code like this obsolete:
// while ( pTab->IsFollow() )
// pTab = pTab->FindMaster();
//
if ( !pTab->IsFollow() )
{
SwTabFrm* pNxt = pTab;
while ( pNxt )
{
if ( pNxt->GetFollow() == this )
return pTab;
pNxt = pNxt->GetFollow();
}
}
}
else
{
if ( pTab->GetFollow() == this )
return pTab;
}
pTab = aIter.Next();
}
OSL_FAIL( "Follow ist lost in Space." );
return 0;
}
/*************************************************************************
|*
|* SwFrm::GetLeaf()
|*
|* Beschreibung Liefert das naechste/vorhergehende LayoutBlatt,
|* das _nicht_ unterhalb von this liegt (oder gar this selbst ist).
|* Ausserdem muss dieses LayoutBlatt im gleichen Textfluss wie
|* pAnch Ausgangsfrm liegen (Body, Ftn)
|*
|*************************************************************************/
const SwLayoutFrm *SwFrm::GetLeaf( MakePageType eMakePage, sal_Bool bFwd,
const SwFrm *pAnch ) const
{
//Ohne Fluss kein genuss...
if ( !(IsInDocBody() || IsInFtn() || IsInFly()) )
return 0;
const SwFrm *pLeaf = this;
sal_Bool bFound = sal_False;
do
{ pLeaf = ((SwFrm*)pLeaf)->GetLeaf( eMakePage, bFwd );
if ( pLeaf &&
(!IsLayoutFrm() || !((SwLayoutFrm*)this)->IsAnLower( pLeaf )))
{
if ( pAnch->IsInDocBody() == pLeaf->IsInDocBody() &&
pAnch->IsInFtn() == pLeaf->IsInFtn() )
{
bFound = sal_True;
}
}
} while ( !bFound && pLeaf );
return (const SwLayoutFrm*)pLeaf;
}
/*************************************************************************
|*
|* SwFrm::GetLeaf()
|*
|* Beschreibung Ruft Get[Next|Prev]Leaf
|*
|*************************************************************************/
SwLayoutFrm *SwFrm::GetLeaf( MakePageType eMakePage, sal_Bool bFwd )
{
if ( IsInFtn() )
return bFwd ? GetNextFtnLeaf( eMakePage ) : GetPrevFtnLeaf( eMakePage );
// #i53323#
// A frame could be inside a table AND inside a section.
// Thus, it has to be determined, which is the first parent.
bool bInTab( IsInTab() );
bool bInSct( IsInSct() );
if ( bInTab && bInSct )
{
const SwFrm* pUpperFrm( GetUpper() );
while ( pUpperFrm )
{
if ( pUpperFrm->IsTabFrm() )
{
// the table is the first.
bInSct = false;
break;
}
else if ( pUpperFrm->IsSctFrm() )
{
// the section is the first.
bInTab = false;
break;
}
pUpperFrm = pUpperFrm->GetUpper();
}
}
if ( bInTab && ( !IsTabFrm() || GetUpper()->IsCellFrm() ) ) // TABLE IN TABLE
return bFwd ? GetNextCellLeaf( eMakePage ) : GetPrevCellLeaf( eMakePage );
if ( bInSct )
return bFwd ? GetNextSctLeaf( eMakePage ) : GetPrevSctLeaf( eMakePage );
return bFwd ? GetNextLeaf( eMakePage ) : GetPrevLeaf( eMakePage );
}
sal_Bool SwFrm::WrongPageDesc( SwPageFrm* pNew )
{
//Jetzt wirds leider etwas kompliziert:
//Ich bringe ich evtl. selbst
//einen Pagedesc mit; der der Folgeseite muss dann damit
//uebereinstimmen.
//Anderfalls muss ich mir etwas genauer ansehen wo der
//Folgepagedesc herkam.
//Wenn die Folgeseite selbst schon sagt, dass ihr
//Pagedesc nicht stimmt so kann ich das Teil bedenkenlos
//auswechseln.
//Wenn die Seite meint, dass ihr Pagedesc stimmt, so heisst
//das leider noch immer nicht, dass ich damit etwas anfangen
//kann: Wenn der erste BodyCntnt einen PageDesc oder einen
//PageBreak wuenscht, so muss ich ebenfalls eine neue
//Seite einfuegen; es sein denn die gewuenschte Seite ist
//die richtige.
//Wenn ich einen neue Seite eingefuegt habe, so fangen die
//Probleme leider erst an, denn wahrscheinlich wird die dann
//folgende Seite verkehrt gewesen und ausgewechselt worden
//sein. Das hat zur Folge, dass ich zwar eine neue (und
//jetzt richtige) Seite habe, die Bedingungen zum auswechseln
//aber leider noch immer stimmen.
//Ausweg: Vorlaeufiger Versuch, nur einmal eine neue Seite
//einsetzen (Leerseiten werden noetigenfalls bereits von
//InsertPage() eingefuegt.
const SwFmtPageDesc &rFmtDesc = GetAttrSet()->GetPageDesc();
//Mein Pagedesc zaehlt nicht, wenn ich ein Follow bin!
SwPageDesc *pDesc = 0;
sal_uInt16 nTmp = 0;
SwFlowFrm *pFlow = SwFlowFrm::CastFlowFrm( this );
if ( !pFlow || !pFlow->IsFollow() )
{
pDesc = (SwPageDesc*)rFmtDesc.GetPageDesc();
if( pDesc )
{
if( !pDesc->GetRightFmt() )
nTmp = 2;
else if( !pDesc->GetLeftFmt() )
nTmp = 1;
else if( rFmtDesc.GetNumOffset() )
nTmp = rFmtDesc.GetNumOffset();
}
}
//Bringt der Cntnt einen Pagedesc mit oder muss zaehlt die
//virtuelle Seitennummer des neuen Layoutleafs?
// Bei Follows zaehlt der PageDesc nicht
const sal_Bool bOdd = nTmp ? ( nTmp % 2 ? sal_True : sal_False )
: pNew->OnRightPage();
if ( !pDesc )
pDesc = pNew->FindPageDesc();
const SwFlowFrm *pNewFlow = pNew->FindFirstBodyCntnt();
// Haben wir uns selbst gefunden?
if( pNewFlow == pFlow )
pNewFlow = NULL;
if ( pNewFlow && pNewFlow->GetFrm()->IsInTab() )
pNewFlow = pNewFlow->GetFrm()->FindTabFrm();
const SwPageDesc *pNewDesc= ( pNewFlow && !pNewFlow->IsFollow() )
? pNewFlow->GetFrm()->GetAttrSet()->GetPageDesc().GetPageDesc():0;
return ( pNew->GetPageDesc() != pDesc || // own desc ?
pNew->GetFmt() != (bOdd ? pDesc->GetRightFmt() : pDesc->GetLeftFmt()) ||
( pNewDesc && pNewDesc == pDesc ) );
}
/*************************************************************************
|*
|* SwFrm::GetNextLeaf()
|*
|* Beschreibung Liefert das naechste LayoutBlatt in den das
|* Frame gemoved werden kann.
|*
|*************************************************************************/
SwLayoutFrm *SwFrm::GetNextLeaf( MakePageType eMakePage )
{
OSL_ENSURE( !IsInFtn(), "GetNextLeaf(), don't call me for Ftn." );
OSL_ENSURE( !IsInSct(), "GetNextLeaf(), don't call me for Sections." );
const sal_Bool bBody = IsInDocBody(); //Wenn ich aus dem DocBody komme
//Will ich auch im Body landen.
// Bei Flys macht es keinen Sinn, Seiten einzufuegen, wir wollen lediglich
// die Verkettung absuchen.
if( IsInFly() )
eMakePage = MAKEPAGE_NONE;
//Bei Tabellen gleich den grossen Sprung wagen, ein einfaches GetNext...
//wuerde die erste Zellen und in der Folge alle weiteren Zellen nacheinander
//abklappern....
SwLayoutFrm *pLayLeaf = 0;
if ( IsTabFrm() )
{
SwCntntFrm* pTmp = ((SwTabFrm*)this)->FindLastCntnt();
if ( pTmp )
pLayLeaf = pTmp->GetUpper();
}
if ( !pLayLeaf )
pLayLeaf = GetNextLayoutLeaf();
SwLayoutFrm *pOldLayLeaf = 0; //Damit bei neu erzeugten Seiten
//nicht wieder vom Anfang gesucht
//wird.
sal_Bool bNewPg = sal_False; //nur einmal eine neue Seite einfuegen.
while ( sal_True )
{
if ( pLayLeaf )
{
//Es gibt noch einen weiteren LayoutFrm, mal sehen,
//ob er bereit ist mich aufzunehmen.
//Dazu braucht er nur von der gleichen Art wie mein Ausgangspunkt
//sein (DocBody bzw. Footnote.)
if ( pLayLeaf->FindPageFrm()->IsFtnPage() )
{ //Wenn ich bei den Endnotenseiten angelangt bin hat sichs.
pLayLeaf = 0;
continue;
}
if ( (bBody && !pLayLeaf->IsInDocBody()) || pLayLeaf->IsInTab()
|| pLayLeaf->IsInSct() )
{
//Er will mich nicht; neuer Versuch, neues Glueck
pOldLayLeaf = pLayLeaf;
pLayLeaf = pLayLeaf->GetNextLayoutLeaf();
continue;
}
//Er will mich, also ist er der gesuchte und ich bin fertig.
//Bei einem Seitenwechsel kann es allerdings noch sein, dass
//Der Seitentyp nicht der gewuenschte ist, in diesem Fall muessen
//wir eine Seite des richtigen Typs einfuegen.
if( !IsFlowFrm() && ( eMakePage == MAKEPAGE_NONE ||
eMakePage==MAKEPAGE_APPEND || eMakePage==MAKEPAGE_NOSECTION ) )
return pLayLeaf;
SwPageFrm *pNew = pLayLeaf->FindPageFrm();
const ViewShell *pSh = getRootFrm()->GetCurrShell();
// #111704# The pagedesc check does not make sense for frames in fly frames
if ( pNew != FindPageFrm() && !bNewPg && !IsInFly() &&
// #i46683#
// Do not consider page descriptions in browse mode (since
// MoveBwd ignored them)
!(pSh && pSh->GetViewOptions()->getBrowseMode() ) )
{
if( WrongPageDesc( pNew ) )
{
SwFtnContFrm *pCont = pNew->FindFtnCont();
if( pCont )
{
// Falls die Referenz der ersten Fussnote dieser Seite
// vor der Seite liegt, fuegen wir lieber keine neue Seite
// ein (Bug #55620#)
SwFtnFrm *pFtn = (SwFtnFrm*)pCont->Lower();
if( pFtn && pFtn->GetRef() )
{
const sal_uInt16 nRefNum = pNew->GetPhyPageNum();
if( pFtn->GetRef()->GetPhyPageNum() < nRefNum )
break;
}
}
//Erwischt, die folgende Seite ist verkehrt, also
//muss eine neue eingefuegt werden.
if ( eMakePage == MAKEPAGE_INSERT )
{
bNewPg = sal_True;
SwPageFrm *pPg = pOldLayLeaf ?
pOldLayLeaf->FindPageFrm() : 0;
if ( pPg && pPg->IsEmptyPage() )
//Nicht hinter, sondern vor der EmptyPage einfuegen.
pPg = (SwPageFrm*)pPg->GetPrev();
if ( !pPg || pPg == pNew )
pPg = FindPageFrm();
InsertPage( pPg, sal_False );
pLayLeaf = GetNextLayoutLeaf();
pOldLayLeaf = 0;
continue;
}
else
pLayLeaf = 0;
}
}
break;
}
else
{
//Es gibt keinen passenden weiteren LayoutFrm, also muss eine
//neue Seite her.
if ( eMakePage == MAKEPAGE_APPEND || eMakePage == MAKEPAGE_INSERT )
{
InsertPage(
pOldLayLeaf ? pOldLayLeaf->FindPageFrm() : FindPageFrm(),
sal_False );
//und nochmal das ganze
pLayLeaf = pOldLayLeaf ? pOldLayLeaf : GetNextLayoutLeaf();
}
else
break;
}
}
return pLayLeaf;
}
/*************************************************************************
|*
|* SwFrm::GetPrevLeaf()
|*
|* Beschreibung Liefert das vorhergehende LayoutBlatt in das der
|* Frame gemoved werden kann.
|*
|*************************************************************************/
SwLayoutFrm *SwFrm::GetPrevLeaf( MakePageType )
{
OSL_ENSURE( !IsInFtn(), "GetPrevLeaf(), don't call me for Ftn." );
const sal_Bool bBody = IsInDocBody(); //Wenn ich aus dem DocBody komme
//will ich auch im Body landen.
const sal_Bool bFly = IsInFly();
SwLayoutFrm *pLayLeaf = GetPrevLayoutLeaf();
SwLayoutFrm *pPrevLeaf = 0;
while ( pLayLeaf )
{
if ( pLayLeaf->IsInTab() || //In Tabellen geht's niemals hinein.
pLayLeaf->IsInSct() ) //In Bereiche natuerlich auch nicht!
pLayLeaf = pLayLeaf->GetPrevLayoutLeaf();
else if ( bBody && pLayLeaf->IsInDocBody() )
{
if ( pLayLeaf->Lower() )
break;
pPrevLeaf = pLayLeaf;
pLayLeaf = pLayLeaf->GetPrevLayoutLeaf();
if ( pLayLeaf )
SwFlowFrm::SetMoveBwdJump( sal_True );
}
else if ( bFly )
break; //Cntnts in Flys sollte jedes Layout-Blatt recht sein.
else
pLayLeaf = pLayLeaf->GetPrevLayoutLeaf();
}
return pLayLeaf ? pLayLeaf : pPrevLeaf;
}
/*************************************************************************
|*
|* SwFlowFrm::IsPrevObjMove()
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsPrevObjMove() const
{
//sal_True der FlowFrm soll auf einen Rahmen des Vorgaengers Ruecksicht nehmen
// und fuer diesen ggf. Umbrechen.
//!!!!!!!!!!!Hack!!!!!!!!!!!
const ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
if( pSh && pSh->GetViewOptions()->getBrowseMode() )
return sal_False;
SwFrm *pPre = rThis.FindPrev();
if ( pPre && pPre->GetDrawObjs() )
{
OSL_ENSURE( SwFlowFrm::CastFlowFrm( pPre ), "new flowfrm?" );
if( SwFlowFrm::CastFlowFrm( pPre )->IsAnFollow( this ) )
return sal_False;
SwLayoutFrm* pPreUp = pPre->GetUpper();
// Wenn der Upper ein SectionFrm oder die Spalte eines SectionFrms ist,
// duerfen wir aus diesem durchaus heraushaengen,
// es muss stattdessen der Upper des SectionFrms beruecksichtigt werden.
if( pPreUp->IsInSct() )
{
if( pPreUp->IsSctFrm() )
pPreUp = pPreUp->GetUpper();
else if( pPreUp->IsColBodyFrm() &&
pPreUp->GetUpper()->GetUpper()->IsSctFrm() )
pPreUp = pPreUp->GetUpper()->GetUpper()->GetUpper();
}
// #i26945# - re-factoring
// use <GetVertPosOrientFrm()> to determine, if object has followed the
// text flow to the next layout frame
for ( sal_uInt16 i = 0; i < pPre->GetDrawObjs()->Count(); ++i )
{
// #i28701# - consider changed type of
// <SwSortedObjs> entries.
const SwAnchoredObject* pObj = (*pPre->GetDrawObjs())[i];
// OD 2004-01-20 #110582# - do not consider hidden objects
// #i26945# - do not consider object, which
// doesn't follow the text flow.
if ( pObj->GetFrmFmt().GetDoc()->IsVisibleLayerId(
pObj->GetDrawObj()->GetLayer() ) &&
pObj->GetFrmFmt().GetFollowTextFlow().GetValue() )
{
const SwLayoutFrm* pVertPosOrientFrm = pObj->GetVertPosOrientFrm();
if ( pVertPosOrientFrm &&
pPreUp != pVertPosOrientFrm &&
!pPreUp->IsAnLower( pVertPosOrientFrm ) )
{
return sal_True;
}
}
}
}
return sal_False;
}
/*************************************************************************
|*
|* sal_Bool SwFlowFrm::IsPageBreak()
|*
|* Beschreibung Wenn vor dem Frm ein harter Seitenumbruch steht UND
|* es einen Vorgaenger auf der gleichen Seite gibt, wird sal_True
|* zurueckgeliefert (es muss ein PageBreak erzeugt werden) sal_False sonst.
|* Wenn in bAct sal_True uebergeben wird, gibt die Funktion dann sal_True
|* zurueck, wenn ein PageBreak besteht.
|* Fuer Follows wird der harte Seitenumbruch natuerlich nicht
|* ausgewertet.
|* Der Seitenumbruch steht im eigenen FrmFmt (BEFORE) oder im FrmFmt
|* des Vorgaengers (AFTER). Wenn es keinen Vorgaenger auf der Seite
|* gibt ist jede weitere Ueberlegung ueberfluessig.
|* Ein Seitenumbruch (oder der Bedarf) liegt auch dann vor, wenn
|* im FrmFmt ein PageDesc angegeben wird.
|* Die Implementierung arbeitet zuaechst nur auf CntntFrms!
|* -->Fuer LayoutFrms ist die Definition des Vorgaengers unklar.
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsPageBreak( sal_Bool bAct ) const
{
if ( !IsFollow() && rThis.IsInDocBody() &&
( !rThis.IsInTab() || ( rThis.IsTabFrm() && !rThis.GetUpper()->IsInTab() ) ) ) // i66968
{
const ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
if( pSh && pSh->GetViewOptions()->getBrowseMode() )
return sal_False;
const SwAttrSet *pSet = rThis.GetAttrSet();
//Vorgaenger ermitteln
const SwFrm *pPrev = rThis.FindPrev();
while ( pPrev && ( !pPrev->IsInDocBody() ||
( pPrev->IsTxtFrm() && ((SwTxtFrm*)pPrev)->IsHiddenNow() ) ) )
pPrev = pPrev->FindPrev();
if ( pPrev )
{
OSL_ENSURE( pPrev->IsInDocBody(), "IsPageBreak: Not in DocBody?" );
if ( bAct )
{ if ( rThis.FindPageFrm() == pPrev->FindPageFrm() )
return sal_False;
}
else
{ if ( rThis.FindPageFrm() != pPrev->FindPageFrm() )
return sal_False;
}
const SvxBreak eBreak = pSet->GetBreak().GetBreak();
if ( eBreak == SVX_BREAK_PAGE_BEFORE || eBreak == SVX_BREAK_PAGE_BOTH )
return sal_True;
else
{
const SvxBreak &ePrB = pPrev->GetAttrSet()->GetBreak().GetBreak();
if ( ePrB == SVX_BREAK_PAGE_AFTER ||
ePrB == SVX_BREAK_PAGE_BOTH ||
pSet->GetPageDesc().GetPageDesc() )
return sal_True;
}
}
}
return sal_False;
}
/*************************************************************************
|*
|* sal_Bool SwFlowFrm::IsColBreak()
|*
|* Beschreibung Wenn vor dem Frm ein harter Spaltenumbruch steht UND
|* es einen Vorgaenger in der gleichen Spalte gibt, wird sal_True
|* zurueckgeliefert (es muss ein PageBreak erzeugt werden) sal_False sonst.
|* Wenn in bAct sal_True uebergeben wird, gibt die Funktion dann sal_True
|* zurueck, wenn ein ColBreak besteht.
|* Fuer Follows wird der harte Spaltenumbruch natuerlich nicht
|* ausgewertet.
|* Der Spaltenumbruch steht im eigenen FrmFmt (BEFORE) oder im FrmFmt
|* des Vorgaengers (AFTER). Wenn es keinen Vorgaenger in der Spalte
|* gibt ist jede weitere Ueberlegung ueberfluessig.
|* Die Implementierung arbeitet zuaechst nur auf CntntFrms!
|* -->Fuer LayoutFrms ist die Definition des Vorgaengers unklar.
|*
|*************************************************************************/
sal_Bool SwFlowFrm::IsColBreak( sal_Bool bAct ) const
{
if ( !IsFollow() && (rThis.IsMoveable() || bAct) )
{
const SwFrm *pCol = rThis.FindColFrm();
if ( pCol )
{
//Vorgaenger ermitteln
const SwFrm *pPrev = rThis.FindPrev();
while( pPrev && ( ( !pPrev->IsInDocBody() && !rThis.IsInFly() ) ||
( pPrev->IsTxtFrm() && ((SwTxtFrm*)pPrev)->IsHiddenNow() ) ) )
pPrev = pPrev->FindPrev();
if ( pPrev )
{
if ( bAct )
{ if ( pCol == pPrev->FindColFrm() )
return sal_False;
}
else
{ if ( pCol != pPrev->FindColFrm() )
return sal_False;
}
const SvxBreak eBreak = rThis.GetAttrSet()->GetBreak().GetBreak();
if ( eBreak == SVX_BREAK_COLUMN_BEFORE ||
eBreak == SVX_BREAK_COLUMN_BOTH )
return sal_True;
else
{
const SvxBreak &ePrB = pPrev->GetAttrSet()->GetBreak().GetBreak();
if ( ePrB == SVX_BREAK_COLUMN_AFTER ||
ePrB == SVX_BREAK_COLUMN_BOTH )
return sal_True;
}
}
}
}
return sal_False;
}
sal_Bool SwFlowFrm::HasParaSpaceAtPages( sal_Bool bSct ) const
{
if( rThis.IsInSct() )
{
const SwFrm* pTmp = rThis.GetUpper();
while( pTmp )
{
if( pTmp->IsCellFrm() || pTmp->IsFlyFrm() ||
pTmp->IsFooterFrm() || pTmp->IsHeaderFrm() ||
( pTmp->IsFtnFrm() && !((SwFtnFrm*)pTmp)->GetMaster() ) )
return sal_True;
if( pTmp->IsPageFrm() )
return ( pTmp->GetPrev() && !IsPageBreak(sal_True) ) ? sal_False : sal_True;
if( pTmp->IsColumnFrm() && pTmp->GetPrev() )
return IsColBreak( sal_True );
if( pTmp->IsSctFrm() && ( !bSct || pTmp->GetPrev() ) )
return sal_False;
pTmp = pTmp->GetUpper();
}
OSL_FAIL( "HasParaSpaceAtPages: Where's my page?" );
return sal_False;
}
if( !rThis.IsInDocBody() || ( rThis.IsInTab() && !rThis.IsTabFrm()) ||
IsPageBreak( sal_True ) || ( rThis.FindColFrm() && IsColBreak( sal_True ) ) )
return sal_True;
const SwFrm* pTmp = rThis.FindColFrm();
if( pTmp )
{
if( pTmp->GetPrev() )
return sal_False;
}
else
pTmp = &rThis;
pTmp = pTmp->FindPageFrm();
return pTmp && !pTmp->GetPrev();
}
/** helper method to determine previous frame for calculation of the
upper space
OD 2004-03-10 #i11860#
@author OD
*/
const SwFrm* SwFlowFrm::_GetPrevFrmForUpperSpaceCalc( const SwFrm* _pProposedPrevFrm ) const
{
const SwFrm* pPrevFrm = _pProposedPrevFrm
? _pProposedPrevFrm
: rThis.GetPrev();
// Skip hidden paragraphs and empty sections
while ( pPrevFrm &&
( ( pPrevFrm->IsTxtFrm() &&
static_cast<const SwTxtFrm*>(pPrevFrm)->IsHiddenNow() ) ||
( pPrevFrm->IsSctFrm() &&
!static_cast<const SwSectionFrm*>(pPrevFrm)->GetSection() ) ) )
{
pPrevFrm = pPrevFrm->GetPrev();
}
// Special case: no direct previous frame is found but frame is in footnote
// Search for a previous frame in previous footnote,
// if frame isn't in a section, which is also in the footnote
if ( !pPrevFrm && rThis.IsInFtn() &&
( rThis.IsSctFrm() ||
!rThis.IsInSct() || !rThis.FindSctFrm()->IsInFtn() ) )
{
const SwFtnFrm* pPrevFtnFrm =
static_cast<const SwFtnFrm*>(rThis.FindFtnFrm()->GetPrev());
if ( pPrevFtnFrm )
{
pPrevFrm = pPrevFtnFrm->GetLastLower();
// Skip hidden paragraphs and empty sections
while ( pPrevFrm &&
( ( pPrevFrm->IsTxtFrm() &&
static_cast<const SwTxtFrm*>(pPrevFrm)->IsHiddenNow() ) ||
( pPrevFrm->IsSctFrm() &&
!static_cast<const SwSectionFrm*>(pPrevFrm)->GetSection() ) ) )
{
pPrevFrm = pPrevFrm->GetPrev();
}
}
}
// Special case: found previous frame is a section
// Search for the last content in the section
if( pPrevFrm && pPrevFrm->IsSctFrm() )
{
const SwSectionFrm* pPrevSectFrm =
static_cast<const SwSectionFrm*>(pPrevFrm);
pPrevFrm = pPrevSectFrm->FindLastCntnt();
// If the last content is in a table _inside_ the section,
// take the table herself.
// OD 2004-02-18 #106629# - correction:
// Check directly, if table is inside table, instead of indirectly
// by checking, if section isn't inside a table
if ( pPrevFrm && pPrevFrm->IsInTab() )
{
const SwTabFrm* pTableFrm = pPrevFrm->FindTabFrm();
if ( pPrevSectFrm->IsAnLower( pTableFrm ) )
{
pPrevFrm = pTableFrm;
}
}
// OD 2004-02-18 #106629# correction: skip hidden text frames
while ( pPrevFrm &&
pPrevFrm->IsTxtFrm() &&
static_cast<const SwTxtFrm*>(pPrevFrm)->IsHiddenNow() )
{
pPrevFrm = pPrevFrm->GetPrev();
}
}
return pPrevFrm;
}
// OD 2004-03-12 #i11860# - add 3rd parameter <_bConsiderGrid>
SwTwips SwFlowFrm::CalcUpperSpace( const SwBorderAttrs *pAttrs,
const SwFrm* pPr,
const bool _bConsiderGrid ) const
{
// OD 2004-03-10 #i11860# - use new method <GetPrevFrmForUpperSpaceCalc(..)>
const SwFrm* pPrevFrm = _GetPrevFrmForUpperSpaceCalc( pPr );
SwBorderAttrAccess *pAccess;
SwFrm* pOwn;
if( !pAttrs )
{
if( rThis.IsSctFrm() )
{
SwSectionFrm* pFoll = &((SwSectionFrm&)rThis);
do
pOwn = pFoll->ContainsAny();
while( !pOwn && 0 != ( pFoll = pFoll->GetFollow() ) );
if( !pOwn )
return 0;
}
else
pOwn = &rThis;
pAccess= new SwBorderAttrAccess( SwFrm::GetCache(), pOwn );
pAttrs = pAccess->Get();
}
else
{
pAccess = NULL;
pOwn = &rThis;
}
SwTwips nUpper = 0;
// OD 06.01.2004 #i11859#
{
const IDocumentSettingAccess* pIDSA = rThis.GetUpper()->GetFmt()->getIDocumentSettingAccess();
const bool bUseFormerLineSpacing = pIDSA->get(IDocumentSettingAccess::OLD_LINE_SPACING);
if( pPrevFrm )
{
// OD 2004-03-10 #i11860# - use new method to determine needed spacing
// values of found previous frame and use these values.
SwTwips nPrevLowerSpace = 0;
SwTwips nPrevLineSpacing = 0;
// #i102458#
bool bPrevLineSpacingPorportional = false;
GetSpacingValuesOfFrm( (*pPrevFrm),
nPrevLowerSpace, nPrevLineSpacing,
bPrevLineSpacingPorportional );
if( pIDSA->get(IDocumentSettingAccess::PARA_SPACE_MAX) )
{
nUpper = nPrevLowerSpace + pAttrs->GetULSpace().GetUpper();
SwTwips nAdd = nPrevLineSpacing;
// OD 07.01.2004 #i11859# - consideration of the line spacing
// for the upper spacing of a text frame
if ( bUseFormerLineSpacing )
{
// former consideration
if ( pOwn->IsTxtFrm() )
{
nAdd = Max( nAdd, static_cast<SwTxtFrm&>(rThis).GetLineSpace() );
}
nUpper += nAdd;
}
else
{
// new consideration:
// Only the proportional line spacing of the previous
// text frame is considered for the upper spacing and
// the line spacing values are add up instead of
// building its maximum.
if ( pOwn->IsTxtFrm() )
{
// #i102458#
// Correction:
// A proportional line spacing of the previous text frame
// is added up to a own leading line spacing.
// Otherwise, the maximum of the leading line spacing
// of the previous text frame and the own leading line
// spacing is built.
if ( bPrevLineSpacingPorportional )
{
nAdd += static_cast<SwTxtFrm&>(rThis).GetLineSpace( true );
}
else
{
nAdd = Max( nAdd, static_cast<SwTxtFrm&>(rThis).GetLineSpace( true ) );
}
}
nUpper += nAdd;
}
}
else
{
nUpper = Max( static_cast<long>(nPrevLowerSpace),
static_cast<long>(pAttrs->GetULSpace().GetUpper()) );
// OD 07.01.2004 #i11859# - consideration of the line spacing
// for the upper spacing of a text frame
if ( bUseFormerLineSpacing )
{
// former consideration
if ( pOwn->IsTxtFrm() )
nUpper = Max( nUpper, ((SwTxtFrm*)pOwn)->GetLineSpace() );
if ( nPrevLineSpacing != 0 )
{
nUpper = Max( nUpper, nPrevLineSpacing );
}
}
else
{
// new consideration:
// Only the proportional line spacing of the previous
// text frame is considered for the upper spacing and
// the line spacing values are add up and added to
// the paragraph spacing instead of building the
// maximum of the line spacings and the paragraph spacing.
SwTwips nAdd = nPrevLineSpacing;
if ( pOwn->IsTxtFrm() )
{
// #i102458#
// Correction:
// A proportional line spacing of the previous text frame
// is added up to a own leading line spacing.
// Otherwise, the maximum of the leading line spacing
// of the previous text frame and the own leading line
// spacing is built.
if ( bPrevLineSpacingPorportional )
{
nAdd += static_cast<SwTxtFrm&>(rThis).GetLineSpace( true );
}
else
{
nAdd = Max( nAdd, static_cast<SwTxtFrm&>(rThis).GetLineSpace( true ) );
}
}
nUpper += nAdd;
}
}
}
else if ( pIDSA->get(IDocumentSettingAccess::PARA_SPACE_MAX_AT_PAGES) &&
CastFlowFrm( pOwn )->HasParaSpaceAtPages( rThis.IsSctFrm() ) )
{
nUpper = pAttrs->GetULSpace().GetUpper();
}
}
// OD 2004-02-26 #i25029# - pass previous frame <pPrevFrm>
// to method <GetTopLine(..)>, if parameter <pPr> is set.
// Note: parameter <pPr> is set, if method is called from <SwTxtFrm::WouldFit(..)>
nUpper += pAttrs->GetTopLine( rThis, (pPr ? pPrevFrm : 0L) );
// OD 2004-03-12 #i11860# - consider value of new parameter <_bConsiderGrid>
// and use new method <GetUpperSpaceAmountConsideredForPageGrid(..)>
//consider grid in square page mode
if ( _bConsiderGrid && rThis.GetUpper()->GetFmt()->GetDoc()->IsSquaredPageMode() )
{
nUpper += _GetUpperSpaceAmountConsideredForPageGrid( nUpper );
}
delete pAccess;
return nUpper;
}
/** method to detemine the upper space amount, which is considered for
the page grid
OD 2004-03-12 #i11860#
Precondition: Position of frame is valid.
@author OD
*/
SwTwips SwFlowFrm::_GetUpperSpaceAmountConsideredForPageGrid(
const SwTwips _nUpperSpaceWithoutGrid ) const
{
SwTwips nUpperSpaceAmountConsideredForPageGrid = 0;
if ( rThis.IsInDocBody() && rThis.GetAttrSet()->GetParaGrid().GetValue() )
{
const SwPageFrm* pPageFrm = rThis.FindPageFrm();
GETGRID( pPageFrm )
if( pGrid )
{
const SwFrm* pBodyFrm = pPageFrm->FindBodyCont();
if ( pBodyFrm )
{
const long nGridLineHeight =
pGrid->GetBaseHeight() + pGrid->GetRubyHeight();
SWRECTFN( (&rThis) )
const SwTwips nBodyPrtTop = (pBodyFrm->*fnRect->fnGetPrtTop)();
const SwTwips nProposedPrtTop =
(*fnRect->fnYInc)( (rThis.Frm().*fnRect->fnGetTop)(),
_nUpperSpaceWithoutGrid );
const SwTwips nSpaceAbovePrtTop =
(*fnRect->fnYDiff)( nProposedPrtTop, nBodyPrtTop );
const SwTwips nSpaceOfCompleteLinesAbove =
nGridLineHeight * ( nSpaceAbovePrtTop / nGridLineHeight );
SwTwips nNewPrtTop =
(*fnRect->fnYInc)( nBodyPrtTop, nSpaceOfCompleteLinesAbove );
if ( (*fnRect->fnYDiff)( nProposedPrtTop, nNewPrtTop ) > 0 )
{
nNewPrtTop = (*fnRect->fnYInc)( nNewPrtTop, nGridLineHeight );
}
const SwTwips nNewUpperSpace =
(*fnRect->fnYDiff)( nNewPrtTop,
(rThis.Frm().*fnRect->fnGetTop)() );
nUpperSpaceAmountConsideredForPageGrid =
nNewUpperSpace - _nUpperSpaceWithoutGrid;
OSL_ENSURE( nUpperSpaceAmountConsideredForPageGrid >= 0,
"<SwFlowFrm::GetUpperSpaceAmountConsideredForPageGrid(..)> - negative space considered for page grid!" );
}
}
}
return nUpperSpaceAmountConsideredForPageGrid;
}
/** method to determent the upper space amount, which is considered for
the previous frame
OD 2004-03-11 #i11860#
@author OD
*/
SwTwips SwFlowFrm::_GetUpperSpaceAmountConsideredForPrevFrm() const
{
SwTwips nUpperSpaceAmountOfPrevFrm = 0;
const SwFrm* pPrevFrm = _GetPrevFrmForUpperSpaceCalc();
if ( pPrevFrm )
{
SwTwips nPrevLowerSpace = 0;
SwTwips nPrevLineSpacing = 0;
// #i102458#
bool bDummy = false;
GetSpacingValuesOfFrm( (*pPrevFrm), nPrevLowerSpace, nPrevLineSpacing, bDummy );
if ( nPrevLowerSpace > 0 || nPrevLineSpacing > 0 )
{
const IDocumentSettingAccess* pIDSA = rThis.GetUpper()->GetFmt()->getIDocumentSettingAccess();
if ( pIDSA->get(IDocumentSettingAccess::PARA_SPACE_MAX) ||
!pIDSA->get(IDocumentSettingAccess::OLD_LINE_SPACING) )
{
nUpperSpaceAmountOfPrevFrm = nPrevLowerSpace + nPrevLineSpacing;
}
else
{
nUpperSpaceAmountOfPrevFrm = Max( nPrevLowerSpace, nPrevLineSpacing );
}
}
}
return nUpperSpaceAmountOfPrevFrm;
}
/** method to determine the upper space amount, which is considered for
the previous frame and the page grid, if option 'Use former object
positioning' is OFF
OD 2004-03-18 #i11860#
@author OD
*/
SwTwips SwFlowFrm::GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() const
{
SwTwips nUpperSpaceAmountConsideredForPrevFrmAndPageGrid = 0;
if ( !rThis.GetUpper()->GetFmt()->getIDocumentSettingAccess()->get(IDocumentSettingAccess::USE_FORMER_OBJECT_POS) )
{
nUpperSpaceAmountConsideredForPrevFrmAndPageGrid =
_GetUpperSpaceAmountConsideredForPrevFrm() +
_GetUpperSpaceAmountConsideredForPageGrid( CalcUpperSpace( 0L, 0L, false ) );
}
return nUpperSpaceAmountConsideredForPrevFrmAndPageGrid;
}
/** calculation of lower space
OD 2004-03-02 #106629#
@author OD
*/
SwTwips SwFlowFrm::CalcLowerSpace( const SwBorderAttrs* _pAttrs ) const
{
SwTwips nLowerSpace = 0;
SwBorderAttrAccess* pAttrAccess = 0L;
if ( !_pAttrs )
{
pAttrAccess = new SwBorderAttrAccess( SwFrm::GetCache(), &rThis );
_pAttrs = pAttrAccess->Get();
}
sal_Bool bCommonBorder = sal_True;
if ( rThis.IsInSct() && rThis.GetUpper()->IsColBodyFrm() )
{
const SwSectionFrm* pSectFrm = rThis.FindSctFrm();
bCommonBorder = pSectFrm->GetFmt()->GetBalancedColumns().GetValue();
}
nLowerSpace = bCommonBorder ?
_pAttrs->GetBottomLine( rThis ) :
_pAttrs->CalcBottomLine();
// #i26250#
// - correct consideration of table frames
// - use new method <CalcAddLowerSpaceAsLastInTableCell(..)>
if ( ( ( rThis.IsTabFrm() && rThis.GetUpper()->IsInTab() ) ||
// #115759# - no lower spacing, if frame has a follow
( rThis.IsInTab() && !GetFollow() ) ) &&
!rThis.GetIndNext() )
{
nLowerSpace += CalcAddLowerSpaceAsLastInTableCell( _pAttrs );
}
delete pAttrAccess;
return nLowerSpace;
}
/** calculation of the additional space to be considered, if flow frame
is the last inside a table cell
OD 2004-07-16 #i26250#
@author OD
*/
SwTwips SwFlowFrm::CalcAddLowerSpaceAsLastInTableCell(
const SwBorderAttrs* _pAttrs ) const
{
SwTwips nAdditionalLowerSpace = 0;
if ( rThis.GetUpper()->GetFmt()->getIDocumentSettingAccess()->get(IDocumentSettingAccess::ADD_PARA_SPACING_TO_TABLE_CELLS) )
{
const SwFrm* pFrm = &rThis;
if ( pFrm->IsSctFrm() )
{
const SwSectionFrm* pSectFrm = static_cast<const SwSectionFrm*>(pFrm);
pFrm = pSectFrm->FindLastCntnt();
if ( pFrm && pFrm->IsInTab() )
{
const SwTabFrm* pTableFrm = pFrm->FindTabFrm();
if ( pSectFrm->IsAnLower( pTableFrm ) )
{
pFrm = pTableFrm;
}
}
}
SwBorderAttrAccess* pAttrAccess = 0L;
if ( !_pAttrs || pFrm != &rThis )
{
pAttrAccess = new SwBorderAttrAccess( SwFrm::GetCache(), pFrm );
_pAttrs = pAttrAccess->Get();
}
nAdditionalLowerSpace += _pAttrs->GetULSpace().GetLower();
delete pAttrAccess;
}
return nAdditionalLowerSpace;
}
/*************************************************************************
|*
|* sal_Bool SwFlowFrm::CheckMoveFwd()
|*
|* Beschreibung Moved den Frm vorwaerts wenn es durch die aktuellen
|* Bedingungen und Attribute notwendig erscheint.
|*
|*************************************************************************/
sal_Bool SwFlowFrm::CheckMoveFwd( sal_Bool &rbMakePage, sal_Bool bKeep, sal_Bool )
{
const SwFrm* pNxt = rThis.GetIndNext();
if ( bKeep && //!bMovedBwd &&
( !pNxt || ( pNxt->IsTxtFrm() && ((SwTxtFrm*)pNxt)->IsEmptyMaster() ) ) &&
( 0 != (pNxt = rThis.FindNext()) ) && IsKeepFwdMoveAllowed() )
{
if( pNxt->IsSctFrm() )
{ // Nicht auf leere SectionFrms hereinfallen
const SwFrm* pTmp = NULL;
while( pNxt && pNxt->IsSctFrm() &&
( !((SwSectionFrm*)pNxt)->GetSection() ||
0 == ( pTmp = ((SwSectionFrm*)pNxt)->ContainsAny() ) ) )
{
pNxt = pNxt->FindNext();
pTmp = NULL;
}
if( pTmp )
pNxt = pTmp; // the content of the next notempty sectionfrm
}
if( pNxt && pNxt->GetValidPosFlag() )
{
sal_Bool bMove = sal_False;
const SwSectionFrm *pSct = rThis.FindSctFrm();
if( pSct && !pSct->GetValidSizeFlag() )
{
const SwSectionFrm* pNxtSct = pNxt->FindSctFrm();
if( pNxtSct && pSct->IsAnFollow( pNxtSct ) )
bMove = sal_True;
}
else
bMove = sal_True;
if( bMove )
{
//Keep together with the following frame
MoveFwd( rbMakePage, sal_False );
return sal_True;
}
}
}
sal_Bool bMovedFwd = sal_False;
if ( rThis.GetIndPrev() )
{
if ( IsPrevObjMove() ) //Auf Objekte des Prev Ruecksicht nehmen?
{
bMovedFwd = sal_True;
if ( !MoveFwd( rbMakePage, sal_False ) )
rbMakePage = sal_False;
}
else
{
if ( IsPageBreak( sal_False ) )
{
while ( MoveFwd( rbMakePage, sal_True ) )
/* do nothing */;
rbMakePage = sal_False;
bMovedFwd = sal_True;
}
else if ( IsColBreak ( sal_False ) )
{
const SwPageFrm *pPage = rThis.FindPageFrm();
SwFrm *pCol = rThis.FindColFrm();
do
{ MoveFwd( rbMakePage, sal_False );
SwFrm *pTmp = rThis.FindColFrm();
if( pTmp != pCol )
{
bMovedFwd = sal_True;
pCol = pTmp;
}
else
break;
} while ( IsColBreak( sal_False ) );
if ( pPage != rThis.FindPageFrm() )
rbMakePage = sal_False;
}
}
}
return bMovedFwd;
}
/*************************************************************************
|*
|* sal_Bool SwFlowFrm::MoveFwd()
|*
|* Beschreibung Returnwert sagt, ob der Frm die Seite gewechselt hat.
|*
|*************************************************************************/
sal_Bool SwFlowFrm::MoveFwd( sal_Bool bMakePage, sal_Bool bPageBreak, sal_Bool bMoveAlways )
{
//!!!!MoveFtnCntFwd muss ggf. mitgepflegt werden.
SwFtnBossFrm *pOldBoss = rThis.FindFtnBossFrm();
if ( rThis.IsInFtn() )
return ((SwCntntFrm&)rThis).MoveFtnCntFwd( bMakePage, pOldBoss );
if( !IsFwdMoveAllowed() && !bMoveAlways )
{
sal_Bool bNoFwd = sal_True;
if( rThis.IsInSct() )
{
SwFtnBossFrm* pBoss = rThis.FindFtnBossFrm();
bNoFwd = !pBoss->IsInSct() || ( !pBoss->Lower()->GetNext() &&
!pBoss->GetPrev() );
}
// Allow the MoveFwd even if we do not have an IndPrev in these cases:
if ( rThis.IsInTab() &&
( !rThis.IsTabFrm() ||
( rThis.GetUpper()->IsInTab() &&
rThis.GetUpper()->FindTabFrm()->IsFwdMoveAllowed() ) ) &&
0 != const_cast<SwFrm&>(rThis).GetNextCellLeaf( MAKEPAGE_NONE ) )
{
bNoFwd = sal_False;
}
if( bNoFwd )
{
//Fuer PageBreak ist das Moven erlaubt, wenn der Frm nicht
//bereits der erste der Seite ist.
if ( !bPageBreak )
return sal_False;
const SwFrm *pCol = rThis.FindColFrm();
if ( !pCol || !pCol->GetPrev() )
return sal_False;
}
}
sal_Bool bSamePage = sal_True;
SwLayoutFrm *pNewUpper =
rThis.GetLeaf( bMakePage ? MAKEPAGE_INSERT : MAKEPAGE_NONE, sal_True );
if ( pNewUpper )
{
PROTOCOL_ENTER( &rThis, PROT_MOVE_FWD, 0, 0 );
SwPageFrm *pOldPage = pOldBoss->FindPageFrm();
//Wir moven uns und alle direkten Nachfolger vor den ersten
//CntntFrm unterhalb des neuen Uppers.
// Wenn unser NewUpper in einem SectionFrm liegt, muessen wir
// verhindern, dass sich dieser im Calc selbst zerstoert
SwSectionFrm* pSect = pNewUpper->FindSctFrm();
sal_Bool bUnlock = sal_False;
if( pSect )
{
// Wenn wir nur innerhalb unseres SectionFrms die Spalte wechseln,
// rufen wir lieber kein Calc, sonst wird noch der SectionFrm
// formatiert, der wiederum uns ruft etc.
if( pSect != rThis.FindSctFrm() )
{
bUnlock = !pSect->IsColLocked();
pSect->ColLock();
pNewUpper->Calc();
if( bUnlock )
pSect->ColUnlock();
}
}
// Do not calculate split cell frames.
else if ( !pNewUpper->IsCellFrm() || ((SwLayoutFrm*)pNewUpper)->Lower() )
pNewUpper->Calc();
SwFtnBossFrm *pNewBoss = pNewUpper->FindFtnBossFrm();
sal_Bool bBossChg = pNewBoss != pOldBoss;
pNewBoss = pNewBoss->FindFtnBossFrm( sal_True );
pOldBoss = pOldBoss->FindFtnBossFrm( sal_True );
SwPageFrm* pNewPage = pOldPage;
// First, we move the footnotes.
sal_Bool bFtnMoved = sal_False;
// #i26831#
// If pSect has just been created, the printing area of pSect has
// been calculated based on the first content of its follow.
// In this case we prefer to call a SimpleFormat for this new
// section after we inserted the contents. Otherwise the section
// frame will invalidate its lowers, if its printing area changes
// in SwSectionFrm::Format, which can cause loops.
const bool bForceSimpleFormat = pSect && pSect->HasFollow() &&
!pSect->ContainsAny();
if ( pNewBoss != pOldBoss )
{
pNewPage = pNewBoss->FindPageFrm();
bSamePage = pNewPage == pOldPage;
//Damit die Fussnoten nicht auf dumme Gedanken kommen
//setzen wir hier die Deadline.
SWRECTFN( pOldBoss )
SwSaveFtnHeight aHeight( pOldBoss,
(pOldBoss->Frm().*fnRect->fnGetBottom)() );
SwCntntFrm* pStart = rThis.IsCntntFrm() ?
(SwCntntFrm*)&rThis : ((SwLayoutFrm&)rThis).ContainsCntnt();
OSL_ENSURE( pStart || ( rThis.IsTabFrm() && !((SwTabFrm&)rThis).Lower() ),
"MoveFwd: Missing Content" );
SwLayoutFrm* pBody = pStart ? ( pStart->IsTxtFrm() ?
(SwLayoutFrm*)((SwTxtFrm*)pStart)->FindBodyFrm() : 0 ) : 0;
if( pBody )
bFtnMoved = pBody->MoveLowerFtns( pStart, pOldBoss, pNewBoss,
sal_False);
}
// Bei SectionFrms ist es moeglich, dass wir selbst durch pNewUpper->Calc()
// bewegt wurden, z. B. in den pNewUpper.
// MoveSubTree bzw. PasteTree ist auf so etwas nicht vorbereitet.
if( pNewUpper != rThis.GetUpper() )
{
// #i27145#
SwSectionFrm* pOldSct = 0;
if ( rThis.GetUpper()->IsSctFrm() )
{
pOldSct = static_cast<SwSectionFrm*>(rThis.GetUpper());
}
MoveSubTree( pNewUpper, pNewUpper->Lower() );
// #i27145#
if ( pOldSct && pOldSct->GetSection() )
{
// Prevent loops by setting the new height at
// the section frame if footnotes have been moved.
// Otherwise the call of SwLayNotify::~SwLayNotify() for
// the (invalid) section frame will invalidate the first
// lower of its follow, because it grows due to the removed
// footnotes.
// Note: If pOldSct has become empty during MoveSubTree, it
// has already been scheduled for removal. No SimpleFormat
// for these.
pOldSct->SimpleFormat();
}
// #i26831#
if ( bForceSimpleFormat )
{
pSect->SimpleFormat();
}
if ( bFtnMoved && !bSamePage )
{
pOldPage->UpdateFtnNum();
pNewPage->UpdateFtnNum();
}
if( bBossChg )
{
rThis.Prepare( PREP_BOSS_CHGD, 0, sal_False );
if( !bSamePage )
{
ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
if ( pSh && !pSh->Imp()->IsUpdateExpFlds() )
pSh->GetDoc()->SetNewFldLst(true); //Wird von CalcLayout() hinterher erledigt!
pNewPage->InvalidateSpelling();
pNewPage->InvalidateSmartTags(); // SMARTTAGS
pNewPage->InvalidateAutoCompleteWords();
pNewPage->InvalidateWordCount();
}
}
}
// OD 30.10.2002 #97265# - no <CheckPageDesc(..)> in online layout
const ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
if ( !( pSh && pSh->GetViewOptions()->getBrowseMode() ) )
{
// #i106452#
// check page description not only in situation with sections.
if ( !bSamePage &&
( rThis.GetAttrSet()->GetPageDesc().GetPageDesc() ||
pOldPage->GetPageDesc()->GetFollow() != pNewPage->GetPageDesc() ) )
{
SwFrm::CheckPageDescs( pNewPage, sal_False );
}
}
}
return bSamePage;
}
/*************************************************************************
|*
|* sal_Bool SwFlowFrm::MoveBwd()
|*
|* Beschreibung Returnwert sagt, ob der Frm die Seite wechseln soll.
|* Sollte von abgeleiteten Klassen gerufen werden.
|* Das moven selbst muessen die abgeleiteten uebernehmen.
|*
|*************************************************************************/
sal_Bool SwFlowFrm::MoveBwd( sal_Bool &rbReformat )
{
SwFlowFrm::SetMoveBwdJump( sal_False );
SwFtnFrm* pFtn = rThis.FindFtnFrm();
if ( pFtn && pFtn->IsBackMoveLocked() )
return sal_False;
// #115759# - text frames, which are directly inside
// tables aren't allowed to move backward.
if ( rThis.IsTxtFrm() && rThis.IsInTab() )
{
const SwLayoutFrm* pUpperFrm = rThis.GetUpper();
while ( pUpperFrm )
{
if ( pUpperFrm->IsTabFrm() )
{
return sal_False;
}
else if ( pUpperFrm->IsColumnFrm() && pUpperFrm->IsInSct() )
{
break;
}
pUpperFrm = pUpperFrm->GetUpper();
}
}
SwFtnBossFrm * pOldBoss = rThis.FindFtnBossFrm();
SwPageFrm * const pOldPage = pOldBoss->FindPageFrm();
SwLayoutFrm *pNewUpper = 0;
sal_Bool bCheckPageDescs = sal_False;
bool bCheckPageDescOfNextPage = false;
if ( pFtn )
{
//Wenn die Fussnote bereits auf der gleichen Seite/Spalte wie die Referenz
//steht, ist nix mit zurueckfliessen. Die breaks brauche fuer die
//Fussnoten nicht geprueft zu werden.
// #i37084# FindLastCntnt does not necessarily
// have to have a result != 0
SwFrm* pRef = 0;
const bool bEndnote = pFtn->GetAttr()->GetFtn().IsEndNote();
if( bEndnote && pFtn->IsInSct() )
{
SwSectionFrm* pSect = pFtn->FindSctFrm();
if( pSect->IsEndnAtEnd() )
pRef = pSect->FindLastCntnt( FINDMODE_LASTCNT );
}
if( !pRef )
pRef = pFtn->GetRef();
OSL_ENSURE( pRef, "MoveBwd: Endnote for an empty section?" );
if( !bEndnote )
pOldBoss = pOldBoss->FindFtnBossFrm( sal_True );
SwFtnBossFrm *pRefBoss = pRef->FindFtnBossFrm( !bEndnote );
if ( pOldBoss != pRefBoss &&
// OD 08.11.2002 #104840# - use <SwLayoutFrm::IsBefore(..)>
( !bEndnote ||
pRefBoss->IsBefore( pOldBoss ) )
)
pNewUpper = rThis.GetLeaf( MAKEPAGE_FTN, sal_False );
}
else if ( IsPageBreak( sal_True ) ) //PageBreak zu beachten?
{
//Wenn auf der vorhergehenden Seite kein Frm im Body steht,
//so ist das Zurueckfliessen trotz Pagebreak sinnvoll
//(sonst: leere Seite).
//Natuerlich muessen Leereseiten geflissentlich uebersehen werden!
const SwFrm *pFlow = &rThis;
do
{
pFlow = pFlow->FindPrev();
} while ( pFlow &&
( pFlow->FindPageFrm() == pOldPage ||
!pFlow->IsInDocBody() ) );
if ( pFlow )
{
long nDiff = pOldPage->GetPhyPageNum() - pFlow->GetPhyPageNum();
if ( nDiff > 1 )
{
if ( ((SwPageFrm*)pOldPage->GetPrev())->IsEmptyPage() )
nDiff -= 1;
if ( nDiff > 1 )
{
pNewUpper = rThis.GetLeaf( MAKEPAGE_NONE, sal_False );
// #i53139#
// Now <pNewUpper> is a previous layout frame, which contains
// content. But the new upper layout frame has to be the next one.
// Thus, hack for issue i14206 no longer needed, but fix for issue 114442
// #136024# - correct fix for i53139
// Check for wrong page description before using next new upper.
// #i66051# - further correction of fix for i53139
// Check for correct type of new next upper layout frame
// #136538# - another correction of fix for i53139
// Assumption, that in all cases <pNewUpper> is a previous
// layout frame, which contains content, is wrong.
// #136538# - another correction of fix for i53139
// Beside type check, check also, if proposed new next upper
// frame is inside the same frame types.
// #i73194# - and yet another correction
// of fix for i53139:
// Assure that the new next upper layout frame doesn't
// equal the current one.
// E.g.: content is on page 3, on page 2 is only a 'ghost'
// section and on page 1 is normal content. Method <FindPrev(..)>
// will find the last content of page 1, but <GetLeaf(..)>
// returns new upper on page 2.
if ( pNewUpper->Lower() )
{
SwLayoutFrm* pNewNextUpper = pNewUpper->GetLeaf( MAKEPAGE_NONE, sal_True );
if ( pNewNextUpper &&
pNewNextUpper != rThis.GetUpper() &&
pNewNextUpper->GetType() == pNewUpper->GetType() &&
pNewNextUpper->IsInDocBody() == pNewUpper->IsInDocBody() &&
pNewNextUpper->IsInFtn() == pNewUpper->IsInFtn() &&
pNewNextUpper->IsInTab() == pNewUpper->IsInTab() &&
pNewNextUpper->IsInSct() == pNewUpper->IsInSct() &&
!rThis.WrongPageDesc( pNewNextUpper->FindPageFrm() ) )
{
pNewUpper = pNewNextUpper;
bCheckPageDescOfNextPage = true;
}
}
bCheckPageDescs = sal_True;
}
}
}
}
else if ( IsColBreak( sal_True ) )
{
//Wenn in der vorhergehenden Spalte kein CntntFrm steht, so ist
//das Zurueckfliessen trotz ColumnBreak sinnvoll
//(sonst: leere Spalte).
if( rThis.IsInSct() )
{
pNewUpper = rThis.GetLeaf( MAKEPAGE_NONE, sal_False );
if( pNewUpper && !SwFlowFrm::IsMoveBwdJump() &&
( pNewUpper->ContainsCntnt() ||
( ( !pNewUpper->IsColBodyFrm() ||
!pNewUpper->GetUpper()->GetPrev() ) &&
!pNewUpper->FindSctFrm()->GetPrev() ) ) )
{
pNewUpper = 0;
}
// #i53139#
// #i69409# - check <pNewUpper>
// #i71065# - check <SwFlowFrm::IsMoveBwdJump()>
else if ( pNewUpper && !SwFlowFrm::IsMoveBwdJump() )
{
// Now <pNewUpper> is a previous layout frame, which
// contains content. But the new upper layout frame
// has to be the next one.
// #136024# - correct fix for i53139
// Check for wrong page description before using next new upper.
// #i66051# - further correction of fix for i53139
// Check for correct type of new next upper layout frame
// #136538# - another correction of fix for i53139
// Beside type check, check also, if proposed new next upper
// frame is inside the same frame types.
SwLayoutFrm* pNewNextUpper = pNewUpper->GetLeaf( MAKEPAGE_NOSECTION, sal_True );
if ( pNewNextUpper &&
pNewNextUpper->GetType() == pNewUpper->GetType() &&
pNewNextUpper->IsInDocBody() == pNewUpper->IsInDocBody() &&
pNewNextUpper->IsInFtn() == pNewUpper->IsInFtn() &&
pNewNextUpper->IsInTab() == pNewUpper->IsInTab() &&
pNewNextUpper->IsInSct() == pNewUpper->IsInSct() &&
!rThis.WrongPageDesc( pNewNextUpper->FindPageFrm() ) )
{
pNewUpper = pNewNextUpper;
}
}
}
else
{
const SwFrm *pCol = rThis.FindColFrm();
sal_Bool bGoOn = sal_True;
sal_Bool bJump = sal_False;
do
{
if ( pCol->GetPrev() )
pCol = pCol->GetPrev();
else
{
bGoOn = sal_False;
pCol = rThis.GetLeaf( MAKEPAGE_NONE, sal_False );
}
if ( pCol )
{
// ColumnFrms jetzt mit BodyFrm
SwLayoutFrm* pColBody = pCol->IsColumnFrm() ?
(SwLayoutFrm*)((SwLayoutFrm*)pCol)->Lower() :
(SwLayoutFrm*)pCol;
if ( pColBody->ContainsCntnt() )
{
bGoOn = sal_False; // Hier gibt's Inhalt, wir akzeptieren diese
// nur, wenn GetLeaf() das MoveBwdJump-Flag gesetzt hat.
if( SwFlowFrm::IsMoveBwdJump() )
{
pNewUpper = pColBody;
// #i53139#
// Now <pNewUpper> is a previous layout frame, which
// contains content. But the new upper layout frame
// has to be the next one.
// #136024# - correct fix for i53139
// Check for wrong page description before using next new upper.
// #i66051# - further correction of fix for i53139
// Check for correct type of new next upper layout frame
// #136538# - another correction of fix for i53139
// Beside type check, check also, if proposed new next upper
// frame is inside the same frame types.
// #i71065#
// Check that the proposed new next upper layout
// frame isn't the current one.
SwLayoutFrm* pNewNextUpper = pNewUpper->GetLeaf( MAKEPAGE_NONE, sal_True );
if ( pNewNextUpper &&
pNewNextUpper != rThis.GetUpper() &&
pNewNextUpper->GetType() == pNewUpper->GetType() &&
pNewNextUpper->IsInDocBody() == pNewUpper->IsInDocBody() &&
pNewNextUpper->IsInFtn() == pNewUpper->IsInFtn() &&
pNewNextUpper->IsInTab() == pNewUpper->IsInTab() &&
pNewNextUpper->IsInSct() == pNewUpper->IsInSct() &&
!rThis.WrongPageDesc( pNewNextUpper->FindPageFrm() ) )
{
pNewUpper = pNewNextUpper;
}
}
}
else
{
if( pNewUpper ) // Wir hatten schon eine leere Spalte, haben
bJump = sal_True; // also eine uebersprungen
pNewUpper = pColBody; // Diese leere Spalte kommt in Frage,
// trotzdem weitersuchen
}
}
} while( bGoOn );
if( bJump )
SwFlowFrm::SetMoveBwdJump( sal_True );
}
}
else //Keine Breaks also kann ich zurueckfliessen
pNewUpper = rThis.GetLeaf( MAKEPAGE_NONE, sal_False );
// #i27801# - no move backward of 'master' text frame,
// if - due to its object positioning - it isn't allowed to be on the new page frame
// #i44049# - add another condition for not moving backward
// If one of its objects has restarted the layout process, moving backward
// isn't sensible either.
// #i47697# - refine condition made for issue i44049
// - allow move backward as long as the anchored object is only temporarily
// positions considering its wrapping style.
if ( pNewUpper &&
rThis.IsTxtFrm() && !IsFollow() )
{
sal_uInt32 nToPageNum( 0L );
const bool bMoveFwdByObjPos = SwLayouter::FrmMovedFwdByObjPos(
*(pOldPage->GetFmt()->GetDoc()),
static_cast<SwTxtFrm&>(rThis),
nToPageNum );
if ( bMoveFwdByObjPos &&
pNewUpper->FindPageFrm()->GetPhyPageNum() < nToPageNum )
{
pNewUpper = 0;
}
// #i44049# - check, if one of its anchored objects
// has restarted the layout process.
else if ( rThis.GetDrawObjs() )
{
sal_uInt32 i = 0;
for ( ; i < rThis.GetDrawObjs()->Count(); ++i )
{
SwAnchoredObject* pAnchoredObj = (*rThis.GetDrawObjs())[i];
// #i47697# - refine condition - see above
if ( pAnchoredObj->RestartLayoutProcess() &&
!pAnchoredObj->IsTmpConsiderWrapInfluence() )
{
pNewUpper = 0;
break;
}
}
}
}
//Fuer Follows ist das zurueckfliessen nur dann erlaubt wenn in der
//neuen Umgebung kein Nachbar existiert (denn dieses waere der Master).
//(6677)Wenn allerdings leere Blaetter uebersprungen wurden wird doch gemoved.
if ( pNewUpper && IsFollow() && pNewUpper->Lower() )
{
// #i79774#
// neglect empty sections in proposed new upper frame
bool bProposedNewUpperContainsOnlyEmptySections( true );
{
const SwFrm* pLower( pNewUpper->Lower() );
while ( pLower )
{
if ( pLower->IsSctFrm() &&
!dynamic_cast<const SwSectionFrm*>(pLower)->GetSection() )
{
pLower = pLower->GetNext();
continue;
}
else
{
bProposedNewUpperContainsOnlyEmptySections = false;
break;
}
}
}
if ( !bProposedNewUpperContainsOnlyEmptySections )
{
if ( SwFlowFrm::IsMoveBwdJump() )
{
//Nicht hinter den Master sondern in das naechstfolgende leere
//Blatt moven.
SwFrm *pFrm = pNewUpper->Lower();
while ( pFrm->GetNext() )
pFrm = pFrm->GetNext();
pNewUpper = pFrm->GetLeaf( MAKEPAGE_INSERT, sal_True );
if( pNewUpper == rThis.GetUpper() ) //Landen wir wieder an der gleichen Stelle?
pNewUpper = NULL; //dann eruebrigt sich das Moven
}
else
pNewUpper = 0;
}
}
if ( pNewUpper && !ShouldBwdMoved( pNewUpper, sal_True, rbReformat ) )
{
if( !pNewUpper->Lower() )
{
if( pNewUpper->IsFtnContFrm() )
{
pNewUpper->Cut();
delete pNewUpper;
}
else
{
SwSectionFrm* pSectFrm = pNewUpper->FindSctFrm();
// #126020# - adjust check for empty section
// #130797# - correct fix #126020#
if ( pSectFrm && !pSectFrm->IsColLocked() &&
!pSectFrm->ContainsCntnt() && !pSectFrm->ContainsAny( true ) )
{
pSectFrm->DelEmpty( sal_True );
delete pSectFrm;
rThis.bValidPos = sal_True;
}
}
}
pNewUpper = 0;
}
// OD 2004-05-26 #i21478# - don't move backward, if flow frame wants to
// keep with next frame and next frame is locked.
// #i38232# - If next frame is a table, do *not* check,
// if it's locked.
if ( pNewUpper && !IsFollow() &&
rThis.GetAttrSet()->GetKeep().GetValue() && rThis.GetIndNext() )
{
SwFrm* pIndNext = rThis.GetIndNext();
// #i38232#
if ( !pIndNext->IsTabFrm() )
{
// get first content of section, while empty sections are skipped
while ( pIndNext && pIndNext->IsSctFrm() )
{
if( static_cast<SwSectionFrm*>(pIndNext)->GetSection() )
{
SwFrm* pTmp = static_cast<SwSectionFrm*>(pIndNext)->ContainsAny();
if ( pTmp )
{
pIndNext = pTmp;
break;
}
}
pIndNext = pIndNext->GetIndNext();
}
OSL_ENSURE( !pIndNext || pIndNext->ISA(SwTxtFrm),
"<SwFlowFrm::MovedBwd(..)> - incorrect next found." );
if ( pIndNext && pIndNext->IsFlowFrm() &&
SwFlowFrm::CastFlowFrm(pIndNext)->IsJoinLocked() )
{
pNewUpper = 0L;
}
}
}
// #i65250#
// layout loop control for flowing content again and again moving
// backward under the same layout condition.
if ( pNewUpper && !IsFollow() &&
pNewUpper != rThis.GetUpper() &&
SwLayouter::MoveBwdSuppressed( *(pOldPage->GetFmt()->GetDoc()),
*this, *pNewUpper ) )
{
SwLayoutFrm* pNextNewUpper = pNewUpper->GetLeaf(
( !rThis.IsSctFrm() && rThis.IsInSct() )
? MAKEPAGE_NOSECTION
: MAKEPAGE_NONE,
sal_True );
// #i73194# - make code robust
OSL_ENSURE( pNextNewUpper, "<SwFlowFrm::MoveBwd(..)> - missing next new upper" );
if ( pNextNewUpper &&
( pNextNewUpper == rThis.GetUpper() ||
pNextNewUpper->GetType() != rThis.GetUpper()->GetType() ) )
{
pNewUpper = 0L;
OSL_FAIL( "<SwFlowFrm::MoveBwd(..)> - layout loop control for layout action <Move Backward> applied!" );
}
}
OSL_ENSURE( pNewUpper != rThis.GetUpper(),
"<SwFlowFrm::MoveBwd(..)> - moving backward to the current upper frame!? -> Please inform OD." );
if ( pNewUpper )
{
PROTOCOL_ENTER( &rThis, PROT_MOVE_BWD, 0, 0 );
if ( pNewUpper->IsFtnContFrm() )
{
//Kann sein, dass ich einen Container bekam.
SwFtnFrm *pOld = rThis.FindFtnFrm();
SwFtnFrm *pNew = new SwFtnFrm( pOld->GetFmt(), pOld,
pOld->GetRef(), pOld->GetAttr() );
if ( pOld->GetMaster() )
{
pNew->SetMaster( pOld->GetMaster() );
pOld->GetMaster()->SetFollow( pNew );
}
pNew->SetFollow( pOld );
pOld->SetMaster( pNew );
pNew->Paste( pNewUpper );
pNewUpper = pNew;
}
if( pNewUpper->IsFtnFrm() && rThis.IsInSct() )
{
SwSectionFrm* pSct = rThis.FindSctFrm();
//Wenn wir in einem Bereich in einer Fussnote stecken, muss im
//neuen Upper ggf. ein SwSectionFrm angelegt werden
if( pSct->IsInFtn() )
{
SwFrm* pTmp = pNewUpper->Lower();
if( pTmp )
{
while( pTmp->GetNext() )
pTmp = pTmp->GetNext();
if( !pTmp->IsSctFrm() ||
((SwSectionFrm*)pTmp)->GetFollow() != pSct )
pTmp = NULL;
}
if( pTmp )
pNewUpper = (SwSectionFrm*)pTmp;
else
{
pSct = new SwSectionFrm( *pSct, sal_True );
pSct->Paste( pNewUpper );
pSct->Init();
pNewUpper = pSct;
pSct->SimpleFormat();
}
}
}
sal_Bool bUnlock = sal_False;
sal_Bool bFollow = sal_False;
//Section locken, sonst kann sie bei Fluss des einzigen Cntnt etwa
//von zweiter in die erste Spalte zerstoert werden.
SwSectionFrm* pSect = pNewUpper->FindSctFrm();
if( pSect )
{
bUnlock = !pSect->IsColLocked();
pSect->ColLock();
bFollow = pSect->HasFollow();
}
pNewUpper->Calc();
rThis.Cut();
//
// optimization: format section, if its size is invalidated and if it's
// the new parent of moved backward frame.
bool bFormatSect( false );
if( bUnlock )
{
pSect->ColUnlock();
if( pSect->HasFollow() != bFollow )
{
pSect->InvalidateSize();
// - optimization
if ( pSect == pNewUpper )
bFormatSect = true;
}
}
rThis.Paste( pNewUpper );
// - optimization
if ( bFormatSect )
pSect->Calc();
SwPageFrm *pNewPage = rThis.FindPageFrm();
if( pNewPage != pOldPage )
{
rThis.Prepare( PREP_BOSS_CHGD, (const void*)pOldPage, sal_False );
ViewShell *pSh = rThis.getRootFrm()->GetCurrShell();
if ( pSh && !pSh->Imp()->IsUpdateExpFlds() )
pSh->GetDoc()->SetNewFldLst(true); //Wird von CalcLayout() hinterher eledigt!
pNewPage->InvalidateSpelling();
pNewPage->InvalidateSmartTags(); // SMARTTAGS
pNewPage->InvalidateAutoCompleteWords();
pNewPage->InvalidateWordCount();
// OD 30.10.2002 #97265# - no <CheckPageDesc(..)> in online layout
if ( !( pSh && pSh->GetViewOptions()->getBrowseMode() ) )
{
if ( bCheckPageDescs && pNewPage->GetNext() )
{
SwPageFrm* pStartPage = bCheckPageDescOfNextPage ?
pNewPage :
(SwPageFrm*)pNewPage->GetNext();
SwFrm::CheckPageDescs( pStartPage, sal_False);
}
else if ( rThis.GetAttrSet()->GetPageDesc().GetPageDesc() )
{
//Erste Seite wird etwa durch Ausblenden eines Bereiches leer
SwFrm::CheckPageDescs( (SwPageFrm*)pNewPage, sal_False);
}
}
}
}
return pNewUpper != 0;
}
/*************************************************************************
|*
|* SwFlowFrm::CastFlowFrm
|*
|*************************************************************************/
SwFlowFrm *SwFlowFrm::CastFlowFrm( SwFrm *pFrm )
{
if ( pFrm->IsCntntFrm() )
return (SwCntntFrm*)pFrm;
if ( pFrm->IsTabFrm() )
return (SwTabFrm*)pFrm;
if ( pFrm->IsSctFrm() )
return (SwSectionFrm*)pFrm;
return 0;
}
const SwFlowFrm *SwFlowFrm::CastFlowFrm( const SwFrm *pFrm )
{
if ( pFrm->IsCntntFrm() )
return (SwCntntFrm*)pFrm;
if ( pFrm->IsTabFrm() )
return (SwTabFrm*)pFrm;
if ( pFrm->IsSctFrm() )
return (SwSectionFrm*)pFrm;
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|