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 14:02:10 +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 14:02:10 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 14:02:10 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 14:02:10 +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 14:02:10 +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 14:02:10 +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
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 20:27:34 +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>
|
2001-07-19 15:32:24 +00:00
|
|
|
#include <SwStyleNameMapper.hxx>
|
2000-09-18 23:08:29 +00:00
|
|
|
#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);
|
2003-05-27 15:11:34 +00:00
|
|
|
TYPEINIT1_AUTOFACTORY( SwParaConnectBorderItem, SfxBoolItem);
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|* Beschreibung Methoden von SwFmtDrop
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SwFmtDrop::SwFmtDrop()
|
|
|
|
: SfxPoolItem( RES_PARATR_DROP ),
|
|
|
|
SwClient( 0 ),
|
2007-09-27 08:08:46 +00:00
|
|
|
pDefinedIn( 0 ),
|
|
|
|
nDistance( 0 ),
|
|
|
|
nReadFmt( USHRT_MAX ),
|
2000-09-18 23:08:29 +00:00
|
|
|
nLines( 0 ),
|
|
|
|
nChars( 0 ),
|
2007-09-27 08:08:46 +00:00
|
|
|
bWholeWord( sal_False )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SwFmtDrop::SwFmtDrop( const SwFmtDrop &rCpy )
|
|
|
|
: SfxPoolItem( RES_PARATR_DROP ),
|
2010-12-17 09:02:23 +01:00
|
|
|
SwClient( rCpy.GetRegisteredInNonConst() ),
|
2007-09-27 08:08:46 +00:00
|
|
|
pDefinedIn( 0 ),
|
|
|
|
nDistance( rCpy.GetDistance() ),
|
|
|
|
nReadFmt( rCpy.nReadFmt ),
|
2000-09-18 23:08:29 +00:00
|
|
|
nLines( rCpy.GetLines() ),
|
|
|
|
nChars( rCpy.GetChars() ),
|
2007-09-27 08:08:46 +00:00
|
|
|
bWholeWord( rCpy.GetWholeWord() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SwFmtDrop::~SwFmtDrop()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SwFmtDrop::SetCharFmt( SwCharFmt *pNew )
|
|
|
|
{
|
|
|
|
//Ummelden
|
2010-12-17 09:02:23 +01:00
|
|
|
if ( GetRegisteredIn() )
|
|
|
|
GetRegisteredInNonConst()->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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-12-17 09:02:23 +01:00
|
|
|
void SwFmtDrop::Modify( const SfxPoolItem*, const SfxPoolItem * )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
if( pDefinedIn )
|
|
|
|
{
|
|
|
|
if( !pDefinedIn->ISA( SwFmt ))
|
2010-12-17 09:02:23 +01:00
|
|
|
pDefinedIn->ModifyNotification( this, this );
|
2000-09-18 23:08:29 +00:00
|
|
|
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.
|
2010-12-17 09:02:23 +01:00
|
|
|
pDefinedIn->ModifyBroadcast( this, this );
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-27 08:08:46 +00:00
|
|
|
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
|
|
|
|
{
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
|
2000-09-18 23:08:29 +00:00
|
|
|
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;
|
2007-09-27 08:08:46 +00:00
|
|
|
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 ;
|
2007-09-27 08:08:46 +00:00
|
|
|
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())
|
2001-07-19 15:32:24 +00:00
|
|
|
sName = SwStyleNameMapper::GetProgName(
|
2007-09-27 08:08:46 +00:00
|
|
|
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 :
|
|
|
|
{
|
2007-11-12 15:26:02 +00:00
|
|
|
sal_Int8 nTemp = 0;
|
2002-07-04 13:46:09 +00:00
|
|
|
rVal >>= nTemp;
|
|
|
|
if(nTemp >=1 && nTemp < 0x7f)
|
2011-01-17 15:06:54 +01:00
|
|
|
nLines = (sal_uInt8)nTemp;
|
2002-07-04 13:46:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MID_DROPCAP_COUNT :
|
|
|
|
{
|
2007-11-12 15:26:02 +00:00
|
|
|
sal_Int16 nTemp = 0;
|
2002-07-04 13:46:09 +00:00
|
|
|
rVal >>= nTemp;
|
|
|
|
if(nTemp >=1 && nTemp < 0x7f)
|
2011-01-17 15:06:54 +01:00
|
|
|
nChars = (sal_uInt8)nTemp;
|
2002-07-04 13:46:09 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-06-19 16:23:36 +00:00
|
|
|
case MID_DROPCAP_DISTANCE :
|
2002-05-27 13:35:24 +00:00
|
|
|
{
|
2007-11-12 15:26:02 +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);
|
|
|
|
}
|
2008-04-22 14:00:24 +00:00
|
|
|
else {
|
|
|
|
}
|
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 :
|
2011-03-01 19:09:12 +01:00
|
|
|
OSL_FAIL("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 -------------------------------------------------
|
2007-09-27 08:08:46 +00:00
|
|
|
SfxPoolItem* SwNumRuleItem::Clone( SfxItemPool * ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
return new SwNumRuleItem( *this );
|
|
|
|
}
|
|
|
|
int SwNumRuleItem::operator==( const SfxPoolItem& rAttr ) const
|
|
|
|
{
|
2010-11-25 17:08:45 +01:00
|
|
|
OSL_ENSURE( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
|
2011-01-17 20:49:33 +01:00
|
|
|
|
2008-06-13 09:10:22 +00:00
|
|
|
return GetValue() == ((SwNumRuleItem&)rAttr).GetValue();
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
|
2011-03-14 16:51:14 +00:00
|
|
|
bool SwNumRuleItem::QueryValue( uno::Any& rVal, sal_uInt8 ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2007-09-27 08:08:46 +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
|
|
|
}
|
|
|
|
|
2011-03-14 16:51:14 +00:00
|
|
|
bool SwNumRuleItem::PutValue( const uno::Any& rVal, sal_uInt8 )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
rtl::OUString uName;
|
|
|
|
rVal >>= uName;
|
2007-09-27 08:08:46 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2003-05-27 15:11:34 +00:00
|
|
|
SfxPoolItem* SwParaConnectBorderItem::Clone( SfxItemPool * ) const
|
|
|
|
{
|
|
|
|
return new SwParaConnectBorderItem( *this );
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-14 08:30:41 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|