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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <tools/bigint.hxx>
#include "pagefrm.hxx"
#include "cntfrm.hxx"
#include "flyfrm.hxx"
#include "txtfrm.hxx"
#include <doc.hxx>
#include <IDocumentUndoRedo.hxx>
#include "viewsh.hxx"
#include "viewimp.hxx"
#include "pam.hxx"
#include "frmfmt.hxx"
#include "frmtool.hxx"
#include "dflyobj.hxx"
#include "hints.hxx"
#include "ndtxt.hxx"
#include "swundo.hxx"
#include <editeng/ulspitem.hxx>
#include <editeng/lrspitem.hxx>
#include <fmtanchr.hxx>
#include <fmtornt.hxx>
#include <fmtfsize.hxx>
#include <fmtsrnd.hxx>
#include "tabfrm.hxx"
#include "flyfrms.hxx"
#include "crstate.hxx"
#include "sectfrm.hxx"
#include <tocntntanchoredobjectposition.hxx>
#include <dcontact.hxx>
#include <sortedobjs.hxx>
#include <layouter.hxx>
#include <objectformattertxtfrm.hxx>
#include <HandleAnchorNodeChg.hxx>
using namespace ::com::sun::star;
/*************************************************************************
|*
|* SwFlyAtCntFrm::SwFlyAtCntFrm()
|*
|*************************************************************************/
SwFlyAtCntFrm::SwFlyAtCntFrm( SwFlyFrmFmt *pFmt, SwFrm* pSib, SwFrm *pAnch ) :
SwFlyFreeFrm( pFmt, pSib, pAnch )
{
bAtCnt = sal_True;
bAutoPosition = (FLY_AT_CHAR == pFmt->GetAnchor().GetAnchorId());
}
// #i28701#
TYPEINIT1(SwFlyAtCntFrm,SwFlyFreeFrm);
/*************************************************************************
|*
|* SwFlyAtCntFrm::Modify()
|*
|*************************************************************************/
void SwFlyAtCntFrm::Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew )
{
sal_uInt16 nWhich = pNew ? pNew->Which() : 0;
const SwFmtAnchor *pAnch = 0;
if( RES_ATTRSET_CHG == nWhich && SFX_ITEM_SET ==
((SwAttrSetChg*)pNew)->GetChgSet()->GetItemState( RES_ANCHOR, sal_False,
(const SfxPoolItem**)&pAnch ))
; // Beim GetItemState wird der AnkerPointer gesetzt !
else if( RES_ANCHOR == nWhich )
{
//Ankerwechsel, ich haenge mich selbst um.
//Es darf sich nicht um einen Wechsel des Ankertyps handeln,
//dies ist nur ueber die SwFEShell moeglich.
pAnch = (const SwFmtAnchor*)pNew;
}
if( pAnch )
{
OSL_ENSURE( pAnch->GetAnchorId() == GetFmt()->GetAnchor().GetAnchorId(),
"Unzulaessiger Wechsel des Ankertyps." );
//Abmelden, neuen Anker besorgen und 'dranhaengen.
SwRect aOld( GetObjRectWithSpaces() );
SwPageFrm *pOldPage = FindPageFrm();
const SwFrm *pOldAnchor = GetAnchorFrm();
SwCntntFrm *pCntnt = (SwCntntFrm*)GetAnchorFrm();
AnchorFrm()->RemoveFly( this );
const sal_Bool bBodyFtn = (pCntnt->IsInDocBody() || pCntnt->IsInFtn());
//Den neuen Anker anhand des NodeIdx suchen, am alten und
//neuen NodeIdx kann auch erkannt werden, in welche Richtung
//gesucht werden muss.
const SwNodeIndex aNewIdx( pAnch->GetCntntAnchor()->nNode );
SwNodeIndex aOldIdx( *pCntnt->GetNode() );
//fix: Umstellung, ehemals wurde in der do-while-Schleife nach vorn bzw.
//nach hinten gesucht; je nachdem wie welcher Index kleiner war.
//Das kann aber u.U. zu einer Endlosschleife fuehren. Damit
//wenigstens die Schleife unterbunden wird suchen wir nur in eine
//Richtung. Wenn der neue Anker nicht gefunden wird koennen wir uns
//immer noch vom Node einen Frame besorgen. Die Change, dass dies dann
//der richtige ist, ist gut.
const bool bNext = aOldIdx < aNewIdx;
// consider the case that at found anchor frame candidate already a
// fly frame of the given fly format is registered.
// consider, that <pCntnt> is the already
// the new anchor frame.
bool bFound( aOldIdx == aNewIdx );
while ( pCntnt && !bFound )
{
do
{
if ( bNext )
pCntnt = pCntnt->GetNextCntntFrm();
else
pCntnt = pCntnt->GetPrevCntntFrm();
} while ( pCntnt &&
!( bBodyFtn == ( pCntnt->IsInDocBody() ||
pCntnt->IsInFtn() ) ) );
if ( pCntnt )
aOldIdx = *pCntnt->GetNode();
// check, if at found anchor frame candidate already a fly frame
// of the given fly frame format is registered.
bFound = aOldIdx == aNewIdx;
if ( bFound && pCntnt->GetDrawObjs() )
{
SwFrmFmt* pMyFlyFrmFmt( &GetFrmFmt() );
SwSortedObjs &rObjs = *pCntnt->GetDrawObjs();
for( sal_uInt16 i = 0; i < rObjs.Count(); ++i)
{
SwFlyFrm* pFlyFrm = dynamic_cast<SwFlyFrm*>(rObjs[i]);
if ( pFlyFrm &&
&(pFlyFrm->GetFrmFmt()) == pMyFlyFrmFmt )
{
bFound = false;
break;
}
}
}
}
if ( !pCntnt )
{
SwCntntNode *pNode = aNewIdx.GetNode().GetCntntNode();
pCntnt = pNode->getLayoutFrm( getRootFrm(), &pOldAnchor->Frm().Pos(), 0, sal_False );
OSL_ENSURE( pCntnt, "Neuen Anker nicht gefunden" );
}
//Flys haengen niemals an einem Follow sondern immer am
//Master, den suchen wir uns jetzt.
SwCntntFrm* pFlow = pCntnt;
while ( pFlow->IsFollow() )
pFlow = pFlow->FindMaster();
pCntnt = pFlow;
//und schwupp angehaengt das teil...
pCntnt->AppendFly( this );
if ( pOldPage && pOldPage != FindPageFrm() )
NotifyBackground( pOldPage, aOld, PREP_FLY_LEAVE );
//Fix(3495)
_InvalidatePos();
InvalidatePage();
SetNotifyBack();
// #i28701# - reset member <maLastCharRect> and
// <mnLastTopOfLine> for to-character anchored objects.
ClearCharRectAndTopOfLine();
}
else
SwFlyFrm::Modify( pOld, pNew );
}
/*************************************************************************
|*
|* SwFlyAtCntFrm::MakeAll()
|*
|* Beschreibung Bei einem Absatzgebunden Fly kann es durchaus sein,
|* das der Anker auf die Veraenderung des Flys reagiert. Auf diese
|* Reaktion hat der Fly natuerlich auch wieder zu reagieren.
|* Leider kann dies zu Oszillationen fuehren z.b. Der Fly will nach
|* unten, dadurch kann der Inhalt nach oben, der TxtFrm wird kleiner,
|* der Fly muss wieder hoeher woduch der Text wieder nach unten
|* verdraengt wird...
|* Um derartige Oszillationen zu vermeiden, wird ein kleiner Positions-
|* stack aufgebaut. Wenn der Fly ein Position erreicht, die er bereits
|* einmal einnahm, so brechen wir den Vorgang ab. Um keine Risiken
|* einzugehen, wird der Positionsstack so aufgebaut, dass er fuenf
|* Positionen zurueckblickt.
|* Wenn der Stack ueberlaeuft, wird ebenfalls abgebrochen.
|* Der Abbruch fuer dazu, dass der Fly am Ende eine unguenste Position
|* einnimmt. Damit es nicht durch einen wiederholten Aufruf von
|* Aussen zu einer 'grossen Oszillation' kommen kann wird im Abbruch-
|* fall das Attribut des Rahmens auf automatische Ausrichtung oben
|* eingestellt.
|*
|*************************************************************************/
//Wir brauchen ein Paar Hilfsklassen zur Kontrolle der Ozillation und ein paar
//Funktionen um die Uebersicht zu gewaehrleisten.
// #i3317# - re-factoring of the position stack
class SwOszControl
{
static const SwFlyFrm *pStk1;
static const SwFlyFrm *pStk2;
static const SwFlyFrm *pStk3;
static const SwFlyFrm *pStk4;
static const SwFlyFrm *pStk5;
const SwFlyFrm *pFly;
// #i3317#
sal_uInt8 mnPosStackSize;
std::vector<Point*> maObjPositions;
public:
SwOszControl( const SwFlyFrm *pFrm );
~SwOszControl();
bool ChkOsz();
static sal_Bool IsInProgress( const SwFlyFrm *pFly );
};
const SwFlyFrm *SwOszControl::pStk1 = 0;
const SwFlyFrm *SwOszControl::pStk2 = 0;
const SwFlyFrm *SwOszControl::pStk3 = 0;
const SwFlyFrm *SwOszControl::pStk4 = 0;
const SwFlyFrm *SwOszControl::pStk5 = 0;
SwOszControl::SwOszControl( const SwFlyFrm *pFrm )
: pFly( pFrm ),
// #i3317#
mnPosStackSize( 20 )
{
if ( !SwOszControl::pStk1 )
SwOszControl::pStk1 = pFly;
else if ( !SwOszControl::pStk2 )
SwOszControl::pStk2 = pFly;
else if ( !SwOszControl::pStk3 )
SwOszControl::pStk3 = pFly;
else if ( !SwOszControl::pStk4 )
SwOszControl::pStk4 = pFly;
else if ( !SwOszControl::pStk5 )
SwOszControl::pStk5 = pFly;
}
SwOszControl::~SwOszControl()
{
if ( SwOszControl::pStk1 == pFly )
SwOszControl::pStk1 = 0;
else if ( SwOszControl::pStk2 == pFly )
SwOszControl::pStk2 = 0;
else if ( SwOszControl::pStk3 == pFly )
SwOszControl::pStk3 = 0;
else if ( SwOszControl::pStk4 == pFly )
SwOszControl::pStk4 = 0;
else if ( SwOszControl::pStk5 == pFly )
SwOszControl::pStk5 = 0;
// #i3317#
while ( !maObjPositions.empty() )
{
Point* pPos = maObjPositions.back();
delete pPos;
maObjPositions.pop_back();
}
}
sal_Bool SwOszControl::IsInProgress( const SwFlyFrm *pFly )
{
if ( SwOszControl::pStk1 && !pFly->IsLowerOf( SwOszControl::pStk1 ) )
return sal_True;
if ( SwOszControl::pStk2 && !pFly->IsLowerOf( SwOszControl::pStk2 ) )
return sal_True;
if ( SwOszControl::pStk3 && !pFly->IsLowerOf( SwOszControl::pStk3 ) )
return sal_True;
if ( SwOszControl::pStk4 && !pFly->IsLowerOf( SwOszControl::pStk4 ) )
return sal_True;
if ( SwOszControl::pStk5 && !pFly->IsLowerOf( SwOszControl::pStk5 ) )
return sal_True;
return sal_False;
}
bool SwOszControl::ChkOsz()
{
bool bOscillationDetected = false;
if ( maObjPositions.size() == mnPosStackSize )
{
// position stack is full -> oscillation
bOscillationDetected = true;
}
else
{
Point* pNewObjPos = new Point( pFly->GetObjRect().Pos() );
for ( std::vector<Point*>::iterator aObjPosIter = maObjPositions.begin();
aObjPosIter != maObjPositions.end();
++aObjPosIter )
{
if ( *(pNewObjPos) == *(*aObjPosIter) )
{
// position already occurred -> oscillation
bOscillationDetected = true;
delete pNewObjPos;
break;
}
}
if ( !bOscillationDetected )
{
maObjPositions.push_back( pNewObjPos );
}
}
return bOscillationDetected;
}
void SwFlyAtCntFrm::MakeAll()
{
if ( !GetFmt()->GetDoc()->IsVisibleLayerId( GetVirtDrawObj()->GetLayer() ) )
{
return;
}
if ( !SwOszControl::IsInProgress( this ) && !IsLocked() && !IsColLocked() )
{
// #i28701# - use new method <GetPageFrm()>
if( !GetPageFrm() && GetAnchorFrm() && GetAnchorFrm()->IsInFly() )
{
SwFlyFrm* pFly = AnchorFrm()->FindFlyFrm();
SwPageFrm *pTmpPage = pFly ? pFly->FindPageFrm() : NULL;
if( pTmpPage )
pTmpPage->AppendFlyToPage( this );
}
// #i28701# - use new method <GetPageFrm()>
if( GetPageFrm() )
{
bSetCompletePaintOnInvalidate = sal_True;
{
SwFlyFrmFmt *pFmt = (SwFlyFrmFmt*)GetFmt();
const SwFmtFrmSize &rFrmSz = GetFmt()->GetFrmSize();
if( rFrmSz.GetHeightPercent() != 0xFF &&
rFrmSz.GetHeightPercent() >= 100 )
{
pFmt->LockModify();
SwFmtSurround aMain( pFmt->GetSurround() );
if ( aMain.GetSurround() == SURROUND_NONE )
{
aMain.SetSurround( SURROUND_THROUGHT );
pFmt->SetFmtAttr( aMain );
}
pFmt->UnlockModify();
}
}
SwOszControl aOszCntrl( this );
// #i43255#
// #i50356# - format the anchor frame, which
// contains the anchor position. E.g., for at-character anchored
// object this can be the follow frame of the anchor frame.
const bool bFormatAnchor =
!static_cast<const SwTxtFrm*>( GetAnchorFrmContainingAnchPos() )->IsAnyJoinLocked() &&
!ConsiderObjWrapInfluenceOnObjPos() &&
!ConsiderObjWrapInfluenceOfOtherObjs();
const SwFrm* pFooter = GetAnchorFrm()->FindFooterOrHeader();
if( pFooter && !pFooter->IsFooterFrm() )
pFooter = NULL;
bool bOsz = false;
sal_Bool bExtra = Lower() && Lower()->IsColumnFrm();
// #i3317# - boolean, to apply temporarly the
// 'straightforward positioning process' for the frame due to its
// overlapping with a previous column.
bool bConsiderWrapInfluenceDueToOverlapPrevCol( false );
// #i35911# - boolean, to apply temporarly the
// 'straightforward positioning process' for the frame due to fact
// that it causes the complete content of its layout environment
// to move forward.
// #i40444# - extend usage of this boolean:
// apply temporarly the 'straightforward positioning process' for
// the frame due to the fact that the frame clears the area for
// the anchor frame, thus it has to move forward.
bool bConsiderWrapInfluenceDueToMovedFwdAnchor( false );
do {
SWRECTFN( this )
Point aOldPos( (Frm().*fnRect->fnGetPos)() );
SwFlyFreeFrm::MakeAll();
const bool bPosChgDueToOwnFormat =
aOldPos != (Frm().*fnRect->fnGetPos)();
// #i3317#
if ( !ConsiderObjWrapInfluenceOnObjPos() &&
OverlapsPrevColumn() )
{
bConsiderWrapInfluenceDueToOverlapPrevCol = true;
}
// #i28701# - no format of anchor frame, if
// wrapping style influence is considered on object positioning
if ( bFormatAnchor )
{
SwTxtFrm* pAnchPosAnchorFrm =
dynamic_cast<SwTxtFrm*>(GetAnchorFrmContainingAnchPos());
OSL_ENSURE( pAnchPosAnchorFrm,
"<SwFlyAtCntFrm::MakeAll()> - anchor frame of wrong type -> crash" );
// #i58182# - For the usage of new method
// <SwObjectFormatterTxtFrm::CheckMovedFwdCondition(..)>
// to check move forward of anchor frame due to the object
// positioning it's needed to know, if the object is anchored
// at the master frame before the anchor frame is formatted.
const bool bAnchoredAtMaster( !pAnchPosAnchorFrm->IsFollow() );
// #i56300#
// perform complete format of anchor text frame and its
// previous frames, which have become invalid due to the
// fly frame format.
SwObjectFormatterTxtFrm::FormatAnchorFrmAndItsPrevs( *pAnchPosAnchorFrm );
// #i35911#
// #i40444#
// #i58182# - usage of new method
// <SwObjectFormatterTxtFrm::CheckMovedFwdCondition(..)>
sal_uInt32 nToPageNum( 0L );
bool bDummy( false );
if ( SwObjectFormatterTxtFrm::CheckMovedFwdCondition(
*this, GetPageFrm()->GetPhyPageNum(),
bAnchoredAtMaster, nToPageNum, bDummy ) )
{
bConsiderWrapInfluenceDueToMovedFwdAnchor = true;
// mark anchor text frame
// directly, that it is moved forward by object positioning.
SwTxtFrm* pAnchorTxtFrm( static_cast<SwTxtFrm*>(AnchorFrm()) );
bool bInsert( true );
sal_uInt32 nAnchorFrmToPageNum( 0L );
const SwDoc& rDoc = *(GetFrmFmt().GetDoc());
if ( SwLayouter::FrmMovedFwdByObjPos(
rDoc, *pAnchorTxtFrm, nAnchorFrmToPageNum ) )
{
if ( nAnchorFrmToPageNum < nToPageNum )
SwLayouter::RemoveMovedFwdFrm( rDoc, *pAnchorTxtFrm );
else
bInsert = false;
}
if ( bInsert )
{
SwLayouter::InsertMovedFwdFrm( rDoc, *pAnchorTxtFrm,
nToPageNum );
}
}
}
if ( aOldPos != (Frm().*fnRect->fnGetPos)() ||
( !GetValidPosFlag() &&
( pFooter || bPosChgDueToOwnFormat ) ) )
{
bOsz = aOszCntrl.ChkOsz();
// special loop prevention for dedicated document:
if ( bOsz &&
HasFixSize() && IsClipped() &&
GetAnchorFrm()->GetUpper()->IsCellFrm() )
{
SwFrmFmt* pFmt = GetFmt();
const SwFmtFrmSize& rFrmSz = pFmt->GetFrmSize();
if ( rFrmSz.GetWidthPercent() &&
rFrmSz.GetHeightPercent() == 0xFF )
{
SwFmtSurround aSurround( pFmt->GetSurround() );
if ( aSurround.GetSurround() == SURROUND_NONE )
{
pFmt->LockModify();
aSurround.SetSurround( SURROUND_THROUGHT );
pFmt->SetFmtAttr( aSurround );
pFmt->UnlockModify();
bOsz = false;
OSL_FAIL( "<SwFlyAtCntFrm::MakeAll()> - special loop prevention for dedicated document of b6403541 applied" );
}
}
}
}
if ( bExtra && Lower() && !Lower()->GetValidPosFlag() )
{
// Wenn ein mehrspaltiger Rahmen wg. Positionswechsel ungueltige
// Spalten hinterlaesst, so drehen wir lieber hier eine weitere
// Runde und formatieren unseren Inhalt via FormatWidthCols nochmal.
_InvalidateSize();
bExtra = sal_False; // Sicherhaltshalber gibt es nur eine Ehrenrunde.
}
} while ( !IsValid() && !bOsz &&
// #i3317#
!bConsiderWrapInfluenceDueToOverlapPrevCol &&
// #i40444#
!bConsiderWrapInfluenceDueToMovedFwdAnchor &&
GetFmt()->GetDoc()->IsVisibleLayerId( GetVirtDrawObj()->GetLayer() ) );
// #i3317# - instead of attribute change apply
// temporarly the 'straightforward positioning process'.
// #i80924#
// handle special case during splitting of table rows
if ( bConsiderWrapInfluenceDueToMovedFwdAnchor &&
GetAnchorFrm()->IsInTab() &&
GetAnchorFrm()->IsInFollowFlowRow() )
{
const SwFrm* pCellFrm = GetAnchorFrm();
while ( pCellFrm && !pCellFrm->IsCellFrm() )
{
pCellFrm = pCellFrm->GetUpper();
}
if ( pCellFrm )
{
SWRECTFN( pCellFrm )
if ( (pCellFrm->Frm().*fnRect->fnGetTop)() == 0 &&
(pCellFrm->Frm().*fnRect->fnGetHeight)() == 0 )
{
bConsiderWrapInfluenceDueToMovedFwdAnchor = false;
}
}
}
if ( bOsz || bConsiderWrapInfluenceDueToOverlapPrevCol ||
// #i40444#
bConsiderWrapInfluenceDueToMovedFwdAnchor )
{
SetTmpConsiderWrapInfluence( true );
SetRestartLayoutProcess( true );
SetTmpConsiderWrapInfluenceOfOtherObjs( true );
}
bSetCompletePaintOnInvalidate = sal_False;
}
}
}
/** method to determine, if a <MakeAll()> on the Writer fly frame is possible
#i28701#
*/
bool SwFlyAtCntFrm::IsFormatPossible() const
{
return SwFlyFreeFrm::IsFormatPossible() &&
!SwOszControl::IsInProgress( this );
}
/*************************************************************************
|*
|* FindAnchor() und Hilfsfunktionen.
|*
|* Beschreibung: Sucht ausgehend von pOldAnch einen Anker fuer
|* Absatzgebundene Objekte.
|* Wird beim Draggen von Absatzgebundenen Objekten zur Ankeranzeige sowie
|* fuer Ankerwechsel benoetigt.
|*
|*************************************************************************/
class SwDistance
{
public:
SwTwips nMain, nSub;
SwDistance() { nMain = nSub = 0; }
SwDistance& operator=( const SwDistance &rTwo )
{ nMain = rTwo.nMain; nSub = rTwo.nSub; return *this; }
sal_Bool operator<( const SwDistance& rTwo ) const
{ return nMain < rTwo.nMain || ( nMain == rTwo.nMain && nSub &&
rTwo.nSub && nSub < rTwo.nSub ); }
sal_Bool operator<=( const SwDistance& rTwo ) const
{ return nMain < rTwo.nMain || ( nMain == rTwo.nMain && ( !nSub ||
!rTwo.nSub || nSub <= rTwo.nSub ) ); }
};
const SwFrm * MA_FASTCALL lcl_CalcDownDist( SwDistance &rRet,
const Point &rPt,
const SwCntntFrm *pCnt )
{
rRet.nSub = 0;
//Wenn der Point direkt innerhalb des Cnt steht ist die Sache klar und
//der Cntnt hat automatisch eine Entfernung von 0
if ( pCnt->Frm().IsInside( rPt ) )
{
rRet.nMain = 0;
return pCnt;
}
else
{
const SwLayoutFrm *pUp = pCnt->IsInTab() ? pCnt->FindTabFrm()->GetUpper() : pCnt->GetUpper();
// einspaltige Bereiche muessen zu ihrem Upper durchschalten
while( pUp->IsSctFrm() )
pUp = pUp->GetUpper();
const bool bVert = pUp->IsVertical();
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
const bool bVertL2R = pUp->IsVertLR();
//Dem Textflus folgen.
// #i70582#
// --> OD 2009-03-05 - adopted for Support for Classical Mongolian Script
const SwTwips nTopForObjPos =
bVert
? ( bVertL2R
? ( pCnt->Frm().Left() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() )
: ( pCnt->Frm().Left() +
pCnt->Frm().Width() -
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() ) )
: ( pCnt->Frm().Top() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() );
if ( pUp->Frm().IsInside( rPt ) )
{
// <rPt> point is inside environment of given content frame
// #i70582#
if( bVert )
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
{
if ( bVertL2R )
rRet.nMain = rPt.X() - nTopForObjPos;
else
rRet.nMain = nTopForObjPos - rPt.X();
}
else
rRet.nMain = rPt.Y() - nTopForObjPos;
return pCnt;
}
else if ( rPt.Y() <= pUp->Frm().Top() )
{
// <rPt> point is above environment of given content frame
// correct for vertical layout?
rRet.nMain = LONG_MAX;
}
else if( rPt.X() < pUp->Frm().Left() &&
rPt.Y() <= ( bVert ? pUp->Frm().Top() : pUp->Frm().Bottom() ) )
{
// <rPt> point is left of environment of given content frame
// seems not to be correct for vertical layout!?
const SwFrm *pLay = pUp->GetLeaf( MAKEPAGE_NONE, sal_False, pCnt );
if( !pLay ||
(bVert && (pLay->Frm().Top() + pLay->Prt().Bottom()) <rPt.Y())||
(!bVert && (pLay->Frm().Left() + pLay->Prt().Right())<rPt.X()) )
{
// <rPt> point is in left border of environment
// #i70582#
if( bVert )
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
{
if ( bVertL2R )
rRet.nMain = rPt.X() - nTopForObjPos;
else
rRet.nMain = nTopForObjPos - rPt.X();
}
else
rRet.nMain = rPt.Y() - nTopForObjPos;
return pCnt;
}
else
rRet.nMain = LONG_MAX;
}
else
{
// Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
rRet.nMain = bVert
? ( bVertL2R
? ( (pUp->Frm().Left() + pUp->Prt().Right()) - nTopForObjPos )
: ( nTopForObjPos - (pUp->Frm().Left() + pUp->Prt().Left() ) ) )
: ( (pUp->Frm().Top() + pUp->Prt().Bottom()) - nTopForObjPos );
const SwFrm *pPre = pCnt;
const SwFrm *pLay = pUp->GetLeaf( MAKEPAGE_NONE, sal_True, pCnt );
SwTwips nFrmTop = 0;
SwTwips nPrtHeight = 0;
sal_Bool bSct = sal_False;
const SwSectionFrm *pSect = pUp->FindSctFrm();
if( pSect )
{
rRet.nSub = rRet.nMain;
rRet.nMain = 0;
}
if( pSect && !pSect->IsAnLower( pLay ) )
{
bSct = sal_False;
const SwSectionFrm* pNxtSect = pLay ? pLay->FindSctFrm() : 0;
if( pSect->IsAnFollow( pNxtSect ) )
{
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
nFrmTop = pLay->Frm().Left();
else
nFrmTop = pLay->Frm().Left() + pLay->Frm().Width();
nPrtHeight = pLay->Prt().Width();
}
else
{
nFrmTop = pLay->Frm().Top();
nPrtHeight = pLay->Prt().Height();
}
pSect = pNxtSect;
}
else
{
pLay = pSect->GetUpper();
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
{
nFrmTop = pSect->Frm().Right();
nPrtHeight = pLay->Frm().Left() + pLay->Prt().Left()
+ pLay->Prt().Width() - pSect->Frm().Left()
- pSect->Frm().Width();
}
else
{
nFrmTop = pSect->Frm().Left();
nPrtHeight = pSect->Frm().Left() - pLay->Frm().Left()
- pLay->Prt().Left();
}
}
else
{
nFrmTop = pSect->Frm().Bottom();
nPrtHeight = pLay->Frm().Top() + pLay->Prt().Top()
+ pLay->Prt().Height() - pSect->Frm().Top()
- pSect->Frm().Height();
}
pSect = 0;
}
}
else if( pLay )
{
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
{
nFrmTop = pLay->Frm().Left();
nPrtHeight = pLay->Prt().Width();
}
else
{
nFrmTop = pLay->Frm().Left() + pLay->Frm().Width();
nPrtHeight = pLay->Prt().Width();
}
}
else
{
nFrmTop = pLay->Frm().Top();
nPrtHeight = pLay->Prt().Height();
}
bSct = 0 != pSect;
}
while ( pLay && !pLay->Frm().IsInside( rPt ) &&
( pLay->Frm().Top() <= rPt.Y() || pLay->IsInFly() ||
( pLay->IsInSct() &&
pLay->FindSctFrm()->GetUpper()->Frm().Top() <= rPt.Y())) )
{
if ( pLay->IsFtnContFrm() )
{
if ( !((SwLayoutFrm*)pLay)->Lower() )
{
SwFrm *pDel = (SwFrm*)pLay;
pDel->Cut();
delete pDel;
return pPre;
}
return 0;
}
else
{
if( bSct || pSect )
rRet.nSub += nPrtHeight;
else
rRet.nMain += nPrtHeight;
pPre = pLay;
pLay = pLay->GetLeaf( MAKEPAGE_NONE, sal_True, pCnt );
if( pSect && !pSect->IsAnLower( pLay ) )
{ // If we're leaving a SwSectionFrm, the next Leaf-Frm
// is the part of the upper below the SectionFrm.
const SwSectionFrm* pNxtSect = pLay ?
pLay->FindSctFrm() : NULL;
bSct = sal_False;
if( pSect->IsAnFollow( pNxtSect ) )
{
pSect = pNxtSect;
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
{
nFrmTop = pLay->Frm().Left();
nPrtHeight = pLay->Prt().Width();
}
else
{
nFrmTop = pLay->Frm().Left() + pLay->Frm().Width();
nPrtHeight = pLay->Prt().Width();
}
}
else
{
nFrmTop = pLay->Frm().Top();
nPrtHeight = pLay->Prt().Height();
}
}
else
{
pLay = pSect->GetUpper();
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
{
nFrmTop = pSect->Frm().Right();
nPrtHeight = pLay->Frm().Left()+pLay->Prt().Left()
+ pLay->Prt().Width() - pSect->Frm().Left()
- pSect->Frm().Width();
}
else
{
nFrmTop = pSect->Frm().Left();
nPrtHeight = pSect->Frm().Left() -
pLay->Frm().Left() - pLay->Prt().Left();
}
}
else
{
nFrmTop = pSect->Frm().Bottom();
nPrtHeight = pLay->Frm().Top()+pLay->Prt().Top()
+ pLay->Prt().Height() - pSect->Frm().Top()
- pSect->Frm().Height();
}
pSect = 0;
}
}
else if( pLay )
{
if( pLay->IsVertical() )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if ( pLay->IsVertLR() )
{
nFrmTop = pLay->Frm().Left();
nPrtHeight = pLay->Prt().Width();
}
else
{
nFrmTop = pLay->Frm().Left() + pLay->Frm().Width();
nPrtHeight = pLay->Prt().Width();
}
}
else
{
nFrmTop = pLay->Frm().Top();
nPrtHeight = pLay->Prt().Height();
}
bSct = 0 != pSect;
}
}
}
if ( pLay )
{
if ( pLay->Frm().IsInside( rPt ) )
{
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
SwTwips nDiff = pLay->IsVertical() ? ( pLay->IsVertLR() ? ( rPt.X() - nFrmTop ) : ( nFrmTop - rPt.X() ) )
: ( rPt.Y() - nFrmTop );
if( bSct || pSect )
rRet.nSub += nDiff;
else
rRet.nMain += nDiff;
}
if ( pLay->IsFtnContFrm() && !((SwLayoutFrm*)pLay)->Lower() )
{
SwFrm *pDel = (SwFrm*)pLay;
pDel->Cut();
delete pDel;
return 0;
}
return pLay;
}
else
rRet.nMain = LONG_MAX;
}
}
return 0;
}
sal_uLong MA_FASTCALL lcl_FindCntDiff( const Point &rPt, const SwLayoutFrm *pLay,
const SwCntntFrm *& rpCnt,
const sal_Bool bBody, const sal_Bool bFtn )
{
//Sucht unterhalb von pLay den dichtesten Cnt zum Point. Der Bezugspunkt
//der Cntnts ist immer die linke obere Ecke.
//Der Cnt soll moeglichst ueber dem Point liegen.
#if OSL_DEBUG_LEVEL > 1
Point arPoint( rPt );
#endif
rpCnt = 0;
sal_uLong nDistance = ULONG_MAX;
sal_uLong nNearest = ULONG_MAX;
const SwCntntFrm *pCnt = pLay->ContainsCntnt();
while ( pCnt && (bBody != pCnt->IsInDocBody() || bFtn != pCnt->IsInFtn()))
{
pCnt = pCnt->GetNextCntntFrm();
if ( !pLay->IsAnLower( pCnt ) )
pCnt = 0;
}
const SwCntntFrm *pNearest = pCnt;
if ( pCnt )
{
do
{
//Jetzt die Entfernung zwischen den beiden Punkten berechnen.
//'Delta' X^2 + 'Delta'Y^2 = 'Entfernung'^2
sal_uInt32 dX = Max( pCnt->Frm().Left(), rPt.X() ) -
Min( pCnt->Frm().Left(), rPt.X() ),
dY = Max( pCnt->Frm().Top(), rPt.Y() ) -
Min( pCnt->Frm().Top(), rPt.Y() );
BigInt dX1( dX ), dY1( dY );
dX1 *= dX1; dY1 *= dY1;
const sal_uLong nDiff = ::SqRt( dX1 + dY1 );
if ( pCnt->Frm().Top() <= rPt.Y() )
{
if ( nDiff < nDistance )
{ //Der ist dichter dran
nDistance = nNearest = nDiff;
rpCnt = pNearest = pCnt;
}
}
else if ( nDiff < nNearest )
{
nNearest = nDiff;
pNearest = pCnt;
}
pCnt = pCnt->GetNextCntntFrm();
while ( pCnt &&
(bBody != pCnt->IsInDocBody() || bFtn != pCnt->IsInFtn()))
pCnt = pCnt->GetNextCntntFrm();
} while ( pCnt && pLay->IsAnLower( pCnt ) );
}
if ( nDistance == ULONG_MAX )
{ rpCnt = pNearest;
return nNearest;
}
return nDistance;
}
const SwCntntFrm * MA_FASTCALL lcl_FindCnt( const Point &rPt, const SwCntntFrm *pCnt,
const sal_Bool bBody, const sal_Bool bFtn )
{
//Sucht ausgehen von pCnt denjenigen CntntFrm, dessen linke obere
//Ecke am dichtesten am Point liegt.
//Liefert _immer_ einen CntntFrm zurueck.
//Zunaechst wird versucht den dichtesten Cntnt innerhalt derjenigen
//Seite zu suchen innerhalb derer der Cntnt steht.
//Ausgehend von der Seite muessen die Seiten in beide
//Richtungen beruecksichtigt werden.
//Falls moeglich wird ein Cntnt geliefert, dessen Y-Position ueber der
//des Point sitzt.
const SwCntntFrm *pRet, *pNew;
const SwLayoutFrm *pLay = pCnt->FindPageFrm();
sal_uLong nDist;
nDist = ::lcl_FindCntDiff( rPt, pLay, pNew, bBody, bFtn );
if ( pNew )
pRet = pNew;
else
{ pRet = pCnt;
nDist = ULONG_MAX;
}
const SwCntntFrm *pNearest = pRet;
sal_uLong nNearest = nDist;
if ( pLay )
{
const SwLayoutFrm *pPge = pLay;
sal_uLong nOldNew = ULONG_MAX;
for ( sal_uInt16 i = 0; pPge->GetPrev() && (i < 3); ++i )
{
pPge = (SwLayoutFrm*)pPge->GetPrev();
const sal_uLong nNew = ::lcl_FindCntDiff( rPt, pPge, pNew, bBody, bFtn );
if ( nNew < nDist )
{
if ( pNew->Frm().Top() <= rPt.Y() )
{
pRet = pNearest = pNew;
nDist = nNearest = nNew;
}
else if ( nNew < nNearest )
{
pNearest = pNew;
nNearest = nNew;
}
}
else if ( nOldNew != ULONG_MAX && nNew > nOldNew )
break;
else
nOldNew = nNew;
}
pPge = pLay;
nOldNew = ULONG_MAX;
for ( sal_uInt16 j = 0; pPge->GetNext() && (j < 3); ++j )
{
pPge = (SwLayoutFrm*)pPge->GetNext();
const sal_uLong nNew = ::lcl_FindCntDiff( rPt, pPge, pNew, bBody, bFtn );
if ( nNew < nDist )
{
if ( pNew->Frm().Top() <= rPt.Y() )
{
pRet = pNearest = pNew;
nDist = nNearest = nNew;
}
else if ( nNew < nNearest )
{
pNearest = pNew;
nNearest = nNew;
}
}
else if ( nOldNew != ULONG_MAX && nNew > nOldNew )
break;
else
nOldNew = nNew;
}
}
if ( (pRet->Frm().Top() > rPt.Y()) )
return pNearest;
else
return pRet;
}
void lcl_PointToPrt( Point &rPoint, const SwFrm *pFrm )
{
SwRect aTmp( pFrm->Prt() );
aTmp += pFrm->Frm().Pos();
if ( rPoint.X() < aTmp.Left() )
rPoint.X() = aTmp.Left();
else if ( rPoint.X() > aTmp.Right() )
rPoint.X() = aTmp.Right();
if ( rPoint.Y() < aTmp.Top() )
rPoint.Y() = aTmp.Top();
else if ( rPoint.Y() > aTmp.Bottom() )
rPoint.Y() = aTmp.Bottom();
}
const SwCntntFrm *FindAnchor( const SwFrm *pOldAnch, const Point &rNew,
const sal_Bool bBodyOnly )
{
//Zu der angegebenen DokumentPosition wird der dichteste Cnt im
//Textfluss gesucht. AusgangsFrm ist der uebergebene Anker.
const SwCntntFrm* pCnt;
if ( pOldAnch->IsCntntFrm() )
{
pCnt = (const SwCntntFrm*)pOldAnch;
}
else
{
Point aTmp( rNew );
SwLayoutFrm *pTmpLay = (SwLayoutFrm*)pOldAnch;
if( pTmpLay->IsRootFrm() )
{
SwRect aTmpRect( aTmp, Size(0,0) );
pTmpLay = (SwLayoutFrm*)::FindPage( aTmpRect, pTmpLay->Lower() );
}
pCnt = pTmpLay->GetCntntPos( aTmp, sal_False, bBodyOnly );
}
//Beim Suchen darauf achten, dass die Bereiche sinnvoll erhalten
//bleiben. D.h. in diesem Fall nicht in Header/Footer hinein und
//nicht aus Header/Footer hinaus.
const sal_Bool bBody = pCnt->IsInDocBody() || bBodyOnly;
const sal_Bool bFtn = !bBodyOnly && pCnt->IsInFtn();
Point aNew( rNew );
if ( bBody )
{
//#38848 Vom Seitenrand in den Body ziehen.
const SwFrm *pPage = pCnt->FindPageFrm();
::lcl_PointToPrt( aNew, pPage->GetUpper() );
SwRect aTmp( aNew, Size( 0, 0 ) );
pPage = ::FindPage( aTmp, pPage );
::lcl_PointToPrt( aNew, pPage );
}
if ( pCnt->IsInDocBody() == bBody && pCnt->Frm().IsInside( aNew ) )
return pCnt;
else if ( pOldAnch->IsInDocBody() || pOldAnch->IsPageFrm() )
{
//Vielleicht befindet sich der gewuenschte Anker ja auf derselben
//Seite wie der aktuelle Anker.
//So gibt es kein Problem mit Spalten.
Point aTmp( aNew );
const SwCntntFrm *pTmp = pCnt->FindPageFrm()->
GetCntntPos( aTmp, sal_False, sal_True, sal_False );
if ( pTmp && pTmp->Frm().IsInside( aNew ) )
return pTmp;
}
//Ausgehend vom Anker suche ich jetzt in beide Richtungen bis ich
//den jeweils dichtesten gefunden habe.
//Nicht die direkte Entfernung ist relevant sondern die Strecke die
//im Textfluss zurueckgelegt werden muss.
const SwCntntFrm *pUpLst;
const SwCntntFrm *pUpFrm = pCnt;
SwDistance nUp, nUpLst;
::lcl_CalcDownDist( nUp, aNew, pUpFrm );
SwDistance nDown = nUp;
sal_Bool bNegAllowed = sal_True;//Einmal aus dem negativen Bereich heraus lassen.
do
{
pUpLst = pUpFrm; nUpLst = nUp;
pUpFrm = pUpLst->GetPrevCntntFrm();
while ( pUpFrm &&
(bBody != pUpFrm->IsInDocBody() || bFtn != pUpFrm->IsInFtn()))
pUpFrm = pUpFrm->GetPrevCntntFrm();
if ( pUpFrm )
{
::lcl_CalcDownDist( nUp, aNew, pUpFrm );
//Wenn die Distanz innnerhalb einer Tabelle waechst, so lohnt es
//sich weiter zu suchen.
if ( pUpLst->IsInTab() && pUpFrm->IsInTab() )
{
while ( pUpFrm && ((nUpLst < nUp && pUpFrm->IsInTab()) ||
bBody != pUpFrm->IsInDocBody()) )
{
pUpFrm = pUpFrm->GetPrevCntntFrm();
if ( pUpFrm )
::lcl_CalcDownDist( nUp, aNew, pUpFrm );
}
}
}
if ( !pUpFrm )
nUp.nMain = LONG_MAX;
if ( nUp.nMain >= 0 && LONG_MAX != nUp.nMain )
{
bNegAllowed = sal_False;
if ( nUpLst.nMain < 0 ) //nicht den falschen erwischen, wenn der Wert
//gerade von negativ auf positiv gekippt ist.
{ pUpLst = pUpFrm;
nUpLst = nUp;
}
}
} while ( pUpFrm && ( ( bNegAllowed && nUp.nMain < 0 ) || ( nUp <= nUpLst ) ) );
const SwCntntFrm *pDownLst;
const SwCntntFrm *pDownFrm = pCnt;
SwDistance nDownLst;
if ( nDown.nMain < 0 )
nDown.nMain = LONG_MAX;
do
{
pDownLst = pDownFrm; nDownLst = nDown;
pDownFrm = pDownLst->GetNextCntntFrm();
while ( pDownFrm &&
(bBody != pDownFrm->IsInDocBody() || bFtn != pDownFrm->IsInFtn()))
pDownFrm = pDownFrm->GetNextCntntFrm();
if ( pDownFrm )
{
::lcl_CalcDownDist( nDown, aNew, pDownFrm );
if ( nDown.nMain < 0 )
nDown.nMain = LONG_MAX;
//Wenn die Distanz innnerhalb einer Tabelle waechst, so lohnt es
//sich weiter zu suchen.
if ( pDownLst->IsInTab() && pDownFrm->IsInTab() )
{
while ( pDownFrm && ( ( nDown.nMain != LONG_MAX && pDownFrm->IsInTab()) || bBody != pDownFrm->IsInDocBody() ) )
{
pDownFrm = pDownFrm->GetNextCntntFrm();
if ( pDownFrm )
::lcl_CalcDownDist( nDown, aNew, pDownFrm );
if ( nDown.nMain < 0 )
nDown.nMain = LONG_MAX;
}
}
}
if ( !pDownFrm )
nDown.nMain = LONG_MAX;
} while ( pDownFrm && nDown <= nDownLst &&
nDown.nMain != LONG_MAX && nDownLst.nMain != LONG_MAX );
//Wenn ich in beide Richtungen keinen gefunden habe, so suche ich mir
//denjenigen Cntnt dessen linke obere Ecke dem Point am naechsten liegt.
//Eine derartige Situation tritt z.b. auf, wenn der Point nicht im Text-
//fluss sondern in irgendwelchen Raendern steht.
if ( nDownLst.nMain == LONG_MAX && nUpLst.nMain == LONG_MAX )
{
// If an OLE objects, which is contained in a fly frame
// is resized in inplace mode and the new Position is outside the
// fly frame, we do not want to leave our fly frame.
if ( pCnt->IsInFly() )
return pCnt;
return ::lcl_FindCnt( aNew, pCnt, bBody, bFtn );
}
else
return nDownLst < nUpLst ? pDownLst : pUpLst;
}
/*************************************************************************
|*
|* SwFlyAtCntFrm::SetAbsPos()
|*
|*************************************************************************/
void SwFlyAtCntFrm::SetAbsPos( const Point &rNew )
{
SwPageFrm *pOldPage = FindPageFrm();
const SwRect aOld( GetObjRectWithSpaces() );
Point aNew( rNew );
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
if( ( GetAnchorFrm()->IsVertical() && !GetAnchorFrm()->IsVertLR() ) || GetAnchorFrm()->IsRightToLeft() )
aNew.X() += Frm().Width();
SwCntntFrm *pCnt = (SwCntntFrm*)::FindAnchor( GetAnchorFrm(), aNew );
if( pCnt->IsProtected() )
pCnt = (SwCntntFrm*)GetAnchorFrm();
SwPageFrm *pTmpPage = 0;
const bool bVert = pCnt->IsVertical();
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
const bool bVertL2R = pCnt->IsVertLR();
const sal_Bool bRTL = pCnt->IsRightToLeft();
if( ( !bVert != !GetAnchorFrm()->IsVertical() ) ||
( !bRTL != !GetAnchorFrm()->IsRightToLeft() ) )
{
if( bVert || bRTL )
aNew.X() += Frm().Width();
else
aNew.X() -= Frm().Width();
}
if ( pCnt->IsInDocBody() )
{
//#38848 Vom Seitenrand in den Body ziehen.
pTmpPage = pCnt->FindPageFrm();
::lcl_PointToPrt( aNew, pTmpPage->GetUpper() );
SwRect aTmp( aNew, Size( 0, 0 ) );
pTmpPage = (SwPageFrm*)::FindPage( aTmp, pTmpPage );
::lcl_PointToPrt( aNew, pTmpPage );
}
//RelPos einstellen, nur auf Wunsch invalidieren.
//rNew ist eine Absolute Position. Um die RelPos korrekt einzustellen
//muessen wir uns die Entfernung von rNew zum Anker im Textfluss besorgen.
//!!!!!Hier kann Optimiert werden: FindAnchor koennte die RelPos mitliefern!
const SwFrm *pFrm = 0;
SwTwips nY;
if ( pCnt->Frm().IsInside( aNew ) )
{
// #i70582#
const SwTwips nTopForObjPos =
bVert
? ( bVertL2R
? ( pCnt->Frm().Left() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() )
: ( pCnt->Frm().Left() +
pCnt->Frm().Width() -
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() ) )
: ( pCnt->Frm().Top() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() );
if( bVert )
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
{
if ( bVertL2R )
nY = rNew.X() - nTopForObjPos;
else
nY = nTopForObjPos - rNew.X() - Frm().Width();
}
else
{
nY = rNew.Y() - nTopForObjPos;
}
}
else
{
SwDistance aDist;
pFrm = ::lcl_CalcDownDist( aDist, aNew, pCnt );
nY = aDist.nMain + aDist.nSub;
}
SwTwips nX = 0;
if ( pCnt->IsFollow() )
{
//Flys haengen niemals an einem Follow sondern immer am
//Master, den suchen wir uns jetzt.
const SwCntntFrm *pOriginal = pCnt;
const SwCntntFrm *pFollow = pCnt;
while ( pCnt->IsFollow() )
{
do
{ pCnt = pCnt->GetPrevCntntFrm();
} while ( pCnt->GetFollow() != pFollow );
pFollow = pCnt;
}
SwTwips nDiff = 0;
do
{ const SwFrm *pUp = pFollow->GetUpper();
if( pUp->IsVertical() )
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
{
if ( pUp->IsVertLR() )
nDiff += pUp->Prt().Width() - pFollow->GetRelPos().X();
else
nDiff += pFollow->Frm().Left() + pFollow->Frm().Width()
- pUp->Frm().Left() - pUp->Prt().Left();
}
else
nDiff += pUp->Prt().Height() - pFollow->GetRelPos().Y();
pFollow = pFollow->GetFollow();
} while ( pFollow != pOriginal );
nY += nDiff;
if( bVert )
nX = pCnt->Frm().Top() - pOriginal->Frm().Top();
else
nX = pCnt->Frm().Left() - pOriginal->Frm().Left();
}
if ( nY == LONG_MAX )
{
// #i70582#
const SwTwips nTopForObjPos =
bVert
? ( bVertL2R
? ( pCnt->Frm().Left() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() )
: ( pCnt->Frm().Left() +
pCnt->Frm().Width() -
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() ) )
: ( pCnt->Frm().Top() +
pCnt->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid() );
if( bVert )
//Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
{
if ( bVertL2R )
nY = rNew.X() - nTopForObjPos;
else
nY = nTopForObjPos - rNew.X();
}
else
{
nY = rNew.Y() - nTopForObjPos;
}
}
SwFlyFrmFmt *pFmt = (SwFlyFrmFmt*)GetFmt();
const SwFmtSurround& rSurround = pFmt->GetSurround();
const sal_Bool bWrapThrough =
rSurround.GetSurround() == SURROUND_THROUGHT;
SwTwips nBaseOfstForFly = 0;
const SwFrm* pTmpFrm = pFrm ? pFrm : pCnt;
if ( pTmpFrm->IsTxtFrm() )
nBaseOfstForFly =
((SwTxtFrm*)pTmpFrm)->GetBaseOfstForFly( !bWrapThrough );
if( bVert )
{
if( !pFrm )
nX += rNew.Y() - pCnt->Frm().Top() - nBaseOfstForFly;
else
nX = rNew.Y() - pFrm->Frm().Top() - nBaseOfstForFly;
}
else
{
if( !pFrm )
{
if ( pCnt->IsRightToLeft() )
nX += pCnt->Frm().Right() - rNew.X() - Frm().Width() +
nBaseOfstForFly;
else
nX += rNew.X() - pCnt->Frm().Left() - nBaseOfstForFly;
}
else
{
if ( pFrm->IsRightToLeft() )
nX += pFrm->Frm().Right() - rNew.X() - Frm().Width() +
nBaseOfstForFly;
else
nX = rNew.X() - pFrm->Frm().Left() - nBaseOfstForFly;
}
}
GetFmt()->GetDoc()->GetIDocumentUndoRedo().StartUndo( UNDO_START, NULL );
if( pCnt != GetAnchorFrm() || ( IsAutoPos() && pCnt->IsTxtFrm() &&
GetFmt()->getIDocumentSettingAccess()->get(IDocumentSettingAccess::HTML_MODE)) )
{
//Das Ankerattribut auf den neuen Cnt setzen.
SwFmtAnchor aAnch( pFmt->GetAnchor() );
SwPosition *pPos = (SwPosition*)aAnch.GetCntntAnchor();
if( IsAutoPos() && pCnt->IsTxtFrm() )
{
SwCrsrMoveState eTmpState( MV_SETONLYTEXT );
Point aPt( rNew );
if( pCnt->GetCrsrOfst( pPos, aPt, &eTmpState )
&& pPos->nNode == *pCnt->GetNode() )
{
ResetLastCharRectHeight();
if( text::RelOrientation::CHAR == pFmt->GetVertOrient().GetRelationOrient() )
nY = LONG_MAX;
if( text::RelOrientation::CHAR == pFmt->GetHoriOrient().GetRelationOrient() )
nX = LONG_MAX;
}
else
{
pPos->nNode = *pCnt->GetNode();
pPos->nContent.Assign( pCnt->GetNode(), 0 );
}
}
else
{
pPos->nNode = *pCnt->GetNode();
pPos->nContent.Assign( pCnt->GetNode(), 0 );
}
// handle change of anchor node:
// if count of the anchor frame also change, the fly frames have to be
// re-created. Thus, delete all fly frames except the <this> before the
// anchor attribute is change and re-create them afterwards.
{
SwHandleAnchorNodeChg aHandleAnchorNodeChg( *pFmt, aAnch, this );
pFmt->GetDoc()->SetAttr( aAnch, *pFmt );
}
}
// #i28701# - use new method <GetPageFrm()>
else if ( pTmpPage && pTmpPage != GetPageFrm() )
GetPageFrm()->MoveFly( this, pTmpPage );
const Point aRelPos = bVert ? Point( -nY, nX ) : Point( nX, nY );
ChgRelPos( aRelPos );
GetFmt()->GetDoc()->GetIDocumentUndoRedo().EndUndo( UNDO_END, NULL );
if ( pOldPage != FindPageFrm() )
::Notify_Background( GetVirtDrawObj(), pOldPage, aOld, PREP_FLY_LEAVE,
sal_False );
}
/** method to assure that anchored object is registered at the correct
page frame
#i28701#
takes over functionality of deleted method <SwFlyAtCntFrm::AssertPage()>
*/
void SwFlyAtCntFrm::RegisterAtCorrectPage()
{
SwPageFrm* pPageFrm( 0L );
if ( GetVertPosOrientFrm() )
{
pPageFrm = const_cast<SwPageFrm*>(GetVertPosOrientFrm()->FindPageFrm());
}
if ( pPageFrm && GetPageFrm() != pPageFrm )
{
if ( GetPageFrm() )
GetPageFrm()->MoveFly( this, pPageFrm );
else
pPageFrm->AppendFlyToPage( this );
}
}
// #i26791#
//void SwFlyAtCntFrm::MakeFlyPos()
void SwFlyAtCntFrm::MakeObjPos()
{
// if fly frame position is valid, nothing is to do. Thus, return
if ( bValidPos )
{
return;
}
// #i26791# - validate position flag here.
bValidPos = sal_True;
// #i35911# - no calculation of new position, if
// anchored object is marked that it clears its environment and its
// environment is already cleared.
// before checking for cleared environment
// check, if member <mpVertPosOrientFrm> is set.
if ( GetVertPosOrientFrm() &&
ClearedEnvironment() && HasClearedEnvironment() )
{
return;
}
// use new class to position object
objectpositioning::SwToCntntAnchoredObjectPosition
aObjPositioning( *GetVirtDrawObj() );
aObjPositioning.CalcPosition();
SetVertPosOrientFrm ( aObjPositioning.GetVertPosOrientFrm() );
}
// #i28701#
bool SwFlyAtCntFrm::_InvalidationAllowed( const InvalidationType _nInvalid ) const
{
bool bAllowed( SwFlyFreeFrm::_InvalidationAllowed( _nInvalid ) );
// forbiddance of base instance can't be over ruled.
if ( bAllowed )
{
if ( _nInvalid == INVALID_POS ||
_nInvalid == INVALID_ALL )
{
bAllowed = InvalidationOfPosAllowed();
}
}
return bAllowed;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|