Files
libreoffice/sw/source/core/edit/edfmt.cxx
Christian Lohmaier ab465b90f6 bin/rename-sw-abbreviations.sh
renames the most annoying abbreviations in Writer (and partially
in the shared code too).

Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
2015-05-20 13:05:49 +02:00

169 lines
5.1 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 "doc.hxx"
#include <IDocumentStylePoolAccess.hxx>
#include "editsh.hxx"
#include "swtable.hxx"
#include "pam.hxx"
#include <docary.hxx>
#include <fchrfmt.hxx>
#include <frmfmt.hxx>
#include <charfmt.hxx>
#include "ndtxt.hxx"
#include "hints.hxx"
sal_uInt16 SwEditShell::GetCharFormatCount() const
{
return GetDoc()->GetCharFormats()->size();
}
SwCharFormat& SwEditShell::GetCharFormat(sal_uInt16 nFormat) const
{
return *((*(GetDoc()->GetCharFormats()))[nFormat]);
}
SwCharFormat* SwEditShell::GetCurCharFormat() const
{
SwCharFormat *pFormat = 0;
SfxItemSet aSet( GetDoc()->GetAttrPool(), RES_TXTATR_CHARFMT,
RES_TXTATR_CHARFMT );
const SfxPoolItem* pItem;
if( GetCurAttr( aSet ) && SfxItemState::SET ==
aSet.GetItemState( RES_TXTATR_CHARFMT, false, &pItem ) )
pFormat = static_cast<const SwFormatCharFormat*>(pItem)->GetCharFormat();
return pFormat;
}
void SwEditShell::FillByEx(SwCharFormat* pCharFormat, bool bReset)
{
if ( bReset )
{
pCharFormat->ResetAllFormatAttr();
}
SwPaM* pPam = GetCrsr();
const SwContentNode* pCNd = pPam->GetContentNode();
if( pCNd->IsTextNode() )
{
SwTextNode const*const pTextNode(pCNd->GetTextNode());
sal_Int32 nStt;
sal_Int32 nEnd;
if( pPam->HasMark() )
{
const SwPosition* pPtPos = pPam->GetPoint();
const SwPosition* pMkPos = pPam->GetMark();
if( pPtPos->nNode == pMkPos->nNode ) // in the same node?
{
nStt = pPtPos->nContent.GetIndex();
if( nStt < pMkPos->nContent.GetIndex() )
nEnd = pMkPos->nContent.GetIndex();
else
{
nEnd = nStt;
nStt = pMkPos->nContent.GetIndex();
}
}
else
{
nStt = pMkPos->nContent.GetIndex();
if( pPtPos->nNode < pMkPos->nNode )
{
nEnd = nStt;
nStt = 0;
}
else
nEnd = pTextNode->GetText().getLength();
}
}
else
nStt = nEnd = pPam->GetPoint()->nContent.GetIndex();
SfxItemSet aSet( mpDoc->GetAttrPool(),
pCharFormat->GetAttrSet().GetRanges() );
pTextNode->GetAttr( aSet, nStt, nEnd );
pCharFormat->SetFormatAttr( aSet );
}
else if( pCNd->HasSwAttrSet() )
pCharFormat->SetFormatAttr( *pCNd->GetpSwAttrSet() );
}
size_t SwEditShell::GetTableFrameFormatCount(bool bUsed) const
{
return GetDoc()->GetTableFrameFormatCount(bUsed);
}
SwFrameFormat& SwEditShell::GetTableFrameFormat(size_t nFormat, bool bUsed ) const
{
return GetDoc()->GetTableFrameFormat(nFormat, bUsed );
}
OUString SwEditShell::GetUniqueTableName() const
{
return GetDoc()->GetUniqueTableName();
}
SwCharFormat* SwEditShell::MakeCharFormat( const OUString& rName,
SwCharFormat* pDerivedFrom )
{
if( !pDerivedFrom )
pDerivedFrom = GetDoc()->GetDfltCharFormat();
return GetDoc()->MakeCharFormat( rName, pDerivedFrom );
}
SwTextFormatColl* SwEditShell::GetTextCollFromPool( sal_uInt16 nId )
{
return GetDoc()->getIDocumentStylePoolAccess().GetTextCollFromPool( nId );
}
/// return the requested automatic format - base-class !
SwFormat* SwEditShell::GetFormatFromPool( sal_uInt16 nId )
{
return GetDoc()->getIDocumentStylePoolAccess().GetFormatFromPool( nId );
}
SwPageDesc* SwEditShell::GetPageDescFromPool( sal_uInt16 nId )
{
return GetDoc()->getIDocumentStylePoolAccess().GetPageDescFromPool( nId );
}
bool SwEditShell::IsUsed( const SwModify& rModify ) const
{
return mpDoc->IsUsed( rModify );
}
const SwFlyFrameFormat* SwEditShell::FindFlyByName( const OUString& rName, sal_uInt8 nNdTyp ) const
{
return mpDoc->FindFlyByName(rName, nNdTyp);
}
SwCharFormat* SwEditShell::FindCharFormatByName( const OUString& rName ) const
{
return mpDoc->FindCharFormatByName( rName );
}
SwTextFormatColl* SwEditShell::FindTextFormatCollByName( const OUString& rName ) const
{
return mpDoc->FindTextFormatCollByName( rName );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */