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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <hintids.hxx>
#include <vcl/graph.hxx>
#include <sot/formats.hxx>
#include <sot/storage.hxx>
#include <unotools/pathoptions.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/viewsh.hxx>
#include <svx/xexch.hxx>
#include <svx/xflasit.hxx>
#include <svx/xfillit0.hxx>
#include <svx/xflclit.hxx>
#include <editeng/brushitem.hxx>
#include <svx/svdocapt.hxx>
#include <svx/svdouno.hxx>
#include <svx/xfillit.hxx>
#include <svx/svdpage.hxx>
#include <svx/svdogrp.hxx>
#include <svx/xoutbmp.hxx>
#include <svx/svdoole2.hxx>
#include <svx/fmmodel.hxx>
#include <svx/unomodel.hxx>
#include <svx/svditer.hxx>
#include <svx/svdograf.hxx>
#include <unotools/streamwrap.hxx>
#include <fmtanchr.hxx>
#include <fmtcntnt.hxx>
#include <fmtornt.hxx>
#include <fmtflcnt.hxx>
#include <frmfmt.hxx>
#include <docary.hxx>
#include <txtfrm.hxx>
#include <txtflcnt.hxx>
#include <fesh.hxx>
#include <doc.hxx>
#include <IDocumentUndoRedo.hxx>
#include <IDocumentDrawModelAccess.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <DocumentFieldsManager.hxx>
#include <IDocumentLayoutAccess.hxx>
#include <rootfrm.hxx>
#include <ndtxt.hxx>
#include <pam.hxx>
#include <tblsel.hxx>
#include <swtable.hxx>
#include <flyfrm.hxx>
#include <pagefrm.hxx>
#include <fldbas.hxx>
#include <edimp.hxx>
#include <swundo.hxx>
#include <viewimp.hxx>
#include <dview.hxx>
#include <dcontact.hxx>
#include <dflyobj.hxx>
#include <docsh.hxx>
#include <pagedesc.hxx>
#include <mvsave.hxx>
#include <textboxhelper.hxx>
#include <vcl/virdev.hxx>
#include <svx/svdundo.hxx>
using namespace ::com::sun::star;
// Copy for the internal clipboard. Copies all selections to the clipboard.
bool SwFEShell::Copy( SwDoc* pClpDoc, const OUString* pNewClpText )
{
OSL_ENSURE( pClpDoc, "kein Clipboard-Dokument" );
pClpDoc->GetIDocumentUndoRedo().DoUndo(false); // always false!
// delete content if ClpDocument contains content
SwNodeIndex aSttIdx( pClpDoc->GetNodes().GetEndOfExtras(), 2 );
SwNodeIndex aEndNdIdx( *aSttIdx.GetNode().EndOfSectionNode() );
SwTextNode* pTextNd = aSttIdx.GetNode().GetTextNode();
if (!pTextNd || !pTextNd->GetText().isEmpty() ||
aSttIdx.GetIndex()+1 != pClpDoc->GetNodes().GetEndOfContent().GetIndex() )
{
pClpDoc->GetNodes().Delete( aSttIdx,
pClpDoc->GetNodes().GetEndOfContent().GetIndex() - aSttIdx.GetIndex() );
pTextNd = pClpDoc->GetNodes().MakeTextNode( aSttIdx,
pClpDoc->GetDfltTextFormatColl() );
--aSttIdx;
}
// also delete surrounding FlyFrames if any
for( const auto pFly : *pClpDoc->GetSpzFrameFormats() )
{
SwFormatAnchor const*const pAnchor = &pFly->GetAnchor();
SwPosition const*const pAPos = pAnchor->GetContentAnchor();
if (pAPos &&
((FLY_AT_PARA == pAnchor->GetAnchorId()) ||
(FLY_AT_CHAR == pAnchor->GetAnchorId())) &&
aSttIdx <= pAPos->nNode && pAPos->nNode <= aEndNdIdx )
{
pClpDoc->getIDocumentLayoutAccess().DelLayoutFormat( pFly );
}
}
pClpDoc->GetDocumentFieldsManager().GCFieldTypes(); // delete the FieldTypes
// if a string was passed, copy it to the clipboard-
// document. Then also the Calculator can use the internal
// clipboard
if( pNewClpText )
{
pTextNd->InsertText( *pNewClpText, SwIndex( pTextNd ) );
return true; // das wars.
}
pClpDoc->getIDocumentFieldsAccess().LockExpFields();
pClpDoc->getIDocumentRedlineAccess().SetRedlineMode_intern( nsRedlineMode_t::REDLINE_DELETE_REDLINES );
bool bRet;
// do we want to copy a FlyFrame?
if( IsFrameSelected() )
{
// get the FlyFormat
SwFlyFrame* pFly = GetSelectedFlyFrame();
SwFrameFormat* pFlyFormat = pFly->GetFormat();
SwFormatAnchor aAnchor( pFlyFormat->GetAnchor() );
if ((FLY_AT_PARA == aAnchor.GetAnchorId()) ||
(FLY_AT_CHAR == aAnchor.GetAnchorId()) ||
(FLY_AT_FLY == aAnchor.GetAnchorId()) ||
(FLY_AS_CHAR == aAnchor.GetAnchorId()))
{
SwPosition aPos( aSttIdx );
if ( FLY_AS_CHAR == aAnchor.GetAnchorId() )
{
aPos.nContent.Assign( pTextNd, 0 );
}
aAnchor.SetAnchor( &aPos );
}
pFlyFormat = pClpDoc->getIDocumentLayoutAccess().CopyLayoutFormat( *pFlyFormat, aAnchor, true, true );
// assure the "RootFormat" is the first element in Spz-Array
// (if necessary Flys were copied in Flys)
SwFrameFormats& rSpzFrameFormats = *pClpDoc->GetSpzFrameFormats();
if( rSpzFrameFormats[ 0 ] != pFlyFormat )
{
SwFrameFormats::iterator it = std::find( rSpzFrameFormats.begin(), rSpzFrameFormats.end(), pFlyFormat );
OSL_ENSURE( it != rSpzFrameFormats.end(), "Fly not contained in Spz-Array" );
rSpzFrameFormats.erase( it );
rSpzFrameFormats.insert( rSpzFrameFormats.begin(), pFlyFormat );
}
if ( FLY_AS_CHAR == aAnchor.GetAnchorId() )
{
// JP 13.02.99 Bug 61863: if a frameselection is passed to the
// clipboard, it should be found at pasting. Therefore
// the copied TextAttribut should be removed in the node
// otherwise it will be recognised as TextSelektion
const SwIndex& rIdx = pFlyFormat->GetAnchor().GetContentAnchor()->nContent;
SwTextFlyCnt *const pTextFly = static_cast<SwTextFlyCnt *>(
pTextNd->GetTextAttrForCharAt(
rIdx.GetIndex(), RES_TXTATR_FLYCNT));
if( pTextFly )
{
const_cast<SwFormatFlyCnt&>(pTextFly->GetFlyCnt()).SetFlyFormat();
pTextNd->EraseText( rIdx, 1 );
}
}
bRet = true;
}
else if ( IsObjSelected() )
{
SwPosition aPos( aSttIdx, SwIndex( pTextNd, 0 ));
const SdrMarkList &rMrkList = Imp()->GetDrawView()->GetMarkedObjectList();
for ( size_t i = 0; i < rMrkList.GetMarkCount(); ++i )
{
SdrObject *pObj = rMrkList.GetMark( i )->GetMarkedSdrObj();
if( Imp()->GetDrawView()->IsGroupEntered() ||
( !pObj->GetUserCall() && pObj->GetUpGroup()) )
{
SfxItemSet aSet( pClpDoc->GetAttrPool(), aFrameFormatSetRange );
SwFormatAnchor aAnchor( FLY_AT_PARA );
aAnchor.SetAnchor( &aPos );
aSet.Put( aAnchor );
SdrObject *const pNew =
pClpDoc->CloneSdrObj( *pObj );
SwPaM aTemp(aPos);
pClpDoc->getIDocumentContentOperations().InsertDrawObj(aTemp, *pNew, aSet );
}
else
{
SwDrawContact *pContact = static_cast<SwDrawContact*>(GetUserCall( pObj ));
SwFrameFormat *pFormat = pContact->GetFormat();
SwFormatAnchor aAnchor( pFormat->GetAnchor() );
if ((FLY_AT_PARA == aAnchor.GetAnchorId()) ||
(FLY_AT_CHAR == aAnchor.GetAnchorId()) ||
(FLY_AT_FLY == aAnchor.GetAnchorId()) ||
(FLY_AS_CHAR == aAnchor.GetAnchorId()))
{
aAnchor.SetAnchor( &aPos );
}
pClpDoc->getIDocumentLayoutAccess().CopyLayoutFormat( *pFormat, aAnchor, true, true );
}
}
bRet = true;
}
else
bRet = CopySelToDoc( pClpDoc ); // copy the selections
pClpDoc->getIDocumentRedlineAccess().SetRedlineMode_intern((RedlineMode_t)0 );
pClpDoc->getIDocumentFieldsAccess().UnlockExpFields();
if( !pClpDoc->getIDocumentFieldsAccess().IsExpFieldsLocked() )
pClpDoc->getIDocumentFieldsAccess().UpdateExpFields(nullptr, true);
return bRet;
}
static const Point &lcl_FindBasePos( const SwFrame *pFrame, const Point &rPt )
{
const SwFrame *pF = pFrame;
while ( pF && !pF->Frame().IsInside( rPt ) )
{
if ( pF->IsContentFrame() )
pF = static_cast<const SwContentFrame*>(pF)->GetFollow();
else
pF = nullptr;
}
if ( pF )
return pF->Frame().Pos();
else
return pFrame->Frame().Pos();
}
static bool lcl_SetAnchor( const SwPosition& rPos, const SwNode& rNd, SwFlyFrame* pFly,
const Point& rInsPt, SwFEShell& rDestShell, SwFormatAnchor& rAnchor,
Point& rNewPos, bool bCheckFlyRecur )
{
bool bRet = true;
rAnchor.SetAnchor( &rPos );
SwContentFrame* pTmpFrame = rNd.GetContentNode()->getLayoutFrame( rDestShell.GetLayout(), &rInsPt, nullptr, false );
SwFlyFrame *pTmpFly = pTmpFrame->FindFlyFrame();
if( pTmpFly && bCheckFlyRecur && pFly->IsUpperOf( *pTmpFly ) )
{
bRet = false;
}
else if ( FLY_AT_FLY == rAnchor.GetAnchorId() )
{
if( pTmpFly )
{
const SwNodeIndex& rIdx = *pTmpFly->GetFormat()->GetContent().GetContentIdx();
SwPosition aPos( rIdx );
rAnchor.SetAnchor( &aPos );
rNewPos = pTmpFly->Frame().Pos();
}
else
{
rAnchor.SetType( FLY_AT_PAGE );
rAnchor.SetPageNum( rDestShell.GetPageNumber( rInsPt ) );
const SwFrame *pPg = pTmpFrame->FindPageFrame();
rNewPos = pPg->Frame().Pos();
}
}
else
rNewPos = ::lcl_FindBasePos( pTmpFrame, rInsPt );
return bRet;
}
bool SwFEShell::CopyDrawSel( SwFEShell* pDestShell, const Point& rSttPt,
const Point& rInsPt, bool bIsMove, bool bSelectInsert )
{
bool bRet = true;
// The list should be copied, because below new objects will be selected
const SdrMarkList aMrkList( Imp()->GetDrawView()->GetMarkedObjectList() );
const size_t nMarkCount = aMrkList.GetMarkCount();
if( !pDestShell->Imp()->GetDrawView() )
// should create it now
pDestShell->MakeDrawView();
else if( bSelectInsert )
pDestShell->Imp()->GetDrawView()->UnmarkAll();
SdrPageView *pDestPgView = pDestShell->Imp()->GetPageView(),
*pSrcPgView = Imp()->GetPageView();
SwDrawView *pDestDrwView = pDestShell->Imp()->GetDrawView(),
*pSrcDrwView = Imp()->GetDrawView();
SwDoc* pDestDoc = pDestShell->GetDoc();
Size aSiz( rInsPt.X() - rSttPt.X(), rInsPt.Y() - rSttPt.Y() );
for( size_t i = 0; i < nMarkCount; ++i )
{
SdrObject *pObj = aMrkList.GetMark( i )->GetMarkedSdrObj();
SwDrawContact *pContact = static_cast<SwDrawContact*>(GetUserCall( pObj ));
SwFrameFormat *pFormat = pContact->GetFormat();
const SwFormatAnchor& rAnchor = pFormat->GetAnchor();
bool bInsWithFormat = true;
if( pDestDrwView->IsGroupEntered() )
{
// insert into the group, when it belongs to an entered group
// or when the object is not anchored as a character
if( pSrcDrwView->IsGroupEntered() ||
(FLY_AS_CHAR != rAnchor.GetAnchorId()) )
{
SdrObject* pNew = pDestDoc->CloneSdrObj( *pObj, bIsMove &&
GetDoc() == pDestDoc, false );
pNew->NbcMove( aSiz );
pDestDrwView->InsertObjectAtView( pNew, *pDestPgView );
bInsWithFormat = false;
}
}
if( bInsWithFormat )
{
SwFormatAnchor aAnchor( rAnchor );
Point aNewAnch;
if ((FLY_AT_PARA == aAnchor.GetAnchorId()) ||
(FLY_AT_CHAR == aAnchor.GetAnchorId()) ||
(FLY_AT_FLY == aAnchor.GetAnchorId()) ||
(FLY_AS_CHAR == aAnchor.GetAnchorId()))
{
if ( this == pDestShell )
{
// same shell? Then request the position
// from the passed DocumentPosition
SwPosition aPos( *GetCursor()->GetPoint() );
Point aPt( rInsPt );
aPt -= rSttPt - pObj->GetSnapRect().TopLeft();
SwCursorMoveState aState( MV_SETONLYTEXT );
GetLayout()->GetCursorOfst( &aPos, aPt, &aState );
const SwNode *pNd;
if( (pNd = &aPos.nNode.GetNode())->IsNoTextNode() )
bRet = false;
else
bRet = ::lcl_SetAnchor( aPos, *pNd, nullptr, rInsPt,
*pDestShell, aAnchor, aNewAnch, false );
}
else
{
SwPaM *pCursor = pDestShell->GetCursor();
if( pCursor->GetNode().IsNoTextNode() )
bRet = false;
else
bRet = ::lcl_SetAnchor( *pCursor->GetPoint(),
pCursor->GetNode(), nullptr, rInsPt,
*pDestShell, aAnchor,
aNewAnch, false );
}
}
else if ( FLY_AT_PAGE == aAnchor.GetAnchorId() )
{
aAnchor.SetPageNum( pDestShell->GetPageNumber( rInsPt ) );
const SwRootFrame* pTmpRoot = pDestShell->GetLayout();
const SwFrame* pPg = pTmpRoot->GetPageAtPos( rInsPt, nullptr, true );
if ( pPg )
aNewAnch = pPg->Frame().Pos();
}
if( bRet )
{
if( pSrcDrwView->IsGroupEntered() ||
( !pObj->GetUserCall() && pObj->GetUpGroup()) )
{
SfxItemSet aSet( pDestDoc->GetAttrPool(),aFrameFormatSetRange);
aSet.Put( aAnchor );
SdrObject* pNew = pDestDoc->CloneSdrObj( *pObj, bIsMove &&
GetDoc() == pDestDoc );
pFormat = pDestDoc->getIDocumentContentOperations().InsertDrawObj( *pDestShell->GetCursor(), *pNew, aSet );
}
else
pFormat = pDestDoc->getIDocumentLayoutAccess().CopyLayoutFormat( *pFormat, aAnchor, true, true );
// Can be 0, as Draws are not allowed in Headers/Footers
if ( pFormat )
{
SdrObject* pNew = pFormat->FindSdrObject();
if ( FLY_AS_CHAR != aAnchor.GetAnchorId() )
{
Point aPos( rInsPt );
aPos -= aNewAnch;
aPos -= rSttPt - pObj->GetSnapRect().TopLeft();
// OD 2004-04-05 #i26791# - change attributes instead of
// direct positioning
pFormat->SetFormatAttr( SwFormatHoriOrient( aPos.getX(), text::HoriOrientation::NONE, text::RelOrientation::FRAME ) );
pFormat->SetFormatAttr( SwFormatVertOrient( aPos.getY(), text::VertOrientation::NONE, text::RelOrientation::FRAME ) );
// #i47455# - notify draw frame format
// that position attributes are already set.
if ( dynamic_cast<const SwDrawFrameFormat*>( pFormat) != nullptr )
{
static_cast<SwDrawFrameFormat*>(pFormat)->PosAttrSet();
}
}
if( bSelectInsert )
pDestDrwView->MarkObj( pNew, pDestPgView );
}
}
}
}
if ( bIsMove && bRet )
{
if( pDestShell == this )
{
const SdrMarkList aList( pSrcDrwView->GetMarkedObjectList() );
pSrcDrwView->UnmarkAll();
for ( size_t i = 0, nMrkCnt = aMrkList.GetMarkCount(); i < nMrkCnt; ++i )
{
SdrObject *pObj = aMrkList.GetMark( i )->GetMarkedSdrObj();
pSrcDrwView->MarkObj( pObj, pSrcPgView );
}
DelSelectedObj();
for ( size_t i = 0, nMrkCnt = aList.GetMarkCount(); i < nMrkCnt; ++i )
{
SdrObject *pObj = aList.GetMark( i )->GetMarkedSdrObj();
pSrcDrwView->MarkObj( pObj, pSrcPgView );
}
}
else
DelSelectedObj();
}
return bRet;
}
bool SwFEShell::Copy( SwFEShell* pDestShell, const Point& rSttPt,
const Point& rInsPt, bool bIsMove, bool bSelectInsert )
{
bool bRet = false;
OSL_ENSURE( pDestShell, "Copy without DestShell." );
OSL_ENSURE( this == pDestShell || !pDestShell->IsObjSelected(),
"Dest-Shell cannot be in Obj-Mode" );
SET_CURR_SHELL( pDestShell );
pDestShell->StartAllAction();
pDestShell->GetDoc()->getIDocumentFieldsAccess().LockExpFields();
// Shift references
bool bCopyIsMove = mpDoc->IsCopyIsMove();
if( bIsMove )
// set a flag in Doc, handled in TextNodes
mpDoc->SetCopyIsMove( true );
RedlineMode_t eOldRedlMode = pDestShell->GetDoc()->getIDocumentRedlineAccess().GetRedlineMode();
pDestShell->GetDoc()->getIDocumentRedlineAccess().SetRedlineMode_intern( (RedlineMode_t)(eOldRedlMode | nsRedlineMode_t::REDLINE_DELETE_REDLINES));
// If there are table formulas in the area, then display the table first
// so that the table formula can calculate a new value first
// (individual boxes in the area are retrieved via the layout)
SwFieldType* pTableFieldTyp = pDestShell->GetDoc()->getIDocumentFieldsAccess().GetSysFieldType( RES_TABLEFLD );
if( IsFrameSelected() )
{
SwFlyFrame* pFly = GetSelectedFlyFrame();
SwFrameFormat* pFlyFormat = pFly->GetFormat();
SwFormatAnchor aAnchor( pFlyFormat->GetAnchor() );
bRet = true;
Point aNewAnch;
if ((FLY_AT_PARA == aAnchor.GetAnchorId()) ||
(FLY_AT_CHAR == aAnchor.GetAnchorId()) ||
(FLY_AT_FLY == aAnchor.GetAnchorId()) ||
(FLY_AS_CHAR == aAnchor.GetAnchorId()))
{
if ( this == pDestShell )
{
// same shell? Then request the position
// from the passed DocumentPosition
SwPosition aPos( *GetCursor()->GetPoint() );
Point aPt( rInsPt );
aPt -= rSttPt - pFly->Frame().Pos();
SwCursorMoveState aState( MV_SETONLYTEXT );
GetLayout()->GetCursorOfst( &aPos, aPt, &aState );
const SwNode *pNd;
if( (pNd = &aPos.nNode.GetNode())->IsNoTextNode() )
bRet = false;
else
{
// do not copy in itself
const SwNodeIndex *pTmp = pFlyFormat->GetContent().GetContentIdx();
if ( aPos.nNode > *pTmp && aPos.nNode <
pTmp->GetNode().EndOfSectionIndex() )
{
bRet = false;
}
else
bRet = ::lcl_SetAnchor( aPos, *pNd, pFly, rInsPt,
*pDestShell, aAnchor, aNewAnch, true );
}
}
else
{
const SwPaM *pCursor = pDestShell->GetCursor();
if( pCursor->GetNode().IsNoTextNode() )
bRet = false;
else
bRet = ::lcl_SetAnchor( *pCursor->GetPoint(), pCursor->GetNode(),
pFly, rInsPt, *pDestShell, aAnchor,
aNewAnch, GetDoc() == pDestShell->GetDoc());
}
}
else if ( FLY_AT_PAGE == aAnchor.GetAnchorId() )
{
aAnchor.SetPageNum( pDestShell->GetPageNumber( rInsPt ) );
const SwRootFrame* pTmpRoot = pDestShell->GetLayout();
const SwFrame* pPg = pTmpRoot->GetPageAtPos( rInsPt, nullptr, true );
if ( pPg )
aNewAnch = pPg->Frame().Pos();
}
else {
OSL_ENSURE( false, "what anchor is it?" );
}
if( bRet )
{
SwFrameFormat *pOldFormat = pFlyFormat;
pFlyFormat = pDestShell->GetDoc()->getIDocumentLayoutAccess().CopyLayoutFormat( *pFlyFormat, aAnchor, true, true );
if ( FLY_AS_CHAR != aAnchor.GetAnchorId() )
{
Point aPos( rInsPt );
aPos -= aNewAnch;
aPos -= rSttPt - pFly->Frame().Pos();
pFlyFormat->SetFormatAttr( SwFormatHoriOrient( aPos.getX(),text::HoriOrientation::NONE, text::RelOrientation::FRAME ) );
pFlyFormat->SetFormatAttr( SwFormatVertOrient( aPos.getY(),text::VertOrientation::NONE, text::RelOrientation::FRAME ) );
}
const Point aPt( pDestShell->GetCursorDocPos() );
if( bIsMove )
GetDoc()->getIDocumentLayoutAccess().DelLayoutFormat( pOldFormat );
// only select if it can be shifted/copied in the same shell
if( bSelectInsert )
{
SwFlyFrame* pFlyFrame = static_cast<SwFlyFrameFormat*>(pFlyFormat)->GetFrame( &aPt );
if( pFlyFrame )
{
//JP 12.05.98: should this be in SelectFlyFrame???
pDestShell->Imp()->GetDrawView()->UnmarkAll();
pDestShell->SelectFlyFrame( *pFlyFrame );
}
}
if (this != pDestShell && !pDestShell->HasShellFocus())
pDestShell->Imp()->GetDrawView()->hideMarkHandles();
}
}
else if ( IsObjSelected() )
bRet = CopyDrawSel( pDestShell, rSttPt, rInsPt, bIsMove, bSelectInsert );
else if( IsTableMode() )
{
// Copy parts from a table: create a table with the same
// width as the original and copy the selected boxes.
// Sizes will be corrected by percentage.
// find boxes via the layout
const SwTableNode* pTableNd;
SwSelBoxes aBoxes;
GetTableSel( *this, aBoxes );
if( !aBoxes.empty() &&
nullptr != (pTableNd = aBoxes[0]->GetSttNd()->FindTableNode()) )
{
SwPosition* pDstPos = nullptr;
if( this == pDestShell )
{
// same shell? Then create new Cursor at the
// DocumentPosition passed
pDstPos = new SwPosition( *GetCursor()->GetPoint() );
Point aPt( rInsPt );
GetLayout()->GetCursorOfst( pDstPos, aPt );
if( !pDstPos->nNode.GetNode().IsNoTextNode() )
bRet = true;
}
else if( !pDestShell->GetCursor()->GetNode().IsNoTextNode() )
{
pDstPos = new SwPosition( *pDestShell->GetCursor()->GetPoint() );
bRet = true;
}
if( bRet )
{
if( GetDoc() == pDestShell->GetDoc() )
ParkTableCursor();
bRet = pDestShell->GetDoc()->InsCopyOfTable( *pDstPos, aBoxes,nullptr,
bIsMove && this == pDestShell &&
aBoxes.size() == pTableNd->GetTable().
GetTabSortBoxes().size(),
this != pDestShell );
if( this != pDestShell )
*pDestShell->GetCursor()->GetPoint() = *pDstPos;
// create all parked Cursor?
if( GetDoc() == pDestShell->GetDoc() )
GetCursor();
// JP 16.04.99: Bug 64908 - Set InsPos, to assure the parked
// Cursor is positioned at the insert position
if( this == pDestShell )
GetCursorDocPos() = rInsPt;
}
delete pDstPos;
}
}
else
{
bRet = true;
if( this == pDestShell )
{
// same shell? then request the position
// at the passed document position
SwPosition aPos( *GetCursor()->GetPoint() );
Point aPt( rInsPt );
GetLayout()->GetCursorOfst( &aPos, aPt );
bRet = !aPos.nNode.GetNode().IsNoTextNode();
}
else if( pDestShell->GetCursor()->GetNode().IsNoTextNode() )
bRet = false;
if( bRet )
bRet = SwEditShell::Copy( pDestShell );
}
pDestShell->GetDoc()->getIDocumentRedlineAccess().SetRedlineMode_intern( eOldRedlMode );
mpDoc->SetCopyIsMove( bCopyIsMove );
// have new table formulas been inserted?
if( pTableFieldTyp->HasWriterListeners() )
{
// finish old actions: the table frames are created and
// a selection can be made
sal_uInt16 nActCnt;
for( nActCnt = 0; pDestShell->ActionPend(); ++nActCnt )
pDestShell->EndAllAction();
for( ; nActCnt; --nActCnt )
pDestShell->StartAllAction();
}
pDestShell->GetDoc()->getIDocumentFieldsAccess().UnlockExpFields();
pDestShell->GetDoc()->getIDocumentFieldsAccess().UpdateFields(false);
pDestShell->EndAllAction();
return bRet;
}
// Paste for the internal clipboard. Copy the content of the clipboard
// in the document
namespace {
typedef std::shared_ptr<SwPaM> PaMPtr;
typedef std::shared_ptr<SwPosition> PositionPtr;
typedef std::pair< PaMPtr, PositionPtr > Insertion;
bool PamHasSelection(const SwPaM& rPaM)
{
return rPaM.HasMark() && *rPaM.GetPoint() != *rPaM.GetMark();
}
}
bool SwFEShell::Paste( SwDoc* pClpDoc )
{
SET_CURR_SHELL( this );
OSL_ENSURE( pClpDoc, "no clipboard document" );
// then till end of the nodes array
SwNodeIndex aIdx( pClpDoc->GetNodes().GetEndOfExtras(), 2 );
SwPaM aCpyPam( aIdx ); //DocStart
// If there are table formulas in the area, then display the table first
// so that the table formula can calculate a new value first
// (individual boxes in the area are retrieved via the layout)
SwFieldType* pTableFieldTyp = GetDoc()->getIDocumentFieldsAccess().GetSysFieldType( RES_TABLEFLD );
SwTableNode *pDestNd, *pSrcNd = aCpyPam.GetNode().GetTableNode();
if( !pSrcNd ) // TabellenNode ?
{ // nicht ueberspringen!!
SwContentNode* pCNd = aCpyPam.GetNode().GetContentNode();
if( pCNd )
aCpyPam.GetPoint()->nContent.Assign( pCNd, 0 );
else if( !aCpyPam.Move( fnMoveForward, fnGoNode ))
aCpyPam.Move( fnMoveBackward, fnGoNode );
}
aCpyPam.SetMark();
aCpyPam.Move( fnMoveForward, fnGoDoc );
bool bRet = true;
StartAllAction();
GetDoc()->GetIDocumentUndoRedo().StartUndo( UNDO_INSGLOSSARY, nullptr );
GetDoc()->getIDocumentFieldsAccess().LockExpFields();
// When the clipboard content has been created by a rectangular selection
// the pasting is more sophisticated:
// every paragraph will be inserted into another position.
// The first positions are given by the actual cursor ring,
// if there are more text portions to insert than cursor in this ring,
// the additional insert positions will be created by moving the last
// cursor position into the next line (like pressing the cursor down key)
if( pClpDoc->IsColumnSelection() && !IsTableMode() )
{
// Creation of the list of insert positions
std::list< Insertion > aCopyList;
// The number of text portions of the rectangular selection
const sal_uInt32 nSelCount = aCpyPam.GetPoint()->nNode.GetIndex()
- aCpyPam.GetMark()->nNode.GetIndex();
sal_uInt32 nCount = nSelCount;
SwNodeIndex aClpIdx( aIdx );
SwPaM* pStartCursor = GetCursor();
SwPaM* pCurrCursor = pStartCursor;
sal_uInt32 nCursorCount = pStartCursor->GetRingContainer().size();
// If the target selection is a multi-selection, often the last and first
// cursor of the ring points to identical document positions. Then
// we should avoid double insertion of text portions...
while( nCursorCount > 1 && *pCurrCursor->GetPoint() ==
*(pCurrCursor->GetPrev()->GetPoint()) )
{
--nCursorCount;
pCurrCursor = pCurrCursor->GetNext();
pStartCursor = pCurrCursor;
}
SwPosition aStartPos( *pStartCursor->GetPoint() );
SwPosition aInsertPos( aStartPos ); // first insertion position
bool bCompletePara = false;
sal_uInt16 nMove = 0;
while( nCount )
{
--nCount;
OSL_ENSURE( aIdx.GetNode().GetContentNode(), "Who filled the clipboard?!" );
if( aIdx.GetNode().GetContentNode() ) // robust
{
Insertion aInsertion( std::make_shared<SwPaM>( aIdx ),
std::make_shared<SwPosition>( aInsertPos ) );
++aIdx;
aInsertion.first->SetMark();
if( pStartCursor == pCurrCursor->GetNext() )
{ // Now we have to look for insertion positions...
if( !nMove ) // Annotate the last given insert position
aStartPos = aInsertPos;
SwCursor aCursor( aStartPos, nullptr);
// Check if we find another insert position by moving
// down the last given position
if( aCursor.UpDown( false, ++nMove, nullptr, 0 ) )
aInsertPos = *aCursor.GetPoint();
else // if there is no paragraph we have to create it
bCompletePara = nCount > 0;
nCursorCount = 0;
}
else // as long as we find more insert positions in the cursor ring
{ // we'll take them
pCurrCursor = pCurrCursor->GetNext();
aInsertPos = *pCurrCursor->GetPoint();
--nCursorCount;
}
// If there are no more paragraphs e.g. at the end of a document,
// we insert complete paragraphs instead of text portions
if( bCompletePara )
aInsertion.first->GetPoint()->nNode = aIdx;
else
aInsertion.first->GetPoint()->nContent =
aInsertion.first->GetContentNode()->Len();
aCopyList.push_back( aInsertion );
}
// If there are no text portions left but there are some more
// cursor positions to fill we have to restart with the first
// text portion
if( !nCount && nCursorCount )
{
nCount = std::min( nSelCount, nCursorCount );
aIdx = aClpIdx; // Start of clipboard content
}
}
std::list< Insertion >::const_iterator pCurr = aCopyList.begin();
std::list< Insertion >::const_iterator pEnd = aCopyList.end();
while( pCurr != pEnd )
{
SwPosition& rInsPos = *pCurr->second;
SwPaM& rCopy = *pCurr->first;
const SwStartNode* pBoxNd = rInsPos.nNode.GetNode().FindTableBoxStartNode();
if( pBoxNd && 2 == pBoxNd->EndOfSectionIndex() - pBoxNd->GetIndex() &&
rCopy.GetPoint()->nNode != rCopy.GetMark()->nNode )
{
// if more than one node will be copied into a cell
// the box attributes have to be removed
GetDoc()->ClearBoxNumAttrs( rInsPos.nNode );
}
{
SwNodeIndex aIndexBefore(rInsPos.nNode);
--aIndexBefore;
pClpDoc->getIDocumentContentOperations().CopyRange( rCopy, rInsPos, /*bCopyAll=*/false, /*bCheckPos=*/true );
{
++aIndexBefore;
SwPaM aPaM(SwPosition(aIndexBefore),
SwPosition(rInsPos.nNode));
aPaM.GetDoc()->MakeUniqueNumRules(aPaM);
}
}
SaveTableBoxContent( &rInsPos );
++pCurr;
}
}
else
{
bool bDelTable = true;
for(SwPaM& rPaM : GetCursor()->GetRingContainer())
{
if( pSrcNd &&
nullptr != ( pDestNd = GetDoc()->IsIdxInTable( rPaM.GetPoint()->nNode )) &&
// are we at the beginning of the cell? (if not, we will insert a nested table)
// first paragraph of the cell?
rPaM.GetNode().GetIndex() == rPaM.GetNode().FindTableBoxStartNode()->GetIndex()+1 &&
// beginning of the paragraph?
!rPaM.GetPoint()->nContent.GetIndex())
{
SwPosition aDestPos( *rPaM.GetPoint() );
bool bParkTableCursor = false;
const SwStartNode* pSttNd = rPaM.GetNode().FindTableBoxStartNode();
// TABLE IN TABLE: copy table in table
// search boxes via the layout
SwSelBoxes aBoxes;
if( IsTableMode() ) // table selection?
{
GetTableSel( *this, aBoxes );
ParkTableCursor();
bParkTableCursor = true;
}
else if( !PamHasSelection(rPaM) && rPaM.GetNext() == &rPaM &&
( !pSrcNd->GetTable().IsTableComplex() ||
pDestNd->GetTable().IsNewModel() ) )
{
// make relative table copy
SwTableBox* pBox = pDestNd->GetTable().GetTableBox(
pSttNd->GetIndex() );
OSL_ENSURE( pBox, "Box steht nicht in dieser Tabelle" );
aBoxes.insert( pBox );
}
SwNodeIndex aNdIdx( *pDestNd->EndOfSectionNode());
if( !bParkTableCursor )
{
// exit first the complete table
// ???? what about only table in a frame ?????
SwContentNode* pCNd = GetDoc()->GetNodes().GoNext( &aNdIdx );
SwPosition aPos( aNdIdx, SwIndex( pCNd, 0 ));
// #i59539: Don't remove all redline
SwPaM const tmpPaM(*pDestNd, *pDestNd->EndOfSectionNode());
::PaMCorrAbs(tmpPaM, aPos);
}
bRet = GetDoc()->InsCopyOfTable( aDestPos, aBoxes, &pSrcNd->GetTable() );
if( bParkTableCursor )
GetCursor();
else
{
// return to the box
aNdIdx = *pSttNd;
SwContentNode* pCNd = GetDoc()->GetNodes().GoNext( &aNdIdx );
SwPosition aPos( aNdIdx, SwIndex( pCNd, 0 ));
// #i59539: Don't remove all redline
SwNode & rNode(rPaM.GetPoint()->nNode.GetNode());
SwContentNode *const pContentNode( rNode.GetContentNode() );
SwPaM const tmpPam(rNode, 0,
rNode, (pContentNode) ? pContentNode->Len() : 0);
::PaMCorrAbs(tmpPam, aPos);
}
break; // exit the "while-loop"
}
else if( *aCpyPam.GetPoint() == *aCpyPam.GetMark() &&
pClpDoc->GetSpzFrameFormats()->size() )
{
// we need a DrawView
if( !Imp()->GetDrawView() )
MakeDrawView();
std::set<const SwFrameFormat*> aTextBoxes = SwTextBoxHelper::findTextBoxes(pClpDoc);
for ( auto pCpyFormat : *pClpDoc->GetSpzFrameFormats() )
{
bool bInsWithFormat = true;
if( Imp()->GetDrawView()->IsGroupEntered() &&
RES_DRAWFRMFMT == pCpyFormat->Which() &&
(FLY_AS_CHAR != pCpyFormat->GetAnchor().GetAnchorId()) )
{
const SdrObject* pSdrObj = pCpyFormat->FindSdrObject();
if( pSdrObj )
{
SdrObject* pNew = GetDoc()->CloneSdrObj( *pSdrObj,
false, false );
// Insert object sets any anchor position to 0.
// Therefore we calculate the absolute position here
// and after the insert the anchor of the object
// is set to the anchor of the group object.
Rectangle aSnapRect = pNew->GetSnapRect();
if( pNew->GetAnchorPos().X() || pNew->GetAnchorPos().Y() )
{
const Point aPoint( 0, 0 );
// OD 2004-04-05 #i26791# - direct drawing object
// positioning for group members
pNew->NbcSetAnchorPos( aPoint );
pNew->NbcSetSnapRect( aSnapRect );
}
Imp()->GetDrawView()->InsertObjectAtView( pNew, *Imp()->GetPageView() );
Point aGrpAnchor( 0, 0 );
SdrObjList* pList = pNew->GetObjList();
if ( pList )
{
SdrObject* pOwner = pList->GetOwnerObj();
if ( pOwner )
{
SdrObjGroup* pThisGroup = dynamic_cast<SdrObjGroup*>( pOwner );
aGrpAnchor = pThisGroup->GetAnchorPos();
}
}
// OD 2004-04-05 #i26791# - direct drawing object
// positioning for group members
pNew->NbcSetAnchorPos( aGrpAnchor );
pNew->SetSnapRect( aSnapRect );
bInsWithFormat = false;
}
}
if( bInsWithFormat )
{
SwFormatAnchor aAnchor( pCpyFormat->GetAnchor() );
if ((FLY_AT_PARA == aAnchor.GetAnchorId()) ||
(FLY_AT_CHAR == aAnchor.GetAnchorId()) ||
(FLY_AS_CHAR == aAnchor.GetAnchorId()))
{
SwPosition* pPos = rPaM.GetPoint();
// allow shapes (no controls) in header/footer
if( RES_DRAWFRMFMT == pCpyFormat->Which() &&
GetDoc()->IsInHeaderFooter( pPos->nNode ) )
{
const SdrObject *pCpyObj = pCpyFormat->FindSdrObject();
if (pCpyObj && CheckControlLayer(pCpyObj))
continue;
}
// Ignore TextBoxes, they are already handled in sw::DocumentLayoutManager::CopyLayoutFormat().
if (aTextBoxes.find(pCpyFormat) != aTextBoxes.end())
continue;
aAnchor.SetAnchor( pPos );
}
else if ( FLY_AT_PAGE == aAnchor.GetAnchorId() )
{
aAnchor.SetPageNum( GetPhyPageNum() );
}
else if( FLY_AT_FLY == aAnchor.GetAnchorId() )
{
Point aPt;
(void)lcl_SetAnchor( *rPaM.GetPoint(), rPaM.GetNode(),
nullptr, aPt, *this, aAnchor, aPt, false );
}
SwFrameFormat * pNew = GetDoc()->getIDocumentLayoutAccess().CopyLayoutFormat( *pCpyFormat, aAnchor, true, true );
if( pNew )
{
if( RES_FLYFRMFMT == pNew->Which() )
{
const Point aPt( GetCursorDocPos() );
SwFlyFrame* pFlyFrame = static_cast<SwFlyFrameFormat*>(pNew)->
GetFrame( &aPt );
if( pFlyFrame )
SelectFlyFrame( *pFlyFrame );
// always pick the first FlyFrame only; the others
// were copied to the clipboard via Fly in Fly
break;
}
else
{
OSL_ENSURE( RES_DRAWFRMFMT == pNew->Which(), "Neues Format.");
// #i52780# - drawing object has
// to be made visible on paste.
{
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pNew->FindContactObj());
pContact->MoveObjToVisibleLayer( pContact->GetMaster() );
}
SdrObject *pObj = pNew->FindSdrObject();
SwDrawView *pDV = Imp()->GetDrawView();
pDV->MarkObj( pObj, pDV->GetSdrPageView() );
// #i47455# - notify draw frame format
// that position attributes are already set.
if ( dynamic_cast<const SwDrawFrameFormat*>( pNew) != nullptr )
{
static_cast<SwDrawFrameFormat*>(pNew)->PosAttrSet();
}
}
}
}
}
}
else
{
if( bDelTable && IsTableMode() )
{
SwEditShell::Delete();
bDelTable = false;
}
SwPosition& rInsPos = *rPaM.GetPoint();
const SwStartNode* pBoxNd = rInsPos.nNode.GetNode().
FindTableBoxStartNode();
if( pBoxNd && 2 == pBoxNd->EndOfSectionIndex() -
pBoxNd->GetIndex() &&
aCpyPam.GetPoint()->nNode != aCpyPam.GetMark()->nNode )
{
// Copy more than 1 node in the current box. But
// then the BoxAttribute should be removed
GetDoc()->ClearBoxNumAttrs( rInsPos.nNode );
}
// **
// ** Update SwDoc::Append, if you change the following code **
// **
SwPosition aInsertPosition( rInsPos );
{
SwNodeIndex aIndexBefore(rInsPos.nNode);
--aIndexBefore;
pClpDoc->getIDocumentContentOperations().CopyRange( aCpyPam, rInsPos, /*bCopyAll=*/false, /*bCheckPos=*/true );
// Note: aCpyPam is invalid now
++aIndexBefore;
SwPaM aPaM(SwPosition(aIndexBefore),
SwPosition(rInsPos.nNode));
aPaM.GetDoc()->MakeUniqueNumRules(aPaM);
// Update the rsid of each pasted text node.
SwNodes &rDestNodes = GetDoc()->GetNodes();
sal_uLong const nEndIdx = aPaM.End()->nNode.GetIndex();
for (sal_uLong nIdx = aPaM.Start()->nNode.GetIndex();
nIdx <= nEndIdx; ++nIdx)
{
SwTextNode *const pTextNode = rDestNodes[nIdx]->GetTextNode();
if ( pTextNode )
{
GetDoc()->UpdateParRsid( pTextNode );
}
}
}
SaveTableBoxContent( &rInsPos );
}
}
}
GetDoc()->GetIDocumentUndoRedo().EndUndo( UNDO_INSGLOSSARY, nullptr );
// have new table formulas been inserted?
if( pTableFieldTyp->HasWriterListeners() )
{
// finish old action: table-frames have been created
// a selection can be made now
sal_uInt16 nActCnt;
for( nActCnt = 0; ActionPend(); ++nActCnt )
EndAllAction();
for( ; nActCnt; --nActCnt )
StartAllAction();
}
GetDoc()->getIDocumentFieldsAccess().UnlockExpFields();
GetDoc()->getIDocumentFieldsAccess().UpdateFields(false);
EndAllAction();
return bRet;
}
bool SwFEShell::PastePages( SwFEShell& rToFill, sal_uInt16 nStartPage, sal_uInt16 nEndPage)
{
Push();
if(!GotoPage(nStartPage))
{
Pop(false);
return false;
}
MovePage( fnPageCurr, fnPageStart );
SwPaM aCpyPam( *GetCursor()->GetPoint() );
OUString sStartingPageDesc = GetPageDesc( GetCurPageDesc()).GetName();
SwPageDesc* pDesc = rToFill.FindPageDescByName( sStartingPageDesc, true );
if( pDesc )
rToFill.ChgCurPageDesc( *pDesc );
if(!GotoPage(nEndPage))
{
Pop(false);
return false;
}
//if the page starts with a table a paragraph has to be inserted before
SwNode* pTableNode = aCpyPam.GetNode().FindTableNode();
if(pTableNode)
{
//insert a paragraph
StartUndo(UNDO_INSERT);
SwNodeIndex aTableIdx( *pTableNode, -1 );
SwPosition aBefore(aTableIdx);
if(GetDoc()->getIDocumentContentOperations().AppendTextNode( aBefore ))
{
SwPaM aTmp(aBefore);
aCpyPam = aTmp;
}
EndUndo(UNDO_INSERT);
}
MovePage( fnPageCurr, fnPageEnd );
aCpyPam.SetMark();
*aCpyPam.GetMark() = *GetCursor()->GetPoint();
SET_CURR_SHELL( this );
StartAllAction();
GetDoc()->getIDocumentFieldsAccess().LockExpFields();
SetSelection(aCpyPam);
// copy the text of the selection
SwEditShell::Copy(&rToFill);
if(pTableNode)
{
//remove the inserted paragraph
Undo();
//remove the paragraph in the second doc, too
SwNodeIndex aIdx( rToFill.GetDoc()->GetNodes().GetEndOfExtras(), 2 );
SwPaM aPara( aIdx ); //DocStart
rToFill.GetDoc()->getIDocumentContentOperations().DelFullPara(aPara);
}
// now the page bound objects
// additionally copy page bound frames
if( GetDoc()->GetSpzFrameFormats()->size() )
{
// create a draw view if necessary
if( !rToFill.Imp()->GetDrawView() )
rToFill.MakeDrawView();
for ( auto pCpyFormat : *GetDoc()->GetSpzFrameFormats() )
{
SwFormatAnchor aAnchor( pCpyFormat->GetAnchor() );
if ((FLY_AT_PAGE == aAnchor.GetAnchorId()) &&
aAnchor.GetPageNum() >= nStartPage && aAnchor.GetPageNum() <= nEndPage)
{
aAnchor.SetPageNum( aAnchor.GetPageNum() - nStartPage + 1);
}
else
continue;
rToFill.GetDoc()->getIDocumentLayoutAccess().CopyLayoutFormat( *pCpyFormat, aAnchor, true, true );
}
}
GetDoc()->getIDocumentFieldsAccess().UnlockExpFields();
GetDoc()->getIDocumentFieldsAccess().UpdateFields(false);
Pop(false);
EndAllAction();
return true;
}
bool SwFEShell::GetDrawObjGraphic( SotClipboardFormatId nFormat, Graphic& rGrf ) const
{
OSL_ENSURE( Imp()->HasDrawView(), "GetDrawObjGraphic without DrawView?" );
const SdrMarkList &rMrkList = Imp()->GetDrawView()->GetMarkedObjectList();
bool bConvert = true;
if( rMrkList.GetMarkCount() )
{
if( rMrkList.GetMarkCount() == 1 &&
dynamic_cast< const SwVirtFlyDrawObj* >(rMrkList.GetMark( 0 )->GetMarkedSdrObj()) != nullptr )
{
// select frame
if( CNT_GRF == GetCntType() )
{
const Graphic* pGrf( GetGraphic() );
if ( pGrf )
{
Graphic aGrf( *pGrf );
if( SotClipboardFormatId::GDIMETAFILE == nFormat )
{
if( GRAPHIC_BITMAP != aGrf.GetType() )
{
rGrf = aGrf;
bConvert = false;
}
else if( GetWin() )
{
Size aSz;
Point aPt;
GetGrfSize( aSz );
ScopedVclPtrInstance< VirtualDevice > pVirtDev;
pVirtDev->EnableOutput( false );
MapMode aTmp( GetWin()->GetMapMode() );
aTmp.SetOrigin( aPt );
pVirtDev->SetMapMode( aTmp );
GDIMetaFile aMtf;
aMtf.Record( pVirtDev.get() );
aGrf.Draw( pVirtDev, aPt, aSz );
aMtf.Stop();
aMtf.SetPrefMapMode( aTmp );
aMtf.SetPrefSize( aSz );
rGrf = aMtf;
}
}
else if( GRAPHIC_BITMAP == aGrf.GetType() )
{
rGrf = aGrf;
bConvert = false;
}
else
{
// Not the original size, but the current one.
// Otherwise it could happen that for vector graphics
// many MB's of memory are allocated.
const Size aSz( GetSelectedFlyFrame()->Prt().SSize() );
ScopedVclPtrInstance< VirtualDevice > pVirtDev(*GetWin());
MapMode aTmp( MAP_TWIP );
pVirtDev->SetMapMode( aTmp );
if( pVirtDev->SetOutputSize( aSz ) )
{
aGrf.Draw( pVirtDev.get(), Point(), aSz );
rGrf = pVirtDev->GetBitmap( Point(), aSz );
}
else
{
rGrf = aGrf;
bConvert = false;
}
}
}
}
}
else if( SotClipboardFormatId::GDIMETAFILE == nFormat )
rGrf = Imp()->GetDrawView()->GetMarkedObjMetaFile();
else if( SotClipboardFormatId::BITMAP == nFormat || SotClipboardFormatId::PNG == nFormat )
rGrf = Imp()->GetDrawView()->GetMarkedObjBitmapEx();
}
return bConvert;
}
// #i50824#
// replace method <lcl_RemoveOleObjsFromSdrModel> by <lcl_ConvertSdrOle2ObjsToSdrGrafObjs>
static void lcl_ConvertSdrOle2ObjsToSdrGrafObjs( SdrModel* _pModel )
{
for ( sal_uInt16 nPgNum = 0; nPgNum < _pModel->GetPageCount(); ++nPgNum )
{
// setup object iterator in order to iterate through all objects
// including objects in group objects, but exclusive group objects.
SdrObjListIter aIter(*(_pModel->GetPage( nPgNum )));
while( aIter.IsMore() )
{
SdrOle2Obj* pOle2Obj = dynamic_cast< SdrOle2Obj* >( aIter.Next() );
if( pOle2Obj )
{
// found an ole2 shape
SdrObjList* pObjList = pOle2Obj->GetObjList();
// get its graphic
Graphic aGraphic;
pOle2Obj->Connect();
const Graphic* pGraphic = pOle2Obj->GetGraphic();
if( pGraphic )
aGraphic = *pGraphic;
pOle2Obj->Disconnect();
// create new graphic shape with the ole graphic and shape size
SdrGrafObj* pGraphicObj = new SdrGrafObj( aGraphic, pOle2Obj->GetCurrentBoundRect() );
// apply layer of ole2 shape at graphic shape
pGraphicObj->SetLayer( pOle2Obj->GetLayer() );
// replace ole2 shape with the new graphic object and delete the ol2 shape
SdrObject* pRemovedObject = pObjList->ReplaceObject( pGraphicObj, pOle2Obj->GetOrdNum() );
SdrObject::Free( pRemovedObject );
}
}
}
}
void SwFEShell::Paste( SvStream& rStrm, SwPasteSdr nAction, const Point* pPt )
{
SET_CURR_SHELL( this );
StartAllAction();
StartUndo();
SvtPathOptions aPathOpt;
FmFormModel* pModel = new FmFormModel( aPathOpt.GetPalettePath(),
nullptr, GetDoc()->GetDocShell() );
pModel->GetItemPool().FreezeIdRanges();
rStrm.Seek(0);
uno::Reference< io::XInputStream > xInputStream( new utl::OInputStreamWrapper( rStrm ) );
SvxDrawingLayerImport( pModel, xInputStream );
if ( !Imp()->HasDrawView() )
Imp()->MakeDrawView();
Point aPos( pPt ? *pPt : GetCharRect().Pos() );
SdrView *pView = Imp()->GetDrawView();
// drop on the existing object: replace object or apply new attributes
if( pModel->GetPageCount() > 0 &&
1 == pModel->GetPage(0)->GetObjCount() &&
1 == pView->GetMarkedObjectList().GetMarkCount() )
{
// replace a marked 'virtual' drawing object
// by its corresponding 'master' drawing object in the mark list.
SwDrawView::ReplaceMarkedDrawVirtObjs( *pView );
SdrObject* pClpObj = pModel->GetPage(0)->GetObj(0);
SdrObject* pOldObj = pView->GetMarkedObjectList().GetMark( 0 )->GetMarkedSdrObj();
if( SwPasteSdr::SetAttr == nAction && dynamic_cast<const SwVirtFlyDrawObj*>( pOldObj) != nullptr )
nAction = SwPasteSdr::Replace;
switch( nAction )
{
case SwPasteSdr::Replace:
{
const SwFrameFormat* pFormat(nullptr);
const SwFrame* pAnchor(nullptr);
if( dynamic_cast<const SwVirtFlyDrawObj*>( pOldObj) != nullptr )
{
pFormat = FindFrameFormat( pOldObj );
Point aNullPt;
SwFlyFrame* pFlyFrame = static_cast<const SwFlyFrameFormat*>(pFormat)->GetFrame( &aNullPt );
pAnchor = pFlyFrame ? pFlyFrame->GetAnchorFrame() : nullptr;
if (!pAnchor || pAnchor->FindFooterOrHeader())
{
// if there is a textframe in the header/footer:
// do not replace but insert
nAction = SwPasteSdr::Insert;
break;
}
}
SdrObject* pNewObj = pClpObj->Clone();
Rectangle aOldObjRect( pOldObj->GetCurrentBoundRect() );
Size aOldObjSize( aOldObjRect.GetSize() );
Rectangle aNewRect( pNewObj->GetCurrentBoundRect() );
Size aNewSize( aNewRect.GetSize() );
Fraction aScaleWidth( aOldObjSize.Width(), aNewSize.Width() );
Fraction aScaleHeight( aOldObjSize.Height(), aNewSize.Height());
pNewObj->NbcResize( aNewRect.TopLeft(), aScaleWidth, aScaleHeight);
Point aVec = aOldObjRect.TopLeft() - aNewRect.TopLeft();
pNewObj->NbcMove(Size(aVec.getX(), aVec.getY()));
if( dynamic_cast<const SdrUnoObj*>( pNewObj) != nullptr )
pNewObj->SetLayer( GetDoc()->getIDocumentDrawModelAccess().GetControlsId() );
else if( dynamic_cast<const SdrUnoObj*>( pOldObj) != nullptr )
pNewObj->SetLayer( GetDoc()->getIDocumentDrawModelAccess().GetHeavenId() );
else
pNewObj->SetLayer( pOldObj->GetLayer() );
if( dynamic_cast<const SwVirtFlyDrawObj*>( pOldObj) != nullptr )
{
// store attributes, then set SdrObject
SfxItemSet aFrameSet( mpDoc->GetAttrPool(),
RES_SURROUND, RES_ANCHOR );
aFrameSet.Set( pFormat->GetAttrSet() );
Point aNullPt;
if( pAnchor->IsTextFrame() && static_cast<const SwTextFrame*>(pAnchor)->IsFollow() )
{
const SwTextFrame* pTmp = static_cast<const SwTextFrame*>(pAnchor);
do {
pTmp = pTmp->FindMaster();
OSL_ENSURE( pTmp, "Where's my Master?" );
} while( pTmp->IsFollow() );
pAnchor = pTmp;
}
if( dynamic_cast<const SdrCaptionObj*>( pOldObj) != nullptr)
aNullPt = static_cast<SdrCaptionObj*>(pOldObj)->GetTailPos();
else
aNullPt = aOldObjRect.TopLeft();
Point aNewAnchor = pAnchor->GetFrameAnchorPos( ::HasWrap( pOldObj ) );
// OD 2004-04-05 #i26791# - direct positioning of Writer
// fly frame object for <SwDoc::Insert(..)>
pNewObj->NbcSetRelativePos( aNullPt - aNewAnchor );
pNewObj->NbcSetAnchorPos( aNewAnchor );
pOldObj->GetOrdNum();
DelSelectedObj();
GetDoc()->getIDocumentContentOperations().InsertDrawObj( *GetCursor(), *pNewObj, aFrameSet );
}
else
{
// #i123922# for handling MasterObject and virtual ones correctly, SW
// wants us to call ReplaceObject at the page, but that also
// triggers the same assertion (I tried it), so stay at the view method
pView->ReplaceObjectAtView(pOldObj, *Imp()->GetPageView(), pNewObj);
}
}
break;
case SwPasteSdr::SetAttr:
{
SfxItemSet aSet( GetAttrPool() );
const SdrGrafObj* pSdrGrafObj = dynamic_cast< const SdrGrafObj* >(pClpObj);
if(pSdrGrafObj)
{
SdrObject* pTarget = nullptr;
if(0 != pView->GetMarkedObjectList().GetMarkCount())
{
// try to get target (if it's at least one, take first)
SdrMark* pMark = pView->GetMarkedObjectList().GetMark(0);
if(pMark)
{
pTarget = pMark->GetMarkedSdrObj();
}
}
if(pTarget)
{
// copy ItemSet from target
aSet.Set(pTarget->GetMergedItemSet());
}
// for SdrGrafObj, use the graphic as fill style argument
const Graphic& rGraphic = pSdrGrafObj->GetGraphic();
if(GRAPHIC_NONE != rGraphic.GetType() && GRAPHIC_DEFAULT != rGraphic.GetType())
{
aSet.Put(XFillBitmapItem(OUString(), rGraphic));
aSet.Put(XFillStyleItem(drawing::FillStyle_BITMAP));
}
}
else
{
aSet.Put(pClpObj->GetMergedItemSet());
}
pView->SetAttributes( aSet );
}
break;
default:
nAction = SwPasteSdr::Insert;
break;
}
}
else
nAction = SwPasteSdr::Insert;
if( SwPasteSdr::Insert == nAction )
{
::sw::DrawUndoGuard drawUndoGuard(GetDoc()->GetIDocumentUndoRedo());
bool bDesignMode = pView->IsDesignMode();
if( !bDesignMode )
pView->SetDesignMode();
// #i50824#
// method <lcl_RemoveOleObjsFromSdrModel> replaced by <lcl_ConvertSdrOle2ObjsToSdrGrafObjs>
lcl_ConvertSdrOle2ObjsToSdrGrafObjs( pModel );
pView->Paste(*pModel, aPos, nullptr, SdrInsertFlags::NONE);
const size_t nCnt = pView->GetMarkedObjectList().GetMarkCount();
if( nCnt )
{
const Point aNull( 0, 0 );
for( size_t i=0; i < nCnt; ++i )
{
SdrObject *pObj = pView->GetMarkedObjectList().GetMark(i)->GetMarkedSdrObj();
pObj->ImpSetAnchorPos( aNull );
}
pView->SetCurrentObj( OBJ_GRUP );
if ( nCnt > 1 )
pView->GroupMarked();
SdrObject *pObj = pView->GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj();
if( dynamic_cast<const SdrUnoObj*>( pObj) != nullptr )
{
pObj->SetLayer( GetDoc()->getIDocumentDrawModelAccess().GetControlsId() );
bDesignMode = true;
}
else
pObj->SetLayer( GetDoc()->getIDocumentDrawModelAccess().GetHeavenId() );
const Rectangle &rSnap = pObj->GetSnapRect();
const Size aDiff( rSnap.GetWidth()/2, rSnap.GetHeight()/2 );
pView->MoveMarkedObj( aDiff );
ImpEndCreate();
if( !bDesignMode )
pView->SetDesignMode( false );
}
}
EndUndo();
EndAllAction();
delete pModel;
}
bool SwFEShell::Paste(const Graphic &rGrf, const OUString& rURL)
{
SET_CURR_SHELL( this );
SdrObject* pObj = nullptr;
SdrView *pView = Imp()->GetDrawView();
bool bRet = 1 == pView->GetMarkedObjectList().GetMarkCount() &&
(pObj = pView->GetMarkedObjectList().GetMark( 0 )->GetMarkedSdrObj())->IsClosedObj() &&
dynamic_cast<const SdrOle2Obj*>( pObj) == nullptr;
if( bRet && pObj )
{
// #i123922# added code to handle the two cases of SdrGrafObj and a fillable, non-
// OLE object in focus
SdrObject* pResult = pObj;
if(dynamic_cast< SdrGrafObj* >(pObj))
{
SdrGrafObj* pNewGrafObj = static_cast<SdrGrafObj*>(pObj->Clone());
pNewGrafObj->SetGraphic(rGrf);
// #i123922# for handling MasterObject and virtual ones correctly, SW
// wants us to call ReplaceObject at the page, but that also
// triggers the same assertion (I tried it), so stay at the view method
pView->ReplaceObjectAtView(pObj, *pView->GetSdrPageView(), pNewGrafObj);
OUString aReferer;
SwDocShell *pDocShell = GetDoc()->GetDocShell();
if (pDocShell->HasName()) {
aReferer = pDocShell->GetMedium()->GetName();
}
// set in all cases - the Clone() will have copied an existing link (!)
pNewGrafObj->SetGraphicLink(rURL, aReferer, OUString());
pResult = pNewGrafObj;
}
else
{
pView->AddUndo(new SdrUndoAttrObj(*pObj));
SfxItemSet aSet(pView->GetModel()->GetItemPool(), XATTR_FILLSTYLE, XATTR_FILLBITMAP);
aSet.Put(XFillStyleItem(drawing::FillStyle_BITMAP));
aSet.Put(XFillBitmapItem(OUString(), rGrf));
pObj->SetMergedItemSetAndBroadcast(aSet);
}
// we are done; mark the modified/new object
pView->MarkObj(pResult, pView->GetSdrPageView());
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|