Files
libreoffice/sw/source/core/fields/postithelper.cxx
Michael Stahl 2d2af57bc0 sw: DisableCallbackAction in a bunch more places
... to prevent recursive layout.

Change-Id: I4a7cdcebe77bd7d8d16c721765ad5eb171e84619
2017-06-10 00:10:46 +02:00

160 lines
5.6 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 <calbck.hxx>
class Point;
SwPostItHelper::SwLayoutStatus SwPostItHelper::getLayoutInfos(
SwLayoutInfo& o_rInfo,
const SwPosition& rAnchorPos,
const SwPosition* pAnnotationStartPos )
{
SwLayoutStatus aRet = INVISIBLE;
SwTextNode* pTextNode = rAnchorPos.nNode.GetNode().GetTextNode();
if ( pTextNode == nullptr )
return aRet;
SwIterator<SwTextFrame,SwContentNode> aIter( *pTextNode );
for( SwTextFrame* pTextFrame = aIter.First(); pTextFrame != nullptr; pTextFrame = aIter.Next() )
{
if( !pTextFrame->IsFollow() )
{
pTextFrame = pTextFrame->GetFrameAtPos( rAnchorPos );
SwPageFrame *pPage = pTextFrame ? pTextFrame->FindPageFrame() : nullptr;
if ( pPage != nullptr && !pPage->IsInvalid() && !pPage->IsInvalidFly() )
{
aRet = VISIBLE;
o_rInfo.mpAnchorFrame = pTextFrame;
{
DisableCallbackAction a(*pTextFrame->getRootFrame());
pTextFrame->GetCharRect(o_rInfo.mPosition, rAnchorPos, nullptr, false);
}
if ( pAnnotationStartPos != nullptr )
{
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->Frame();
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& rIDRA = pTextNode->getIDocumentRedlineAccess();
if( IDocumentRedlineAccess::IsShowChanges( rIDRA.GetRedlineFlags() ) )
{
const SwRangeRedline* pRedline = rIDRA.GetRedline( rAnchorPos, nullptr );
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( *pTextNode , rAnchorPos.nContent.GetIndex()) )
? HIDDEN
: aRet;
}
long SwPostItHelper::getLayoutHeight( const SwRootFrame* pRoot )
{
long nRet = pRoot ? pRoot->Frame().Height() : 0;
return nRet;
}
void SwPostItHelper::setSidebarChanged( SwRootFrame* pRoot, bool bBrowseMode )
{
if( pRoot )
{
pRoot->SetSidebarChanged();
if( bBrowseMode )
pRoot->InvalidateBrowseWidth();
}
}
unsigned long SwPostItHelper::getPageInfo( SwRect& rPageFrame, const SwRootFrame* pRoot, const Point& rPoint )
{
unsigned long nRet = 0;
const SwFrame* pPage = pRoot->GetPageAtPos( rPoint, nullptr, true );
if( pPage )
{
nRet = pPage->GetPhyPageNum();
rPageFrame = pPage->Frame();
}
return nRet;
}
SwPosition SwAnnotationItem::GetAnchorPosition() const
{
SwTextField* pTextField = mrFormatField.GetTextField();
SwTextNode* pTextNode = pTextField->GetpTextNode();
SwPosition aPos( *pTextNode );
aPos.nContent.Assign( pTextNode, pTextField->GetStart() );
return aPos;
}
bool SwAnnotationItem::UseElement()
{
return mrFormatField.IsFieldInDoc();
}
VclPtr<sw::annotation::SwAnnotationWin> SwAnnotationItem::GetSidebarWindow(
SwEditWin& rEditWin,
SwPostItMgr& aMgr)
{
return VclPtr<sw::annotation::SwAnnotationWin>::Create( rEditWin, WB_DIALOGCONTROL,
aMgr,
*this,
&mrFormatField );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */