office-gobmx/sd/source/ui/unoidl/unopback.cxx

457 lines
14 KiB
C++
Raw Normal View History

2000-09-18 11:07:07 -05:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 11:07:07 -05:00
*
* $RCSfile: unopback.cxx,v $
2000-09-18 11:07:07 -05:00
*
* $Revision: 1.15 $
2000-09-18 11:07:07 -05:00
*
* last change: $Author: kz $ $Date: 2006-12-12 19:02:01 $
2000-09-18 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05: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 11:07:07 -05:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sd.hxx"
2001-02-26 08:27:47 -06:00
#ifndef _COM_SUN_STAR_DRAWING_BITMAPMODE_HPP_
#include <com/sun/star/drawing/BitmapMode.hpp>
#endif
2000-09-18 11:07:07 -05:00
#ifndef _VOS_MUTEX_HXX_ //autogen
#include <vos/mutex.hxx>
#endif
#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef _SFXITEMSET_HXX
#include <svtools/itemset.hxx>
#endif
2001-03-19 02:53:25 -06:00
#include <comphelper/extract.hxx>
2000-09-18 11:07:07 -05:00
#include <rtl/uuid.h>
#include <rtl/memory.h>
#ifndef _SVX_XFLBSTIT_HXX
#include <svx/xflbstit.hxx>
#endif
#ifndef _SVX_XFLBMTIT_HXX
#include <svx/xflbmtit.hxx>
#endif
2000-09-18 11:07:07 -05:00
#ifndef _SVDOBJ_HXX
#include <svx/svdobj.hxx>
#endif
#include <svx/unoprov.hxx>
#ifndef _SVX_UNOSHAPE_HXX
#include <svx/unoshape.hxx>
#endif
2000-09-18 11:07:07 -05:00
#include "unopback.hxx"
#include "unohelp.hxx"
#include "drawdoc.hxx"
#include "unokywds.hxx"
using namespace ::rtl;
using namespace ::vos;
using namespace ::com::sun::star;
const SfxItemPropertyMap* ImplGetPageBackgroundPropertyMap()
{
static const SfxItemPropertyMap aPageBackgroundPropertyMap_Impl[] =
{
FILL_PROPERTIES
{0,0,0,0,0,0}
2000-09-18 11:07:07 -05:00
};
return aPageBackgroundPropertyMap_Impl;
}
UNO3_GETIMPLEMENTATION_IMPL( SdUnoPageBackground );
SdUnoPageBackground::SdUnoPageBackground( SdDrawDocument* pDoc /* = NULL */, SdrObject* pObj /* = NULL */ ) throw()
: maPropSet( ImplGetPageBackgroundPropertyMap() ), mpSet( NULL ), mpDoc( pDoc )
2000-09-18 11:07:07 -05:00
{
2000-11-08 04:21:55 -06:00
if( pDoc )
2000-09-18 11:07:07 -05:00
{
StartListening( *pDoc );
mpSet = new SfxItemSet( pDoc->GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST );
2000-11-08 04:21:55 -06:00
if( pObj )
mpSet->Put(pObj->GetMergedItemSet());
2000-09-18 11:07:07 -05:00
}
}
SdUnoPageBackground::SdUnoPageBackground( SdDrawDocument* pDoc, const SfxItemSet* pSet ) throw()
: maPropSet( ImplGetPageBackgroundPropertyMap() ), mpSet( NULL ), mpDoc( pDoc )
{
if( pDoc )
{
StartListening( *pDoc );
mpSet = new SfxItemSet( pDoc->GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST );
if( pSet )
mpSet->Put(*pSet);
}
}
2000-09-18 11:07:07 -05:00
SdUnoPageBackground::~SdUnoPageBackground() throw()
{
if( mpDoc )
EndListening( *mpDoc );
2000-09-18 11:07:07 -05:00
if( mpSet )
delete mpSet;
}
void SdUnoPageBackground::Notify( SfxBroadcaster&, const SfxHint& rHint )
{
const SdrHint* pSdrHint = PTR_CAST( SdrHint, &rHint );
if( pSdrHint )
{
// delete item set if document is dying because then the pool
// will also die
if( pSdrHint->GetKind() == HINT_MODELCLEARED )
{
delete mpSet;
mpSet = NULL;
mpDoc = NULL;
}
}
}
void SdUnoPageBackground::fillItemSet( SdDrawDocument* pDoc, SfxItemSet& rSet ) throw()
2000-09-18 11:07:07 -05:00
{
rSet.ClearItem();
if( mpSet == NULL )
{
StartListening( *pDoc );
mpDoc = pDoc;
2000-09-18 11:07:07 -05:00
mpSet = new SfxItemSet( *rSet.GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST );
if( maPropSet.AreThereOwnUsrAnys() )
{
uno::Any* pAny;
const SfxItemPropertyMap* pMap = maPropSet.getPropertyMap();
while( pMap->pName )
{
pAny = maPropSet.GetUsrAnyForID( pMap->nWID );
if( pAny )
{
OUString aPropertyName( OUString::createFromAscii(pMap->pName));
setPropertyValue( aPropertyName, *pAny );
}
pMap++;
}
}
}
rSet.Put( *mpSet );
}
// XServiceInfo
OUString SAL_CALL SdUnoPageBackground::getImplementationName()
throw(uno::RuntimeException)
{
return OUString::createFromAscii( sUNO_SdUnoPageBackground );
}
sal_Bool SAL_CALL SdUnoPageBackground::supportsService( const OUString& ServiceName )
throw(uno::RuntimeException)
{
return SvxServiceInfoHelper::supportsService( ServiceName, getSupportedServiceNames() );
}
uno::Sequence< OUString > SAL_CALL SdUnoPageBackground::getSupportedServiceNames()
throw(uno::RuntimeException)
{
uno::Sequence< OUString > aNameSequence( 2 );
OUString* pStrings = aNameSequence.getArray();
2001-03-06 10:44:18 -06:00
*pStrings++ = OUString( RTL_CONSTASCII_USTRINGPARAM( sUNO_Service_PageBackground ) );
*pStrings = OUString( RTL_CONSTASCII_USTRINGPARAM( sUNO_Service_FillProperties ) );
2000-09-18 11:07:07 -05:00
return aNameSequence;
}
// XPropertySet
uno::Reference< beans::XPropertySetInfo > SAL_CALL SdUnoPageBackground::getPropertySetInfo()
throw(uno::RuntimeException)
{
return maPropSet.getPropertySetInfo();
}
void SAL_CALL SdUnoPageBackground::setPropertyValue( const OUString& aPropertyName, const uno::Any& aValue )
throw(beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
const SfxItemPropertyMap* pMap = getPropertyMapEntry( aPropertyName );
if( pMap == NULL )
{
throw beans::UnknownPropertyException();
}
else
{
if( mpSet )
{
if( pMap->nWID == OWN_ATTR_FILLBMP_MODE )
{
2001-02-26 08:27:47 -06:00
drawing::BitmapMode eMode;
if( aValue >>= eMode )
{
2001-02-26 08:27:47 -06:00
mpSet->Put( XFillBmpStretchItem( eMode == drawing::BitmapMode_STRETCH ) );
mpSet->Put( XFillBmpTileItem( eMode == drawing::BitmapMode_REPEAT ) );
return;
}
throw lang::IllegalArgumentException();
}
2000-09-18 11:07:07 -05:00
SfxItemPool& rPool = *mpSet->GetPool();
SfxItemSet aSet( rPool, pMap->nWID, pMap->nWID);
aSet.Put( *mpSet );
if( !aSet.Count() )
aSet.Put( rPool.GetDefaultItem( pMap->nWID ) );
if( pMap->nMemberId == MID_NAME && ( pMap->nWID == XATTR_FILLBITMAP || pMap->nWID == XATTR_FILLGRADIENT || pMap->nWID == XATTR_FILLHATCH || pMap->nWID == XATTR_FILLFLOATTRANSPARENCE ) )
{
OUString aName;
if(!(aValue >>= aName ))
throw lang::IllegalArgumentException();
SvxShape::SetFillAttribute( pMap->nWID, aName, aSet );
}
else
{
maPropSet.setPropertyValue( pMap, aValue, aSet );
}
2000-09-18 11:07:07 -05:00
mpSet->Put( aSet );
}
else
{
if(pMap && pMap->nWID)
maPropSet.setPropertyValue( pMap, aValue );
}
}
}
uno::Any SAL_CALL SdUnoPageBackground::getPropertyValue( const OUString& PropertyName )
throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
uno::Any aAny;
const SfxItemPropertyMap* pMap = getPropertyMapEntry(PropertyName);
if( pMap == NULL )
{
throw beans::UnknownPropertyException();
}
else
{
if( mpSet )
{
if( pMap->nWID == OWN_ATTR_FILLBMP_MODE )
{
XFillBmpStretchItem* pStretchItem = (XFillBmpStretchItem*)mpSet->GetItem(XATTR_FILLBMP_STRETCH);
XFillBmpTileItem* pTileItem = (XFillBmpTileItem*)mpSet->GetItem(XATTR_FILLBMP_TILE);
2000-09-18 11:07:07 -05:00
if( pStretchItem && pTileItem )
{
if( pTileItem->GetValue() )
2001-02-26 08:27:47 -06:00
aAny <<= drawing::BitmapMode_REPEAT;
else if( pStretchItem->GetValue() )
2001-02-26 08:27:47 -06:00
aAny <<= drawing::BitmapMode_STRETCH;
else
2001-02-26 08:27:47 -06:00
aAny <<= drawing::BitmapMode_NO_REPEAT;
}
}
else
{
SfxItemPool& rPool = *mpSet->GetPool();
SfxItemSet aSet( rPool, pMap->nWID, pMap->nWID);
aSet.Put( *mpSet );
2000-09-18 11:07:07 -05:00
if( !aSet.Count() )
aSet.Put( rPool.GetDefaultItem( pMap->nWID ) );
// Hole Wert aus ItemSet
aAny = maPropSet.getPropertyValue( pMap, aSet );
}
2000-09-18 11:07:07 -05:00
}
else
{
if(pMap && pMap->nWID)
aAny = maPropSet.getPropertyValue( pMap );
}
}
return aAny;
}
void SAL_CALL SdUnoPageBackground::addPropertyChangeListener( const OUString& , const uno::Reference< beans::XPropertyChangeListener >& ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) {}
void SAL_CALL SdUnoPageBackground::removePropertyChangeListener( const OUString& , const uno::Reference< beans::XPropertyChangeListener >& ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) {}
void SAL_CALL SdUnoPageBackground::addVetoableChangeListener( const OUString& , const uno::Reference< beans::XVetoableChangeListener >& ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) {}
void SAL_CALL SdUnoPageBackground::removeVetoableChangeListener( const OUString& , const uno::Reference< beans::XVetoableChangeListener >& ) throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException) {}
2000-09-18 11:07:07 -05:00
// XPropertyState
beans::PropertyState SAL_CALL SdUnoPageBackground::getPropertyState( const OUString& PropertyName )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
const SfxItemPropertyMap* pMap = getPropertyMapEntry(PropertyName);
if( pMap == NULL )
throw beans::UnknownPropertyException();
if( mpSet )
{
if( pMap->nWID == OWN_ATTR_FILLBMP_MODE )
{
if( mpSet->GetItemState( XATTR_FILLBMP_STRETCH, false ) == SFX_ITEM_SET ||
mpSet->GetItemState( XATTR_FILLBMP_TILE, false ) == SFX_ITEM_SET )
{
return beans::PropertyState_DIRECT_VALUE;
}
else
{
return beans::PropertyState_AMBIGUOUS_VALUE;
}
}
2000-09-18 11:07:07 -05:00
switch( mpSet->GetItemState( pMap->nWID, sal_False ) )
{
case SFX_ITEM_READONLY:
case SFX_ITEM_SET:
return beans::PropertyState_DIRECT_VALUE;
case SFX_ITEM_DEFAULT:
return beans::PropertyState_DEFAULT_VALUE;
default:
// case SFX_ITEM_DONTCARE:
// case SFX_ITEM_DISABLED:
return beans::PropertyState_AMBIGUOUS_VALUE;
}
}
else
{
if( NULL == maPropSet.GetUsrAnyForID(pMap->nWID) )
return beans::PropertyState_DEFAULT_VALUE;
else
return beans::PropertyState_DIRECT_VALUE;
}
}
uno::Sequence< beans::PropertyState > SAL_CALL SdUnoPageBackground::getPropertyStates( const uno::Sequence< OUString >& aPropertyName )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
sal_Int32 nCount = aPropertyName.getLength();
const OUString* pNames = aPropertyName.getConstArray();
uno::Sequence< beans::PropertyState > aPropertyStateSequence( nCount );
beans::PropertyState* pState = aPropertyStateSequence.getArray();
while( nCount-- )
*pState++ = getPropertyState( *pNames++ );
return aPropertyStateSequence;
}
void SAL_CALL SdUnoPageBackground::setPropertyToDefault( const OUString& PropertyName )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
const SfxItemPropertyMap* pMap = getPropertyMapEntry(PropertyName);
if( pMap == NULL )
throw beans::UnknownPropertyException();
if( mpSet )
{
if( pMap->nWID == OWN_ATTR_FILLBMP_MODE )
{
mpSet->ClearItem( XATTR_FILLBMP_STRETCH );
mpSet->ClearItem( XATTR_FILLBMP_TILE );
}
else
{
mpSet->ClearItem( pMap->nWID );
}
}
2000-09-18 11:07:07 -05:00
}
uno::Any SAL_CALL SdUnoPageBackground::getPropertyDefault( const OUString& aPropertyName )
throw(beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
const SfxItemPropertyMap* pMap = getPropertyMapEntry(aPropertyName);
if( pMap == NULL || mpSet == NULL )
throw beans::UnknownPropertyException();
uno::Any aAny;
if( mpSet )
{
if( pMap->nWID == OWN_ATTR_FILLBMP_MODE )
{
2001-02-26 08:33:16 -06:00
aAny <<= drawing::BitmapMode_REPEAT;
}
else
{
SfxItemPool& rPool = *mpSet->GetPool();
SfxItemSet aSet( rPool, pMap->nWID, pMap->nWID);
aSet.Put( rPool.GetDefaultItem( pMap->nWID ) );
2000-09-18 11:07:07 -05:00
aAny = maPropSet.getPropertyValue( pMap, aSet );
}
2000-09-18 11:07:07 -05:00
}
return aAny;
}
/** this is used because our property map is not sorted yet */
const SfxItemPropertyMap* SdUnoPageBackground::getPropertyMapEntry( const OUString& rPropertyName ) const throw()
{
const SfxItemPropertyMap *pMap = maPropSet.getPropertyMap();
while( pMap->pName )
{
if( rPropertyName.compareToAscii( pMap->pName ) == 0 )
return pMap;
++pMap;
}
return NULL;
}