Files
libreoffice/sw/source/core/layout/ssfrm.cxx

751 lines
24 KiB
C++
Raw Normal View History

2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 23:08:29 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:08:29 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
* 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).
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
2000-09-18 23:08:29 +00:00
#include <pagefrm.hxx>
#include <rootfrm.hxx>
#include <cntfrm.hxx>
#include <doc.hxx>
#include <node.hxx>
#include <dview.hxx>
#include <dcontact.hxx>
#include <dflyobj.hxx>
#include <flyfrm.hxx>
#include <txtfrm.hxx> // ClearPara()
#include <cellfrm.hxx>
#include <swtable.hxx>
#include <fmtfsize.hxx>
#include <ftnidx.hxx>
#include <txtftn.hxx>
#include <ndtxt.hxx>
#include <ndindex.hxx>
#include <frmtool.hxx>
#include <pagedesc.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/shaditem.hxx>
#include <fmtclds.hxx>
#include <viewsh.hxx>
#include <viewimp.hxx>
// OD 2004-05-24 #i28701#
#include <sortedobjs.hxx>
#include <hints.hxx>
2000-09-18 23:08:29 +00:00
// No inline cause we need the function pointers
long SwFrm::GetTopMargin() const
{ return Prt().Top(); }
long SwFrm::GetBottomMargin() const
{ return Frm().Height() -Prt().Height() -Prt().Top(); }
long SwFrm::GetLeftMargin() const
{ return Prt().Left(); }
long SwFrm::GetRightMargin() const
{ return Frm().Width() - Prt().Width() - Prt().Left(); }
long SwFrm::GetPrtLeft() const
{ return Frm().Left() + Prt().Left(); }
long SwFrm::GetPrtBottom() const
{ return Frm().Top() + Prt().Height() + Prt().Top(); }
long SwFrm::GetPrtRight() const
{ return Frm().Left() + Prt().Width() + Prt().Left(); }
long SwFrm::GetPrtTop() const
{ return Frm().Top() + Prt().Top(); }
BOOL SwFrm::SetMinLeft( long nDeadline )
{
SwTwips nDiff = nDeadline - Frm().Left();
if( nDiff > 0 )
{
Frm().Left( nDeadline );
Prt().Width( Prt().Width() - nDiff );
return TRUE;
}
return FALSE;
}
BOOL SwFrm::SetMaxBottom( long nDeadline )
{
SwTwips nDiff = Frm().Top() + Frm().Height() - nDeadline;
if( nDiff > 0 )
{
Frm().Height( Frm().Height() - nDiff );
Prt().Height( Prt().Height() - nDiff );
return TRUE;
}
return FALSE;
}
BOOL SwFrm::SetMinTop( long nDeadline )
{
SwTwips nDiff = nDeadline - Frm().Top();
if( nDiff > 0 )
{
Frm().Top( nDeadline );
Prt().Height( Prt().Height() - nDiff );
return TRUE;
}
return FALSE;
}
BOOL SwFrm::SetMaxRight( long nDeadline )
{
SwTwips nDiff = Frm().Left() + Frm().Width() - nDeadline;
if( nDiff > 0 )
{
Frm().Width( Frm().Width() - nDiff );
Prt().Width( Prt().Width() - nDiff );
return TRUE;
}
return FALSE;
}
2001-11-09 12:32:26 +00:00
void SwFrm::MakeBelowPos( const SwFrm* pUp, const SwFrm* pPrv, BOOL bNotify )
{
if( pPrv )
{
aFrm.Pos( pPrv->Frm().Pos() );
aFrm.Pos().Y() += pPrv->Frm().Height();
}
else
{
aFrm.Pos( pUp->Frm().Pos() );
aFrm.Pos() += pUp->Prt().Pos();
}
if( bNotify )
aFrm.Pos().Y() += 1;
}
void SwFrm::MakeUpperPos( const SwFrm* pUp, const SwFrm* pPrv, BOOL bNotify )
{
if( pPrv )
{
aFrm.Pos( pPrv->Frm().Pos() );
aFrm.Pos().Y() -= Frm().Height();
}
else
{
aFrm.Pos( pUp->Frm().Pos() );
aFrm.Pos() += pUp->Prt().Pos();
2001-11-13 14:21:55 +00:00
aFrm.Pos().Y() += pUp->Prt().Height() - aFrm.Height();
2001-11-09 12:32:26 +00:00
}
if( bNotify )
aFrm.Pos().Y() -= 1;
}
void SwFrm::MakeLeftPos( const SwFrm* pUp, const SwFrm* pPrv, BOOL bNotify )
{
if( pPrv )
{
aFrm.Pos( pPrv->Frm().Pos() );
aFrm.Pos().X() -= Frm().Width();
}
else
{
aFrm.Pos( pUp->Frm().Pos() );
aFrm.Pos() += pUp->Prt().Pos();
2001-11-13 14:21:55 +00:00
aFrm.Pos().X() += pUp->Prt().Width() - aFrm.Width();
2001-11-09 12:32:26 +00:00
}
if( bNotify )
aFrm.Pos().X() -= 1;
}
void SwFrm::MakeRightPos( const SwFrm* pUp, const SwFrm* pPrv, BOOL bNotify )
{
if( pPrv )
{
aFrm.Pos( pPrv->Frm().Pos() );
aFrm.Pos().X() += pPrv->Frm().Width();
}
else
{
aFrm.Pos( pUp->Frm().Pos() );
aFrm.Pos() += pUp->Prt().Pos();
}
if( bNotify )
aFrm.Pos().X() += 1;
}
void SwFrm::SetTopBottomMargins( long nTop, long nBot )
{
Prt().Top( nTop );
Prt().Height( Frm().Height() - nTop - nBot );
}
void SwFrm::SetBottomTopMargins( long nBot, long nTop )
{
Prt().Top( nTop );
Prt().Height( Frm().Height() - nTop - nBot );
}
void SwFrm::SetLeftRightMargins( long nLeft, long nRight)
{
Prt().Left( nLeft );
Prt().Width( Frm().Width() - nLeft - nRight );
}
void SwFrm::SetRightLeftMargins( long nRight, long nLeft)
{
Prt().Left( nLeft );
Prt().Width( Frm().Width() - nLeft - nRight );
}
const USHORT nMinVertCellHeight = 1135;
/*-----------------11.9.2001 11:11------------------
* SwFrm::CheckDirChange(..)
* checks the layout direction and
* invalidates the lower frames rekursivly, if necessary.
* --------------------------------------------------*/
void SwFrm::CheckDirChange()
{
BOOL bOldVert = GetVerticalFlag();
BOOL bOldRev = IsReverse();
BOOL bOldR2L = GetRightToLeftFlag();
SetInvalidVert( TRUE );
SetInvalidR2L( TRUE );
BOOL bChg = bOldR2L != IsRightToLeft();
2002-01-24 15:21:17 +00:00
if( ( IsVertical() != bOldVert ) || bChg || IsReverse() != bOldRev )
{
InvalidateAll();
2002-01-24 15:21:17 +00:00
if( IsLayoutFrm() )
{
// set minimum row height for vertical cells in horizontal table:
if ( IsCellFrm() && GetUpper() )
{
if ( IsVertical() != GetUpper()->IsVertical() &&
((SwCellFrm*)this)->GetTabBox()->getRowSpan() == 1 )
{
SwTableLine* pLine = (SwTableLine*)((SwCellFrm*)this)->GetTabBox()->GetUpper();
SwFrmFmt* pFrmFmt = pLine->GetFrmFmt();
SwFmtFrmSize aNew( pFrmFmt->GetFrmSize() );
if ( ATT_FIX_SIZE != aNew.GetHeightSizeType() )
aNew.SetHeightSizeType( ATT_MIN_SIZE );
if ( aNew.GetHeight() < nMinVertCellHeight )
aNew.SetHeight( nMinVertCellHeight );
SwDoc* pDoc = pFrmFmt->GetDoc();
pDoc->SetAttr( aNew, *pLine->ClaimFrmFmt() );
}
}
2002-01-24 15:21:17 +00:00
SwFrm* pFrm = ((SwLayoutFrm*)this)->Lower();
const SwFmtCol* pCol = NULL;
SwLayoutFrm* pBody = 0;
2002-07-11 15:06:38 +00:00
if( pFrm )
2002-01-24 15:21:17 +00:00
{
2002-07-11 15:06:38 +00:00
if( IsPageFrm() )
2002-01-24 15:21:17 +00:00
{
2002-07-11 15:06:38 +00:00
// If we're a page frame and we change our layout direction,
// we have to look for columns and rearrange them.
pBody = ((SwPageFrm*)this)->FindBodyCont();
if(pBody && pBody->Lower() && pBody->Lower()->IsColumnFrm())
pCol = &((SwPageFrm*)this)->GetFmt()->GetCol();
2002-01-24 15:21:17 +00:00
}
2002-07-11 15:06:38 +00:00
else if( pFrm->IsColumnFrm() )
{
pBody = ((SwLayoutFrm*)this);
const SwFrmFmt *pFmt = pBody->GetFmt();
if( pFmt )
pCol = &pFmt->GetCol();
}
2002-01-24 15:21:17 +00:00
}
while( pFrm )
{
pFrm->CheckDirChange();
pFrm = pFrm->GetNext();
}
if( pCol )
2002-06-27 10:25:03 +00:00
pBody->AdjustColumns( pCol, TRUE );
}
2002-06-24 09:42:05 +00:00
else if( IsTxtFrm() )
((SwTxtFrm*)this)->Prepare( PREP_CLEAR );
// --> OD 2004-07-27 #i31698# - notify anchored objects also for page frames.
// Remove code above for special handling of page frames
if ( GetDrawObjs() )
{
const SwSortedObjs *pObjs = GetDrawObjs();
sal_uInt32 nCnt = pObjs->Count();
for ( sal_uInt32 i = 0; i < nCnt; ++i )
2002-01-24 15:21:17 +00:00
{
SwAnchoredObject* pAnchoredObj = (*pObjs)[i];
if( pAnchoredObj->ISA(SwFlyFrm) )
static_cast<SwFlyFrm*>(pAnchoredObj)->CheckDirChange();
else
{
// OD 2004-04-06 #i26791# - direct object
// positioning no longer needed. Instead
// invalidate
pAnchoredObj->InvalidateObjPos();
}
// --> OD 2004-07-27 #i31698# - update layout direction of
// anchored object
{
CWS-TOOLING: integrate CWS rtlcontrols 2008-12-11 21:08:49 +0100 fs r265367 : CONTEXT_WRITING_MODE is transient 2008-12-11 21:08:00 +0100 fs r265365 : REGISTER_PROP_3 2008-12-11 20:53:44 +0100 fs r265362 : ContextWritingMode is not MAYBEVOID 2008-12-11 15:29:08 +0100 fs r265315 : prevent a deadlock during complex.dbaccess.DatabaseDocument test 2008-12-11 15:01:13 +0100 fs r265304 : manual RESYNC to m37 2008-12-10 20:04:38 +0100 pl r265230 : #i30631# fix a snafu in mirroring 2008-12-10 19:14:45 +0100 pl r265229 : #i30631# rework PaintToDevice for RTL controls 2008-12-05 10:19:13 +0100 fs r264893 : #i10000# ImplInitSettings => ImplInitWindow (ImplInitSettings clashed with base classes ImplInitSettings on unxsols4) 2008-12-03 12:55:24 +0100 fs r264768 : #i100000# 2008-12-03 07:11:48 +0100 fs r264741 : #i10000# 2008-12-02 10:37:51 +0100 fs r264670 : CWS-TOOLING: rebase CWS rtlcontrols to trunk@264325 (milestone: DEV300:m36) 2008-12-02 09:27:50 +0100 fs r264660 : merge from trunk 2008-11-25 10:28:36 +0100 ama r264277 : Fix #i94572# 2008-11-24 11:46:48 +0100 fs r264218 : #i30631# proper context writing mode 2008-11-24 09:38:04 +0100 fs r264204 : #i30631# (approved by PL) 2008-11-24 09:35:47 +0100 fs r264203 : #i30631# Context/WritingMode 2008-11-24 09:33:36 +0100 fs r264202 : #i30631# Context/WritingMode 2008-11-24 09:31:53 +0100 fs r264200 : #i30631# RTL 2008-11-19 08:51:48 +0100 fs r263963 : #i10000# 2008-11-18 20:58:11 +0100 fs r263878 : #i10000# 2008-11-18 15:30:44 +0100 fs r263778 : migrate the CWS from CVS to SVN the CVS changes contained in this change set are the ones between the following two CVS tags: CWS_DEV300_RTLCONTROLS_ANCHOR CWS_DEV300_RTLCONTROLS_PRE_MIGRATION 2008-11-18 12:29:04 +0100 ama r263762 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:25:50 +0100 ama r263761 : Fix #i94572#: Context direction for drawing objects 2008-11-18 12:02:30 +0100 ama r263759 : Fix #i94572#: Context direction for drawing objects
2008-12-16 13:30:53 +00:00
::setContextWritingMode( pAnchoredObj->DrawObj(), pAnchoredObj->GetAnchorFrmContainingAnchPos() );
pAnchoredObj->UpdateLayoutDir();
}
// <--
2002-01-24 15:21:17 +00:00
}
}
}
}
/*-----------------13.9.2002 11:11------------------
* SwFrm::GetFrmAnchorPos(..)
* 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 SwFrm::GetFrmAnchorPos( sal_Bool bIgnoreFlysAnchoredAtThisFrame ) const
{
Point aAnchor = Frm().Pos();
if ( IsVertical() || IsRightToLeft() )
aAnchor.X() += Frm().Width();
if ( IsTxtFrm() )
{
SwTwips nBaseOfstForFly =
((SwTxtFrm*)this)->GetBaseOfstForFly( bIgnoreFlysAnchoredAtThisFrame );
if ( IsVertical() )
aAnchor.Y() += nBaseOfstForFly;
else
aAnchor.X() += 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 SwTxtFrm* pThisTxtFrm = static_cast<const SwTxtFrm*>(this);
const SwTwips nUpperSpaceAmountConsideredForPrevFrmAndPageGrid =
pThisTxtFrm->GetUpperSpaceAmountConsideredForPrevFrmAndPageGrid();
if ( IsVertical() )
{
aAnchor.X() -= nUpperSpaceAmountConsideredForPrevFrmAndPageGrid;
}
else
{
aAnchor.Y() += nUpperSpaceAmountConsideredForPrevFrmAndPageGrid;
}
}
return aAnchor;
}
2000-09-18 23:08:29 +00:00
/*************************************************************************
|*
|* SwFrm::~SwFrm()
|*
|* Ersterstellung MA 02. Mar. 94
|* Letzte Aenderung MA 25. Jun. 95
|*
|*************************************************************************/
SwFrm::~SwFrm()
{
// accessible objects for fly and cell frames have been already disposed
// by the destructors of the derived classes.
if( IsAccessibleFrm() && !(IsFlyFrm() || IsCellFrm()) && GetDep() )
{
SwRootFrm *pRootFrm = FindRootFrm();
if( pRootFrm && pRootFrm->IsAnyShellAccessible() )
{
ViewShell *pVSh = pRootFrm->GetCurrShell();
if( pVSh && pVSh->Imp() )
{
ASSERT( !GetLower(), "Lowers should be dispose already!" );
pVSh->Imp()->DisposeAccessibleFrm( this );
}
}
}
2002-02-14 09:54:11 +00:00
2000-09-18 23:08:29 +00:00
if( pDrawObjs )
{
for ( sal_uInt32 i = pDrawObjs->Count(); i; )
2000-09-18 23:08:29 +00:00
{
SwAnchoredObject* pAnchoredObj = (*pDrawObjs)[--i];
if ( pAnchoredObj->ISA(SwFlyFrm) )
delete pAnchoredObj;
else
{
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
ASSERT( pContact,
"<SwFrm::~SwFrm> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
}
2000-09-18 23:08:29 +00:00
}
if ( pDrawObjs )
delete pDrawObjs;
}
#ifdef DBG_UTIL
// JP 15.10.2001: for detection of access to deleted frames
pDrawObjs = (SwSortedObjs*)0x33333333;
#endif
2000-09-18 23:08:29 +00:00
}
/*************************************************************************
|*
|* SwLayoutFrm::SetFrmFmt()
|* Ersterstellung MA 22. Apr. 93
|* Letzte Aenderung MA 02. Nov. 94
|*
|*************************************************************************/
void SwLayoutFrm::SetFrmFmt( SwFrmFmt *pNew )
{
if ( pNew != GetFmt() )
{
SwFmtChg aOldFmt( GetFmt() );
pNew->Add( this );
SwFmtChg aNewFmt( pNew );
Modify( &aOldFmt, &aNewFmt );
}
}
/*************************************************************************
|* SwCntntFrm::SwCntntFrm()
2000-09-18 23:08:29 +00:00
|*************************************************************************/
SwCntntFrm::SwCntntFrm( SwCntntNode * const pCntnt ) :
SwFrm( pCntnt ),
SwFlowFrm( (SwFrm&)*this )
{
}
/*************************************************************************
|* SwCntntFrm::~SwCntntFrm()
|*************************************************************************/
2000-09-18 23:08:29 +00:00
SwCntntFrm::~SwCntntFrm()
{
SwCntntNode* pCNd;
if( 0 != ( pCNd = PTR_CAST( SwCntntNode, pRegisteredIn )) &&
!pCNd->GetDoc()->IsInDtor() )
{
//Bei der Root abmelden wenn ich dort noch im Turbo stehe.
SwRootFrm *pRoot = FindRootFrm();
if( pRoot && pRoot->GetTurbo() == this )
{
pRoot->DisallowTurbo();
pRoot->ResetTurbo();
}
if( IsTxtFrm() && ((SwTxtFrm*)this)->HasFtn() )
{
SwTxtNode *pTxtNd = ((SwTxtFrm*)this)->GetTxtNode();
const SwFtnIdxs &rFtnIdxs = pCNd->GetDoc()->GetFtnIdxs();
USHORT nPos;
ULONG nIndex = pCNd->GetIndex();
rFtnIdxs.SeekEntry( *pTxtNd, &nPos );
SwTxtFtn* pTxtFtn;
if( nPos < rFtnIdxs.Count() )
{
while( nPos && pTxtNd == &(rFtnIdxs[ nPos ]->GetTxtNode()) )
--nPos;
if( nPos || pTxtNd != &(rFtnIdxs[ nPos ]->GetTxtNode()) )
++nPos;
}
while( nPos < rFtnIdxs.Count() )
{
pTxtFtn = rFtnIdxs[ nPos ];
if( pTxtFtn->GetTxtNode().GetIndex() > nIndex )
break;
pTxtFtn->DelFrms();
++nPos;
}
}
2000-09-18 23:08:29 +00:00
}
}
/*************************************************************************
|*
|* SwLayoutFrm::~SwLayoutFrm
|*
|* Ersterstellung AK 28-Feb-1991
|* Letzte Aenderung MA 11. Jan. 95
|*
|*************************************************************************/
SwLayoutFrm::~SwLayoutFrm()
{
SwFrm *pFrm = pLower;
if( GetFmt() && !GetFmt()->GetDoc()->IsInDtor() )
{
while ( pFrm )
{
//Erst die Objs des Frm vernichten, denn diese koennen sich sonst nach
//dem Remove nicht mehr bei der Seite abmelden.
//Falls sich einer nicht abmeldet wollen wir nicht gleich
//endlos schleifen.
sal_uInt32 nCnt;
2000-09-18 23:08:29 +00:00
while ( pFrm->GetDrawObjs() && pFrm->GetDrawObjs()->Count() )
{
nCnt = pFrm->GetDrawObjs()->Count();
// --> OD 2004-06-30 #i28701#
SwAnchoredObject* pAnchoredObj = (*pFrm->GetDrawObjs())[0];
if ( pAnchoredObj->ISA(SwFlyFrm) )
delete pAnchoredObj;
else
{
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
ASSERT( pContact,
"<SwFrm::~SwFrm> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
}
2000-09-18 23:08:29 +00:00
if ( pFrm->GetDrawObjs() &&
nCnt == pFrm->GetDrawObjs()->Count() )
{
pFrm->GetDrawObjs()->Remove( *pAnchoredObj );
}
// <--
2000-09-18 23:08:29 +00:00
}
pFrm->Remove();
delete pFrm;
pFrm = pLower;
}
//Fly's vernichten. Der letzte loescht gleich das Array.
sal_uInt32 nCnt;
2000-09-18 23:08:29 +00:00
while ( GetDrawObjs() && GetDrawObjs()->Count() )
{
nCnt = GetDrawObjs()->Count();
// --> OD 2004-06-30 #i28701#
SwAnchoredObject* pAnchoredObj = (*GetDrawObjs())[0];
if ( pAnchoredObj->ISA(SwFlyFrm) )
delete pAnchoredObj;
else
{
SdrObject* pSdrObj = pAnchoredObj->DrawObj();
SwDrawContact* pContact =
static_cast<SwDrawContact*>(pSdrObj->GetUserCall());
ASSERT( pContact,
"<SwFrm::~SwFrm> - missing contact for drawing object" );
if ( pContact )
{
pContact->DisconnectObjFromLayout( pSdrObj );
}
}
2000-09-18 23:08:29 +00:00
if ( GetDrawObjs() && nCnt == GetDrawObjs()->Count() )
{
GetDrawObjs()->Remove( *pAnchoredObj );
}
// <--
2000-09-18 23:08:29 +00:00
}
}
else
{
while( pFrm )
{
SwFrm *pNxt = pFrm->GetNext();
delete pFrm;
pFrm = pNxt;
}
}
}
/*************************************************************************
|*
|* SwFrm::PaintArea()
|*
|* Created AMA 08/22/2000
|* Last change AMA 08/23/2000
|*
|* 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 (Prt())
|* of the upper, it includes e.g. often the margin of the page.
|*
|*************************************************************************/
const SwRect SwFrm::PaintArea() const
{
// NEW TABLES
// Cell frames may not leave their upper:
SwRect aRect = IsRowFrm() ? GetUpper()->Frm() : Frm();
const BOOL bVert = IsVertical();
2001-09-17 10:20:34 +00:00
SwRectFn fnRect = bVert ? fnRectVert : fnRectHori;
long nRight = (aRect.*fnRect->fnGetRight)();
long nLeft = (aRect.*fnRect->fnGetLeft)();
2000-09-18 23:08:29 +00:00
const SwFrm* pTmp = this;
BOOL bLeft = TRUE;
BOOL bRight = TRUE;
long nRowSpan = 0;
2000-09-18 23:08:29 +00:00
while( pTmp )
{
if( pTmp->IsCellFrm() && pTmp->GetUpper() &&
pTmp->GetUpper()->IsVertical() != pTmp->IsVertical() )
nRowSpan = ((SwCellFrm*)pTmp)->GetTabBox()->getRowSpan();
2001-09-17 10:20:34 +00:00
long nTmpRight = (pTmp->Frm().*fnRect->fnGetRight)();
long nTmpLeft = (pTmp->Frm().*fnRect->fnGetLeft)();
if( pTmp->IsRowFrm() && nRowSpan > 1 )
{
const SwFrm* pNxt = pTmp;
while( --nRowSpan > 0 && pNxt->GetNext() )
pNxt = pNxt->GetNext();
if( pTmp->IsVertical() )
nTmpLeft = (pNxt->Frm().*fnRect->fnGetLeft)();
else
nTmpRight = (pNxt->Frm().*fnRect->fnGetRight)();
}
2000-09-18 23:08:29 +00:00
ASSERT( pTmp, "PaintArea lost in time and space" );
if( pTmp->IsPageFrm() || pTmp->IsFlyFrm() ||
pTmp->IsCellFrm() || pTmp->IsRowFrm() || //nobody leaves a table!
pTmp->IsRootFrm() )
{
2001-09-17 10:20:34 +00:00
if( bLeft || nLeft < nTmpLeft )
nLeft = nTmpLeft;
2000-09-18 23:08:29 +00:00
if( bRight || nTmpRight < nRight )
nRight = nTmpRight;
if( pTmp->IsPageFrm() || pTmp->IsFlyFrm() || pTmp->IsRootFrm() )
break;
bLeft = FALSE;
bRight = FALSE;
}
else if( pTmp->IsColumnFrm() ) // nobody enters neightbour columns
{
BOOL bR2L = pTmp->IsRightToLeft();
// the first column has _no_ influence to the left range
if( bR2L ? pTmp->GetNext() : pTmp->GetPrev() )
{
2001-09-17 10:20:34 +00:00
if( bLeft || nLeft < nTmpLeft )
nLeft = nTmpLeft;
bLeft = FALSE;
}
// the last column has _no_ influence to the right range
if( bR2L ? pTmp->GetPrev() : pTmp->GetNext() )
{
if( bRight || nTmpRight < nRight )
nRight = nTmpRight;
bRight = FALSE;
}
2001-09-17 10:20:34 +00:00
}
else if( bVert && pTmp->IsBodyFrm() )
{
// 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 || nLeft < nTmpLeft ) )
{
nLeft = nTmpLeft;
bLeft = FALSE;
}
if( pTmp->GetNext() &&
( pTmp->GetNext()->IsFooterFrm() || pTmp->GetNext()->GetNext() )
&& ( bRight || nTmpRight < nRight ) )
{
2000-09-18 23:08:29 +00:00
nRight = nTmpRight;
bRight = FALSE;
}
}
pTmp = pTmp->GetUpper();
}
2001-09-17 10:20:34 +00:00
(aRect.*fnRect->fnSetLeft)( nLeft );
(aRect.*fnRect->fnSetRight)( nRight );
2000-09-18 23:08:29 +00:00
return aRect;
}
/*************************************************************************
|*
|* SwFrm::UnionFrm()
|*
|* Created AMA 08/22/2000
|* Last change AMA 08/23/2000
|*
|* The unionframe is the framearea (Frm()) of a frame expanded by the
|* printarea, if there's a negative margin at the left or right side.
|*
|*************************************************************************/
const SwRect SwFrm::UnionFrm( BOOL bBorder ) const
{
2001-09-17 10:20:34 +00:00
BOOL bVert = IsVertical();
SwRectFn fnRect = bVert ? fnRectVert : fnRectHori;
long nLeft = (Frm().*fnRect->fnGetLeft)();
long nWidth = (Frm().*fnRect->fnGetWidth)();
long nPrtLeft = (Prt().*fnRect->fnGetLeft)();
long nPrtWidth = (Prt().*fnRect->fnGetWidth)();
if( nPrtLeft + nPrtWidth > nWidth )
nWidth = nPrtLeft + nPrtWidth;
if( nPrtLeft < 0 )
{
nLeft += nPrtLeft;
nWidth -= nPrtLeft;
}
SwTwips nRight = nLeft + nWidth;
long nAdd = 0;
if( bBorder )
{
SwBorderAttrAccess aAccess( SwFrm::GetCache(), this );
const SwBorderAttrs &rAttrs = *aAccess.Get();
const SvxBoxItem &rBox = rAttrs.GetBox();
if ( rBox.GetLeft() )
nLeft -= rBox.CalcLineSpace( BOX_LINE_LEFT );
else if ( rAttrs.IsBorderDist() )
nLeft -= rBox.GetDistance( BOX_LINE_LEFT ) + 1;
if ( rBox.GetRight() )
nAdd += rBox.CalcLineSpace( BOX_LINE_RIGHT );
else if ( rAttrs.IsBorderDist() )
nAdd += rBox.GetDistance( BOX_LINE_RIGHT ) + 1;
if( rAttrs.GetShadow().GetLocation() != SVX_SHADOW_NONE )
{
const SvxShadowItem &rShadow = rAttrs.GetShadow();
nLeft -= rShadow.CalcShadowSpace( SHADOW_LEFT );
nAdd += rShadow.CalcShadowSpace( SHADOW_RIGHT );
}
}
if( IsTxtFrm() && ((SwTxtFrm*)this)->HasPara() )
{
long nTmp = ((SwTxtFrm*)this)->HangingMargin();
if( nTmp > nAdd )
nAdd = nTmp;
}
nWidth = nRight + nAdd - nLeft;
2000-09-18 23:08:29 +00:00
SwRect aRet( Frm() );
2001-09-17 10:20:34 +00:00
(aRet.*fnRect->fnSetPosX)( nLeft );
(aRet.*fnRect->fnSetWidth)( nWidth );
2000-09-18 23:08:29 +00:00
return aRet;
}