merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / inc / WrappedProperty.hxx
blob91a4b40fd2c97c6e0b0795deebe16a61d5588f16
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef CHART_WRAPPEDPROPERTY_HXX
28 #define CHART_WRAPPEDPROPERTY_HXX
30 #include <com/sun/star/beans/XPropertySet.hpp>
31 #include <com/sun/star/beans/XPropertyState.hpp>
32 #include "charttoolsdllapi.hxx"
34 #include <map>
36 //.............................................................................
37 namespace chart
39 //.............................................................................
41 class OOO_DLLPUBLIC_CHARTTOOLS WrappedProperty
43 /** The property visible to the outer PropertySet in the PropertySetWrapper may have a different name, type and value than
44 a corresponding property of the inner PropertySet. Use this class to do the conversion between the two.
46 public:
47 WrappedProperty( const ::rtl::OUString& rOuterName, const ::rtl::OUString& rInnerName );
48 virtual ~WrappedProperty();
50 const ::rtl::OUString& getOuterName() const;
51 virtual ::rtl::OUString getInnerName() const;
53 virtual void setPropertyValue( const ::com::sun::star::uno::Any& rOuterValue, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const
54 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
56 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const
57 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
59 virtual void setPropertyToDefault( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState >& xInnerPropertyState ) const
60 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException);
62 virtual ::com::sun::star::uno::Any getPropertyDefault( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState >& xInnerPropertyState ) const
63 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
65 virtual ::com::sun::star::beans::PropertyState getPropertyState( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState >& xInnerPropertyState ) const
66 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException);
68 protected:
69 virtual ::com::sun::star::uno::Any convertInnerToOuterValue( const ::com::sun::star::uno::Any& rInnerValue ) const;
70 virtual ::com::sun::star::uno::Any convertOuterToInnerValue( const ::com::sun::star::uno::Any& rOuterValue ) const;
72 protected:
73 ::rtl::OUString m_aOuterName;
74 ::rtl::OUString m_aInnerName;
77 //.............................................................................
79 typedef ::std::map< sal_Int32, const WrappedProperty* > tWrappedPropertyMap;
81 //.............................................................................
82 } //namespace chart
83 //.............................................................................
85 // CHART_WRAPPEDPROPERTY_HXX
86 #endif