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
|
/* -*- 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 <objectformatter.hxx>
#include <objectformattertxtfrm.hxx>
#include <objectformatterlayfrm.hxx>
#include <anchoredobject.hxx>
#include <anchoreddrawobject.hxx>
#include <sortedobjs.hxx>
#include <pagefrm.hxx>
#include <flyfrms.hxx>
#include <txtfrm.hxx>
#include <layact.hxx>
#include <frmfmt.hxx>
#include <fmtanchr.hxx>
#include <doc.hxx>
#include <vector>
// =============================================================================
// helper class <SwPageNumAndTypeOfAnchors>
// --> #i26945# - Additionally the type of the anchor text frame
// is collected - by type is meant 'master' or 'follow'.
// =============================================================================
class SwPageNumAndTypeOfAnchors
{
private:
struct tEntry
{
SwAnchoredObject* mpAnchoredObj;
sal_uInt32 mnPageNumOfAnchor;
bool mbAnchoredAtMaster;
};
std::vector< tEntry* > maObjList;
public:
inline SwPageNumAndTypeOfAnchors()
{
}
inline ~SwPageNumAndTypeOfAnchors()
{
for ( std::vector< tEntry* >::iterator aIter = maObjList.begin();
aIter != maObjList.end(); ++aIter )
{
delete (*aIter);
}
maObjList.clear();
}
inline void Collect( SwAnchoredObject& _rAnchoredObj )
{
tEntry* pNewEntry = new tEntry();
pNewEntry->mpAnchoredObj = &_rAnchoredObj;
// #i33751#, #i34060# - method <GetPageFrmOfAnchor()>
// is replaced by method <FindPageFrmOfAnchor()>. It's return value
// have to be checked.
SwPageFrm* pPageFrmOfAnchor = _rAnchoredObj.FindPageFrmOfAnchor();
if ( pPageFrmOfAnchor )
{
pNewEntry->mnPageNumOfAnchor = pPageFrmOfAnchor->GetPhyPageNum();
}
else
{
pNewEntry->mnPageNumOfAnchor = 0;
}
// --> #i26945# - collect type of anchor
SwTxtFrm* pAnchorCharFrm = _rAnchoredObj.FindAnchorCharFrm();
if ( pAnchorCharFrm )
{
pNewEntry->mbAnchoredAtMaster = !pAnchorCharFrm->IsFollow();
}
else
{
pNewEntry->mbAnchoredAtMaster = true;
}
maObjList.push_back( pNewEntry );
}
inline SwAnchoredObject* operator[]( sal_uInt32 _nIndex )
{
SwAnchoredObject* bRetObj = 0L;
if ( _nIndex < Count())
{
bRetObj = maObjList[_nIndex]->mpAnchoredObj;
}
return bRetObj;
}
inline sal_uInt32 GetPageNum( sal_uInt32 _nIndex ) const
{
sal_uInt32 nRetPgNum = 0L;
if ( _nIndex < Count())
{
nRetPgNum = maObjList[_nIndex]->mnPageNumOfAnchor;
}
return nRetPgNum;
}
// --> #i26945#
inline bool AnchoredAtMaster( sal_uInt32 _nIndex )
{
bool bAnchoredAtMaster( true );
if ( _nIndex < Count())
{
bAnchoredAtMaster = maObjList[_nIndex]->mbAnchoredAtMaster;
}
return bAnchoredAtMaster;
}
inline sal_uInt32 Count() const
{
return maObjList.size();
}
};
// =============================================================================
// implementation of class <SwObjectFormatter>
// =============================================================================
SwObjectFormatter::SwObjectFormatter( const SwPageFrm& _rPageFrm,
SwLayAction* _pLayAction,
const bool _bCollectPgNumOfAnchors )
: mrPageFrm( _rPageFrm ),
mbFormatOnlyAsCharAnchored( false ),
mbConsiderWrapOnObjPos( _rPageFrm.GetFmt()->getIDocumentSettingAccess()->get(IDocumentSettingAccess::CONSIDER_WRAP_ON_OBJECT_POSITION) ),
mpLayAction( _pLayAction ),
// --> #i26945#
mpPgNumAndTypeOfAnchors( _bCollectPgNumOfAnchors ? new SwPageNumAndTypeOfAnchors() : 0L )
{
}
SwObjectFormatter::~SwObjectFormatter()
{
delete mpPgNumAndTypeOfAnchors;
}
SwObjectFormatter* SwObjectFormatter::CreateObjFormatter(
SwFrm& _rAnchorFrm,
const SwPageFrm& _rPageFrm,
SwLayAction* _pLayAction )
{
SwObjectFormatter* pObjFormatter = 0L;
if ( _rAnchorFrm.IsTxtFrm() )
{
pObjFormatter = SwObjectFormatterTxtFrm::CreateObjFormatter(
static_cast<SwTxtFrm&>(_rAnchorFrm),
_rPageFrm, _pLayAction );
}
else if ( _rAnchorFrm.IsLayoutFrm() )
{
pObjFormatter = SwObjectFormatterLayFrm::CreateObjFormatter(
static_cast<SwLayoutFrm&>(_rAnchorFrm),
_rPageFrm, _pLayAction );
}
else
{
OSL_FAIL( "<SwObjectFormatter::CreateObjFormatter(..)> - unexcepted type of anchor frame" );
}
return pObjFormatter;
}
/** method to format all floating screen objects at the given anchor frame
@author OD
*/
bool SwObjectFormatter::FormatObjsAtFrm( SwFrm& _rAnchorFrm,
const SwPageFrm& _rPageFrm,
SwLayAction* _pLayAction )
{
bool bSuccess( true );
// create corresponding object formatter
SwObjectFormatter* pObjFormatter =
SwObjectFormatter::CreateObjFormatter( _rAnchorFrm, _rPageFrm, _pLayAction );
if ( pObjFormatter )
{
// format anchored floating screen objects
bSuccess = pObjFormatter->DoFormatObjs();
}
delete pObjFormatter;
return bSuccess;
}
/** method to format a given floating screen object
@author OD
*/
bool SwObjectFormatter::FormatObj( SwAnchoredObject& _rAnchoredObj,
SwFrm* _pAnchorFrm,
const SwPageFrm* _pPageFrm,
SwLayAction* _pLayAction )
{
bool bSuccess( true );
OSL_ENSURE( _pAnchorFrm || _rAnchoredObj.GetAnchorFrm(),
"<SwObjectFormatter::FormatObj(..)> - missing anchor frame" );
SwFrm& rAnchorFrm = _pAnchorFrm ? *(_pAnchorFrm) : *(_rAnchoredObj.AnchorFrm());
OSL_ENSURE( _pPageFrm || rAnchorFrm.FindPageFrm(),
"<SwObjectFormatter::FormatObj(..)> - missing page frame" );
const SwPageFrm& rPageFrm = _pPageFrm ? *(_pPageFrm) : *(rAnchorFrm.FindPageFrm());
// create corresponding object formatter
SwObjectFormatter* pObjFormatter =
SwObjectFormatter::CreateObjFormatter( rAnchorFrm, rPageFrm, _pLayAction );
if ( pObjFormatter )
{
// format given floating screen object
// --> #i40147# - check for moved forward anchor frame
bSuccess = pObjFormatter->DoFormatObj( _rAnchoredObj, true );
}
delete pObjFormatter;
return bSuccess;
}
/** helper method for method <_FormatObj(..)> - performs the intrinsic format
of the layout of the given layout frame and all its lower layout frames.
#i28701#
IMPORTANT NOTE:
Method corresponds to methods <SwLayAction::FormatLayoutFly(..)> and
<SwLayAction::FormatLayout(..)>. Thus, its code for the formatting have
to be synchronised.
@author OD
*/
void SwObjectFormatter::_FormatLayout( SwLayoutFrm& _rLayoutFrm )
{
_rLayoutFrm.Calc();
SwFrm* pLowerFrm = _rLayoutFrm.Lower();
while ( pLowerFrm )
{
if ( pLowerFrm->IsLayoutFrm() )
{
_FormatLayout( *(static_cast<SwLayoutFrm*>(pLowerFrm)) );
}
pLowerFrm = pLowerFrm->GetNext();
}
}
/** helper method for method <_FormatObj(..)> - performs the intrinsic
format of the content of the given floating screen object.
#i28701#
@author OD
*/
void SwObjectFormatter::_FormatObjCntnt( SwAnchoredObject& _rAnchoredObj )
{
if ( !_rAnchoredObj.ISA(SwFlyFrm) )
{
// only Writer fly frames have content
return;
}
SwFlyFrm& rFlyFrm = static_cast<SwFlyFrm&>(_rAnchoredObj);
SwCntntFrm* pCntnt = rFlyFrm.ContainsCntnt();
while ( pCntnt )
{
// format content
pCntnt->OptCalc();
// format floating screen objects at content text frame
// #i23129#, #i36347# - pass correct page frame to
// the object formatter
if ( pCntnt->IsTxtFrm() &&
!SwObjectFormatter::FormatObjsAtFrm( *pCntnt,
*(pCntnt->FindPageFrm()),
GetLayAction() ) )
{
// restart format with first content
pCntnt = rFlyFrm.ContainsCntnt();
continue;
}
// continue with next content
pCntnt = pCntnt->GetNextCntntFrm();
}
}
/** performs the intrinsic format of a given floating screen object and its content.
#i28701#
@author OD
*/
void SwObjectFormatter::_FormatObj( SwAnchoredObject& _rAnchoredObj )
{
// check, if only as-character anchored object have to be formatted, and
// check the anchor type
if ( FormatOnlyAsCharAnchored() &&
!(_rAnchoredObj.GetFrmFmt().GetAnchor().GetAnchorId() == FLY_AS_CHAR) )
{
return;
}
// collect anchor object and its 'anchor' page number, if requested
if ( mpPgNumAndTypeOfAnchors )
{
mpPgNumAndTypeOfAnchors->Collect( _rAnchoredObj );
}
if ( _rAnchoredObj.ISA(SwFlyFrm) )
{
SwFlyFrm& rFlyFrm = static_cast<SwFlyFrm&>(_rAnchoredObj);
// --> #i34753# - reset flag, which prevents a positioning
if ( rFlyFrm.IsFlyLayFrm() )
{
static_cast<SwFlyLayFrm&>(rFlyFrm).SetNoMakePos( false );
}
// #i81146# new loop control
sal_uInt16 nLoopControlRuns = 0;
const sal_uInt16 nLoopControlMax = 15;
do {
if ( mpLayAction )
{
mpLayAction->FormatLayoutFly( &rFlyFrm );
// --> consider, if the layout action
// has to be restarted due to a delete of a page frame.
if ( mpLayAction->IsAgain() )
{
break;
}
}
else
{
_FormatLayout( rFlyFrm );
}
// --> #i34753# - prevent further positioning, if
// to-page|to-fly anchored Writer fly frame is already clipped.
if ( rFlyFrm.IsFlyLayFrm() && rFlyFrm.IsClipped() )
{
static_cast<SwFlyLayFrm&>(rFlyFrm).SetNoMakePos( true );
}
// #i23129#, #i36347# - pass correct page frame
// to the object formatter
SwObjectFormatter::FormatObjsAtFrm( rFlyFrm,
*(rFlyFrm.FindPageFrm()),
mpLayAction );
if ( mpLayAction )
{
mpLayAction->_FormatFlyCntnt( &rFlyFrm );
// --> consider, if the layout action
// has to be restarted due to a delete of a page frame.
if ( mpLayAction->IsAgain() )
{
break;
}
}
else
{
_FormatObjCntnt( rFlyFrm );
}
if ( ++nLoopControlRuns >= nLoopControlMax )
{
OSL_FAIL( "LoopControl in SwObjectFormatter::_FormatObj: Stage 3!!!" );
rFlyFrm.ValidateThisAndAllLowers( 2 );
nLoopControlRuns = 0;
}
// --> #i57917#
// stop formatting of anchored object, if restart of layout process is requested.
} while ( !rFlyFrm.IsValid() &&
!_rAnchoredObj.RestartLayoutProcess() &&
rFlyFrm.GetAnchorFrm() == &GetAnchorFrm() );
}
else if ( _rAnchoredObj.ISA(SwAnchoredDrawObject) )
{
_rAnchoredObj.MakeObjPos();
}
}
/** invokes the intrinsic format method for all floating screen objects,
anchored at anchor frame on the given page frame
#i28701#
#i26945# - for format of floating screen objects for
follow text frames, the 'master' text frame is passed to the method.
Thus, the objects, whose anchor character is inside the follow text
frame can be formatted.
@author OD
*/
bool SwObjectFormatter::_FormatObjsAtFrm( SwTxtFrm* _pMasterTxtFrm )
{
// --> #i26945#
SwFrm* pAnchorFrm( 0L );
if ( GetAnchorFrm().IsTxtFrm() &&
static_cast<SwTxtFrm&>(GetAnchorFrm()).IsFollow() &&
_pMasterTxtFrm )
{
pAnchorFrm = _pMasterTxtFrm;
}
else
{
pAnchorFrm = &GetAnchorFrm();
}
if ( !pAnchorFrm->GetDrawObjs() )
{
// nothing to do, if no floating screen object is registered at the anchor frame.
return true;
}
bool bSuccess( true );
sal_uInt32 i = 0;
for ( ; i < pAnchorFrm->GetDrawObjs()->Count(); ++i )
{
SwAnchoredObject* pAnchoredObj = (*pAnchorFrm->GetDrawObjs())[i];
// check, if object's anchor is on the given page frame or
// object is registered at the given page frame.
// --> #i26945# - check, if the anchor character of the
// anchored object is located in a follow text frame. If this anchor
// follow text frame differs from the given anchor frame, the given
// anchor frame is a 'master' text frame of the anchor follow text frame.
// If the anchor follow text frame is in the same body as its 'master'
// text frame, do not format the anchored object.
// E.g., this situation can occur during the table row splitting algorithm.
SwTxtFrm* pAnchorCharFrm = pAnchoredObj->FindAnchorCharFrm();
const bool bAnchoredAtFollowInSameBodyAsMaster =
pAnchorCharFrm && pAnchorCharFrm->IsFollow() &&
pAnchorCharFrm != pAnchoredObj->GetAnchorFrm() &&
pAnchorCharFrm->FindBodyFrm() ==
static_cast<SwTxtFrm*>(pAnchoredObj->AnchorFrm())->FindBodyFrm();
if ( bAnchoredAtFollowInSameBodyAsMaster )
{
continue;
}
// #i33751#, #i34060# - method <GetPageFrmOfAnchor()>
// is replaced by method <FindPageFrmOfAnchor()>. It's return value
// have to be checked.
SwPageFrm* pPageFrmOfAnchor = pAnchoredObj->FindPageFrmOfAnchor();
OSL_ENSURE( pPageFrmOfAnchor,
"<SwObjectFormatter::_FormatObjsAtFrm()> - missing page frame." );
// --> #i26945#
if ( pPageFrmOfAnchor && pPageFrmOfAnchor == &mrPageFrm )
{
// if format of object fails, stop formatting and pass fail to
// calling method via the return value.
if ( !DoFormatObj( *pAnchoredObj ) )
{
bSuccess = false;
break;
}
// considering changes at <pAnchorFrm->GetDrawObjs()> during
// format of the object.
if ( !pAnchorFrm->GetDrawObjs() ||
i > pAnchorFrm->GetDrawObjs()->Count() )
{
break;
}
else
{
sal_uInt32 nActPosOfObj =
pAnchorFrm->GetDrawObjs()->ListPosOf( *pAnchoredObj );
if ( nActPosOfObj == pAnchorFrm->GetDrawObjs()->Count() ||
nActPosOfObj > i )
{
--i;
}
else if ( nActPosOfObj < i )
{
i = nActPosOfObj;
}
}
}
} // end of loop on <pAnchorFrm->.GetDrawObjs()>
return bSuccess;
}
/** accessor to collected anchored object
#i28701#
@author OD
*/
SwAnchoredObject* SwObjectFormatter::GetCollectedObj( const sal_uInt32 _nIndex )
{
return mpPgNumAndTypeOfAnchors ? (*mpPgNumAndTypeOfAnchors)[_nIndex] : 0L;
}
/** accessor to 'anchor' page number of collected anchored object
#i28701#
@author OD
*/
sal_uInt32 SwObjectFormatter::GetPgNumOfCollected( const sal_uInt32 _nIndex )
{
return mpPgNumAndTypeOfAnchors ? mpPgNumAndTypeOfAnchors->GetPageNum(_nIndex) : 0L;
}
/** accessor to 'anchor' type of collected anchored object
#i26945#
@author OD
*/
bool SwObjectFormatter::IsCollectedAnchoredAtMaster( const sal_uInt32 _nIndex )
{
return mpPgNumAndTypeOfAnchors
? mpPgNumAndTypeOfAnchors->AnchoredAtMaster(_nIndex)
: true;
}
/** accessor to total number of collected anchored objects
#i28701#
@author OD
*/
sal_uInt32 SwObjectFormatter::CountOfCollected()
{
return mpPgNumAndTypeOfAnchors ? mpPgNumAndTypeOfAnchors->Count() : 0L;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|