xref: /AOO41X/main/svx/source/table/propertyset.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_svx.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include "propertyset.hxx"
32*cdf0e10cSrcweir 
33*cdf0e10cSrcweir using ::rtl::OUString;
34*cdf0e10cSrcweir using namespace ::com::sun::star::uno;
35*cdf0e10cSrcweir using namespace ::com::sun::star::beans;
36*cdf0e10cSrcweir using namespace ::com::sun::star::lang;
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir namespace comphelper {
39*cdf0e10cSrcweir 
40*cdf0e10cSrcweir // -----------------------------------------------------------------------------
41*cdf0e10cSrcweir // FastPropertySetInfo
42*cdf0e10cSrcweir // -----------------------------------------------------------------------------
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir FastPropertySetInfo::FastPropertySetInfo()
45*cdf0e10cSrcweir {
46*cdf0e10cSrcweir }
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir // -----------------------------------------------------------------------------
49*cdf0e10cSrcweir 
50*cdf0e10cSrcweir FastPropertySetInfo::FastPropertySetInfo( const PropertyVector& rProps )
51*cdf0e10cSrcweir {
52*cdf0e10cSrcweir 	addProperties( rProps );
53*cdf0e10cSrcweir }
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir // -----------------------------------------------------------------------------
56*cdf0e10cSrcweir 
57*cdf0e10cSrcweir FastPropertySetInfo::~FastPropertySetInfo()
58*cdf0e10cSrcweir {
59*cdf0e10cSrcweir }
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir // -----------------------------------------------------------------------------
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir void FastPropertySetInfo::addProperty( const Property& rProperty )
64*cdf0e10cSrcweir {
65*cdf0e10cSrcweir 	maProperties.push_back( rProperty );
66*cdf0e10cSrcweir 	maMap[ rProperty.Name ] = maProperties.size() - 1;
67*cdf0e10cSrcweir }
68*cdf0e10cSrcweir 
69*cdf0e10cSrcweir // -----------------------------------------------------------------------------
70*cdf0e10cSrcweir 
71*cdf0e10cSrcweir void FastPropertySetInfo::addProperties( const PropertyVector& rProps )
72*cdf0e10cSrcweir {
73*cdf0e10cSrcweir 	sal_uInt32 nIndex = maProperties.size();
74*cdf0e10cSrcweir 	sal_uInt32 nCount = rProps.size();
75*cdf0e10cSrcweir 	maProperties.resize( nIndex + nCount );
76*cdf0e10cSrcweir 	PropertyVector::const_iterator aIter( rProps.begin() );
77*cdf0e10cSrcweir 	while( nCount-- )
78*cdf0e10cSrcweir 	{
79*cdf0e10cSrcweir 		const Property& rProperty = (*aIter++);
80*cdf0e10cSrcweir 		maProperties[nIndex] = rProperty;
81*cdf0e10cSrcweir 		maMap[ rProperty.Name ] = nIndex++;
82*cdf0e10cSrcweir 	}
83*cdf0e10cSrcweir }
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir // -----------------------------------------------------------------------------
86*cdf0e10cSrcweir 
87*cdf0e10cSrcweir const Property& FastPropertySetInfo::getProperty( const OUString& aName ) throw (UnknownPropertyException )
88*cdf0e10cSrcweir {
89*cdf0e10cSrcweir 	PropertyMap::iterator aIter( maMap.find( aName ) );
90*cdf0e10cSrcweir 	if( aIter == maMap.end() )
91*cdf0e10cSrcweir 		throw UnknownPropertyException();
92*cdf0e10cSrcweir 	return maProperties[(*aIter).second];
93*cdf0e10cSrcweir }
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir // -----------------------------------------------------------------------------
96*cdf0e10cSrcweir 
97*cdf0e10cSrcweir const Property* FastPropertySetInfo::hasProperty( const OUString& aName )
98*cdf0e10cSrcweir {
99*cdf0e10cSrcweir 	PropertyMap::iterator aIter( maMap.find( aName ) );
100*cdf0e10cSrcweir 	if( aIter == maMap.end() )
101*cdf0e10cSrcweir 		return 0;
102*cdf0e10cSrcweir 	else
103*cdf0e10cSrcweir 		return &maProperties[(*aIter).second];
104*cdf0e10cSrcweir }
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir // -----------------------------------------------------------------------------
107*cdf0e10cSrcweir // XPropertySetInfo
108*cdf0e10cSrcweir // -----------------------------------------------------------------------------
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir Sequence< Property > SAL_CALL FastPropertySetInfo::getProperties() throw (RuntimeException)
111*cdf0e10cSrcweir {
112*cdf0e10cSrcweir 	return Sequence< Property >( &maProperties[0], maProperties.size() );
113*cdf0e10cSrcweir }
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir // -----------------------------------------------------------------------------
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir Property SAL_CALL FastPropertySetInfo::getPropertyByName( const OUString& aName ) throw (UnknownPropertyException, RuntimeException)
118*cdf0e10cSrcweir {
119*cdf0e10cSrcweir 	return getProperty( aName );
120*cdf0e10cSrcweir }
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir // -----------------------------------------------------------------------------
123*cdf0e10cSrcweir 
124*cdf0e10cSrcweir sal_Bool SAL_CALL FastPropertySetInfo::hasPropertyByName( const OUString& aName ) throw (RuntimeException)
125*cdf0e10cSrcweir {
126*cdf0e10cSrcweir 	return hasProperty( aName ) != 0 ? sal_True : sal_False;;
127*cdf0e10cSrcweir }
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir // -----------------------------------------------------------------------------
130*cdf0e10cSrcweir // FastPropertySet
131*cdf0e10cSrcweir // -----------------------------------------------------------------------------
132*cdf0e10cSrcweir 
133*cdf0e10cSrcweir FastPropertySet::FastPropertySet( const rtl::Reference< FastPropertySetInfo >& xInfo )
134*cdf0e10cSrcweir : mxInfo( xInfo )
135*cdf0e10cSrcweir {
136*cdf0e10cSrcweir }
137*cdf0e10cSrcweir 
138*cdf0e10cSrcweir // -----------------------------------------------------------------------------
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir FastPropertySet::~FastPropertySet()
141*cdf0e10cSrcweir {
142*cdf0e10cSrcweir }
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir // -----------------------------------------------------------------------------
145*cdf0e10cSrcweir // XPropertySet
146*cdf0e10cSrcweir // -----------------------------------------------------------------------------
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir Reference< XPropertySetInfo > SAL_CALL FastPropertySet::getPropertySetInfo(  ) throw (RuntimeException)
149*cdf0e10cSrcweir {
150*cdf0e10cSrcweir 	return Reference< XPropertySetInfo >( mxInfo.get() );
151*cdf0e10cSrcweir }
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir // -----------------------------------------------------------------------------
154*cdf0e10cSrcweir 
155*cdf0e10cSrcweir void SAL_CALL FastPropertySet::setPropertyValue( const OUString& aPropertyName, const Any& aValue ) throw (UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException)
156*cdf0e10cSrcweir {
157*cdf0e10cSrcweir 	setFastPropertyValue( mxInfo->getProperty( aPropertyName ).Handle, aValue );
158*cdf0e10cSrcweir }
159*cdf0e10cSrcweir 
160*cdf0e10cSrcweir // -----------------------------------------------------------------------------
161*cdf0e10cSrcweir 
162*cdf0e10cSrcweir Any SAL_CALL FastPropertySet::getPropertyValue( const OUString& aPropertyName ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
163*cdf0e10cSrcweir {
164*cdf0e10cSrcweir 	return getFastPropertyValue( mxInfo->getProperty( aPropertyName ).Handle );
165*cdf0e10cSrcweir }
166*cdf0e10cSrcweir 
167*cdf0e10cSrcweir // -----------------------------------------------------------------------------
168*cdf0e10cSrcweir 
169*cdf0e10cSrcweir void SAL_CALL FastPropertySet::addPropertyChangeListener( const OUString&, const Reference< XPropertyChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
170*cdf0e10cSrcweir {
171*cdf0e10cSrcweir }
172*cdf0e10cSrcweir 
173*cdf0e10cSrcweir // -----------------------------------------------------------------------------
174*cdf0e10cSrcweir 
175*cdf0e10cSrcweir void SAL_CALL FastPropertySet::removePropertyChangeListener( const OUString&, const Reference< XPropertyChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
176*cdf0e10cSrcweir {
177*cdf0e10cSrcweir }
178*cdf0e10cSrcweir 
179*cdf0e10cSrcweir // -----------------------------------------------------------------------------
180*cdf0e10cSrcweir 
181*cdf0e10cSrcweir void SAL_CALL FastPropertySet::addVetoableChangeListener( const OUString&, const Reference< XVetoableChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
182*cdf0e10cSrcweir {
183*cdf0e10cSrcweir }
184*cdf0e10cSrcweir 
185*cdf0e10cSrcweir // -----------------------------------------------------------------------------
186*cdf0e10cSrcweir 
187*cdf0e10cSrcweir void SAL_CALL FastPropertySet::removeVetoableChangeListener( const OUString&, const Reference< XVetoableChangeListener >& ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException)
188*cdf0e10cSrcweir {
189*cdf0e10cSrcweir }
190*cdf0e10cSrcweir 
191*cdf0e10cSrcweir // -----------------------------------------------------------------------------
192*cdf0e10cSrcweir // XMultiPropertySet
193*cdf0e10cSrcweir // -----------------------------------------------------------------------------
194*cdf0e10cSrcweir 
195*cdf0e10cSrcweir void SAL_CALL FastPropertySet::setPropertyValues( const Sequence< OUString >& aPropertyNames, const Sequence< Any >& aValues ) throw (PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException)
196*cdf0e10cSrcweir {
197*cdf0e10cSrcweir 	const OUString* pPropertyNames = aPropertyNames.getConstArray();
198*cdf0e10cSrcweir 	const Any* pValues = aValues.getConstArray();
199*cdf0e10cSrcweir 	sal_Int32 nCount = aPropertyNames.getLength();
200*cdf0e10cSrcweir 	if( nCount != aValues.getLength() )
201*cdf0e10cSrcweir 		throw IllegalArgumentException();
202*cdf0e10cSrcweir 
203*cdf0e10cSrcweir 	while( nCount-- )
204*cdf0e10cSrcweir 	{
205*cdf0e10cSrcweir 		const Property* pProperty = mxInfo->hasProperty( *pPropertyNames++ );
206*cdf0e10cSrcweir 		if( pProperty ) try
207*cdf0e10cSrcweir 		{
208*cdf0e10cSrcweir 			setFastPropertyValue( pProperty->Handle, *pValues );
209*cdf0e10cSrcweir 		}
210*cdf0e10cSrcweir 		catch( UnknownPropertyException& )
211*cdf0e10cSrcweir 		{
212*cdf0e10cSrcweir 		}
213*cdf0e10cSrcweir 		pValues++;
214*cdf0e10cSrcweir 	}
215*cdf0e10cSrcweir }
216*cdf0e10cSrcweir 
217*cdf0e10cSrcweir // -----------------------------------------------------------------------------
218*cdf0e10cSrcweir 
219*cdf0e10cSrcweir Sequence< Any > SAL_CALL FastPropertySet::getPropertyValues( const Sequence< OUString >& aPropertyNames ) throw (RuntimeException)
220*cdf0e10cSrcweir {
221*cdf0e10cSrcweir 	sal_Int32 nCount = aPropertyNames.getLength();
222*cdf0e10cSrcweir 	Sequence< Any > aValues( nCount );
223*cdf0e10cSrcweir 
224*cdf0e10cSrcweir 	const OUString* pPropertyNames = aPropertyNames.getConstArray();
225*cdf0e10cSrcweir 	Any* pValues = aValues.getArray();
226*cdf0e10cSrcweir 	while( nCount-- )
227*cdf0e10cSrcweir 	{
228*cdf0e10cSrcweir 		const Property* pProperty = mxInfo->hasProperty( *pPropertyNames++ );
229*cdf0e10cSrcweir 		if( pProperty ) try
230*cdf0e10cSrcweir 		{
231*cdf0e10cSrcweir 			*pValues = getFastPropertyValue( pProperty->Handle );
232*cdf0e10cSrcweir 		}
233*cdf0e10cSrcweir 		catch( UnknownPropertyException& )
234*cdf0e10cSrcweir 		{
235*cdf0e10cSrcweir 		}
236*cdf0e10cSrcweir 		pValues++;
237*cdf0e10cSrcweir 	}
238*cdf0e10cSrcweir 	return aValues;
239*cdf0e10cSrcweir }
240*cdf0e10cSrcweir 
241*cdf0e10cSrcweir // -----------------------------------------------------------------------------
242*cdf0e10cSrcweir 
243*cdf0e10cSrcweir void SAL_CALL FastPropertySet::addPropertiesChangeListener( const Sequence< OUString >&, const Reference< XPropertiesChangeListener >& ) throw (RuntimeException)
244*cdf0e10cSrcweir {
245*cdf0e10cSrcweir }
246*cdf0e10cSrcweir 
247*cdf0e10cSrcweir // -----------------------------------------------------------------------------
248*cdf0e10cSrcweir 
249*cdf0e10cSrcweir void SAL_CALL FastPropertySet::removePropertiesChangeListener( const Reference< XPropertiesChangeListener >& ) throw (RuntimeException)
250*cdf0e10cSrcweir {
251*cdf0e10cSrcweir }
252*cdf0e10cSrcweir 
253*cdf0e10cSrcweir // -----------------------------------------------------------------------------
254*cdf0e10cSrcweir 
255*cdf0e10cSrcweir void SAL_CALL FastPropertySet::firePropertiesChangeEvent( const Sequence< OUString >&, const Reference< XPropertiesChangeListener >& ) throw (RuntimeException)
256*cdf0e10cSrcweir {
257*cdf0e10cSrcweir }
258*cdf0e10cSrcweir 
259*cdf0e10cSrcweir }
260