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
|
/* -*- 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 <config_wasm_strip.h>
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <dcontact.hxx>
#include <flyfrm.hxx>
#include <tabfrm.hxx>
#include <txtfrm.hxx>
#include <cellfrm.hxx>
#include <swtable.hxx>
#include <fmtfsize.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/shaditem.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <IDocumentMarkAccess.hxx>
#include <fmtclds.hxx>
#include <viewimp.hxx>
#include <sortedobjs.hxx>
#include <hints.hxx>
#include <frmtool.hxx>
#include <ndtxt.hxx>
#include <osl/diagnose.h>
// No inline cause we need the function pointers
tools::Long SwFrame::GetTopMargin() const
{ return getFramePrintArea().Top(); }
tools::Long SwFrame::GetBottomMargin() const
{ return getFrameArea().Height() -getFramePrintArea().Height() -getFramePrintArea().Top(); }
tools::Long SwFrame::GetLeftMargin() const
{ return getFramePrintArea().Left(); }
tools::Long SwFrame::GetRightMargin() const
{ return getFrameArea().Width() - getFramePrintArea().Width() - getFramePrintArea().Left(); }
tools::Long SwFrame::GetPrtLeft() const
{ return getFrameArea().Left() + getFramePrintArea().Left(); }
tools::Long SwFrame::GetPrtBottom() const
{ return getFrameArea().Top() + getFramePrintArea().Height() + getFramePrintArea().Top(); }
tools::Long SwFrame::GetPrtRight() const
{ return getFrameArea().Left() + getFramePrintArea().Width() + getFramePrintArea().Left(); }
tools::Long SwFrame::GetPrtTop() const
{ return getFrameArea().Top() + getFramePrintArea().Top(); }
bool SwFrame::SetMinLeft( tools::Long nDeadline )
{
SwTwips nDiff = nDeadline - getFrameArea().Left();
if( nDiff > 0 )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Left( nDeadline );
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Width( aPrt.Width() - nDiff );
return true;
}
return false;
}
bool SwFrame::SetMaxBottom( tools::Long nDeadline )
{
SwTwips nDiff = getFrameArea().Top() + getFrameArea().Height() - nDeadline;
if( nDiff > 0 )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Height( aFrm.Height() - nDiff );
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Height( aPrt.Height() - nDiff );
return true;
}
return false;
}
bool SwFrame::SetMaxRight( tools::Long nDeadline )
{
SwTwips nDiff = getFrameArea().Left() + getFrameArea().Width() - nDeadline;
if( nDiff > 0 )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
aFrm.Width( aFrm.Width() - nDiff );
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Width( aPrt.Width() - nDiff );
return true;
}
return false;
}
void SwFrame::MakeBelowPos( const SwFrame* pUp, const SwFrame* pPrv, bool bNotify )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
if( pPrv )
{
aFrm.Pos( pPrv->getFrameArea().Pos() );
aFrm.Pos().AdjustY(pPrv->getFrameArea().Height() );
}
else
{
aFrm.Pos( pUp->getFrameArea().Pos() );
aFrm.Pos() += pUp->getFramePrintArea().Pos();
}
if( bNotify )
{
aFrm.Pos().AdjustY(1 );
}
}
void SwFrame::MakeLeftPos( const SwFrame* pUp, const SwFrame* pPrv, bool bNotify )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
if( pPrv )
{
aFrm.Pos( pPrv->getFrameArea().Pos() );
aFrm.Pos().AdjustX( -(aFrm.Width()) );
}
else
{
aFrm.Pos( pUp->getFrameArea().Pos() );
aFrm.Pos() += pUp->getFramePrintArea().Pos();
aFrm.Pos().AdjustX(pUp->getFramePrintArea().Width() - aFrm.Width() );
}
if( bNotify )
{
aFrm.Pos().AdjustX( -1 );
}
}
void SwFrame::MakeRightPos( const SwFrame* pUp, const SwFrame* pPrv, bool bNotify )
{
SwFrameAreaDefinition::FrameAreaWriteAccess aFrm(*this);
if( pPrv )
{
aFrm.Pos( pPrv->getFrameArea().Pos() );
aFrm.Pos().AdjustX(pPrv->getFrameArea().Width() );
}
else
{
aFrm.Pos( pUp->getFrameArea().Pos() );
aFrm.Pos() += pUp->getFramePrintArea().Pos();
}
if( bNotify )
{
aFrm.Pos().AdjustX(1 );
}
}
void SwFrame::SetTopBottomMargins( tools::Long nTop, tools::Long nBot )
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Top( nTop );
aPrt.Height(::std::max<decltype(nTop)>(0, getFrameArea().Height() - nTop - nBot));
}
void SwFrame::SetLeftRightMargins( tools::Long nLeft, tools::Long nRight)
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Left( nLeft );
aPrt.Width( getFrameArea().Width() - nLeft - nRight );
}
void SwFrame::SetRightLeftMargins( tools::Long nRight, tools::Long nLeft)
{
SwFrameAreaDefinition::FramePrintAreaWriteAccess aPrt(*this);
aPrt.Left( nLeft );
aPrt.Width( getFrameArea().Width() - nLeft - nRight );
}
/// checks the layout direction and invalidates the lower frames recursively, if necessary.
void SwFrame::CheckDirChange()
{
bool bOldVert = mbVertical;
bool bOldR2L = mbRightToLeft;
SetInvalidVert( true );
mbInvalidR2L = true;
bool bChg = bOldR2L != IsRightToLeft();
bool bOldVertL2R = IsVertLR();
if( !(( IsVertical() != bOldVert ) || bChg || bOldVertL2R != IsVertLR()) )
return;
InvalidateAll();
if( IsLayoutFrame() )
{
// set minimum row height for vertical cells in horizontal table:
if ( IsCellFrame() && GetUpper() )
{
if ( IsVertical() != GetUpper()->IsVertical() &&
static_cast<SwCellFrame*>(this)->GetTabBox()->getRowSpan() == 1 )
{
enum {
MIN_VERT_CELL_HEIGHT = 1135
};
SwTableLine* pLine = const_cast<SwTableLine*>(static_cast<SwCellFrame*>(this)->GetTabBox()->GetUpper());
SwFrameFormat* pFrameFormat = pLine->GetFrameFormat();
SwFormatFrameSize aNew( pFrameFormat->GetFrameSize() );
if ( SwFrameSize::Fixed != aNew.GetHeightSizeType() )
aNew.SetHeightSizeType( SwFrameSize::Minimum );
if ( aNew.GetHeight() < MIN_VERT_CELL_HEIGHT )
aNew.SetHeight( MIN_VERT_CELL_HEIGHT );
SwDoc& rDoc = pFrameFormat->GetDoc();
rDoc.SetAttr( aNew, *pLine->ClaimFrameFormat() );
}
}
SwFrame* pFrame = static_cast<SwLayoutFrame*>(this)->Lower();
const SwFormatCol* pCol = nullptr;
SwLayoutFrame* pBody = nullptr;
if( pFrame )
{
if( IsPageFrame() )
{
// If we're a page frame and we change our layout direction,
// we have to look for columns and rearrange them.
pBody = static_cast<SwPageFrame*>(this)->FindBodyCont();
SwFrame* pLower = pBody ? pBody->Lower() : nullptr;
if(pLower && pLower->IsColumnFrame())
pCol = &static_cast<SwPageFrame*>(this)->GetFormat()->GetCol();
}
else if( pFrame->IsColumnFrame() )
{
pBody = static_cast<SwLayoutFrame*>(this);
const SwFrameFormat *pFormat = pBody->GetFormat();
if( pFormat )
pCol = &pFormat->GetCol();
}
}
while( pFrame )
{
pFrame->CheckDirChange();
pFrame = pFrame->GetNext();
}
if( pCol )
pBody->AdjustColumns( pCol, true );
}
else if( IsTextFrame() )
static_cast<SwTextFrame*>(this)->Prepare();
// #i31698# - notify anchored objects also for page frames.
// Remove code above for special handling of page frames
if ( !GetDrawObjs() )
return;
const SwSortedObjs *pObjs = GetDrawObjs();
const size_t nCnt = pObjs->size();
for ( size_t i = 0; i < nCnt; ++i )
{
SwAnchoredObject* pAnchoredObj = (*pObjs)[i];
if( auto pFlyFrame = pAnchoredObj->DynCastFlyFrame() )
pFlyFrame->CheckDirChange();
else
{
// OD 2004-04-06 #i26791# - direct object
// positioning no longer needed. Instead
// invalidate
pAnchoredObj->InvalidateObjPos();
}
// #i31698# - update layout direction of
// anchored object
{
::setContextWritingMode( pAnchoredObj->DrawObj(), pAnchoredObj->GetAnchorFrameContainingAnchPos() );
pAnchoredObj->UpdateLayoutDir();
}
}
}
/// returns the position for anchors based on frame direction
// OD 2004-03-10 #i11860# - consider lower space and line spacing of
// previous frame according to new option 'Use former object positioning'
Point SwFrame::GetFrameAnchorPos( bool bIgnoreFlysAnchoredAtThisFrame ) const
{
Point aAnchor = getFrameArea().Pos();
if ( ( IsVertical() && !IsVertLR() ) || IsRightToLeft() )
aAnchor.AdjustX(getFrameArea().Width() );
if ( IsTextFrame() )
{
SwTwips nBaseOfstForFly =
static_cast<const SwTextFrame*>(this)->GetBaseOffsetForFly( bIgnoreFlysAnchoredAtThisFrame );
if ( IsVertical() )
aAnchor.AdjustY(nBaseOfstForFly );
else
aAnchor.AdjustX(nBaseOfstForFly );
// OD 2004-03-10 #i11860# - if option 'Use former object positioning'
// is OFF, consider the lower space and the line spacing of the
// previous frame and the spacing considered for the page grid
const SwTextFrame* pThisTextFrame = static_cast<const SwTextFrame*>(this);
const SwTwips nUpperSpaceAmountConsideredForPrevFrameAndPageGrid =
pThisTextFrame->GetUpperSpaceAmountConsideredForPrevFrameAndPageGrid();
if ( IsVertical() )
{
aAnchor.AdjustX( -nUpperSpaceAmountConsideredForPrevFrameAndPageGrid );
}
else
{
aAnchor.AdjustY(nUpperSpaceAmountConsideredForPrevFrameAndPageGrid );
}
}
return aAnchor;
}
void SwFrame::DestroyImpl()
{
mbInDtor = true;
// accessible objects for fly and cell frames have been already disposed
// by the destructors of the derived classes.
#if !ENABLE_WASM_STRIP_ACCESSIBILITY
if (IsAccessibleFrame() && !(IsFlyFrame() || IsCellFrame())
&& (GetDep() || IsTextFrame())) // sw_redlinehide: text frame may not have Dep!
{
assert(!IsTextFrame() || GetDep() || static_cast<SwTextFrame*>(this)->GetMergedPara());
const bool bInDocDtor = IsTabFrame() && static_cast<SwTabFrame*>(this)->GetFormat()->GetDoc().IsInDtor();
SwRootFrame *pRootFrame = getRootFrame();
if( !bInDocDtor && pRootFrame && pRootFrame->IsAnyShellAccessible() )
{
SwViewShell *pVSh = pRootFrame->GetCurrShell();
if( pVSh && pVSh->Imp() )
{
OSL_ENSURE( !GetLower(), "Lowers should be dispose already!" );
pVSh->Imp()->DisposeAccessibleFrame( this );
}
}
}
#endif
if (!m_pDrawObjs)
return;
for (size_t i = m_pDrawObjs->size(); i; )
{
SwAnchoredObject* pAnchoredObj = (*m_pDrawObjs)[--i];
if ( auto pFlyFrame = pAnchoredObj->DynCastFlyFrame() )
{
SwFrame::DestroyFrame(pFlyFrame);
}
else
{
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
OSL_ENSURE( pContact,
"<SwFrame::~SwFrame> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
}
}
m_pDrawObjs.reset();
}
SwFrame::~SwFrame()
{
assert(m_isInDestroy); // check that only DestroySwFrame does "delete"
assert(!IsDeleteForbidden()); // check that it's not deleted while deletes are forbidden
#if OSL_DEBUG_LEVEL > 0
// JP 15.10.2001: for detection of access to deleted frames
mpRoot = reinterpret_cast<SwRootFrame*>(0x33333333);
#endif
}
void SwFrame::DestroyFrame(SwFrame *const pFrame)
{
if (pFrame)
{
pFrame->m_isInDestroy = true;
pFrame->DestroyImpl();
assert(pFrame->mbInDtor); // check that nobody forgot to call base class
delete pFrame;
}
}
const SwFrameFormat * SwLayoutFrame::GetFormat() const
{
return static_cast< const SwFrameFormat * >( GetDep() );
}
SwFrameFormat * SwLayoutFrame::GetFormat()
{
return static_cast< SwFrameFormat * >( GetDep() );
}
void SwLayoutFrame::SetFrameFormat(SwFrameFormat* pNew)
{
SwFrameFormat* pOldFormat = GetFormat();
if(pNew == pOldFormat)
return;
pNew->Add(*this);
SwClientNotify(*pNew, SwFormatChangeHint(pOldFormat, pNew));
}
SwContentFrame::SwContentFrame( SwContentNode * const pContent, SwFrame* pSib ) :
SwFrame( pContent, pSib ),
SwFlowFrame( static_cast<SwFrame&>(*this) )
{
assert(!getRootFrame()->HasMergedParas() || pContent->IsCreateFrameWhenHidingRedlines());
}
void SwContentFrame::DestroyImpl()
{
const SwContentNode* pCNd(dynamic_cast<SwContentNode*>(GetDep()));
if (nullptr == pCNd && IsTextFrame())
{
pCNd = static_cast<SwTextFrame*>(this)->GetTextNodeFirst();
}
// IsInDtor shouldn't be happening with ViewShell owning layout
assert(nullptr == pCNd || !pCNd->GetDoc().IsInDtor());
if (nullptr != pCNd && !pCNd->GetDoc().IsInDtor())
{
//Unregister from root if I'm still in turbo there.
SwRootFrame *pRoot = getRootFrame();
if( pRoot && pRoot->GetTurbo() == this )
{
pRoot->DisallowTurbo();
pRoot->ResetTurbo();
}
}
SwFrame::DestroyImpl();
}
SwContentFrame::~SwContentFrame()
{
}
void SwTextFrame::RegisterToNode(SwTextNode & rNode, bool const isForceNodeAsFirst)
{
if (isForceNodeAsFirst && m_pMergedPara)
{ // nothing registered here, in particular no delete redlines (insert
// redline might end on empty node where delete rl starts, should be ok)
assert(m_pMergedPara->pFirstNode->GetIndex() + 1 == rNode.GetIndex());
assert(rNode.GetDoc().getIDocumentRedlineAccess().GetRedlinePos(
*m_pMergedPara->pFirstNode, RedlineType::Delete) == SwRedlineTable::npos);
assert(std::find_if(
rNode.GetDoc().getIDocumentMarkAccess()->getFieldmarksBegin(),
rNode.GetDoc().getIDocumentMarkAccess()->getFieldmarksEnd(),
[this](::sw::mark::MarkBase const*const pMark) {
return pMark->GetMarkStart().GetNode() == *m_pMergedPara->pFirstNode
&& pMark->GetMarkEnd().GetNode() != *m_pMergedPara->pFirstNode;
}) == rNode.GetDoc().getIDocumentMarkAccess()->getFieldmarksEnd());
}
assert(&rNode != GetDep());
assert(!m_pMergedPara
|| (m_pMergedPara->pFirstNode->GetIndex() < rNode.GetIndex())
|| (rNode.GetIndex() + 1 == m_pMergedPara->pFirstNode->GetIndex()));
SwTextNode & rFirstNode(
(!isForceNodeAsFirst && m_pMergedPara && m_pMergedPara->pFirstNode->GetIndex() < rNode.GetIndex())
? *m_pMergedPara->pFirstNode
: rNode);
// sw_redlinehide: use New here, because the only caller also calls lcl_ChangeFootnoteRef
m_pMergedPara = sw::CheckParaRedlineMerge(*this, rFirstNode, sw::FrameMode::New);
if (!m_pMergedPara)
{
rNode.Add(*this);
}
}
void SwLayoutFrame::DestroyImpl()
{
while (!m_VertPosOrientFramesFor.empty())
{
SwAnchoredObject *pObj = *m_VertPosOrientFramesFor.begin();
pObj->ClearVertPosOrientFrame();
}
assert(m_VertPosOrientFramesFor.empty());
SwFrame *pFrame = m_pLower;
if( GetFormat() && !GetFormat()->GetDoc().IsInDtor() )
{
while ( pFrame )
{
//First delete the Objs of the Frame because they can't unregister
//from the page after remove.
//We don't want to create an endless loop only because one couldn't
//unregister.
while ( pFrame->GetDrawObjs() && pFrame->GetDrawObjs()->size() )
{
const size_t nCnt = pFrame->GetDrawObjs()->size();
// #i28701#
SwAnchoredObject* pAnchoredObj = (*pFrame->GetDrawObjs())[0];
if (SwFlyFrame* pFlyFrame = pAnchoredObj->DynCastFlyFrame())
{
SwFrame::DestroyFrame(pFlyFrame);
assert(!pFrame->GetDrawObjs() || nCnt > pFrame->GetDrawObjs()->size());
}
else
{
pAnchoredObj->ClearTmpConsiderWrapInfluence();
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
OSL_ENSURE( pContact,
"<SwFrame::~SwFrame> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
if ( pFrame->GetDrawObjs() &&
nCnt == pFrame->GetDrawObjs()->size() )
{
pFrame->GetDrawObjs()->Remove( *pAnchoredObj );
}
}
}
pFrame->RemoveFromLayout();
SwFrame::DestroyFrame(pFrame);
pFrame = m_pLower;
}
//Delete the Flys, the last one also deletes the array.
while ( GetDrawObjs() && GetDrawObjs()->size() )
{
const size_t nCnt = GetDrawObjs()->size();
// #i28701#
SwAnchoredObject* pAnchoredObj = (*GetDrawObjs())[0];
if ( auto pFlyFrame = pAnchoredObj->DynCastFlyFrame() )
{
SwFrame::DestroyFrame(pFlyFrame);
assert(!GetDrawObjs() || nCnt > GetDrawObjs()->size());
}
else
{
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
OSL_ENSURE( pContact,
"<SwFrame::~SwFrame> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
if ( GetDrawObjs() && nCnt == GetDrawObjs()->size() )
{
GetDrawObjs()->Remove( *pAnchoredObj );
}
}
}
}
else
{
while( pFrame )
{
SwFrame *pNxt = pFrame->GetNext();
SwFrame::DestroyFrame(pFrame);
pFrame = pNxt;
}
}
SwFrame::DestroyImpl();
}
SwLayoutFrame::~SwLayoutFrame()
{
}
/**
|* The paintarea is the area, in which the content of a frame is allowed
|* to be displayed. This region could be larger than the printarea (getFramePrintArea())
|* of the upper, it includes e.g. often the margin of the page.
|*/
SwRect SwFrame::GetPaintArea() const
{
// NEW TABLES
// Cell frames may not leave their upper:
SwRect aRect = IsRowFrame() ? GetUpper()->getFrameArea() : getFrameArea();
SwRectFnSet aRectFnSet(this);
tools::Long nRight = aRectFnSet.GetRight(aRect);
tools::Long nLeft = aRectFnSet.GetLeft(aRect);
const SwFrame* pTmp = this;
bool bLeft = true;
bool bRight = true;
tools::Long nRowSpan = 0;
while( pTmp )
{
if( pTmp->IsCellFrame() && pTmp->GetUpper() &&
pTmp->GetUpper()->IsVertical() != pTmp->IsVertical() )
nRowSpan = static_cast<const SwCellFrame*>(pTmp)->GetTabBox()->getRowSpan();
tools::Long nTmpRight = aRectFnSet.GetRight(pTmp->getFrameArea());
tools::Long nTmpLeft = aRectFnSet.GetLeft(pTmp->getFrameArea());
if( pTmp->IsRowFrame() && nRowSpan > 1 )
{
const SwFrame* pNxt = pTmp;
while( --nRowSpan > 0 && pNxt->GetNext() )
pNxt = pNxt->GetNext();
if( pTmp->IsVertical() )
nTmpLeft = aRectFnSet.GetLeft(pNxt->getFrameArea());
else
{
// pTmp is a row frame, but it's not vertical.
if (IsVertLRBT())
{
// This frame cell is OK to expand towards the physical down direction.
// Physical down is left.
nTmpLeft = aRectFnSet.GetLeft(pNxt->getFrameArea());
}
else
{
nTmpRight = aRectFnSet.GetRight(pNxt->getFrameArea());
}
}
}
OSL_ENSURE( pTmp, "GetPaintArea lost in time and space" );
if( pTmp->IsPageFrame() || pTmp->IsFlyFrame() ||
pTmp->IsCellFrame() || pTmp->IsRowFrame() || //nobody leaves a table!
pTmp->IsRootFrame() )
{
// BTLR is OK to expand towards the physical down direction. Physical down is left.
if( bLeft || (aRectFnSet.XDiff(nTmpLeft, nLeft) > 0 && !IsVertLRBT()) )
nLeft = nTmpLeft;
if( bRight || aRectFnSet.XDiff(nRight, nTmpRight) > 0 )
nRight = nTmpRight;
if( pTmp->IsPageFrame() || pTmp->IsFlyFrame() || pTmp->IsRootFrame() )
break;
bLeft = false;
bRight = false;
}
else if( pTmp->IsColumnFrame() ) // nobody enters neighbour columns
{
bool bR2L = pTmp->IsRightToLeft();
// the first column has _no_ influence to the left range
if( bR2L ? pTmp->GetNext() : pTmp->GetPrev() )
{
if( bLeft || aRectFnSet.XDiff(nTmpLeft, nLeft) > 0 )
nLeft = nTmpLeft;
bLeft = false;
}
// the last column has _no_ influence to the right range
if( bR2L ? pTmp->GetPrev() : pTmp->GetNext() )
{
if( bRight || aRectFnSet.XDiff(nRight, nTmpRight) > 0 )
nRight = nTmpRight;
bRight = false;
}
}
else if (aRectFnSet.IsVert() && pTmp->IsBodyFrame())
{
// Header and footer frames have always horizontal direction and
// limit the body frame.
// A previous frame of a body frame must be a header,
// the next frame of a body frame may be a footnotecontainer or
// a footer. The footnotecontainer has the same direction like
// the body frame.
if( pTmp->GetPrev() && ( bLeft || aRectFnSet.XDiff(nTmpLeft, nLeft) > 0 ) )
{
nLeft = nTmpLeft;
bLeft = false;
}
if( pTmp->GetNext() &&
( pTmp->GetNext()->IsFooterFrame() || pTmp->GetNext()->GetNext() )
&& ( bRight || aRectFnSet.XDiff(nRight, nTmpRight) > 0 ) )
{
nRight = nTmpRight;
bRight = false;
}
}
pTmp = pTmp->GetUpper();
}
aRectFnSet.SetLeft(aRect, nLeft);
aRectFnSet.SetRight(aRect, nRight);
return aRect;
}
/**
|* The unionframe is the framearea (getFrameArea()) of a frame expanded by the
|* printarea, if there's a negative margin at the left or right side.
|*/
SwRect SwFrame::UnionFrame( bool bBorder ) const
{
SwRectFnSet aRectFnSet(this);
tools::Long nLeft = aRectFnSet.GetLeft(getFrameArea());
tools::Long nWidth = aRectFnSet.GetWidth(getFrameArea());
tools::Long nPrtLeft = aRectFnSet.GetLeft(getFramePrintArea());
tools::Long nPrtWidth = aRectFnSet.GetWidth(getFramePrintArea());
if (aRectFnSet.XInc(nPrtLeft, nPrtWidth) > nWidth)
nWidth = nPrtLeft + nPrtWidth;
if( nPrtLeft < 0 )
{
nLeft += nPrtLeft;
nWidth -= nPrtLeft;
}
SwTwips nRight = aRectFnSet.XInc(nLeft, nWidth);
tools::Long nAdd = 0;
if( bBorder )
{
SwBorderAttrAccess aAccess( SwFrame::GetCache(), this );
const SwBorderAttrs &rAttrs = *aAccess.Get();
const SvxBoxItem &rBox = rAttrs.GetBox();
if ( rBox.GetLeft() )
nLeft -= rBox.CalcLineSpace( SvxBoxItemLine::LEFT );
else
nLeft -= rBox.GetDistance( SvxBoxItemLine::LEFT ) + 1;
if ( rBox.GetRight() )
nAdd += rBox.CalcLineSpace( SvxBoxItemLine::RIGHT );
else
nAdd += rBox.GetDistance( SvxBoxItemLine::RIGHT ) + 1;
if( rAttrs.GetShadow().GetLocation() != SvxShadowLocation::NONE )
{
const SvxShadowItem &rShadow = rAttrs.GetShadow();
nLeft -= rShadow.CalcShadowSpace( SvxShadowItemSide::LEFT );
nAdd += rShadow.CalcShadowSpace( SvxShadowItemSide::RIGHT );
}
}
if( IsTextFrame() && static_cast<const SwTextFrame*>(this)->HasPara() )
{
tools::Long nTmp = static_cast<const SwTextFrame*>(this)->HangingMargin();
if( nTmp > nAdd )
nAdd = nTmp;
}
nWidth = aRectFnSet.XDiff(aRectFnSet.XInc(nRight, nAdd), nLeft);
SwRect aRet( getFrameArea() );
aRectFnSet.SetLeft(aRet, nLeft);
aRectFnSet.SetWidth(aRet, nWidth);
return aRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|