2008-06-16 07:18:50 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* $RCSfile: postithelper.cxx,v $
|
2009-01-02 15:51:45 +00:00
|
|
|
* $Revision: 1.2.118.3 $
|
2008-06-16 07:18:50 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
|
|
|
#include <tools/gen.hxx>
|
2009-01-02 15:51:45 +00:00
|
|
|
|
2008-06-16 07:18:50 +00:00
|
|
|
#include <postithelper.hxx>
|
|
|
|
#include <PostItMgr.hxx>
|
2009-01-02 15:51:45 +00:00
|
|
|
#include <postit.hxx>
|
2008-06-16 07:18:50 +00:00
|
|
|
#include <fmtfld.hxx>
|
|
|
|
#include <txtfld.hxx>
|
2009-01-02 15:51:45 +00:00
|
|
|
#include <docufld.hxx>
|
2008-06-16 07:18:50 +00:00
|
|
|
#include <ndtxt.hxx>
|
|
|
|
#include <cntfrm.hxx>
|
|
|
|
#include <pagefrm.hxx>
|
|
|
|
#include <rootfrm.hxx>
|
|
|
|
#include <txtfrm.hxx>
|
|
|
|
#include <IDocumentRedlineAccess.hxx>
|
|
|
|
#include <redline.hxx>
|
2009-01-02 15:51:45 +00:00
|
|
|
#include <scriptinfo.hxx>
|
|
|
|
#include <svx/charhiddenitem.hxx>
|
2008-06-16 07:18:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
SwPostItHelper::SwLayoutStatus SwPostItHelper::getLayoutInfos( std::vector< SwLayoutInfo >& rInfo, SwPosition& rPos )
|
|
|
|
{
|
|
|
|
SwLayoutStatus aRet = INVISIBLE;
|
2009-01-02 15:51:45 +00:00
|
|
|
const SwTxtNode* pTxtNode = rPos.nNode.GetNode().GetTxtNode();
|
|
|
|
SwCntntNode* pNode = rPos.nNode.GetNode().GetCntntNode(); // getfirstcontentnode // getnext...
|
2008-06-16 07:18:50 +00:00
|
|
|
if( !pNode )
|
|
|
|
return aRet;
|
|
|
|
SwClientIter aIter( *pNode );
|
|
|
|
SwTxtFrm *pTxtFrm;
|
|
|
|
for( pTxtFrm = (SwTxtFrm*)aIter.First( TYPE( SwTxtFrm )); pTxtFrm; pTxtFrm = (SwTxtFrm*)aIter.Next() )
|
|
|
|
{
|
|
|
|
if( !pTxtFrm->IsFollow() )
|
|
|
|
{
|
|
|
|
pTxtFrm = ((SwTxtFrm*)pTxtFrm)->GetFrmAtPos( rPos );
|
2009-09-11 10:21:51 +00:00
|
|
|
SwPageFrm *pPage = pTxtFrm ? pTxtFrm->FindPageFrm() : 0;
|
|
|
|
// #i103490#
|
|
|
|
if ( pPage && !pPage->IsInvalid() && !pPage->IsInvalidFly() )
|
2008-06-16 07:18:50 +00:00
|
|
|
{
|
|
|
|
SwLayoutInfo aInfo;
|
|
|
|
pTxtFrm->GetCharRect( aInfo.mPosition, rPos, 0 );
|
|
|
|
aInfo.mPageFrame = pPage->Frm();
|
|
|
|
aInfo.mPagePrtArea = pPage->Prt();
|
|
|
|
aInfo.mPagePrtArea.Pos() += aInfo.mPageFrame.Pos();
|
|
|
|
aInfo.mnPageNumber = pPage->GetPhyPageNum();
|
|
|
|
aInfo.mbMarginSide = pPage->MarginSide();
|
2009-01-02 15:51:45 +00:00
|
|
|
aInfo.mRedlineAuthor = 0;
|
2008-06-16 07:18:50 +00:00
|
|
|
|
|
|
|
if( aRet == INVISIBLE )
|
|
|
|
{
|
|
|
|
aRet = VISIBLE;
|
|
|
|
const IDocumentRedlineAccess* pIDRA = pNode->getIDocumentRedlineAccess();
|
|
|
|
if( IDocumentRedlineAccess::IsShowChanges( pIDRA->GetRedlineMode() ) )
|
|
|
|
{
|
|
|
|
const SwRedline* pRedline = pIDRA->GetRedline( rPos, 0 );
|
|
|
|
if( pRedline )
|
|
|
|
{
|
|
|
|
if( nsRedlineType_t::REDLINE_INSERT == pRedline->GetType() )
|
|
|
|
aRet = INSERTED;
|
|
|
|
else if( nsRedlineType_t::REDLINE_DELETE == pRedline->GetType() )
|
|
|
|
aRet = DELETED;
|
|
|
|
aInfo.mRedlineAuthor = pRedline->GetAuthor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rInfo.push_back( aInfo );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-02 15:51:45 +00:00
|
|
|
return ((aRet==VISIBLE) && SwScriptInfo::IsInHiddenRange( *pTxtNode , rPos.nContent.GetIndex()) ) ? HIDDEN : aRet;
|
2008-06-16 07:18:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
long SwPostItHelper::getLayoutHeight( const SwRootFrm* pRoot )
|
|
|
|
{
|
|
|
|
long nRet = pRoot ? pRoot->Frm().Height() : 0;
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwPostItHelper::setSidebarChanged( SwRootFrm* pRoot, bool bBrowseMode )
|
|
|
|
{
|
|
|
|
if( pRoot )
|
|
|
|
{
|
|
|
|
pRoot->SetSidebarChanged();
|
|
|
|
if( bBrowseMode )
|
|
|
|
pRoot->InvalidateBrowseWidth();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long SwPostItHelper::getPageInfo( SwRect& rPageFrm, const SwRootFrm* pRoot, const Point& rPoint )
|
|
|
|
{
|
|
|
|
unsigned long nRet = 0;
|
|
|
|
const SwFrm* pPage = pRoot->GetPageAtPos( rPoint, 0, true );
|
|
|
|
if( pPage )
|
|
|
|
{
|
|
|
|
nRet = pPage->GetPhyPageNum();
|
|
|
|
rPageFrm = pPage->Frm();
|
|
|
|
}
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
SwPostItHelper::SwLayoutStatus SwPostItHelper::getLayoutInfos( std::vector< SwLayoutInfo >& rInfo, SwTxtFld* pFld )
|
|
|
|
{
|
|
|
|
SwLayoutStatus aRet = SwPostItHelper::INVISIBLE;
|
|
|
|
if( pFld )
|
|
|
|
{
|
|
|
|
SwTxtNode* pTNd = pFld->GetpTxtNode();
|
|
|
|
if( pTNd )
|
|
|
|
{
|
|
|
|
SwPosition aPos( *pTNd );
|
|
|
|
aPos.nContent.Assign( pTNd, *pFld->GetStart() );
|
|
|
|
aRet = getLayoutInfos( rInfo, aPos );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
2009-01-02 15:51:45 +00:00
|
|
|
SwPosition SwPostItItem::GetPosition()
|
|
|
|
{
|
|
|
|
SwTxtFld* pFld = pFmtFld->GetTxtFld();
|
|
|
|
//if( pFld )
|
|
|
|
//{
|
|
|
|
SwTxtNode* pTNd = pFld->GetpTxtNode();
|
|
|
|
// if( pTNd )
|
|
|
|
// {
|
|
|
|
SwPosition aPos( *pTNd );
|
|
|
|
aPos.nContent.Assign( pTNd, *pFld->GetStart() );
|
|
|
|
return aPos;
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SwPostItItem::UseElement()
|
|
|
|
{
|
|
|
|
return pFmtFld->IsFldInDoc();
|
|
|
|
}
|
|
|
|
|
|
|
|
SwMarginWin* SwPostItItem::GetMarginWindow(Window* pParent, WinBits nBits,SwPostItMgr* aMgr,SwPostItBits aBits)
|
|
|
|
{
|
|
|
|
return new SwPostIt(pParent,nBits,pFmtFld,aMgr,aBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SwPosition SwRedCommentItem::GetPosition()
|
|
|
|
{
|
|
|
|
return *pRedline->Start();
|
|
|
|
}
|
2008-06-16 07:18:50 +00:00
|
|
|
|
2009-01-02 15:51:45 +00:00
|
|
|
SwMarginWin* SwRedCommentItem::GetMarginWindow(Window* pParent, WinBits nBits,SwPostItMgr* aMgr,SwPostItBits aBits)
|
|
|
|
{
|
|
|
|
return new SwRedComment(pParent,nBits,aMgr,aBits,pRedline);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SwRedCommentItem::UseElement()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*/
|