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
|
/* -*- 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 <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/chart/XChartDocument.hpp>
#include <com/sun/star/chart2/XChartDocument.hpp>
#include <com/sun/star/embed/XClassifiedObject.hpp>
#include <com/sun/star/embed/XEmbeddedObject.hpp>
#include <scitems.hxx>
#include <editeng/eeitem.hxx>
#include <editeng/frmdiritem.hxx>
#include <sot/exchange.hxx>
#include <svx/objfac3d.hxx>
#include <svx/xtable.hxx>
#include <svx/svdoutl.hxx>
#include <svx/svditer.hxx>
#include <svx/svdlayer.hxx>
#include <svx/svdocapt.hxx>
#include <svx/svdograf.hxx>
#include <svx/svdoole2.hxx>
#include <svx/svdundo.hxx>
#include <svx/sdsxyitm.hxx>
#include <svx/svxids.hrc>
#include <i18nlangtag/mslangid.hxx>
#include <editeng/unolingu.hxx>
#include <svx/drawitem.hxx>
#include <editeng/fhgtitem.hxx>
#include <editeng/scriptspaceitem.hxx>
#include <sfx2/objsh.hxx>
#include <svl/itempool.hxx>
#include <vcl/canvastools.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
#include <tools/globname.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <drwlayer.hxx>
#include <drawpage.hxx>
#include <global.hxx>
#include <document.hxx>
#include <userdat.hxx>
#include <markdata.hxx>
#include <globstr.hrc>
#include <scresid.hxx>
#include <scmod.hxx>
#include <postit.hxx>
#include <attrib.hxx>
#include <charthelper.hxx>
#include <table.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx>
#include <vcl/fieldvalues.hxx>
#include <memory>
namespace com::sun::star::embed { class XEmbeddedObject; }
#define DET_ARROW_OFFSET 1000
using namespace ::com::sun::star;
static E3dObjFactory* pF3d = nullptr;
static sal_uInt16 nInst = 0;
SfxObjectShell* ScDrawLayer::pGlobalDrawPersist = nullptr;
bool bDrawIsInUndo = false; //TODO: Member
ScUndoObjData::ScUndoObjData( SdrObject* pObjP, const ScAddress& rOS, const ScAddress& rOE,
const ScAddress& rNS, const ScAddress& rNE ) :
SdrUndoObj( *pObjP ),
aOldStt( rOS ),
aOldEnd( rOE ),
aNewStt( rNS ),
aNewEnd( rNE )
{
}
ScUndoObjData::~ScUndoObjData()
{
}
void ScUndoObjData::Undo()
{
ScDrawObjData* pData = ScDrawLayer::GetObjData( pObj );
OSL_ENSURE(pData,"ScUndoObjData: Data missing");
if (pData)
{
pData->maStart = aOldStt;
pData->maEnd = aOldEnd;
}
// Undo also an untransformed anchor
pData = ScDrawLayer::GetNonRotatedObjData( pObj );
if (pData)
{
pData->maStart = aOldStt;
pData->maEnd = aOldEnd;
}
}
void ScUndoObjData::Redo()
{
ScDrawObjData* pData = ScDrawLayer::GetObjData( pObj );
OSL_ENSURE(pData,"ScUndoObjData: Data missing");
if (pData)
{
pData->maStart = aNewStt;
pData->maEnd = aNewEnd;
}
// Redo also an untransformed anchor
pData = ScDrawLayer::GetNonRotatedObjData( pObj );
if (pData)
{
pData->maStart = aNewStt;
pData->maEnd = aNewEnd;
}
}
ScUndoAnchorData::ScUndoAnchorData( SdrObject* pObjP, ScDocument* pDoc, SCTAB nTab ) :
SdrUndoObj( *pObjP ),
mpDoc( pDoc ),
mnTab( nTab )
{
mbWasCellAnchored = ScDrawLayer::IsCellAnchored( *pObjP );
mbWasResizeWithCell = ScDrawLayer::IsResizeWithCell( *pObjP );
}
ScUndoAnchorData::~ScUndoAnchorData()
{
}
void ScUndoAnchorData::Undo()
{
// Trigger Object Change
if (pObj->IsInserted() && pObj->getSdrPageFromSdrObject())
{
SdrHint aHint(SdrHintKind::ObjectChange, *pObj);
pObj->getSdrModelFromSdrObject().Broadcast(aHint);
}
if (mbWasCellAnchored)
ScDrawLayer::SetCellAnchoredFromPosition(*pObj, *mpDoc, mnTab, mbWasResizeWithCell);
else
ScDrawLayer::SetPageAnchored( *pObj );
}
void ScUndoAnchorData::Redo()
{
if (mbWasCellAnchored)
ScDrawLayer::SetPageAnchored( *pObj );
else
ScDrawLayer::SetCellAnchoredFromPosition(*pObj, *mpDoc, mnTab, mbWasResizeWithCell);
// Trigger Object Change
if (pObj->IsInserted() && pObj->getSdrPageFromSdrObject())
{
SdrHint aHint(SdrHintKind::ObjectChange, *pObj);
pObj->getSdrModelFromSdrObject().Broadcast(aHint);
}
}
ScTabDeletedHint::ScTabDeletedHint( SCTAB nTabNo ) :
nTab( nTabNo )
{
}
ScTabDeletedHint::~ScTabDeletedHint()
{
}
ScTabSizeChangedHint::ScTabSizeChangedHint( SCTAB nTabNo ) :
nTab( nTabNo )
{
}
ScTabSizeChangedHint::~ScTabSizeChangedHint()
{
}
#define MAXMM 10000000
static long TwipsToHmm (long nVal)
{
return static_cast< long >( vcl::ConvertDoubleValue (static_cast<sal_Int64>(nVal), 0, 0,
FieldUnit::TWIP, FieldUnit::MM_100TH) );
}
static long HmmToTwips (long nVal)
{
return static_cast< long > ( vcl::ConvertDoubleValue (static_cast<sal_Int64>(nVal), 0, 0,
FieldUnit::MM_100TH, FieldUnit::TWIP) );
}
static void lcl_ReverseTwipsToMM( tools::Rectangle& rRect )
{
rRect.SetLeft( HmmToTwips( rRect.Left() ) );
rRect.SetRight( HmmToTwips( rRect.Right() ) );
rRect.SetTop( HmmToTwips( rRect.Top()) );
rRect.SetBottom( HmmToTwips(rRect.Bottom()) );
}
static ScRange lcl_getClipRangeFromClipDoc(ScDocument* pClipDoc, SCTAB nClipTab)
{
if (!pClipDoc)
return ScRange();
SCCOL nClipStartX;
SCROW nClipStartY;
SCCOL nClipEndX;
SCROW nClipEndY;
pClipDoc->GetClipStart(nClipStartX, nClipStartY);
pClipDoc->GetClipArea(nClipEndX, nClipEndY, true);
nClipEndX = nClipEndX + nClipStartX;
nClipEndY += nClipStartY; // GetClipArea returns the difference
return ScRange(nClipStartX, nClipStartY, nClipTab, nClipEndX, nClipEndY, nClipTab);
}
ScDrawLayer::ScDrawLayer( ScDocument* pDocument, const OUString& rName ) :
FmFormModel(
nullptr,
pGlobalDrawPersist ? pGlobalDrawPersist : (pDocument ? pDocument->GetDocumentShell() : nullptr)),
aName( rName ),
pDoc( pDocument ),
bRecording( false ),
bAdjustEnabled( true ),
bHyphenatorSet( false )
{
pGlobalDrawPersist = nullptr; // Only use once
SfxObjectShell* pObjSh = pDocument ? pDocument->GetDocumentShell() : nullptr;
XColorListRef pXCol = XColorList::GetStdColorList();
if ( pObjSh )
{
SetObjectShell( pObjSh );
// set color table
const SvxColorListItem* pColItem = pObjSh->GetItem( SID_COLOR_TABLE );
if ( pColItem )
pXCol = pColItem->GetColorList();
}
SetPropertyList( static_cast<XPropertyList *> (pXCol.get()) );
SetSwapGraphics();
SetScaleUnit(MapUnit::Map100thMM);
SfxItemPool& rPool = GetItemPool();
rPool.SetDefaultMetric(MapUnit::Map100thMM);
SvxFrameDirectionItem aModeItem( SvxFrameDirection::Environment, EE_PARA_WRITINGDIR );
rPool.SetPoolDefaultItem( aModeItem );
// #i33700#
// Set shadow distance defaults as PoolDefaultItems. Details see bug.
rPool.SetPoolDefaultItem(makeSdrShadowXDistItem(300));
rPool.SetPoolDefaultItem(makeSdrShadowYDistItem(300));
// default for script spacing depends on locale, see SdDrawDocument ctor in sd
LanguageType eOfficeLanguage = Application::GetSettings().GetLanguageTag().getLanguageType();
if (MsLangId::isKorean(eOfficeLanguage) || eOfficeLanguage == LANGUAGE_JAPANESE)
{
// secondary is edit engine pool
rPool.GetSecondaryPool()->SetPoolDefaultItem( SvxScriptSpaceItem( false, EE_PARA_ASIANCJKSPACING ) );
}
rPool.FreezeIdRanges(); // the pool is also used directly
SdrLayerAdmin& rAdmin = GetLayerAdmin();
rAdmin.NewLayer("vorne", sal_uInt8(SC_LAYER_FRONT));
rAdmin.NewLayer("hinten", sal_uInt8(SC_LAYER_BACK));
rAdmin.NewLayer("intern", sal_uInt8(SC_LAYER_INTERN));
rAdmin.NewLayer("Controls", sal_uInt8(SC_LAYER_CONTROLS));
rAdmin.SetControlLayerName("Controls");
rAdmin.NewLayer("hidden", sal_uInt8(SC_LAYER_HIDDEN));
// "Controls" is new - must also be created when loading
// Set link for URL-Fields
ScModule* pScMod = SC_MOD();
Outliner& rOutliner = GetDrawOutliner();
rOutliner.SetCalcFieldValueHdl( LINK( pScMod, ScModule, CalcFieldValueHdl ) );
Outliner& rHitOutliner = GetHitTestOutliner();
rHitOutliner.SetCalcFieldValueHdl( LINK( pScMod, ScModule, CalcFieldValueHdl ) );
// set FontHeight pool defaults without changing static SdrEngineDefaults
SfxItemPool* pOutlinerPool = rOutliner.GetEditTextObjectPool();
if ( pOutlinerPool )
{
m_pItemPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT )); // 12Pt
m_pItemPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT_CJK )); // 12Pt
m_pItemPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT_CTL )); // 12Pt
}
SfxItemPool* pHitOutlinerPool = rHitOutliner.GetEditTextObjectPool();
if ( pHitOutlinerPool )
{
pHitOutlinerPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT )); // 12Pt
pHitOutlinerPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT_CJK )); // 12Pt
pHitOutlinerPool->SetPoolDefaultItem(SvxFontHeightItem( 423, 100, EE_CHAR_FONTHEIGHT_CTL )); // 12Pt
}
// initial undo mode as in Calc document
if( pDoc )
EnableUndo( pDoc->IsUndoEnabled() );
// URL-Buttons have no handler anymore, all is done by themselves
if( !nInst++ )
{
pF3d = new E3dObjFactory;
}
}
ScDrawLayer::~ScDrawLayer()
{
Broadcast(SdrHint(SdrHintKind::ModelCleared));
ClearModel(true);
pUndoGroup.reset();
if( !--nInst )
{
delete pF3d;
pF3d = nullptr;
}
}
void ScDrawLayer::UseHyphenator()
{
if (!bHyphenatorSet)
{
css::uno::Reference< css::linguistic2::XHyphenator >
xHyphenator = LinguMgr::GetHyphenator();
GetDrawOutliner().SetHyphenator( xHyphenator );
GetHitTestOutliner().SetHyphenator( xHyphenator );
bHyphenatorSet = true;
}
}
SdrPage* ScDrawLayer::AllocPage(bool bMasterPage)
{
return new ScDrawPage(*this, bMasterPage);
}
bool ScDrawLayer::HasObjects() const
{
bool bFound = false;
sal_uInt16 nCount = GetPageCount();
for (sal_uInt16 i=0; i<nCount && !bFound; i++)
if (GetPage(i)->GetObjCount())
bFound = true;
return bFound;
}
SdrModel* ScDrawLayer::AllocModel() const
{
// Allocated model (for clipboard etc) must not have a pointer
// to the original model's document, pass NULL as document:
return new ScDrawLayer( nullptr, aName );
}
bool ScDrawLayer::ScAddPage( SCTAB nTab )
{
if (bDrawIsInUndo)
return false; // not inserted
ScDrawPage* pPage = static_cast<ScDrawPage*>(AllocPage( false ));
InsertPage(pPage, static_cast<sal_uInt16>(nTab));
if (bRecording)
AddCalcUndo(std::make_unique<SdrUndoNewPage>(*pPage));
ResetTab(nTab, pDoc->GetTableCount()-1);
return true; // inserted
}
void ScDrawLayer::ScRemovePage( SCTAB nTab )
{
if (bDrawIsInUndo)
return;
Broadcast( ScTabDeletedHint( nTab ) );
if (bRecording)
{
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
AddCalcUndo(std::make_unique<SdrUndoDelPage>(*pPage)); // Undo-Action becomes the page owner
RemovePage( static_cast<sal_uInt16>(nTab) ); // just deliver, not deleting
}
else
DeletePage( static_cast<sal_uInt16>(nTab) ); // just get rid of it
ResetTab(nTab, pDoc->GetTableCount()-1);
}
void ScDrawLayer::ScRenamePage( SCTAB nTab, const OUString& rNewName )
{
ScDrawPage* pPage = static_cast<ScDrawPage*>( GetPage(static_cast<sal_uInt16>(nTab)) );
if (pPage)
pPage->SetName(rNewName);
}
void ScDrawLayer::ScMovePage( sal_uInt16 nOldPos, sal_uInt16 nNewPos )
{
MovePage( nOldPos, nNewPos );
sal_uInt16 nMinPos = std::min(nOldPos, nNewPos);
ResetTab(nMinPos, pDoc->GetTableCount()-1);
}
void ScDrawLayer::ScCopyPage( sal_uInt16 nOldPos, sal_uInt16 nNewPos )
{
if (bDrawIsInUndo)
return;
SdrPage* pOldPage = GetPage(nOldPos);
SdrPage* pNewPage = GetPage(nNewPos);
// Copying
if (pOldPage && pNewPage)
{
SCTAB nOldTab = static_cast<SCTAB>(nOldPos);
SCTAB nNewTab = static_cast<SCTAB>(nNewPos);
SdrObjListIter aIter( pOldPage, SdrIterMode::Flat );
SdrObject* pOldObject = aIter.Next();
while (pOldObject)
{
ScDrawObjData* pOldData = GetObjData(pOldObject);
if (pOldData)
{
pOldData->maStart.SetTab(nOldTab);
pOldData->maEnd.SetTab(nOldTab);
}
// Clone to target SdrModel
SdrObject* pNewObject(pOldObject->CloneSdrObject(*this));
pNewObject->NbcMove(Size(0,0));
pNewPage->InsertObject( pNewObject );
ScDrawObjData* pNewData = GetObjData(pNewObject);
if (pNewData)
{
pNewData->maStart.SetTab(nNewTab);
pNewData->maEnd.SetTab(nNewTab);
}
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoInsertObj>( *pNewObject ) );
pOldObject = aIter.Next();
}
}
ResetTab(static_cast<SCTAB>(nNewPos), pDoc->GetTableCount()-1);
}
void ScDrawLayer::ResetTab( SCTAB nStart, SCTAB nEnd )
{
SCTAB nPageSize = static_cast<SCTAB>(GetPageCount());
if (nPageSize < 0)
// No drawing pages exist.
return;
if (nEnd >= nPageSize)
// Avoid iterating beyond the last existing page.
nEnd = nPageSize - 1;
for (SCTAB i = nStart; i <= nEnd; ++i)
{
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(i));
if (!pPage)
continue;
SdrObjListIter aIter(pPage, SdrIterMode::Flat);
for (SdrObject* pObj = aIter.Next(); pObj; pObj = aIter.Next())
{
ScDrawObjData* pData = GetObjData(pObj);
if (!pData)
continue;
pData->maStart.SetTab(i);
pData->maEnd.SetTab(i);
}
}
}
static bool IsInBlock( const ScAddress& rPos, SCCOL nCol1,SCROW nRow1, SCCOL nCol2,SCROW nRow2 )
{
return rPos.Col() >= nCol1 && rPos.Col() <= nCol2 &&
rPos.Row() >= nRow1 && rPos.Row() <= nRow2;
}
void ScDrawLayer::MoveCells( SCTAB nTab, SCCOL nCol1,SCROW nRow1, SCCOL nCol2,SCROW nRow2,
SCCOL nDx,SCROW nDy, bool bUpdateNoteCaptionPos )
{
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
OSL_ENSURE(pPage,"Page not found");
if (!pPage)
return;
bool bNegativePage = pDoc && pDoc->IsNegativePage( nTab );
const size_t nCount = pPage->GetObjCount();
for ( size_t i = 0; i < nCount; ++i )
{
SdrObject* pObj = pPage->GetObj( i );
ScDrawObjData* pData = GetObjDataTab( pObj, nTab );
if( pData )
{
const ScAddress aOldStt = pData->maStart;
const ScAddress aOldEnd = pData->maEnd;
bool bChange = false;
if ( aOldStt.IsValid() && IsInBlock( aOldStt, nCol1,nRow1, nCol2,nRow2 ) )
{
pData->maStart.IncCol( nDx );
pData->maStart.IncRow( nDy );
bChange = true;
}
if ( aOldEnd.IsValid() && IsInBlock( aOldEnd, nCol1,nRow1, nCol2,nRow2 ) )
{
pData->maEnd.IncCol( nDx );
pData->maEnd.IncRow( nDy );
bChange = true;
}
if (bChange)
{
if ( dynamic_cast<const SdrRectObj*>( pObj) != nullptr && pData->maStart.IsValid() && pData->maEnd.IsValid() )
pData->maStart.PutInOrder( pData->maEnd );
// Update also an untransformed anchor that's what we stored ( and still do ) to xml
ScDrawObjData* pNoRotatedAnchor = GetNonRotatedObjData( pObj );
if ( pNoRotatedAnchor )
{
pNoRotatedAnchor->maStart = pData->maStart;
pNoRotatedAnchor->maEnd = pData->maEnd;
}
AddCalcUndo( std::make_unique<ScUndoObjData>( pObj, aOldStt, aOldEnd, pData->maStart, pData->maEnd ) );
RecalcPos( pObj, *pData, bNegativePage, bUpdateNoteCaptionPos );
}
}
}
}
void ScDrawLayer::SetPageSize( sal_uInt16 nPageNo, const Size& rSize, bool bUpdateNoteCaptionPos )
{
SdrPage* pPage = GetPage(nPageNo);
if (pPage)
{
if ( rSize != pPage->GetSize() )
{
pPage->SetSize( rSize );
Broadcast( ScTabSizeChangedHint( static_cast<SCTAB>(nPageNo) ) ); // SetWorkArea() on the views
}
// Implement Detective lines (adjust to new heights / widths)
// even if size is still the same
// (individual rows/columns can have been changed))
bool bNegativePage = pDoc && pDoc->IsNegativePage( static_cast<SCTAB>(nPageNo) );
// Disable mass broadcasts from drawing objects' position changes.
bool bWasLocked = isLocked();
setLock(true);
const size_t nCount = pPage->GetObjCount();
for ( size_t i = 0; i < nCount; ++i )
{
SdrObject* pObj = pPage->GetObj( i );
ScDrawObjData* pData = GetObjDataTab( pObj, static_cast<SCTAB>(nPageNo) );
if( pData )
RecalcPos( pObj, *pData, bNegativePage, bUpdateNoteCaptionPos );
}
setLock(bWasLocked);
}
}
namespace
{
//Can't have a zero width dimension
tools::Rectangle lcl_makeSafeRectangle(const tools::Rectangle &rNew)
{
tools::Rectangle aRect = rNew;
if (aRect.Bottom() == aRect.Top())
aRect.SetBottom( aRect.Top()+1 );
if (aRect.Right() == aRect.Left())
aRect.SetRight( aRect.Left()+1 );
return aRect;
}
Point lcl_calcAvailableDiff(const ScDocument &rDoc, SCCOL nCol, SCROW nRow, SCTAB nTab, const Point &aWantedDiff)
{
Point aAvailableDiff(aWantedDiff);
long nHeight = static_cast<long>(rDoc.GetRowHeight( nRow, nTab ) * HMM_PER_TWIPS);
long nWidth = static_cast<long>(rDoc.GetColWidth( nCol, nTab ) * HMM_PER_TWIPS);
if (aAvailableDiff.Y() > nHeight)
aAvailableDiff.setY( nHeight );
if (aAvailableDiff.X() > nWidth)
aAvailableDiff.setX( nWidth );
return aAvailableDiff;
}
tools::Rectangle lcl_UpdateCalcPoly(basegfx::B2DPolygon &rCalcPoly, int nWhichPoint, const Point &rPos)
{
rCalcPoly.setB2DPoint(nWhichPoint, basegfx::B2DPoint(rPos.X(), rPos.Y()));
basegfx::B2DRange aRange(basegfx::utils::getRange(rCalcPoly));
return tools::Rectangle(static_cast<long>(aRange.getMinX()), static_cast<long>(aRange.getMinY()),
static_cast<long>(aRange.getMaxX()), static_cast<long>(aRange.getMaxY()));
}
}
void ScDrawLayer::ResizeLastRectFromAnchor(const SdrObject* pObj, ScDrawObjData& rData,
bool bUseLogicRect, bool bNegativePage, bool bCanResize,
bool bHiddenAsZero)
{
tools::Rectangle aRect = bUseLogicRect ? pObj->GetLogicRect() : pObj->GetSnapRect();
SCCOL nCol1 = rData.maStart.Col();
SCROW nRow1 = rData.maStart.Row();
SCTAB nTab1 = rData.maStart.Tab();
SCCOL nCol2 = rData.maEnd.Col();
SCROW nRow2 = rData.maEnd.Row();
SCTAB nTab2 = rData.maEnd.Tab();
Point aPos(pDoc->GetColOffset(nCol1, nTab1, bHiddenAsZero),
pDoc->GetRowOffset(nRow1, nTab1, bHiddenAsZero));
aPos.setX(TwipsToHmm(aPos.X()));
aPos.setY(TwipsToHmm(aPos.Y()));
aPos += lcl_calcAvailableDiff(*pDoc, nCol1, nRow1, nTab1, rData.maStartOffset);
// this sets the needed changed position (translation)
aRect.SetPos(aPos);
if (bCanResize)
{
// all this stuff is additional stuff to evtl. not only translate the
// range (Rectangle), but also check for and evtl. do corrections for it's size
const tools::Rectangle aLastCellRect(rData.getLastCellRect());
// If the row was hidden before, or we don't have a valid cell rect, calculate the
// new rect based on the end point.
// Also when the end point is set, we need to consider it.
if (rData.mbWasInHiddenRow || aLastCellRect.IsEmpty() || nRow1 != nRow2 || nCol1 != nCol2)
{
Point aEnd(pDoc->GetColOffset(nCol2, nTab2, bHiddenAsZero),
pDoc->GetRowOffset(nRow2, nTab2, bHiddenAsZero));
aEnd.setX(TwipsToHmm(aEnd.X()));
aEnd.setY(TwipsToHmm(aEnd.Y()));
aEnd += lcl_calcAvailableDiff(*pDoc, nCol2, nRow2, nTab2, rData.maEndOffset);
aRect = tools::Rectangle(aPos, aEnd);
}
else if (!aLastCellRect.IsEmpty())
{
// We calculate based on the last cell rect to be able to scale the image
// as much as the cell was scaled.
// Still, we keep the image in its current cell (to keep start anchor == end anchor)
const tools::Rectangle aCurrentCellRect(GetCellRect(*GetDocument(), rData.maStart, true));
long nCurrentWidth(aCurrentCellRect.GetWidth());
long nCurrentHeight(aCurrentCellRect.GetHeight());
const long nLastWidth(aLastCellRect.GetWidth());
const long nLastHeight(aLastCellRect.GetHeight());
// tdf#116931 Avoid and correct nifty numerical problems with the integer
// based and converted values (GetCellRect uses multiplies with HMM_PER_TWIPS)
if(nCurrentWidth + 1 == nLastWidth || nCurrentWidth == nLastWidth + 1)
{
nCurrentWidth = nLastWidth;
}
if(nCurrentHeight + 1 == nLastHeight || nCurrentHeight == nLastHeight + 1)
{
nCurrentHeight = nLastHeight;
}
// get initial ScalingFactors
double fWidthFactor(nCurrentWidth == nLastWidth || 0 == nLastWidth
? 1.0
: static_cast<double>(nCurrentWidth) / static_cast<double>(nLastWidth));
double fHeightFactor(nCurrentHeight == nLastHeight || 0 == nLastHeight
? 1.0
: static_cast<double>(nCurrentHeight) / static_cast<double>(nLastHeight));
// check if we grow or shrink - and at all
const bool bIsGrowing(nCurrentWidth > nLastWidth || nCurrentHeight > nLastHeight);
const bool bIsShrinking(nCurrentWidth < nLastWidth || nCurrentHeight < nLastHeight);
const bool bIsSizeChanged(bIsGrowing || bIsShrinking);
// handle AspectRatio, only needed if size does change
if(bIsSizeChanged && pObj->shouldKeepAspectRatio())
{
tools::Rectangle aRectIncludingOffset = aRect;
aRectIncludingOffset.setWidth(aRect.GetWidth() + rData.maStartOffset.X());
aRectIncludingOffset.setHeight(aRect.GetHeight() + rData.maStartOffset.Y());
long nWidth = aRectIncludingOffset.GetWidth();
assert(nWidth && "div-by-zero");
double fMaxWidthFactor = static_cast<double>(nCurrentWidth)
/ static_cast<double>(nWidth);
long nHeight = aRectIncludingOffset.GetHeight();
assert(nHeight && "div-by-zero");
double fMaxHeightFactor = static_cast<double>(nCurrentHeight)
/ static_cast<double>(nHeight);
double fMaxFactor = std::min(fMaxHeightFactor, fMaxWidthFactor);
if(bIsGrowing) // cell is growing larger
{
// To actually grow the image, we need to take the max
fWidthFactor = std::max(fWidthFactor, fHeightFactor);
}
else if(bIsShrinking) // cell is growing smaller, take the min
{
fWidthFactor = std::min(fWidthFactor, fHeightFactor);
}
// We don't want the image to become larger than the current cell
fWidthFactor = fHeightFactor = std::min(fWidthFactor, fMaxFactor);
}
if(bIsSizeChanged)
{
// tdf#116931 re-organized scaling (if needed)
// Check if we need to scale at all. Always scale on growing.
bool bNeedToScale(bIsGrowing);
if(!bNeedToScale && bIsShrinking)
{
// Check if original still fits into space. Do *not* forget to
// compare with evtl. numerically corrected aCurrentCellRect
const bool bFitsInX(aRect.Right() <= aCurrentCellRect.Left() + nCurrentWidth);
const bool bFitsInY(aRect.Bottom() <= aCurrentCellRect.Top() + nCurrentHeight);
// If the image still fits in the smaller cell, don't resize it at all
bNeedToScale = (!bFitsInX || !bFitsInY);
}
if(bNeedToScale)
{
// tdf#116931 use transformations now. Translation is already applied
// (see aRect.SetPos above), so only scale needs to be applied - relative
// to *new* CellRect (which is aCurrentCellRect).
// Prepare scale relative to top-left of aCurrentCellRect
basegfx::B2DHomMatrix aChange;
aChange.translate(-aCurrentCellRect.getX(), -aCurrentCellRect.getY());
aChange.scale(fWidthFactor, fHeightFactor);
aChange.translate(aCurrentCellRect.getX(), aCurrentCellRect.getY());
// create B2DRange and transform by prepared scale
basegfx::B2DRange aNewRange = vcl::unotools::b2DRectangleFromRectangle(aRect);
aNewRange.transform(aChange);
// apply to aRect
aRect = tools::Rectangle(
basegfx::fround(aNewRange.getMinX()), basegfx::fround(aNewRange.getMinY()),
basegfx::fround(aNewRange.getMaxX()), basegfx::fround(aNewRange.getMaxY()));
}
}
}
}
if (bNegativePage)
MirrorRectRTL(aRect);
rData.setShapeRect(GetDocument(), lcl_makeSafeRectangle(aRect), pObj->IsVisible());
}
void ScDrawLayer::RecalcPos( SdrObject* pObj, ScDrawObjData& rData, bool bNegativePage, bool bUpdateNoteCaptionPos )
{
OSL_ENSURE( pDoc, "ScDrawLayer::RecalcPos - missing document" );
if( !pDoc )
return;
if (rData.meType == ScDrawObjData::CellNote)
{
OSL_ENSURE( rData.maStart.IsValid(), "ScDrawLayer::RecalcPos - invalid position for cell note" );
/* #i109372# On insert/remove rows/columns/cells: Updating the caption
position must not be done, if the cell containing the note has not
been moved yet in the document. The calling code now passes an
additional boolean stating if the cells are already moved. */
if( bUpdateNoteCaptionPos )
/* When inside an undo action, there may be pending note captions
where cell note is already deleted (thus document cannot find
the note object anymore). The caption will be deleted later
with drawing undo. */
if( ScPostIt* pNote = pDoc->GetNote( rData.maStart ) )
pNote->UpdateCaptionPos( rData.maStart );
return;
}
bool bValid1 = rData.maStart.IsValid();
SCCOL nCol1 = rData.maStart.Col();
SCROW nRow1 = rData.maStart.Row();
SCTAB nTab1 = rData.maStart.Tab();
bool bValid2 = rData.maEnd.IsValid();
SCCOL nCol2 = rData.maEnd.Col();
SCROW nRow2 = rData.maEnd.Row();
SCTAB nTab2 = rData.maEnd.Tab();
if (rData.meType == ScDrawObjData::ValidationCircle)
{
// Validation circle for detective.
rData.setShapeRect(GetDocument(), pObj->GetLogicRect());
Point aPos( pDoc->GetColOffset( nCol1, nTab1 ), pDoc->GetRowOffset( nRow1, nTab1 ) );
aPos.setX(TwipsToHmm( aPos.X() ));
aPos.setY(TwipsToHmm( aPos.Y() ));
// Calculations and values as in detfunc.cxx
Size aSize( TwipsToHmm( pDoc->GetColWidth( nCol1, nTab1) ),
TwipsToHmm( pDoc->GetRowHeight( nRow1, nTab1) ) );
tools::Rectangle aRect( aPos, aSize );
aRect.AdjustLeft( -250 );
aRect.AdjustRight(250 );
aRect.AdjustTop( -70 );
aRect.AdjustBottom(70 );
if ( bNegativePage )
MirrorRectRTL( aRect );
if ( pObj->GetLogicRect() != aRect )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
rData.setShapeRect(GetDocument(), lcl_makeSafeRectangle(aRect));
pObj->SetLogicRect(rData.getShapeRect());
}
}
else if (rData.meType == ScDrawObjData::DetectiveArrow)
{
rData.setShapeRect(GetDocument(), pObj->GetLogicRect());
basegfx::B2DPolygon aCalcPoly;
Point aOrigStartPos(pObj->GetPoint(0));
Point aOrigEndPos(pObj->GetPoint(1));
aCalcPoly.append(basegfx::B2DPoint(aOrigStartPos.X(), aOrigStartPos.Y()));
aCalcPoly.append(basegfx::B2DPoint(aOrigEndPos.X(), aOrigEndPos.Y()));
//TODO: do not create multiple Undos for one object (last one can be omitted then)
SCCOL nLastCol;
SCROW nLastRow;
if( bValid1 )
{
Point aPos( pDoc->GetColOffset( nCol1, nTab1 ), pDoc->GetRowOffset( nRow1, nTab1 ) );
if (!pDoc->ColHidden(nCol1, nTab1, nullptr, &nLastCol))
aPos.AdjustX(pDoc->GetColWidth( nCol1, nTab1 ) / 4 );
if (!pDoc->RowHidden(nRow1, nTab1, nullptr, &nLastRow))
aPos.AdjustY(pDoc->GetRowHeight( nRow1, nTab1 ) / 2 );
aPos.setX(TwipsToHmm( aPos.X() ));
aPos.setY(TwipsToHmm( aPos.Y() ));
Point aStartPos = aPos;
if ( bNegativePage )
aStartPos.setX( -aStartPos.X() ); // don't modify aPos - used below
if ( pObj->GetPoint( 0 ) != aStartPos )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
rData.setShapeRect(GetDocument(), lcl_UpdateCalcPoly(aCalcPoly, 0, aStartPos));
pObj->SetPoint( aStartPos, 0 );
}
if( !bValid2 )
{
Point aEndPos( aPos.X() + DET_ARROW_OFFSET, aPos.Y() - DET_ARROW_OFFSET );
if (aEndPos.Y() < 0)
aEndPos.AdjustY(2 * DET_ARROW_OFFSET);
if ( bNegativePage )
aEndPos.setX( -aEndPos.X() );
if ( pObj->GetPoint( 1 ) != aEndPos )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
rData.setShapeRect(GetDocument(), lcl_UpdateCalcPoly(aCalcPoly, 1, aEndPos));
pObj->SetPoint( aEndPos, 1 );
}
}
}
if( bValid2 )
{
Point aPos( pDoc->GetColOffset( nCol2, nTab2 ), pDoc->GetRowOffset( nRow2, nTab2 ) );
if (!pDoc->ColHidden(nCol2, nTab2, nullptr, &nLastCol))
aPos.AdjustX(pDoc->GetColWidth( nCol2, nTab2 ) / 4 );
if (!pDoc->RowHidden(nRow2, nTab2, nullptr, &nLastRow))
aPos.AdjustY(pDoc->GetRowHeight( nRow2, nTab2 ) / 2 );
aPos.setX(TwipsToHmm( aPos.X() ));
aPos.setY(TwipsToHmm( aPos.Y() ));
Point aEndPos = aPos;
if ( bNegativePage )
aEndPos.setX( -aEndPos.X() ); // don't modify aPos - used below
if ( pObj->GetPoint( 1 ) != aEndPos )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
rData.setShapeRect(GetDocument(), lcl_UpdateCalcPoly(aCalcPoly, 1, aEndPos));
pObj->SetPoint( aEndPos, 1 );
}
if( !bValid1 )
{
Point aStartPos( aPos.X() - DET_ARROW_OFFSET, aPos.Y() - DET_ARROW_OFFSET );
if (aStartPos.X() < 0)
aStartPos.AdjustX(2 * DET_ARROW_OFFSET);
if (aStartPos.Y() < 0)
aStartPos.AdjustY(2 * DET_ARROW_OFFSET);
if ( bNegativePage )
aStartPos.setX( -aStartPos.X() );
if ( pObj->GetPoint( 0 ) != aStartPos )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
rData.setShapeRect(GetDocument(), lcl_UpdateCalcPoly(aCalcPoly, 0, aStartPos));
pObj->SetPoint( aStartPos, 0 );
}
}
}
}
else
{
// Prevent multiple broadcasts during the series of changes.
bool bWasLocked = pObj->getSdrModelFromSdrObject().isLocked();
pObj->getSdrModelFromSdrObject().setLock(true);
bool bCanResize = bValid2 && !pObj->IsResizeProtect() && rData.mbResizeWithCell;
//First time positioning, must be able to at least move it
ScDrawObjData& rNoRotatedAnchor = *GetNonRotatedObjData( pObj, true );
if (rData.getShapeRect().IsEmpty())
{
// Every shape it is saved with a negative offset relative to cell
ScAnchorType aAnchorType = ScDrawLayer::GetAnchorType(*pObj);
if (aAnchorType == SCA_CELL || aAnchorType == SCA_CELL_RESIZE)
{
// tdf#117145 All that TR*etBaseGeometry does here is to translate
// the existing transformation. This can simply be applied to the existing
// matrix, no need to decompose as done before. Also doing this from
// Calc did not change metrics in any way.
const tools::Rectangle aRect(pDoc->GetMMRect(nCol1, nRow1, nCol1 , nRow1, nTab1));
const Point aPoint(bNegativePage ? aRect.Right() : aRect.Left(), aRect.Top());
basegfx::B2DPolyPolygon aPolyPolygon;
basegfx::B2DHomMatrix aOriginalMatrix;
pObj->TRGetBaseGeometry(aOriginalMatrix, aPolyPolygon);
aOriginalMatrix.translate(aPoint.X(), aPoint.Y());
pObj->TRSetBaseGeometry(aOriginalMatrix, aPolyPolygon);
}
// It's confusing ( but blame that we persist the anchor in terms of unrotated shape )
// that the initial anchor we get here is in terms of an unrotated shape ( if the shape is rotated )
// we need to save the old anchor ( for persisting ) and also track any resize or repositions that happen.
// This is an evil hack, having an anchor that is one minute in terms of untransformed object and then later
// in terms of the transformed object is not ideal, similarly having 2 anchors per object is wasteful, can't
// see another way out of this at the moment though.
rNoRotatedAnchor.maStart = rData.maStart;
rNoRotatedAnchor.maEnd = rData.maEnd;
rNoRotatedAnchor.maStartOffset = rData.maStartOffset;
rNoRotatedAnchor.maEndOffset = rData.maEndOffset;
// get bounding rectangle of shape ( include any hidden row/columns ), <sigh> we need to do this
// because if the shape is rotated the anchor from xml is in terms of the unrotated shape, if
// the shape is hidden ( by the rows that contain the shape being hidden ) then our hack of
// trying to infer the 'real' e.g. rotated anchor from the SnapRect will fail (because the LogicRect will
// not have the correct position or size). The only way we can possible do this is to first get the
// 'unrotated' shape dimensions from the persisted Anchor (from xml) and then 'create' an Anchor from the
// associated rotated shape (note: we do this by actually setting the LogicRect for the shape temporarily to the
// *full* size then grabbing the SnapRect (which gives the transformed rotated dimensions), it would be
// wonderful if we could do this mathematically without having to temporarily tweak the object... otoh this way
// is guaranteed to get consistent results)
ResizeLastRectFromAnchor( pObj, rData, true, bNegativePage, bCanResize, false );
// aFullRect contains the unrotated size and position of the shape (regardless of any hidden row/columns)
tools::Rectangle aFullRect = rData.getShapeRect();
// get current size and position from the anchor for use later
ResizeLastRectFromAnchor( pObj, rNoRotatedAnchor, true, bNegativePage, bCanResize );
// resize/position the shape to *full* size e.g. how it would be ( if no hidden rows/cols affected things )
pObj->SetLogicRect(aFullRect);
// Ok, here is more nastiness, from xml the Anchor is in terms of the LogicRect which is the
// untransformed unrotated shape, here we swap out that initial anchor and from now on use
// an Anchor based on the SnapRect ( which is what you see on the screen )
const tools::Rectangle aObjRect(pObj->GetSnapRect());
ScDrawLayer::GetCellAnchorFromPosition(
aObjRect,
rData,
*pDoc,
nTab1,
false);
// reset shape to true 'maybe affected by hidden rows/cols' size calculated previously
pObj->SetLogicRect(rNoRotatedAnchor.getShapeRect());
}
// update anchor with snap rect
ResizeLastRectFromAnchor( pObj, rData, false, bNegativePage, bCanResize );
if( bCanResize )
{
tools::Rectangle aNew = rData.getShapeRect();
if ( pObj->GetSnapRect() != aNew )
{
tools::Rectangle aOld(pObj->GetSnapRect());
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
long nOldWidth = aOld.GetWidth();
long nOldHeight = aOld.GetHeight();
if (pObj->IsPolyObj() && nOldWidth && nOldHeight)
{
// Polyline objects need special treatment.
Size aSizeMove(aNew.Left()-aOld.Left(), aNew.Top()-aOld.Top());
pObj->NbcMove(aSizeMove);
double fXFrac = static_cast<double>(aNew.GetWidth()) / static_cast<double>(nOldWidth);
double fYFrac = static_cast<double>(aNew.GetHeight()) / static_cast<double>(nOldHeight);
pObj->NbcResize(aNew.TopLeft(), Fraction(fXFrac), Fraction(fYFrac));
}
// order of these lines is important, modify rData.maLastRect carefully it is used as both
// a value and a flag for initialisation
rData.setShapeRect(GetDocument(), lcl_makeSafeRectangle(rData.getShapeRect()), pObj->IsVisible());
if (pObj->GetObjIdentifier() == OBJ_CUSTOMSHAPE)
pObj->AdjustToMaxRect(rData.getShapeRect());
else
pObj->SetSnapRect(rData.getShapeRect());
// update 'unrotated anchor' it's the anchor we persist, it must be kept in sync
// with the normal Anchor
ResizeLastRectFromAnchor( pObj, rNoRotatedAnchor, true, bNegativePage, bCanResize );
}
}
else
{
Point aPos( rData.getShapeRect().getX(), rData.getShapeRect().getY() );
if ( pObj->GetRelativePos() != aPos )
{
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
pObj->SetRelativePos( aPos );
}
}
/*
* If we were not allowed resize the object, then the end cell anchor
* is possibly incorrect now, and if the object has no end-cell (e.g.
* missing in original .xml) we are also forced to generate one
*/
bool bEndAnchorIsBad = !bValid2 || pObj->IsResizeProtect();
if (bEndAnchorIsBad)
{
// update 'rotated' anchor
ScDrawLayer::UpdateCellAnchorFromPositionEnd(*pObj, rData, *pDoc, nTab1, false);
// update 'unrotated' anchor
ScDrawLayer::UpdateCellAnchorFromPositionEnd(*pObj, rNoRotatedAnchor, *pDoc, nTab1 );
}
// End prevent multiple broadcasts during the series of changes.
pObj->getSdrModelFromSdrObject().setLock(bWasLocked);
if (!bWasLocked)
pObj->BroadcastObjectChange();
}
}
bool ScDrawLayer::GetPrintArea( ScRange& rRange, bool bSetHor, bool bSetVer ) const
{
OSL_ENSURE( pDoc, "ScDrawLayer::GetPrintArea without document" );
if ( !pDoc )
return false;
SCTAB nTab = rRange.aStart.Tab();
OSL_ENSURE( rRange.aEnd.Tab() == nTab, "GetPrintArea: Tab differ" );
bool bNegativePage = pDoc->IsNegativePage( nTab );
bool bAny = false;
long nEndX = 0;
long nEndY = 0;
long nStartX = LONG_MAX;
long nStartY = LONG_MAX;
// Calculate borders
if (!bSetHor)
{
nStartX = 0;
SCCOL nStartCol = rRange.aStart.Col();
SCCOL i;
for (i=0; i<nStartCol; i++)
nStartX +=pDoc->GetColWidth(i,nTab);
nEndX = nStartX;
SCCOL nEndCol = rRange.aEnd.Col();
for (i=nStartCol; i<=nEndCol; i++)
nEndX += pDoc->GetColWidth(i,nTab);
nStartX = TwipsToHmm( nStartX );
nEndX = TwipsToHmm( nEndX );
}
if (!bSetVer)
{
nStartY = pDoc->GetRowHeight( 0, rRange.aStart.Row()-1, nTab);
nEndY = nStartY + pDoc->GetRowHeight( rRange.aStart.Row(),
rRange.aEnd.Row(), nTab);
nStartY = TwipsToHmm( nStartY );
nEndY = TwipsToHmm( nEndY );
}
if ( bNegativePage )
{
nStartX = -nStartX; // positions are negative, swap start/end so the same comparisons work
nEndX = -nEndX;
::std::swap( nStartX, nEndX );
}
const SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
OSL_ENSURE(pPage,"Page not found");
if (pPage)
{
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
while (pObject)
{
//TODO: test Flags (hidden?)
tools::Rectangle aObjRect = pObject->GetCurrentBoundRect();
bool bFit = true;
if ( !bSetHor && ( aObjRect.Right() < nStartX || aObjRect.Left() > nEndX ) )
bFit = false;
if ( !bSetVer && ( aObjRect.Bottom() < nStartY || aObjRect.Top() > nEndY ) )
bFit = false;
// #i104716# don't include hidden note objects
if ( bFit && pObject->GetLayer() != SC_LAYER_HIDDEN )
{
if (bSetHor)
{
if (aObjRect.Left() < nStartX) nStartX = aObjRect.Left();
if (aObjRect.Right() > nEndX) nEndX = aObjRect.Right();
}
if (bSetVer)
{
if (aObjRect.Top() < nStartY) nStartY = aObjRect.Top();
if (aObjRect.Bottom() > nEndY) nEndY = aObjRect.Bottom();
}
bAny = true;
}
pObject = aIter.Next();
}
}
if ( bNegativePage )
{
nStartX = -nStartX; // reverse transformation, so the same cell address calculation works
nEndX = -nEndX;
::std::swap( nStartX, nEndX );
}
if (bAny)
{
OSL_ENSURE( nStartX<=nEndX && nStartY<=nEndY, "Start/End wrong in ScDrawLayer::GetPrintArea" );
if (bSetHor)
{
nStartX = HmmToTwips( nStartX );
nEndX = HmmToTwips( nEndX );
long nWidth;
nWidth = 0;
rRange.aStart.SetCol( 0 );
if (nWidth <= nStartX)
{
for (SCCOL nCol : pDoc->GetColumnsRange(nTab, 0, MAXCOL))
{
nWidth += pDoc->GetColWidth(nCol,nTab);
if (nWidth > nStartX)
{
rRange.aStart.SetCol( nCol );
break;
}
}
}
nWidth = 0;
rRange.aEnd.SetCol( 0 );
if (nWidth <= nEndX)
{
for (SCCOL nCol : pDoc->GetColumnsRange(nTab, 0, MAXCOL)) //TODO: start at Start
{
nWidth += pDoc->GetColWidth(nCol,nTab);
if (nWidth > nEndX)
{
rRange.aEnd.SetCol( nCol );
break;
}
}
}
}
if (bSetVer)
{
nStartY = HmmToTwips( nStartY );
nEndY = HmmToTwips( nEndY );
SCROW nRow = pDoc->GetRowForHeight( nTab, nStartY);
rRange.aStart.SetRow( nRow>0 ? (nRow-1) : 0);
nRow = pDoc->GetRowForHeight( nTab, nEndY);
rRange.aEnd.SetRow( nRow == MAXROW ? MAXROW :
(nRow>0 ? (nRow-1) : 0));
}
}
else
{
if (bSetHor)
{
rRange.aStart.SetCol(0);
rRange.aEnd.SetCol(0);
}
if (bSetVer)
{
rRange.aStart.SetRow(0);
rRange.aEnd.SetRow(0);
}
}
return bAny;
}
void ScDrawLayer::AddCalcUndo( std::unique_ptr<SdrUndoAction> pUndo )
{
if (bRecording)
{
if (!pUndoGroup)
pUndoGroup.reset(new SdrUndoGroup(*this));
pUndoGroup->AddAction( std::move(pUndo) );
}
}
void ScDrawLayer::BeginCalcUndo(bool bDisableTextEditUsesCommonUndoManager)
{
SetDisableTextEditUsesCommonUndoManager(bDisableTextEditUsesCommonUndoManager);
pUndoGroup.reset();
bRecording = true;
}
std::unique_ptr<SdrUndoGroup> ScDrawLayer::GetCalcUndo()
{
std::unique_ptr<SdrUndoGroup> pRet = std::move(pUndoGroup);
bRecording = false;
SetDisableTextEditUsesCommonUndoManager(false);
return pRet;
}
void ScDrawLayer::MoveArea( SCTAB nTab, SCCOL nCol1,SCROW nRow1, SCCOL nCol2,SCROW nRow2,
SCCOL nDx,SCROW nDy, bool bInsDel, bool bUpdateNoteCaptionPos )
{
OSL_ENSURE( pDoc, "ScDrawLayer::MoveArea without document" );
if ( !pDoc )
return;
if (!bAdjustEnabled)
return;
bool bNegativePage = pDoc->IsNegativePage( nTab );
tools::Rectangle aRect = pDoc->GetMMRect( nCol1, nRow1, nCol2, nRow2, nTab );
lcl_ReverseTwipsToMM( aRect );
//TODO: use twips directly?
Point aMove;
if (nDx > 0)
for (SCCOL s=0; s<nDx; s++)
aMove.AdjustX(pDoc->GetColWidth(s+nCol1,nTab) );
else
for (SCCOL s=-1; s>=nDx; s--)
aMove.AdjustX( -(pDoc->GetColWidth(s+nCol1,nTab)) );
if (nDy > 0)
aMove.AdjustY(pDoc->GetRowHeight( nRow1, nRow1+nDy-1, nTab) );
else
aMove.AdjustY( -sal_Int16(pDoc->GetRowHeight( nRow1+nDy, nRow1-1, nTab)) );
if ( bNegativePage )
aMove.setX( -aMove.X() );
Point aTopLeft = aRect.TopLeft(); // Beginning when zoomed out
if (bInsDel)
{
if ( aMove.X() != 0 && nDx < 0 ) // nDx counts cells, sign is independent of RTL
aTopLeft.AdjustX(aMove.X() );
if ( aMove.Y() < 0 )
aTopLeft.AdjustY(aMove.Y() );
}
// Detectiv arrows: Adjust cell position
MoveCells( nTab, nCol1,nRow1, nCol2,nRow2, nDx,nDy, bUpdateNoteCaptionPos );
}
bool ScDrawLayer::HasObjectsInRows( SCTAB nTab, SCROW nStartRow, SCROW nEndRow )
{
OSL_ENSURE( pDoc, "ScDrawLayer::HasObjectsInRows without document" );
if ( !pDoc )
return false;
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
OSL_ENSURE(pPage,"Page not found");
if (!pPage)
return false;
// for an empty page, there's no need to calculate the row heights
if (!pPage->GetObjCount())
return false;
tools::Rectangle aTestRect;
aTestRect.AdjustTop(pDoc->GetRowHeight( 0, nStartRow-1, nTab) );
if (nEndRow==MAXROW)
aTestRect.SetBottom( MAXMM );
else
{
aTestRect.SetBottom( aTestRect.Top() );
aTestRect.AdjustBottom(pDoc->GetRowHeight( nStartRow, nEndRow, nTab) );
aTestRect.SetBottom(TwipsToHmm( aTestRect.Bottom() ));
}
aTestRect.SetTop(TwipsToHmm( aTestRect.Top() ));
aTestRect.SetLeft( 0 );
aTestRect.SetRight( MAXMM );
bool bNegativePage = pDoc->IsNegativePage( nTab );
if ( bNegativePage )
MirrorRectRTL( aTestRect );
bool bFound = false;
tools::Rectangle aObjRect;
SdrObjListIter aIter( pPage );
SdrObject* pObject = aIter.Next();
while ( pObject && !bFound )
{
aObjRect = pObject->GetSnapRect(); //TODO: GetLogicRect ?
if (aTestRect.IsInside(aObjRect.TopLeft()) || aTestRect.IsInside(aObjRect.BottomLeft()))
bFound = true;
pObject = aIter.Next();
}
return bFound;
}
void ScDrawLayer::DeleteObjectsInArea( SCTAB nTab, SCCOL nCol1,SCROW nRow1,
SCCOL nCol2,SCROW nRow2, bool bAnchored )
{
OSL_ENSURE( pDoc, "ScDrawLayer::DeleteObjectsInArea without document" );
if ( !pDoc )
return;
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
OSL_ENSURE(pPage,"Page ?");
if (!pPage)
return;
pPage->RecalcObjOrdNums();
const size_t nObjCount = pPage->GetObjCount();
if (nObjCount)
{
size_t nDelCount = 0;
tools::Rectangle aDelRect = pDoc->GetMMRect( nCol1, nRow1, nCol2, nRow2, nTab );
std::unique_ptr<SdrObject*[]> ppObj(new SdrObject*[nObjCount]);
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
while (pObject)
{
// do not delete note caption, they are always handled by the cell note
// TODO: detective objects are still deleted, is this desired?
if (!IsNoteCaption( pObject ))
{
tools::Rectangle aObjRect = pObject->GetCurrentBoundRect();
if (aDelRect.IsInside(aObjRect))
{
if (bAnchored)
{
ScAnchorType aAnchorType = ScDrawLayer::GetAnchorType(*pObject);
if(aAnchorType == SCA_CELL || aAnchorType == SCA_CELL_RESIZE)
ppObj[nDelCount++] = pObject;
}
else
ppObj[nDelCount++] = pObject;
}
}
pObject = aIter.Next();
}
if (bRecording)
for (size_t i=1; i<=nDelCount; ++i)
AddCalcUndo( std::make_unique<SdrUndoRemoveObj>( *ppObj[nDelCount-i] ) );
for (size_t i=1; i<=nDelCount; ++i)
pPage->RemoveObject( ppObj[nDelCount-i]->GetOrdNum() );
}
}
void ScDrawLayer::DeleteObjectsInSelection( const ScMarkData& rMark )
{
OSL_ENSURE( pDoc, "ScDrawLayer::DeleteObjectsInSelection without document" );
if ( !pDoc )
return;
if ( !rMark.IsMultiMarked() )
return;
ScRange aMarkRange;
rMark.GetMultiMarkArea( aMarkRange );
SCTAB nTabCount = pDoc->GetTableCount();
for (const SCTAB nTab : rMark)
{
if (nTab >= nTabCount)
break;
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
if (pPage)
{
pPage->RecalcObjOrdNums();
const size_t nObjCount = pPage->GetObjCount();
if (nObjCount)
{
size_t nDelCount = 0;
// Rectangle around the whole selection
tools::Rectangle aMarkBound = pDoc->GetMMRect(
aMarkRange.aStart.Col(), aMarkRange.aStart.Row(),
aMarkRange.aEnd.Col(), aMarkRange.aEnd.Row(), nTab );
std::unique_ptr<SdrObject*[]> ppObj(new SdrObject*[nObjCount]);
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
while (pObject)
{
// do not delete note caption, they are always handled by the cell note
// TODO: detective objects are still deleted, is this desired?
if (!IsNoteCaption( pObject ))
{
tools::Rectangle aObjRect = pObject->GetCurrentBoundRect();
ScRange aRange = pDoc->GetRange(nTab, aObjRect);
bool bObjectInMarkArea =
aMarkBound.IsInside(aObjRect) && rMark.IsAllMarked(aRange);
const ScDrawObjData* pObjData = ScDrawLayer::GetObjData(pObject);
ScAnchorType aAnchorType = ScDrawLayer::GetAnchorType(*pObject);
bool bObjectAnchoredToMarkedCell
= ((aAnchorType == SCA_CELL || aAnchorType == SCA_CELL_RESIZE)
&& pObjData && rMark.IsCellMarked(pObjData->maStart.Col(),
pObjData->maStart.Row()));
if (bObjectInMarkArea || bObjectAnchoredToMarkedCell)
{
ppObj[nDelCount++] = pObject;
}
}
pObject = aIter.Next();
}
// Delete objects (backwards)
if (bRecording)
for (size_t i=1; i<=nDelCount; ++i)
AddCalcUndo( std::make_unique<SdrUndoRemoveObj>( *ppObj[nDelCount-i] ) );
for (size_t i=1; i<=nDelCount; ++i)
pPage->RemoveObject( ppObj[nDelCount-i]->GetOrdNum() );
}
}
else
{
OSL_FAIL("pPage?");
}
}
}
void ScDrawLayer::CopyToClip( ScDocument* pClipDoc, SCTAB nTab, const tools::Rectangle& rRange )
{
// copy everything in the specified range into the same page (sheet) in the clipboard doc
SdrPage* pSrcPage = GetPage(static_cast<sal_uInt16>(nTab));
if (pSrcPage)
{
ScDrawLayer* pDestModel = nullptr;
SdrPage* pDestPage = nullptr;
SdrObjListIter aIter( pSrcPage, SdrIterMode::Flat );
SdrObject* pOldObject = aIter.Next();
while (pOldObject)
{
tools::Rectangle aObjRect = pOldObject->GetCurrentBoundRect();
bool bObjectInArea = rRange.IsInside(aObjRect);
const ScDrawObjData* pObjData = ScDrawLayer::GetObjData(pOldObject);
if (pObjData)
{
ScRange aClipRange = lcl_getClipRangeFromClipDoc(pClipDoc, nTab);
bObjectInArea = bObjectInArea || aClipRange.In(pObjData->maStart);
}
// do not copy internal objects (detective) and note captions
if (bObjectInArea && pOldObject->GetLayer() != SC_LAYER_INTERN
&& !IsNoteCaption(pOldObject))
{
if ( !pDestModel )
{
pDestModel = pClipDoc->GetDrawLayer(); // does the document already have a drawing layer?
if ( !pDestModel )
{
// allocate drawing layer in clipboard document only if there are objects to copy
pClipDoc->InitDrawLayer(); //TODO: create contiguous pages
pDestModel = pClipDoc->GetDrawLayer();
}
if (pDestModel)
pDestPage = pDestModel->GetPage( static_cast<sal_uInt16>(nTab) );
}
OSL_ENSURE( pDestPage, "no page" );
if (pDestPage)
{
// Clone to target SdrModel
SdrObject* pNewObject(pOldObject->CloneSdrObject(*pDestModel));
uno::Reference< chart2::XChartDocument > xOldChart( ScChartHelper::GetChartFromSdrObject( pOldObject ) );
if(!xOldChart.is())//#i110034# do not move charts as they lose all their data references otherwise
pNewObject->NbcMove(Size(0,0));
pDestPage->InsertObject( pNewObject );
// no undo needed in clipboard document
// charts are not updated
}
}
pOldObject = aIter.Next();
}
}
}
static bool lcl_IsAllInRange( const ::std::vector< ScRangeList >& rRangesVector, const ScRange& rClipRange )
{
// check if every range of rRangesVector is completely in rClipRange
for( const ScRangeList& rRanges : rRangesVector )
{
for ( size_t i = 0, nCount = rRanges.size(); i < nCount; i++ )
{
const ScRange & rRange = rRanges[ i ];
if ( !rClipRange.In( rRange ) )
{
return false; // at least one range is not valid
}
}
}
return true; // everything is fine
}
static bool lcl_MoveRanges( ::std::vector< ScRangeList >& rRangesVector, const ScRange& rSourceRange, const ScAddress& rDestPos )
{
bool bChanged = false;
ScRange aErrorRange( ScAddress::UNINITIALIZED );
for( ScRangeList& rRanges : rRangesVector )
{
for ( size_t i = 0, nCount = rRanges.size(); i < nCount; i++ )
{
ScRange & rRange = rRanges[ i ];
if ( rSourceRange.In( rRange ) )
{
SCCOL nDiffX = rDestPos.Col() - rSourceRange.aStart.Col();
SCROW nDiffY = rDestPos.Row() - rSourceRange.aStart.Row();
SCTAB nDiffZ = rDestPos.Tab() - rSourceRange.aStart.Tab();
if (!rRange.Move( nDiffX, nDiffY, nDiffZ, aErrorRange))
{
assert(!"can't move range");
}
bChanged = true;
}
}
}
return bChanged;
}
void ScDrawLayer::CopyFromClip( ScDrawLayer* pClipModel, SCTAB nSourceTab, const tools::Rectangle& rSourceRange,
const ScAddress& rDestPos, const tools::Rectangle& rDestRange )
{
OSL_ENSURE( pDoc, "ScDrawLayer::CopyFromClip without document" );
if ( !pDoc )
return;
if (!pClipModel)
return;
if (bDrawIsInUndo) //TODO: can this happen?
{
OSL_FAIL("CopyFromClip, bDrawIsInUndo");
return;
}
bool bMirrorObj = ( rSourceRange.Left() < 0 && rSourceRange.Right() < 0 &&
rDestRange.Left() > 0 && rDestRange.Right() > 0 ) ||
( rSourceRange.Left() > 0 && rSourceRange.Right() > 0 &&
rDestRange.Left() < 0 && rDestRange.Right() < 0 );
tools::Rectangle aMirroredSource = rSourceRange;
if ( bMirrorObj )
MirrorRectRTL( aMirroredSource );
SCTAB nDestTab = rDestPos.Tab();
SdrPage* pSrcPage = pClipModel->GetPage(static_cast<sal_uInt16>(nSourceTab));
SdrPage* pDestPage = GetPage(static_cast<sal_uInt16>(nDestTab));
OSL_ENSURE( pSrcPage && pDestPage, "draw page missing" );
if ( !pSrcPage || !pDestPage )
return;
SdrObjListIter aIter( pSrcPage, SdrIterMode::Flat );
SdrObject* pOldObject = aIter.Next();
ScDocument* pClipDoc = pClipModel->GetDocument();
// a clipboard document and its source share the same document item pool,
// so the pointers can be compared to see if this is copy&paste within
// the same document
bool bSameDoc = pDoc && pClipDoc && pDoc->GetPool() == pClipDoc->GetPool();
bool bDestClip = pDoc && pDoc->IsClipboard();
//#i110034# charts need correct sheet names for xml range conversion during load
//so the target sheet name is temporarily renamed (if we have any SdrObjects)
OUString aDestTabName;
bool bRestoreDestTabName = false;
if( pOldObject && !bSameDoc && !bDestClip )
{
if( pDoc && pClipDoc )
{
OUString aSourceTabName;
if( pClipDoc->GetName( nSourceTab, aSourceTabName )
&& pDoc->GetName( nDestTab, aDestTabName ) )
{
if( aSourceTabName != aDestTabName &&
pDoc->ValidNewTabName(aSourceTabName) )
{
bRestoreDestTabName = pDoc->RenameTab( nDestTab, aSourceTabName );
}
}
}
}
// first mirror, then move
Size aMove( rDestRange.Left() - aMirroredSource.Left(), rDestRange.Top() - aMirroredSource.Top() );
long nDestWidth = rDestRange.GetWidth();
long nDestHeight = rDestRange.GetHeight();
long nSourceWidth = rSourceRange.GetWidth();
long nSourceHeight = rSourceRange.GetHeight();
long nWidthDiff = nDestWidth - nSourceWidth;
long nHeightDiff = nDestHeight - nSourceHeight;
Fraction aHorFract(1,1);
Fraction aVerFract(1,1);
bool bResize = false;
// sizes can differ by 1 from twips->1/100mm conversion for equal cell sizes,
// don't resize to empty size when pasting into hidden columns or rows
if ( std::abs(nWidthDiff) > 1 && nDestWidth > 1 && nSourceWidth > 1 )
{
aHorFract = Fraction( nDestWidth, nSourceWidth );
bResize = true;
}
if ( std::abs(nHeightDiff) > 1 && nDestHeight > 1 && nSourceHeight > 1 )
{
aVerFract = Fraction( nDestHeight, nSourceHeight );
bResize = true;
}
Point aRefPos = rDestRange.TopLeft(); // for resizing (after moving)
while (pOldObject)
{
tools::Rectangle aObjRect = pOldObject->GetCurrentBoundRect();
// do not copy internal objects (detective) and note captions
SCTAB nClipTab = bRestoreDestTabName ? nDestTab : nSourceTab;
ScRange aClipRange = lcl_getClipRangeFromClipDoc(pClipDoc, nClipTab);
bool bObjectInArea = rSourceRange.IsInside(aObjRect);
const ScDrawObjData* pObjData = ScDrawLayer::GetObjData(pOldObject);
if (pObjData) // Consider images anchored to the copied cell
bObjectInArea = bObjectInArea || aClipRange.In(pObjData->maStart);
if (bObjectInArea && (pOldObject->GetLayer() != SC_LAYER_INTERN)
&& !IsNoteCaption(pOldObject))
{
// Clone to target SdrModel
SdrObject* pNewObject(pOldObject->CloneSdrObject(*this));
if ( bMirrorObj )
MirrorRTL( pNewObject ); // first mirror, then move
pNewObject->NbcMove( aMove );
if ( bResize )
pNewObject->NbcResize( aRefPos, aHorFract, aVerFract );
pDestPage->InsertObject( pNewObject );
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoInsertObj>( *pNewObject ) );
//#i110034# handle chart data references (after InsertObject)
if ( pNewObject->GetObjIdentifier() == OBJ_OLE2 )
{
uno::Reference< embed::XEmbeddedObject > xIPObj = static_cast<SdrOle2Obj*>(pNewObject)->GetObjRef();
uno::Reference< embed::XClassifiedObject > xClassified = xIPObj;
SvGlobalName aObjectClassName;
if ( xClassified.is() )
{
try {
aObjectClassName = SvGlobalName( xClassified->getClassID() );
} catch( uno::Exception& )
{
// TODO: handle error?
}
}
if ( xIPObj.is() && SotExchange::IsChart( aObjectClassName ) )
{
uno::Reference< chart2::XChartDocument > xNewChart( ScChartHelper::GetChartFromSdrObject( pNewObject ) );
if( xNewChart.is() && !xNewChart->hasInternalDataProvider() )
{
OUString aChartName = static_cast<SdrOle2Obj*>(pNewObject)->GetPersistName();
::std::vector< ScRangeList > aRangesVector;
pDoc->GetChartRanges( aChartName, aRangesVector, pDoc );
if( !aRangesVector.empty() )
{
bool bInSourceRange = false;
if ( pClipDoc )
{
bInSourceRange = lcl_IsAllInRange( aRangesVector, aClipRange );
}
// always lose references when pasting into a clipboard document (transpose)
if ( ( bInSourceRange || bSameDoc ) && !bDestClip )
{
if ( bInSourceRange )
{
if ( rDestPos != aClipRange.aStart )
{
// update the data ranges to the new (copied) position
if ( lcl_MoveRanges( aRangesVector, aClipRange, rDestPos ) )
pDoc->SetChartRanges( aChartName, aRangesVector );
}
}
else
{
// leave the ranges unchanged
}
}
else
{
// pasting into a new document without the complete source data
// -> break connection to source data and switch to own data
uno::Reference< chart::XChartDocument > xOldChartDoc( ScChartHelper::GetChartFromSdrObject( pOldObject ), uno::UNO_QUERY );
uno::Reference< chart::XChartDocument > xNewChartDoc( xNewChart, uno::UNO_QUERY );
if( xOldChartDoc.is() && xNewChartDoc.is() )
xNewChartDoc->attachData( xOldChartDoc->getData() );
// (see ScDocument::UpdateChartListenerCollection, PastingDrawFromOtherDoc)
}
}
}
}
}
}
pOldObject = aIter.Next();
}
if( bRestoreDestTabName )
pDoc->RenameTab( nDestTab, aDestTabName );
}
void ScDrawLayer::MirrorRTL( SdrObject* pObj )
{
sal_uInt16 nIdent = pObj->GetObjIdentifier();
// don't mirror OLE or graphics, otherwise ask the object
// if it can be mirrored
bool bCanMirror = ( nIdent != OBJ_GRAF && nIdent != OBJ_OLE2 );
if (bCanMirror)
{
SdrObjTransformInfoRec aInfo;
pObj->TakeObjInfo( aInfo );
bCanMirror = aInfo.bMirror90Allowed;
}
if (bCanMirror)
{
Point aRef1( 0, 0 );
Point aRef2( 0, 1 );
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoGeoObj>( *pObj ) );
pObj->Mirror( aRef1, aRef2 );
}
else
{
// Move instead of mirroring:
// New start position is negative of old end position
// -> move by sum of start and end position
tools::Rectangle aObjRect = pObj->GetLogicRect();
Size aMoveSize( -(aObjRect.Left() + aObjRect.Right()), 0 );
if (bRecording)
AddCalcUndo( std::make_unique<SdrUndoMoveObj>( *pObj, aMoveSize ) );
pObj->Move( aMoveSize );
}
}
void ScDrawLayer::MirrorRectRTL( tools::Rectangle& rRect )
{
// mirror and swap left/right
long nTemp = rRect.Left();
rRect.SetLeft( -rRect.Right() );
rRect.SetRight( -nTemp );
}
tools::Rectangle ScDrawLayer::GetCellRect( const ScDocument& rDoc, const ScAddress& rPos, bool bMergedCell )
{
tools::Rectangle aCellRect;
OSL_ENSURE( rDoc.ValidColRowTab( rPos.Col(), rPos.Row(), rPos.Tab() ), "ScDrawLayer::GetCellRect - invalid cell address" );
if( rDoc.ValidColRowTab( rPos.Col(), rPos.Row(), rPos.Tab() ) )
{
// find top left position of passed cell address
Point aTopLeft;
for( SCCOL nCol = 0; nCol < rPos.Col(); ++nCol )
aTopLeft.AdjustX(rDoc.GetColWidth( nCol, rPos.Tab() ) );
if( rPos.Row() > 0 )
aTopLeft.AdjustY(rDoc.GetRowHeight( 0, rPos.Row() - 1, rPos.Tab() ) );
// find bottom-right position of passed cell address
ScAddress aEndPos = rPos;
if( bMergedCell )
{
const ScMergeAttr* pMerge = rDoc.GetAttr( rPos, ATTR_MERGE );
if( pMerge->GetColMerge() > 1 )
aEndPos.IncCol( pMerge->GetColMerge() - 1 );
if( pMerge->GetRowMerge() > 1 )
aEndPos.IncRow( pMerge->GetRowMerge() - 1 );
}
Point aBotRight = aTopLeft;
for( SCCOL nCol = rPos.Col(); nCol <= aEndPos.Col(); ++nCol )
aBotRight.AdjustX(rDoc.GetColWidth( nCol, rPos.Tab() ) );
aBotRight.AdjustY(rDoc.GetRowHeight( rPos.Row(), aEndPos.Row(), rPos.Tab() ) );
// twips -> 1/100 mm
aTopLeft.setX( static_cast< long >( aTopLeft.X() * HMM_PER_TWIPS ) );
aTopLeft.setY( static_cast< long >( aTopLeft.Y() * HMM_PER_TWIPS ) );
aBotRight.setX( static_cast< long >( aBotRight.X() * HMM_PER_TWIPS ) );
aBotRight.setY( static_cast< long >( aBotRight.Y() * HMM_PER_TWIPS ) );
aCellRect = tools::Rectangle( aTopLeft, aBotRight );
if( rDoc.IsNegativePage( rPos.Tab() ) )
MirrorRectRTL( aCellRect );
}
return aCellRect;
}
OUString ScDrawLayer::GetVisibleName( const SdrObject* pObj )
{
OUString aName = pObj->GetName();
if ( pObj->GetObjIdentifier() == OBJ_OLE2 )
{
// For OLE, the user defined name (GetName) is used
// if it's not empty (accepting possibly duplicate names),
// otherwise the persist name is used so every object appears
// in the Navigator at all.
if ( aName.isEmpty() )
aName = static_cast<const SdrOle2Obj*>(pObj)->GetPersistName();
}
return aName;
}
static bool IsNamedObject( const SdrObject* pObj, const OUString& rName )
{
// sal_True if rName is the object's Name or PersistName
// (used to find a named object)
return ( pObj->GetName() == rName ||
( pObj->GetObjIdentifier() == OBJ_OLE2 &&
static_cast<const SdrOle2Obj*>(pObj)->GetPersistName() == rName ) );
}
SdrObject* ScDrawLayer::GetNamedObject( const OUString& rName, sal_uInt16 nId, SCTAB& rFoundTab ) const
{
sal_uInt16 nTabCount = GetPageCount();
for (sal_uInt16 nTab=0; nTab<nTabCount; nTab++)
{
const SdrPage* pPage = GetPage(nTab);
OSL_ENSURE(pPage,"Page ?");
if (pPage)
{
SdrObjListIter aIter( pPage, SdrIterMode::DeepWithGroups );
SdrObject* pObject = aIter.Next();
while (pObject)
{
if ( nId == 0 || pObject->GetObjIdentifier() == nId )
if ( IsNamedObject( pObject, rName ) )
{
rFoundTab = static_cast<SCTAB>(nTab);
return pObject;
}
pObject = aIter.Next();
}
}
}
return nullptr;
}
OUString ScDrawLayer::GetNewGraphicName( long* pnCounter ) const
{
OUString aBase = ScResId(STR_GRAPHICNAME) + " ";
bool bThere = true;
OUString aGraphicName;
SCTAB nDummy;
long nId = pnCounter ? *pnCounter : 0;
while (bThere)
{
++nId;
aGraphicName = aBase + OUString::number( nId );
bThere = ( GetNamedObject( aGraphicName, 0, nDummy ) != nullptr );
}
if ( pnCounter )
*pnCounter = nId;
return aGraphicName;
}
void ScDrawLayer::EnsureGraphicNames()
{
// make sure all graphic objects have names (after Excel import etc.)
sal_uInt16 nTabCount = GetPageCount();
for (sal_uInt16 nTab=0; nTab<nTabCount; nTab++)
{
SdrPage* pPage = GetPage(nTab);
OSL_ENSURE(pPage,"Page ?");
if (pPage)
{
SdrObjListIter aIter( pPage, SdrIterMode::DeepWithGroups );
SdrObject* pObject = aIter.Next();
/* The index passed to GetNewGraphicName() will be set to
the used index in each call. This prevents the repeated search
for all names from 1 to current index. */
long nCounter = 0;
while (pObject)
{
if ( pObject->GetObjIdentifier() == OBJ_GRAF && pObject->GetName().isEmpty())
pObject->SetName( GetNewGraphicName( &nCounter ) );
pObject = aIter.Next();
}
}
}
}
namespace
{
SdrObjUserData* GetFirstUserDataOfType(const SdrObject *pObj, sal_uInt16 nId)
{
sal_uInt16 nCount = pObj ? pObj->GetUserDataCount() : 0;
for( sal_uInt16 i = 0; i < nCount; i++ )
{
SdrObjUserData* pData = pObj->GetUserData( i );
if( pData && pData->GetInventor() == SdrInventor::ScOrSwDraw && pData->GetId() == nId )
return pData;
}
return nullptr;
}
void DeleteFirstUserDataOfType(SdrObject *pObj, sal_uInt16 nId)
{
sal_uInt16 nCount = pObj ? pObj->GetUserDataCount() : 0;
for( sal_uInt16 i = nCount; i > 0; i-- )
{
SdrObjUserData* pData = pObj->GetUserData( i-1 );
if( pData && pData->GetInventor() == SdrInventor::ScOrSwDraw && pData->GetId() == nId )
pObj->DeleteUserData(i-1);
}
}
}
void ScDrawLayer::SetVisualCellAnchored( SdrObject &rObj, const ScDrawObjData &rAnchor )
{
ScDrawObjData* pAnchor = GetNonRotatedObjData( &rObj, true );
pAnchor->maStart = rAnchor.maStart;
pAnchor->maEnd = rAnchor.maEnd;
pAnchor->maStartOffset = rAnchor.maStartOffset;
pAnchor->maEndOffset = rAnchor.maEndOffset;
pAnchor->mbResizeWithCell = rAnchor.mbResizeWithCell;
}
void ScDrawLayer::SetCellAnchored( SdrObject &rObj, const ScDrawObjData &rAnchor )
{
ScDrawObjData* pAnchor = GetObjData( &rObj, true );
pAnchor->maStart = rAnchor.maStart;
pAnchor->maEnd = rAnchor.maEnd;
pAnchor->maStartOffset = rAnchor.maStartOffset;
pAnchor->maEndOffset = rAnchor.maEndOffset;
pAnchor->mbResizeWithCell = rAnchor.mbResizeWithCell;
}
void ScDrawLayer::SetCellAnchoredFromPosition( SdrObject &rObj, const ScDocument &rDoc, SCTAB nTab,
bool bResizeWithCell )
{
ScDrawObjData aAnchor;
// set anchor in terms of the visual ( SnapRect )
// object ( e.g. for when object is rotated )
const tools::Rectangle aObjRect(rObj.GetSnapRect());
GetCellAnchorFromPosition(
aObjRect,
aAnchor,
rDoc,
nTab);
aAnchor.mbResizeWithCell = bResizeWithCell;
SetCellAnchored( rObj, aAnchor );
// - keep also an anchor in terms of the Logic ( untransformed ) object
// because that's what we stored ( and still do ) to xml
ScDrawObjData aVisAnchor;
const tools::Rectangle aObjRect2(rObj.GetLogicRect());
GetCellAnchorFromPosition(
aObjRect2,
aVisAnchor,
rDoc,
nTab);
aVisAnchor.mbResizeWithCell = bResizeWithCell;
SetVisualCellAnchored( rObj, aVisAnchor );
// absolutely necessary to set flag that in order to prevent ScDrawLayer::RecalcPos
// doing an initialisation hack
if ( ScDrawObjData* pAnchor = GetObjData( &rObj ) )
{
pAnchor->setShapeRect(&rDoc, rObj.GetSnapRect());
}
}
void ScDrawLayer::GetCellAnchorFromPosition(
const tools::Rectangle &rObjRect,
ScDrawObjData &rAnchor,
const ScDocument &rDoc,
SCTAB nTab,
bool bHiddenAsZero)
{
ScRange aRange = rDoc.GetRange( nTab, rObjRect, bHiddenAsZero );
tools::Rectangle aCellRect;
rAnchor.maStart = aRange.aStart;
aCellRect = rDoc.GetMMRect( aRange.aStart.Col(), aRange.aStart.Row(),
aRange.aStart.Col(), aRange.aStart.Row(), aRange.aStart.Tab(), bHiddenAsZero );
rAnchor.maStartOffset.setY( rObjRect.Top()-aCellRect.Top() );
if (!rDoc.IsNegativePage(nTab))
rAnchor.maStartOffset.setX( rObjRect.Left()-aCellRect.Left() );
else
rAnchor.maStartOffset.setX( aCellRect.Right()-rObjRect.Right() );
rAnchor.maEnd = aRange.aEnd;
aCellRect = rDoc.GetMMRect( aRange.aEnd.Col(), aRange.aEnd.Row(),
aRange.aEnd.Col(), aRange.aEnd.Row(), aRange.aEnd.Tab(), bHiddenAsZero );
if (!rObjRect.IsEmpty())
rAnchor.maEndOffset.setY( rObjRect.Bottom()-aCellRect.Top() );
if (!rDoc.IsNegativePage(nTab))
{
if (!rObjRect.IsEmpty())
rAnchor.maEndOffset.setX( rObjRect.Right()-aCellRect.Left() );
}
else
rAnchor.maEndOffset.setX( aCellRect.Right()-rObjRect.Left() );
}
void ScDrawLayer::UpdateCellAnchorFromPositionEnd( const SdrObject &rObj, ScDrawObjData &rAnchor, const ScDocument &rDoc, SCTAB nTab, bool bUseLogicRect )
{
tools::Rectangle aObjRect(bUseLogicRect ? rObj.GetLogicRect() : rObj.GetSnapRect());
ScRange aRange = rDoc.GetRange( nTab, aObjRect );
ScDrawObjData* pAnchor = &rAnchor;
pAnchor->maEnd = aRange.aEnd;
tools::Rectangle aCellRect = rDoc.GetMMRect( aRange.aEnd.Col(), aRange.aEnd.Row(),
aRange.aEnd.Col(), aRange.aEnd.Row(), aRange.aEnd.Tab() );
pAnchor->maEndOffset.setY( aObjRect.Bottom()-aCellRect.Top() );
if (!rDoc.IsNegativePage(nTab))
pAnchor->maEndOffset.setX( aObjRect.Right()-aCellRect.Left() );
else
pAnchor->maEndOffset.setX( aCellRect.Right()-aObjRect.Left() );
}
bool ScDrawLayer::IsCellAnchored( const SdrObject& rObj )
{
// Cell anchored object always has a user data, to store the anchor cell
// info. If it doesn't then it's page-anchored.
return GetFirstUserDataOfType(&rObj, SC_UD_OBJDATA) != nullptr;
}
bool ScDrawLayer::IsResizeWithCell( const SdrObject& rObj )
{
// Cell anchored object always has a user data, to store the anchor cell
// info. If it doesn't then it's page-anchored.
ScDrawObjData* pDrawObjData = GetObjData(const_cast<SdrObject*>(&rObj));
if (!pDrawObjData)
return false;
return pDrawObjData->mbResizeWithCell;
}
void ScDrawLayer::SetPageAnchored( SdrObject &rObj )
{
DeleteFirstUserDataOfType(&rObj, SC_UD_OBJDATA);
DeleteFirstUserDataOfType(&rObj, SC_UD_OBJDATA);
}
ScAnchorType ScDrawLayer::GetAnchorType( const SdrObject &rObj )
{
//If this object has a cell anchor associated with it
//then it's cell-anchored, otherwise it's page-anchored
const ScDrawObjData* pObjData = ScDrawLayer::GetObjData(const_cast<SdrObject*>(&rObj));
// When there is no cell anchor, it is page anchored.
if (!pObjData)
return SCA_PAGE;
// It's cell-anchored, check if the object resizes with the cell
if (pObjData->mbResizeWithCell)
return SCA_CELL_RESIZE;
return SCA_CELL;
}
std::vector<SdrObject*>
ScDrawLayer::GetObjectsAnchoredToRows(SCTAB nTab, SCROW nStartRow, SCROW nEndRow)
{
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
if (!pPage || pPage->GetObjCount() < 1)
return std::vector<SdrObject*>();
std::vector<SdrObject*> aObjects;
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
ScRange aRange( 0, nStartRow, nTab, MAXCOL, nEndRow, nTab);
while (pObject)
{
if (!dynamic_cast<SdrCaptionObj*>(pObject)) // Caption objects are handled differently
{
ScDrawObjData* pObjData = GetObjData(pObject);
if (pObjData && aRange.In(pObjData->maStart))
aObjects.push_back(pObject);
}
pObject = aIter.Next();
}
return aObjects;
}
std::map<SCROW, std::vector<SdrObject*>>
ScDrawLayer::GetObjectsAnchoredToRange(SCTAB nTab, SCCOL nCol, SCROW nStartRow, SCROW nEndRow)
{
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(nTab));
if (!pPage || pPage->GetObjCount() < 1)
return std::map<SCROW, std::vector<SdrObject*>>();
std::map<SCROW, std::vector<SdrObject*>> aRowObjects;
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
ScRange aRange( nCol, nStartRow, nTab, nCol, nEndRow, nTab);
while (pObject)
{
if (!dynamic_cast<SdrCaptionObj*>(pObject)) // Caption objects are handled differently
{
ScDrawObjData* pObjData = GetObjData(pObject);
if (pObjData && aRange.In(pObjData->maStart))
aRowObjects[pObjData->maStart.Row()].push_back(pObject);
}
pObject = aIter.Next();
}
return aRowObjects;
}
bool ScDrawLayer::HasObjectsAnchoredInRange(const ScRange& rRange)
{
// This only works for one table at a time
assert(rRange.aStart.Tab() == rRange.aEnd.Tab());
SdrPage* pPage = GetPage(static_cast<sal_uInt16>(rRange.aStart.Tab()));
if (!pPage || pPage->GetObjCount() < 1)
return false;
SdrObjListIter aIter( pPage, SdrIterMode::Flat );
SdrObject* pObject = aIter.Next();
while (pObject)
{
if (!dynamic_cast<SdrCaptionObj*>(pObject)) // Caption objects are handled differently
{
ScDrawObjData* pObjData = GetObjData(pObject);
if (pObjData && rRange.In(pObjData->maStart)) // Object is in given range
return true;
}
pObject = aIter.Next();
}
return false;
}
void ScDrawLayer::MoveObject(SdrObject* pObject, const ScAddress& rNewPosition)
{
// Get anchor data
ScDrawObjData* pObjData = GetObjData(pObject, false);
if (!pObjData)
return;
const ScAddress aOldStart = pObjData->maStart;
const ScAddress aOldEnd = pObjData->maEnd;
// Set start address
pObjData->maStart = rNewPosition;
// Set end address
const SCCOL nObjectColSpan = aOldEnd.Col() - aOldStart.Col();
const SCROW nObjectRowSpan = aOldEnd.Row() - aOldStart.Row();
ScAddress aNewEnd = rNewPosition;
aNewEnd.IncRow(nObjectRowSpan);
aNewEnd.IncCol(nObjectColSpan);
pObjData->maEnd = aNewEnd;
// Update draw object according to new anchor
RecalcPos(pObject, *pObjData, false, false);
}
ScDrawObjData* ScDrawLayer::GetNonRotatedObjData( SdrObject* pObj, bool bCreate )
{
sal_uInt16 nCount = pObj ? pObj->GetUserDataCount() : 0;
sal_uInt16 nFound = 0;
for( sal_uInt16 i = 0; i < nCount; i++ )
{
SdrObjUserData* pData = pObj->GetUserData( i );
if( pData && pData->GetInventor() == SdrInventor::ScOrSwDraw && pData->GetId() == SC_UD_OBJDATA && ++nFound == 2 )
return static_cast<ScDrawObjData*>(pData);
}
if( pObj && bCreate )
{
ScDrawObjData* pData = new ScDrawObjData;
pObj->AppendUserData(std::unique_ptr<SdrObjUserData>(pData));
return pData;
}
return nullptr;
}
ScDrawObjData* ScDrawLayer::GetObjData( SdrObject* pObj, bool bCreate )
{
if (SdrObjUserData *pData = GetFirstUserDataOfType(pObj, SC_UD_OBJDATA))
return static_cast<ScDrawObjData*>(pData);
if( pObj && bCreate )
{
ScDrawObjData* pData = new ScDrawObjData;
pObj->AppendUserData(std::unique_ptr<SdrObjUserData>(pData));
return pData;
}
return nullptr;
}
ScDrawObjData* ScDrawLayer::GetObjDataTab( SdrObject* pObj, SCTAB nTab )
{
ScDrawObjData* pData = GetObjData( pObj );
if ( pData )
{
if ( pData->maStart.IsValid() )
pData->maStart.SetTab( nTab );
if ( pData->maEnd.IsValid() )
pData->maEnd.SetTab( nTab );
}
return pData;
}
bool ScDrawLayer::IsNoteCaption( SdrObject* pObj )
{
ScDrawObjData* pData = pObj ? GetObjData( pObj ) : nullptr;
return pData && pData->meType == ScDrawObjData::CellNote;
}
ScDrawObjData* ScDrawLayer::GetNoteCaptionData( SdrObject* pObj, SCTAB nTab )
{
ScDrawObjData* pData = pObj ? GetObjDataTab( pObj, nTab ) : nullptr;
return (pData && pData->meType == ScDrawObjData::CellNote) ? pData : nullptr;
}
ScMacroInfo* ScDrawLayer::GetMacroInfo( SdrObject* pObj, bool bCreate )
{
if (SdrObjUserData *pData = GetFirstUserDataOfType(pObj, SC_UD_MACRODATA))
return static_cast<ScMacroInfo*>(pData);
if ( bCreate )
{
ScMacroInfo* pData = new ScMacroInfo;
pObj->AppendUserData(std::unique_ptr<SdrObjUserData>(pData));
return pData;
}
return nullptr;
}
void ScDrawLayer::SetGlobalDrawPersist(SfxObjectShell* pPersist)
{
OSL_ENSURE(!pGlobalDrawPersist,"Multiple SetGlobalDrawPersist");
pGlobalDrawPersist = pPersist;
}
void ScDrawLayer::SetChanged( bool bFlg /* = true */ )
{
if ( bFlg && pDoc )
pDoc->SetChartListenerCollectionNeedsUpdate( true );
FmFormModel::SetChanged( bFlg );
}
css::uno::Reference< css::uno::XInterface > ScDrawLayer::createUnoModel()
{
css::uno::Reference< css::uno::XInterface > xRet;
if( pDoc && pDoc->GetDocumentShell() )
xRet = pDoc->GetDocumentShell()->GetModel();
return xRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|