2007/05/14 20:04:23 bm 1.6.4.9: RESYNC: (1.8-1.9); FILE MERGED 2006/10/18 17:05:55 bm 1.6.4.8: RESYNC: (1.7-1.8); FILE MERGED 2006/07/07 17:03:29 iha 1.6.4.7: if about to set fontsize also check if the reference size has changed 2006/02/28 14:40:04 bm 1.6.4.6: do not setPropertyValue in FillSpecialItem 2006/01/24 10:48:59 bm 1.6.4.5: set new reference size only if there was a reference size before (auto-scaling on) 2006/01/20 16:48:39 bm 1.6.4.4: Titles: the Reference size for CharHeight is in a different propertyset than the actual font sizes, therefore +GetRefSizePropertySet() 2005/10/07 11:31:15 bm 1.6.4.3: RESYNC: (1.6-1.7); FILE MERGED 2004/05/07 09:14:19 bm 1.6.4.2: enabling member-ids for all items 2004/04/13 16:05:04 bm 1.6.4.1: #i26557# use MID_FONTHEIGHT id for SvxFontHeightItem
521 lines
18 KiB
C++
521 lines
18 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: CharacterPropertyItemConverter.cxx,v $
|
|
*
|
|
* $Revision: 1.10 $
|
|
*
|
|
* last change: $Author: vg $ $Date: 2007-05-22 18:00:20 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_chart2.hxx"
|
|
#include "CharacterPropertyItemConverter.hxx"
|
|
#include "SchWhichPairs.hxx"
|
|
#include "macros.hxx"
|
|
#include "ItemPropertyMap.hxx"
|
|
#include "RelativeSizeHelper.hxx"
|
|
|
|
#ifndef _EEITEM_HXX
|
|
#include <svx/eeitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_UDLNITEM_HXX
|
|
#include <svx/udlnitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_FONTITEM_HXX
|
|
#include <svx/fontitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_CRSDITEM_HXX
|
|
#include <svx/crsditem.hxx>
|
|
#endif
|
|
#ifndef _SVX_POSTITEM_HXX
|
|
#include <svx/postitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_WGHTITEM_HXX
|
|
#include <svx/wghtitem.hxx>
|
|
#endif
|
|
#ifndef _SVX_FHGTITEM_HXX
|
|
#include <svx/fhgtitem.hxx>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSTATE_HPP_
|
|
#include <com/sun/star/beans/XPropertyState.hpp>
|
|
#endif
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
namespace
|
|
{
|
|
::comphelper::ItemPropertyMapType & lcl_GetCharacterPropertyPropertyMap()
|
|
{
|
|
static ::comphelper::ItemPropertyMapType aCharacterPropertyMap(
|
|
::comphelper::MakeItemPropertyMap
|
|
IPM_MAP_ENTRY( EE_CHAR_COLOR, "CharColor", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_LANGUAGE, "CharLocale", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_FONTHEIGHT, "CharHeight", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_ITALIC, "CharPosture", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_WEIGHT, "CharWeight", 0 )
|
|
|
|
IPM_MAP_ENTRY( EE_CHAR_STRIKEOUT, "CharStrikeout", MID_CROSS_OUT )
|
|
IPM_MAP_ENTRY( EE_CHAR_WLM, "CharWordMode", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_SHADOW, "CharShadowed", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_RELIEF, "CharRelief", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_OUTLINE, "CharContoured", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_EMPHASISMARK, "CharEmphasis", 0 )
|
|
|
|
IPM_MAP_ENTRY( EE_CHAR_LANGUAGE_CJK, "CharLocaleAsian", 0 )
|
|
IPM_MAP_ENTRY( EE_CHAR_LANGUAGE_CTL, "CharLocaleComplex", 0 )
|
|
|
|
// IPM_MAP_ENTRY( EE_CHAR_FONTHEIGHT_CJK, "CharHeightAsian", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_FONTHEIGHT_CTL, "CharHeightComplex", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_WEIGHT_CJK, "CharWeightAsian", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_WEIGHT_CTL, "CharWeightComplex", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_ITALIC_CJK, "CharPostureAsian", 0 )
|
|
// IPM_MAP_ENTRY( EE_CHAR_ITALIC_CTL, "CharPostureComplex", 0 )
|
|
|
|
);
|
|
|
|
return aCharacterPropertyMap;
|
|
}
|
|
} // anonymous namespace
|
|
|
|
// ========================================
|
|
|
|
namespace chart
|
|
{
|
|
namespace wrapper
|
|
{
|
|
|
|
CharacterPropertyItemConverter::CharacterPropertyItemConverter(
|
|
const uno::Reference< beans::XPropertySet > & rPropertySet,
|
|
SfxItemPool& rItemPool ) :
|
|
ItemConverter( rPropertySet, rItemPool )
|
|
{}
|
|
|
|
CharacterPropertyItemConverter::CharacterPropertyItemConverter(
|
|
const uno::Reference< beans::XPropertySet > & rPropertySet,
|
|
SfxItemPool& rItemPool,
|
|
::std::auto_ptr< awt::Size > pRefSize,
|
|
const ::rtl::OUString & rRefSizePropertyName,
|
|
const uno::Reference< beans::XPropertySet > & rRefSizePropSet ) :
|
|
ItemConverter( rPropertySet, rItemPool ),
|
|
m_pRefSize( pRefSize ),
|
|
m_aRefSizePropertyName( rRefSizePropertyName ),
|
|
m_xRefSizePropSet( rRefSizePropSet.is() ? rRefSizePropSet : rPropertySet )
|
|
{}
|
|
|
|
CharacterPropertyItemConverter::~CharacterPropertyItemConverter()
|
|
{}
|
|
|
|
const USHORT * CharacterPropertyItemConverter::GetWhichPairs() const
|
|
{
|
|
return nCharacterPropertyWhichPairs;
|
|
}
|
|
|
|
bool CharacterPropertyItemConverter::GetItemProperty( tWhichIdType nWhichId, tPropertyNameWithMemberId & rOutProperty ) const
|
|
{
|
|
::comphelper::ItemPropertyMapType & rMap( lcl_GetCharacterPropertyPropertyMap());
|
|
::comphelper::ItemPropertyMapType::const_iterator aIt( rMap.find( nWhichId ));
|
|
|
|
if( aIt == rMap.end())
|
|
return false;
|
|
|
|
rOutProperty =(*aIt).second;
|
|
return true;
|
|
}
|
|
|
|
void CharacterPropertyItemConverter::FillSpecialItem(
|
|
USHORT nWhichId, SfxItemSet & rOutItemSet ) const
|
|
throw( uno::Exception )
|
|
{
|
|
switch( nWhichId )
|
|
{
|
|
case EE_CHAR_FONTINFO:
|
|
case EE_CHAR_FONTINFO_CJK:
|
|
case EE_CHAR_FONTINFO_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_FONTINFO_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_FONTINFO_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
SvxFontItem aItem( nWhichId );
|
|
|
|
aItem.PutValue( GetPropertySet()->getPropertyValue( C2U( "CharFontName" ) + aPostfix),
|
|
MID_FONT_FAMILY_NAME );
|
|
aItem.PutValue( GetPropertySet()->getPropertyValue( C2U( "CharFontFamily" ) + aPostfix),
|
|
MID_FONT_FAMILY );
|
|
aItem.PutValue( GetPropertySet()->getPropertyValue( C2U( "CharFontStyleName" ) + aPostfix),
|
|
MID_FONT_STYLE_NAME );
|
|
aItem.PutValue( GetPropertySet()->getPropertyValue( C2U( "CharFontCharSet" ) + aPostfix),
|
|
MID_FONT_CHAR_SET );
|
|
aItem.PutValue( GetPropertySet()->getPropertyValue( C2U( "CharFontPitch" ) + aPostfix),
|
|
MID_FONT_PITCH );
|
|
|
|
rOutItemSet.Put( aItem );
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_UNDERLINE:
|
|
{
|
|
SvxUnderlineItem aItem(UNDERLINE_NONE, EE_CHAR_UNDERLINE);
|
|
bool bModified = false;
|
|
|
|
uno::Any aValue( GetPropertySet()->getPropertyValue( C2U( "CharUnderline" )));
|
|
if( aValue.hasValue())
|
|
{
|
|
aItem.PutValue( aValue, MID_UNDERLINE );
|
|
bModified = true;
|
|
}
|
|
|
|
aValue = GetPropertySet()->getPropertyValue( C2U( "CharUnderlineHasColor" ));
|
|
if( aValue.hasValue() &&
|
|
( *reinterpret_cast< const sal_Bool * >( aValue.getValue()) != sal_False ))
|
|
{
|
|
aItem.PutValue( aValue, MID_UL_HASCOLOR );
|
|
bModified = true;
|
|
}
|
|
|
|
aValue = GetPropertySet()->getPropertyValue( C2U( "CharUnderlineColor" ));
|
|
if( aValue.hasValue())
|
|
{
|
|
aItem.PutValue( aValue, MID_UL_COLOR );
|
|
bModified = true;
|
|
}
|
|
|
|
if( bModified )
|
|
rOutItemSet.Put( aItem );
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_ITALIC:
|
|
case EE_CHAR_ITALIC_CJK:
|
|
case EE_CHAR_ITALIC_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_ITALIC_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_ITALIC_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
SvxPostureItem aItem( ITALIC_NONE, nWhichId );
|
|
|
|
uno::Any aValue( GetPropertySet()->getPropertyValue( C2U( "CharPosture" ) + aPostfix));
|
|
if( aValue.hasValue())
|
|
{
|
|
aItem.PutValue( aValue, MID_POSTURE );
|
|
rOutItemSet.Put( aItem );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_WEIGHT:
|
|
case EE_CHAR_WEIGHT_CJK:
|
|
case EE_CHAR_WEIGHT_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_WEIGHT_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_WEIGHT_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
SvxWeightItem aItem( WEIGHT_NORMAL, nWhichId );
|
|
|
|
uno::Any aValue( GetPropertySet()->getPropertyValue( C2U( "CharWeight" ) + aPostfix));
|
|
if( aValue.hasValue())
|
|
{
|
|
aItem.PutValue( aValue, MID_WEIGHT );
|
|
rOutItemSet.Put( aItem );
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_FONTHEIGHT:
|
|
case EE_CHAR_FONTHEIGHT_CJK:
|
|
case EE_CHAR_FONTHEIGHT_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_FONTHEIGHT_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_FONTHEIGHT_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
SvxFontHeightItem aItem( 240, 100, nWhichId );
|
|
|
|
try
|
|
{
|
|
uno::Any aValue( GetPropertySet()->getPropertyValue( C2U( "CharHeight" ) + aPostfix ));
|
|
float fHeight;
|
|
if( aValue >>= fHeight )
|
|
{
|
|
if( m_pRefSize.get())
|
|
{
|
|
awt::Size aOldRefSize;
|
|
if( GetRefSizePropertySet()->getPropertyValue( m_aRefSizePropertyName ) >>= aOldRefSize )
|
|
{
|
|
// calculate font height in view
|
|
fHeight = static_cast< float >(
|
|
RelativeSizeHelper::calculate( fHeight, aOldRefSize, *m_pRefSize ));
|
|
aValue <<= fHeight;
|
|
}
|
|
}
|
|
|
|
aItem.PutValue( aValue, MID_FONTHEIGHT );
|
|
rOutItemSet.Put( aItem );
|
|
}
|
|
}
|
|
catch( uno::Exception & ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool CharacterPropertyItemConverter::ApplySpecialItem(
|
|
USHORT nWhichId, const SfxItemSet & rItemSet )
|
|
throw( uno::Exception )
|
|
{
|
|
bool bChanged = false;
|
|
uno::Any aValue;
|
|
|
|
switch( nWhichId )
|
|
{
|
|
case EE_CHAR_FONTINFO:
|
|
case EE_CHAR_FONTINFO_CJK:
|
|
case EE_CHAR_FONTINFO_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_FONTINFO_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_FONTINFO_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
const SvxFontItem & rItem =
|
|
reinterpret_cast< const SvxFontItem & >(
|
|
rItemSet.Get( nWhichId ));
|
|
|
|
if( rItem.QueryValue( aValue, MID_FONT_FAMILY_NAME ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharFontName" ) + aPostfix ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharFontName" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if( rItem.QueryValue( aValue, MID_FONT_FAMILY ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharFontFamily" ) + aPostfix ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharFontFamily" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if( rItem.QueryValue( aValue, MID_FONT_STYLE_NAME ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharFontStyleName" ) + aPostfix ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharFontStyleName" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if( rItem.QueryValue( aValue, MID_FONT_CHAR_SET ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharFontCharSet" ) + aPostfix ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharFontCharSet" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
if( rItem.QueryValue( aValue, MID_FONT_PITCH ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharFontPitch" ) + aPostfix ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharFontPitch" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_UNDERLINE:
|
|
{
|
|
const SvxUnderlineItem & rItem =
|
|
reinterpret_cast< const SvxUnderlineItem & >(
|
|
rItemSet.Get( nWhichId ));
|
|
|
|
if( rItem.QueryValue( aValue, MID_UNDERLINE ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderline" ) ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharUnderline" ), aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
|
|
if( rItem.QueryValue( aValue, MID_UL_COLOR ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderlineColor" ) ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharUnderlineColor" ), aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
|
|
if( rItem.QueryValue( aValue, MID_UL_HASCOLOR ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharUnderlineHasColor" ) ))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharUnderlineHasColor" ), aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_ITALIC:
|
|
case EE_CHAR_ITALIC_CJK:
|
|
case EE_CHAR_ITALIC_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_ITALIC_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_ITALIC_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
const SvxPostureItem & rItem =
|
|
reinterpret_cast< const SvxPostureItem & >(
|
|
rItemSet.Get( nWhichId ));
|
|
|
|
if( rItem.QueryValue( aValue, MID_POSTURE ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharPosture" ) + aPostfix))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharPosture" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_WEIGHT:
|
|
case EE_CHAR_WEIGHT_CJK:
|
|
case EE_CHAR_WEIGHT_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_WEIGHT_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_WEIGHT_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
const SvxWeightItem & rItem =
|
|
reinterpret_cast< const SvxWeightItem & >(
|
|
rItemSet.Get( nWhichId ));
|
|
|
|
if( rItem.QueryValue( aValue, MID_WEIGHT ))
|
|
{
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharWeight" ) + aPostfix))
|
|
{
|
|
GetPropertySet()->setPropertyValue( C2U( "CharWeight" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case EE_CHAR_FONTHEIGHT:
|
|
case EE_CHAR_FONTHEIGHT_CJK:
|
|
case EE_CHAR_FONTHEIGHT_CTL:
|
|
{
|
|
::rtl::OUString aPostfix;
|
|
if( nWhichId == EE_CHAR_FONTHEIGHT_CJK )
|
|
aPostfix = C2U( "Asian" );
|
|
else if( nWhichId == EE_CHAR_FONTHEIGHT_CTL )
|
|
aPostfix = C2U( "Complex" );
|
|
|
|
const SvxFontHeightItem & rItem =
|
|
reinterpret_cast< const SvxFontHeightItem & >(
|
|
rItemSet.Get( nWhichId ));
|
|
|
|
try
|
|
{
|
|
if( rItem.QueryValue( aValue, MID_FONTHEIGHT ) )
|
|
{
|
|
bool bSetValue = false;
|
|
if( aValue != GetPropertySet()->getPropertyValue( C2U( "CharHeight" ) + aPostfix ))
|
|
bSetValue = true;
|
|
else
|
|
{
|
|
if( m_pRefSize.get() )
|
|
{
|
|
awt::Size aNewRefSize = *m_pRefSize;
|
|
awt::Size aOldRefSize;
|
|
if( GetRefSizePropertySet()->getPropertyValue( m_aRefSizePropertyName ) >>= aOldRefSize )
|
|
{
|
|
if( aNewRefSize.Width != aOldRefSize.Width
|
|
|| aNewRefSize.Height != aOldRefSize.Height )
|
|
bSetValue = true;
|
|
}
|
|
}
|
|
}
|
|
if( bSetValue )
|
|
{
|
|
// set new reference size only if there was a reference size before (auto-scaling on)
|
|
if( m_pRefSize.get() &&
|
|
GetRefSizePropertySet()->getPropertyValue( m_aRefSizePropertyName ).hasValue())
|
|
{
|
|
GetRefSizePropertySet()->setPropertyValue( m_aRefSizePropertyName,
|
|
uno::makeAny( *m_pRefSize ));
|
|
}
|
|
|
|
GetPropertySet()->setPropertyValue( C2U( "CharHeight" ) + aPostfix, aValue );
|
|
bChanged = true;
|
|
}
|
|
}
|
|
}
|
|
catch( uno::Exception & ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
return bChanged;
|
|
}
|
|
|
|
uno::Reference< beans::XPropertySet >
|
|
CharacterPropertyItemConverter::GetRefSizePropertySet() const
|
|
{
|
|
return m_xRefSizePropSet;
|
|
}
|
|
|
|
} // namespace wrapper
|
|
} // namespace chart
|