2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* $RCSfile: edfmt.cxx,v $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2007-02-05 09:52:47 +00:00
|
|
|
* $Revision: 1.8 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2007-02-05 09:52:47 +00:00
|
|
|
* last change: $Author: vg $ $Date: 2007-02-05 10:52:47 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* This library 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 for more details.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:27:44 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 20:05:56 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "doc.hxx"
|
|
|
|
#include "editsh.hxx"
|
|
|
|
#include "swtable.hxx"
|
|
|
|
#include "pam.hxx"
|
|
|
|
#ifndef _DOCARY_HXX
|
|
|
|
#include <docary.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _FCHRFMT_HXX //autogen
|
|
|
|
#include <fchrfmt.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _FRMFMT_HXX //autogen
|
|
|
|
#include <frmfmt.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _CHARFMT_HXX //autogen
|
|
|
|
#include <charfmt.hxx>
|
|
|
|
#endif
|
|
|
|
#include "ndtxt.hxx" // Fuer GetXXXFmt
|
|
|
|
#include "hints.hxx"
|
|
|
|
|
|
|
|
/*************************************
|
|
|
|
* Formate
|
|
|
|
*************************************/
|
|
|
|
// Char
|
|
|
|
// OPT: inline
|
|
|
|
|
|
|
|
|
|
|
|
USHORT SwEditShell::GetCharFmtCount() const
|
|
|
|
{
|
|
|
|
return GetDoc()->GetCharFmts()->Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwCharFmt& SwEditShell::GetCharFmt(USHORT nFmt) const
|
|
|
|
{
|
|
|
|
return *((*(GetDoc()->GetCharFmts()))[nFmt]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwCharFmt* SwEditShell::GetCurCharFmt() const
|
|
|
|
{
|
|
|
|
SwCharFmt *pFmt = 0;
|
|
|
|
SfxItemSet aSet( GetDoc()->GetAttrPool(), RES_TXTATR_CHARFMT,
|
|
|
|
RES_TXTATR_CHARFMT );
|
|
|
|
const SfxPoolItem* pItem;
|
|
|
|
if( GetAttr( aSet ) && SFX_ITEM_SET ==
|
|
|
|
aSet.GetItemState( RES_TXTATR_CHARFMT, FALSE, &pItem ) )
|
|
|
|
pFmt = ((SwFmtCharFmt*)pItem)->GetCharFmt();
|
|
|
|
|
|
|
|
return pFmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SwEditShell::FillByEx(SwCharFmt* pCharFmt, BOOL bReset)
|
|
|
|
{
|
|
|
|
if ( bReset )
|
2007-02-05 09:52:47 +00:00
|
|
|
{
|
|
|
|
// --> OD 2007-01-25 #i73790# - method renamed
|
|
|
|
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();
|
|
|
|
if( pPtPos->nNode == pMkPos->nNode ) // im selben 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 = ((SwTxtNode*)pCNd)->GetTxt().Len();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nStt = nEnd = pPam->GetPoint()->nContent.GetIndex();
|
|
|
|
|
|
|
|
SfxItemSet aSet( pDoc->GetAttrPool(),
|
|
|
|
pCharFmt->GetAttrSet().GetRanges() );
|
|
|
|
((SwTxtNode*)pCNd)->GetAttr( aSet, nStt, nEnd );
|
|
|
|
pCharFmt->SetAttr( aSet );
|
|
|
|
}
|
2006-12-01 14:42:52 +00:00
|
|
|
else if( pCNd->HasSwAttrSet() )
|
2000-09-18 23:08:29 +00:00
|
|
|
pCharFmt->SetAttr( *pCNd->GetpSwAttrSet() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Frm
|
|
|
|
USHORT SwEditShell::GetTblFrmFmtCount(BOOL bUsed) const
|
|
|
|
{
|
|
|
|
return GetDoc()->GetTblFrmFmtCount(bUsed);
|
|
|
|
}
|
|
|
|
|
|
|
|
SwFrmFmt& SwEditShell::GetTblFrmFmt(USHORT nFmt, BOOL bUsed ) const
|
|
|
|
{
|
|
|
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------
|
|
|
|
// inlines im Product
|
|
|
|
|
|
|
|
|
|
|
|
SwTxtFmtColl* SwEditShell::GetTxtCollFromPool( USHORT nId )
|
|
|
|
{
|
|
|
|
return GetDoc()->GetTxtCollFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// return das geforderte automatische Format - Basis-Klasse !
|
|
|
|
SwFmt* SwEditShell::GetFmtFromPool( USHORT nId )
|
|
|
|
{
|
|
|
|
return GetDoc()->GetFmtFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwPageDesc* SwEditShell::GetPageDescFromPool( USHORT nId )
|
|
|
|
{
|
|
|
|
return GetDoc()->GetPageDescFromPool( nId );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOL SwEditShell::IsUsed( const SwModify& rModify ) const
|
|
|
|
{
|
|
|
|
return pDoc->IsUsed( rModify );
|
|
|
|
}
|
|
|
|
|
|
|
|
const SwFlyFrmFmt* SwEditShell::FindFlyByName( const String& rName, BYTE nNdTyp ) const
|
|
|
|
{
|
|
|
|
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 );
|
|
|
|
}
|