2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* 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.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* 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).
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:45:50 +00:00
|
|
|
* 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.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "doc.hxx"
|
|
|
|
#include "editsh.hxx"
|
|
|
|
#include "swtable.hxx"
|
|
|
|
#include "pam.hxx"
|
|
|
|
#include <docary.hxx>
|
|
|
|
#include <fchrfmt.hxx>
|
|
|
|
#include <frmfmt.hxx>
|
|
|
|
#include <charfmt.hxx>
|
2010-12-28 12:09:53 +01:00
|
|
|
#include "ndtxt.hxx" // for GetXXXFmt
|
2000-09-18 23:08:29 +00:00
|
|
|
#include "hints.hxx"
|
|
|
|
|
|
|
|
/*************************************
|
|
|
|
* Formate
|
|
|
|
*************************************/
|
|
|
|
// Char
|
|
|
|
// OPT: inline
|
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 SwEditShell::GetCharFmtCount() const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetCharFmts()->Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
SwCharFmt& SwEditShell::GetCharFmt(sal_uInt16 nFmt) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return *((*(GetDoc()->GetCharFmts()))[nFmt]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwCharFmt* SwEditShell::GetCurCharFmt() const
|
|
|
|
{
|
|
|
|
SwCharFmt *pFmt = 0;
|
|
|
|
SfxItemSet aSet( GetDoc()->GetAttrPool(), RES_TXTATR_CHARFMT,
|
|
|
|
RES_TXTATR_CHARFMT );
|
|
|
|
const SfxPoolItem* pItem;
|
2008-03-05 15:58:36 +00:00
|
|
|
if( GetCurAttr( aSet ) && SFX_ITEM_SET ==
|
2011-01-17 15:06:54 +01:00
|
|
|
aSet.GetItemState( RES_TXTATR_CHARFMT, sal_False, &pItem ) )
|
2000-09-18 23:08:29 +00:00
|
|
|
pFmt = ((SwFmtCharFmt*)pItem)->GetCharFmt();
|
|
|
|
|
|
|
|
return pFmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
void SwEditShell::FillByEx(SwCharFmt* pCharFmt, sal_Bool bReset)
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
if ( bReset )
|
2007-02-05 09:52:47 +00:00
|
|
|
{
|
2011-04-16 22:42:13 -03:00
|
|
|
// #i73790# - method renamed
|
2007-02-05 09:52:47 +00:00
|
|
|
pCharFmt->ResetAllFmtAttr();
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
SwPaM* pPam = GetCrsr();
|
|
|
|
const SwCntntNode* pCNd = pPam->GetCntntNode();
|
|
|
|
if( pCNd->IsTxtNode() )
|
|
|
|
{
|
|
|
|
xub_StrLen nStt, nEnd;
|
|
|
|
if( pPam->HasMark() )
|
|
|
|
{
|
|
|
|
const SwPosition* pPtPos = pPam->GetPoint();
|
|
|
|
const SwPosition* pMkPos = pPam->GetMark();
|
2010-12-28 12:09:53 +01:00
|
|
|
if( pPtPos->nNode == pMkPos->nNode ) // in the same node?
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
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 = ((SwTxtNode*)pCNd)->GetTxt().Len();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nStt = nEnd = pPam->GetPoint()->nContent.GetIndex();
|
|
|
|
|
|
|
|
SfxItemSet aSet( pDoc->GetAttrPool(),
|
|
|
|
pCharFmt->GetAttrSet().GetRanges() );
|
|
|
|
((SwTxtNode*)pCNd)->GetAttr( aSet, nStt, nEnd );
|
2008-06-13 08:44:32 +00:00
|
|
|
pCharFmt->SetFmtAttr( aSet );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2006-12-01 14:42:52 +00:00
|
|
|
else if( pCNd->HasSwAttrSet() )
|
2008-06-13 08:44:32 +00:00
|
|
|
pCharFmt->SetFmtAttr( *pCNd->GetpSwAttrSet() );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Frm
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 SwEditShell::GetTblFrmFmtCount(sal_Bool bUsed) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetTblFrmFmtCount(bUsed);
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
SwFrmFmt& SwEditShell::GetTblFrmFmt(sal_uInt16 nFmt, sal_Bool bUsed ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetTblFrmFmt(nFmt, bUsed );
|
|
|
|
}
|
|
|
|
|
|
|
|
String SwEditShell::GetUniqueTblName() const
|
|
|
|
{
|
|
|
|
return GetDoc()->GetUniqueTblName();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwCharFmt* SwEditShell::MakeCharFmt( const String& rName,
|
|
|
|
SwCharFmt* pDerivedFrom )
|
|
|
|
{
|
|
|
|
if( !pDerivedFrom )
|
|
|
|
pDerivedFrom = GetDoc()->GetDfltCharFmt();
|
|
|
|
|
|
|
|
return GetDoc()->MakeCharFmt( rName, pDerivedFrom );
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------
|
2010-12-28 12:09:53 +01:00
|
|
|
// inlines in product
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
SwTxtFmtColl* SwEditShell::GetTxtCollFromPool( sal_uInt16 nId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetTxtCollFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-28 12:09:53 +01:00
|
|
|
// return the demanded automatic format - base-class !
|
2011-01-17 15:06:54 +01:00
|
|
|
SwFmt* SwEditShell::GetFmtFromPool( sal_uInt16 nId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetFmtFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
SwPageDesc* SwEditShell::GetPageDescFromPool( sal_uInt16 nId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return GetDoc()->GetPageDescFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool SwEditShell::IsUsed( const SwModify& rModify ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return pDoc->IsUsed( rModify );
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
const SwFlyFrmFmt* SwEditShell::FindFlyByName( const String& rName, sal_uInt8 nNdTyp ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return pDoc->FindFlyByName(rName, nNdTyp);
|
|
|
|
}
|
|
|
|
|
|
|
|
SwCharFmt* SwEditShell::FindCharFmtByName( const String& rName ) const
|
|
|
|
{
|
|
|
|
return pDoc->FindCharFmtByName( rName );
|
|
|
|
}
|
|
|
|
|
|
|
|
SwTxtFmtColl* SwEditShell::FindTxtFmtCollByName( const String& rName ) const
|
|
|
|
{
|
|
|
|
return pDoc->FindTxtFmtCollByName( rName );
|
|
|
|
}
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|