This is in preparation to adding more types of 'SwRedlines'. Change-Id: Id61217ed3c4622f7689427ea9f30e364f6bb65d1 Reviewed-on: https://gerrit.libreoffice.org/7410 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
196 lines
6.9 KiB
C++
196 lines
6.9 KiB
C++
/* -*- 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 <postithelper.hxx>
|
|
#include <PostItMgr.hxx>
|
|
#include <AnnotationWin.hxx>
|
|
|
|
#include <fmtfld.hxx>
|
|
#include <txtfld.hxx>
|
|
#include <docufld.hxx>
|
|
#include <ndtxt.hxx>
|
|
#include <cntfrm.hxx>
|
|
#include <pagefrm.hxx>
|
|
#include <rootfrm.hxx>
|
|
#include <txtfrm.hxx>
|
|
#include <tabfrm.hxx>
|
|
#include <IDocumentRedlineAccess.hxx>
|
|
#include <redline.hxx>
|
|
#include <scriptinfo.hxx>
|
|
#include <editeng/charhiddenitem.hxx>
|
|
#include <switerator.hxx>
|
|
|
|
class Point;
|
|
|
|
namespace {
|
|
|
|
struct LayoutInfoOrder
|
|
{
|
|
bool operator()( const SwLayoutInfo& rLayoutInfo,
|
|
const SwLayoutInfo& rNewLayoutInfo )
|
|
{
|
|
if ( rLayoutInfo.mnPageNumber != rNewLayoutInfo.mnPageNumber )
|
|
{
|
|
// corresponding <SwFrm> instances are on different pages
|
|
return rLayoutInfo.mnPageNumber < rNewLayoutInfo.mnPageNumber;
|
|
}
|
|
else
|
|
{
|
|
// corresponding <SwFrm> instances are in different repeating table header rows
|
|
OSL_ENSURE( rLayoutInfo.mpAnchorFrm->FindTabFrm(),
|
|
"<LayoutInfoOrder::operator()> - table frame not found" );
|
|
OSL_ENSURE( rNewLayoutInfo.mpAnchorFrm->FindTabFrm(),
|
|
"<LayoutInfoOrder::operator()> - table frame not found" );
|
|
const SwTabFrm* pLayoutInfoTabFrm( rLayoutInfo.mpAnchorFrm->FindTabFrm() );
|
|
const SwTabFrm* pNewLayoutInfoTabFrm( rNewLayoutInfo.mpAnchorFrm->FindTabFrm() );
|
|
const SwTabFrm* pTmpTabFrm( pNewLayoutInfoTabFrm );
|
|
while ( pTmpTabFrm && pTmpTabFrm->GetFollow() )
|
|
{
|
|
pTmpTabFrm = static_cast<const SwTabFrm*>(pTmpTabFrm->GetFollow()->GetFrm());
|
|
if ( pTmpTabFrm == pLayoutInfoTabFrm )
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
};
|
|
|
|
} // eof anonymous namespace
|
|
|
|
SwPostItHelper::SwLayoutStatus SwPostItHelper::getLayoutInfos(
|
|
SwLayoutInfo& o_rInfo,
|
|
const SwPosition& rAnchorPos,
|
|
const SwPosition* pAnnotationStartPos )
|
|
{
|
|
SwLayoutStatus aRet = INVISIBLE;
|
|
SwTxtNode* pTxtNode = rAnchorPos.nNode.GetNode().GetTxtNode();
|
|
if ( pTxtNode == NULL )
|
|
return aRet;
|
|
|
|
SwIterator<SwTxtFrm,SwCntntNode> aIter( *pTxtNode );
|
|
for( SwTxtFrm* pTxtFrm = aIter.First(); pTxtFrm != NULL; pTxtFrm = aIter.Next() )
|
|
{
|
|
if( !pTxtFrm->IsFollow() )
|
|
{
|
|
pTxtFrm = pTxtFrm->GetFrmAtPos( rAnchorPos );
|
|
SwPageFrm *pPage = pTxtFrm ? pTxtFrm->FindPageFrm() : 0;
|
|
if ( pPage != NULL && !pPage->IsInvalid() && !pPage->IsInvalidFly() )
|
|
{
|
|
aRet = VISIBLE;
|
|
|
|
o_rInfo.mpAnchorFrm = pTxtFrm;
|
|
pTxtFrm->GetCharRect( o_rInfo.mPosition, rAnchorPos, 0 );
|
|
if ( pAnnotationStartPos != NULL )
|
|
{
|
|
o_rInfo.mnStartNodeIdx = pAnnotationStartPos->nNode.GetIndex();
|
|
o_rInfo.mnStartContent = pAnnotationStartPos->nContent.GetIndex();
|
|
}
|
|
else
|
|
{
|
|
o_rInfo.mnStartNodeIdx = 0;
|
|
o_rInfo.mnStartContent = -1;
|
|
}
|
|
o_rInfo.mPageFrame = pPage->Frm();
|
|
o_rInfo.mPagePrtArea = pPage->Prt();
|
|
o_rInfo.mPagePrtArea.Pos() += o_rInfo.mPageFrame.Pos();
|
|
o_rInfo.mnPageNumber = pPage->GetPhyPageNum();
|
|
o_rInfo.meSidebarPosition = pPage->SidebarPosition();
|
|
o_rInfo.mRedlineAuthor = 0;
|
|
|
|
const IDocumentRedlineAccess* pIDRA = pTxtNode->getIDocumentRedlineAccess();
|
|
if( IDocumentRedlineAccess::IsShowChanges( pIDRA->GetRedlineMode() ) )
|
|
{
|
|
const SwRangeRedline* pRedline = pIDRA->GetRedline( rAnchorPos, 0 );
|
|
if( pRedline )
|
|
{
|
|
if( nsRedlineType_t::REDLINE_INSERT == pRedline->GetType() )
|
|
aRet = INSERTED;
|
|
else if( nsRedlineType_t::REDLINE_DELETE == pRedline->GetType() )
|
|
aRet = DELETED;
|
|
o_rInfo.mRedlineAuthor = pRedline->GetAuthor();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return ( (aRet==VISIBLE) && SwScriptInfo::IsInHiddenRange( *pTxtNode , rAnchorPos.nContent.GetIndex()) )
|
|
? HIDDEN
|
|
: aRet;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
SwPosition SwAnnotationItem::GetAnchorPosition() const
|
|
{
|
|
SwTxtFld* pTxtFld = mrFmtFld.GetTxtFld();
|
|
SwTxtNode* pTxtNode = pTxtFld->GetpTxtNode();
|
|
|
|
SwPosition aPos( *pTxtNode );
|
|
aPos.nContent.Assign( pTxtNode, *(pTxtFld->GetStart()) );
|
|
return aPos;
|
|
}
|
|
|
|
bool SwAnnotationItem::UseElement()
|
|
{
|
|
return mrFmtFld.IsFldInDoc();
|
|
}
|
|
|
|
sw::sidebarwindows::SwSidebarWin* SwAnnotationItem::GetSidebarWindow(
|
|
SwEditWin& rEditWin,
|
|
WinBits nBits,
|
|
SwPostItMgr& aMgr,
|
|
SwPostItBits aBits)
|
|
{
|
|
return new sw::annotation::SwAnnotationWin( rEditWin, nBits,
|
|
aMgr, aBits,
|
|
*this,
|
|
&mrFmtFld );
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|