Files
libreoffice/sw/source/core/para/paratr.cxx

298 lines
9.2 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 23:08:29 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:08:29 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 23:08:29 +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
*
* 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
*
* 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
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
2000-09-18 23:08:29 +00:00
#include "hintids.hxx"
#include <swtypes.hxx>
#include "unomid.h"
#include <com/sun/star/style/LineSpacingMode.hpp>
#include <com/sun/star/style/ParagraphAdjust.hpp>
#include <com/sun/star/style/DropCapFormat.hpp>
#include <com/sun/star/style/LineSpacing.hpp>
#include <com/sun/star/text/RelOrientation.hpp>
#include <com/sun/star/text/VertOrientation.hpp>
#include <com/sun/star/text/HorizontalAdjust.hpp>
#include <com/sun/star/text/DocumentStatistic.hpp>
#include <com/sun/star/text/HoriOrientation.hpp>
#include <com/sun/star/text/HoriOrientationFormat.hpp>
#include <com/sun/star/text/NotePrintMode.hpp>
#include <com/sun/star/text/SizeType.hpp>
#include <com/sun/star/text/VertOrientationFormat.hpp>
#include <com/sun/star/text/WrapTextMode.hpp>
#include <unostyle.hxx>
#include <SwStyleNameMapper.hxx>
2000-09-18 23:08:29 +00:00
#include "errhdl.hxx"
#include "paratr.hxx"
#include "charfmt.hxx"
#include "cmdid.h"
using namespace ::com::sun::star;
TYPEINIT2_AUTOFACTORY( SwFmtDrop, SfxPoolItem, SwClient);
TYPEINIT1_AUTOFACTORY( SwRegisterItem, SfxBoolItem);
TYPEINIT1_AUTOFACTORY( SwNumRuleItem, SfxStringItem);
TYPEINIT1_AUTOFACTORY( SwParaConnectBorderItem, SfxBoolItem);
2000-09-18 23:08:29 +00:00
/*************************************************************************
|* Beschreibung Methoden von SwFmtDrop
|* Ersterstellung MS 19.02.91
|* Letzte Aenderung JP 08.08.94
*************************************************************************/
SwFmtDrop::SwFmtDrop()
: SfxPoolItem( RES_PARATR_DROP ),
SwClient( 0 ),
pDefinedIn( 0 ),
nDistance( 0 ),
nReadFmt( USHRT_MAX ),
2000-09-18 23:08:29 +00:00
nLines( 0 ),
nChars( 0 ),
bWholeWord( sal_False )
2000-09-18 23:08:29 +00:00
{
}
SwFmtDrop::SwFmtDrop( const SwFmtDrop &rCpy )
: SfxPoolItem( RES_PARATR_DROP ),
SwClient( rCpy.pRegisteredIn ),
pDefinedIn( 0 ),
nDistance( rCpy.GetDistance() ),
nReadFmt( rCpy.nReadFmt ),
2000-09-18 23:08:29 +00:00
nLines( rCpy.GetLines() ),
nChars( rCpy.GetChars() ),
bWholeWord( rCpy.GetWholeWord() )
2000-09-18 23:08:29 +00:00
{
}
SwFmtDrop::~SwFmtDrop()
{
}
void SwFmtDrop::SetCharFmt( SwCharFmt *pNew )
{
//Ummelden
if ( pRegisteredIn )
pRegisteredIn->Remove( this );
2002-07-04 13:46:09 +00:00
if(pNew)
pNew->Add( this );
2000-09-18 23:08:29 +00:00
nReadFmt = USHRT_MAX;
}
void SwFmtDrop::Modify( SfxPoolItem *, SfxPoolItem * )
2000-09-18 23:08:29 +00:00
{
if( pDefinedIn )
{
if( !pDefinedIn->ISA( SwFmt ))
pDefinedIn->Modify( this, this );
else if( pDefinedIn->GetDepends() &&
!pDefinedIn->IsModifyLocked() )
{
// selbst den Abhaengigen vom Format bescheid sagen. Das
// Format selbst wuerde es nicht weitergeben, weil es ueber
// die Abpruefung nicht hinauskommt.
SwClientIter aIter( *pDefinedIn );
SwClient * pLast = aIter.GoStart();
if( pLast ) // konnte zum Anfang gesprungen werden ??
do {
pLast->Modify( this, this );
if( !pDefinedIn->GetDepends() ) // Baum schon Weg ??
break;
} while( 0 != ( pLast = aIter++ ));
}
}
}
sal_Bool SwFmtDrop::GetInfo( SfxPoolItem& ) const
2000-09-18 23:08:29 +00:00
{
return sal_True; // weiter
}
int SwFmtDrop::operator==( const SfxPoolItem& rAttr ) const
{
ASSERT( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
return ( nLines == ((SwFmtDrop&)rAttr).GetLines() &&
nChars == ((SwFmtDrop&)rAttr).GetChars() &&
nDistance == ((SwFmtDrop&)rAttr).GetDistance() &&
bWholeWord == ((SwFmtDrop&)rAttr).GetWholeWord() &&
GetCharFmt() == ((SwFmtDrop&)rAttr).GetCharFmt() &&
pDefinedIn == ((SwFmtDrop&)rAttr).pDefinedIn );
}
SfxPoolItem* SwFmtDrop::Clone( SfxItemPool* ) const
{
return new SwFmtDrop( *this );
}
2010-10-04 15:23:52 +01:00
bool SwFmtDrop::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
2000-09-18 23:08:29 +00:00
{
switch(nMemberId&~CONVERT_TWIPS)
{
2002-07-04 13:46:09 +00:00
case MID_DROPCAP_LINES : rVal <<= (sal_Int16)nLines; break;
case MID_DROPCAP_COUNT : rVal <<= (sal_Int16)nChars; break;
case MID_DROPCAP_DISTANCE : rVal <<= (sal_Int16) TWIP_TO_MM100_UNSIGNED(nDistance); break;
2000-09-18 23:08:29 +00:00
case MID_DROPCAP_FORMAT:
{
style::DropCapFormat aDrop;
aDrop.Lines = nLines ;
aDrop.Count = nChars ;
aDrop.Distance = TWIP_TO_MM100_UNSIGNED(nDistance);
2000-09-18 23:08:29 +00:00
rVal.setValue(&aDrop, ::getCppuType((const style::DropCapFormat*)0));
}
break;
case MID_DROPCAP_WHOLE_WORD:
rVal.setValue(&bWholeWord, ::getBooleanCppuType());
break;
case MID_DROPCAP_CHAR_STYLE_NAME :
{
rtl::OUString sName;
if(GetCharFmt())
sName = SwStyleNameMapper::GetProgName(
GetCharFmt()->GetName(), nsSwGetPoolIdFromName::GET_POOLID_CHRFMT );
2000-09-18 23:08:29 +00:00
rVal <<= sName;
}
break;
}
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
2010-10-04 15:23:52 +01:00
bool SwFmtDrop::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
2000-09-18 23:08:29 +00:00
{
switch(nMemberId&~CONVERT_TWIPS)
{
2002-07-04 13:46:09 +00:00
case MID_DROPCAP_LINES :
{
sal_Int8 nTemp = 0;
2002-07-04 13:46:09 +00:00
rVal >>= nTemp;
if(nTemp >=1 && nTemp < 0x7f)
nLines = (BYTE)nTemp;
}
break;
case MID_DROPCAP_COUNT :
{
sal_Int16 nTemp = 0;
2002-07-04 13:46:09 +00:00
rVal >>= nTemp;
if(nTemp >=1 && nTemp < 0x7f)
nChars = (BYTE)nTemp;
}
break;
2002-06-19 16:23:36 +00:00
case MID_DROPCAP_DISTANCE :
2002-05-27 13:35:24 +00:00
{
sal_Int16 nVal = 0;
2002-05-27 13:35:24 +00:00
if ( rVal >>= nVal )
nDistance = (sal_Int16) MM100_TO_TWIP((sal_Int32)nVal);
else
2010-10-04 15:23:52 +01:00
return false;
2002-05-27 13:35:24 +00:00
break;
}
2000-09-18 23:08:29 +00:00
case MID_DROPCAP_FORMAT:
{
if(rVal.getValueType() == ::getCppuType((const style::DropCapFormat*)0))
{
const style::DropCapFormat* pDrop = (const style::DropCapFormat*)rVal.getValue();
nLines = pDrop->Lines;
nChars = pDrop->Count;
nDistance = MM100_TO_TWIP(pDrop->Distance);
}
else {
2000-09-18 23:08:29 +00:00
//exception( wrong_type)
;
}
2000-09-18 23:08:29 +00:00
}
break;
case MID_DROPCAP_WHOLE_WORD:
bWholeWord = *(sal_Bool*)rVal.getValue();
break;
case MID_DROPCAP_CHAR_STYLE_NAME :
DBG_ERROR("char format cannot be set in PutValue()!");
2000-09-18 23:08:29 +00:00
break;
}
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
// class SwRegisterItem -------------------------------------------------
SfxPoolItem* SwRegisterItem::Clone( SfxItemPool * ) const
{
return new SwRegisterItem( *this );
}
// class SwNumRuleItem -------------------------------------------------
SfxPoolItem* SwNumRuleItem::Clone( SfxItemPool * ) const
2000-09-18 23:08:29 +00:00
{
return new SwNumRuleItem( *this );
}
int SwNumRuleItem::operator==( const SfxPoolItem& rAttr ) const
{
ASSERT( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
// --> OD 2008-03-04 #refactorlists# - removed <pDefinedIn>
return GetValue() == ((SwNumRuleItem&)rAttr).GetValue();
// <--
2000-09-18 23:08:29 +00:00
}
/* -----------------------------27.06.00 11:05--------------------------------
---------------------------------------------------------------------------*/
2010-10-04 15:23:52 +01:00
bool SwNumRuleItem::QueryValue( uno::Any& rVal, BYTE ) const
2000-09-18 23:08:29 +00:00
{
rtl::OUString sRet = SwStyleNameMapper::GetProgName(GetValue(), nsSwGetPoolIdFromName::GET_POOLID_NUMRULE );
2000-09-18 23:08:29 +00:00
rVal <<= sRet;
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
/* -----------------------------27.06.00 11:05--------------------------------
---------------------------------------------------------------------------*/
2010-10-04 15:23:52 +01:00
bool SwNumRuleItem::PutValue( const uno::Any& rVal, BYTE )
2000-09-18 23:08:29 +00:00
{
rtl::OUString uName;
rVal >>= uName;
SetValue(SwStyleNameMapper::GetUIName(uName, nsSwGetPoolIdFromName::GET_POOLID_NUMRULE));
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
/* -----------------19.05.2003 10:44-----------------
2000-09-18 23:08:29 +00:00
--------------------------------------------------*/
SfxPoolItem* SwParaConnectBorderItem::Clone( SfxItemPool * ) const
{
return new SwParaConnectBorderItem( *this );
}
2000-09-18 23:08:29 +00:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */