Files
libreoffice/sw/source/core/fields/postithelper.cxx
Philipp Riemer 39f4f7d953 fdo#62475 - remove visual noise in sw/source/core/fields
Change-Id: I4b14dbb652375f4c6f52ba2fb127e98d6798e07f
2013-06-10 22:00:58 +02:00

192 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( std::vector< SwLayoutInfo >& rInfo, SwPosition& rPos )
{
SwLayoutStatus aRet = INVISIBLE;
const SwTxtNode* pTxtNode = rPos.nNode.GetNode().GetTxtNode();
SwCntntNode* pNode = rPos.nNode.GetNode().GetCntntNode(); // getfirstcontentnode // getnext...
if( !pNode )
return aRet;
SwIterator<SwTxtFrm,SwCntntNode> aIter( *pNode );
for( SwTxtFrm* pTxtFrm = aIter.First(); pTxtFrm; pTxtFrm = aIter.Next() )
{
if( !pTxtFrm->IsFollow() )
{
pTxtFrm = ((SwTxtFrm*)pTxtFrm)->GetFrmAtPos( rPos );
SwPageFrm *pPage = pTxtFrm ? pTxtFrm->FindPageFrm() : 0;
// #i103490#
if ( pPage && !pPage->IsInvalid() && !pPage->IsInvalidFly() )
{
SwLayoutInfo aInfo;
pTxtFrm->GetCharRect( aInfo.mPosition, rPos, 0 );
aInfo.mpAnchorFrm = pTxtFrm;
aInfo.mPageFrame = pPage->Frm();
aInfo.mPagePrtArea = pPage->Prt();
aInfo.mPagePrtArea.Pos() += aInfo.mPageFrame.Pos();
aInfo.mnPageNumber = pPage->GetPhyPageNum();
aInfo.meSidebarPosition = pPage->SidebarPosition();
aInfo.mRedlineAuthor = 0;
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();
}
}
}
{
std::vector< SwLayoutInfo >::iterator aInsPosIter =
std::lower_bound( rInfo.begin(), rInfo.end(),
aInfo, LayoutInfoOrder() );
rInfo.insert( aInsPosIter, aInfo );
}
}
}
}
return ((aRet==VISIBLE) && SwScriptInfo::IsInHiddenRange( *pTxtNode , rPos.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* pFld = pFmtFld->GetTxtFld();
SwTxtNode* pTNd = pFld->GetpTxtNode();
SwPosition aPos( *pTNd );
aPos.nContent.Assign( pTNd, *pFld->GetStart() );
return aPos;
}
bool SwAnnotationItem::UseElement()
{
return pFmtFld->IsFldInDoc();
}
sw::sidebarwindows::SwSidebarWin* SwAnnotationItem::GetSidebarWindow(
SwEditWin& rEditWin,
WinBits nBits,
SwPostItMgr& aMgr,
SwPostItBits aBits)
{
return new sw::annotation::SwAnnotationWin( rEditWin, nBits,
aMgr, aBits,
*this,
pFmtFld );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */