2001-12-04 00:49:07 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 18:18:56 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -05:00
|
|
|
* $RCSfile: propertysetcontainer.hxx,v $
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -05:00
|
|
|
* $Revision: 1.3 $
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -05:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-09 00:18:56 $
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 18:18:56 -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
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -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.
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -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.
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
2005-09-08 18:18:56 -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
|
2001-12-04 00:49:07 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __FRAMEWORK_HELPER_PROPERTYSETCONTAINER_HXX_
|
|
|
|
#define __FRAMEWORK_HELPER_PROPERTYSETCONTAINER_HXX_
|
|
|
|
|
2003-03-25 11:22:13 -06:00
|
|
|
/** Attention: stl headers must(!) be included at first. Otherwhise it can make trouble
|
|
|
|
with solaris headers ...
|
|
|
|
*/
|
|
|
|
#include <vector>
|
|
|
|
|
2001-12-04 00:49:07 -06:00
|
|
|
#ifndef _CPPUHELPER_WEAK_HXX_
|
|
|
|
#include <cppuhelper/weak.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXCONTAINER_HPP_
|
|
|
|
#include <com/sun/star/container/XIndexContainer.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FRAMEWORK_THREADHELP_THREADHELPBASE_HXX_
|
|
|
|
#include <threadhelp/threadhelpbase.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace framework
|
|
|
|
{
|
|
|
|
|
|
|
|
class PropertySetContainer : public com::sun::star::container::XIndexContainer ,
|
|
|
|
public ThreadHelpBase , // Struct for right initalization of mutex member! Must be first of baseclasses.
|
|
|
|
public ::cppu::OWeakObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PropertySetContainer( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& );
|
|
|
|
virtual ~PropertySetContainer();
|
|
|
|
|
|
|
|
// XInterface
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType )
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL acquire() throw ();
|
|
|
|
virtual void SAL_CALL release() throw ();
|
|
|
|
|
|
|
|
// XIndexContainer
|
|
|
|
virtual void SAL_CALL insertByIndex( sal_Int32 Index, const ::com::sun::star::uno::Any& Element )
|
|
|
|
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual void SAL_CALL removeByIndex( sal_Int32 Index )
|
|
|
|
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XIndexReplace
|
|
|
|
virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const ::com::sun::star::uno::Any& Element )
|
|
|
|
throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XIndexAccess
|
|
|
|
virtual sal_Int32 SAL_CALL getCount()
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index )
|
|
|
|
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XElementAccess
|
|
|
|
virtual ::com::sun::star::uno::Type SAL_CALL getElementType()
|
|
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return ::getCppuType((com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet >*)0);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL hasElements()
|
|
|
|
throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > m_xServiceManager;
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef std::vector< com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > > PropertySetVector;
|
|
|
|
PropertySetVector m_aPropertySetVector;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __FRAMEWORK_CLASSES_PROPERTYSETCONTAINER_HXX_
|