1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: WrappedProperty.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef CHART_WRAPPEDPROPERTY_HXX
31 #define CHART_WRAPPEDPROPERTY_HXX
33 #include <com/sun/star/beans/XPropertySet.hpp>
34 #include <com/sun/star/beans/XPropertyState.hpp>
35 #include "charttoolsdllapi.hxx"
39 //.............................................................................
42 //.............................................................................
44 class OOO_DLLPUBLIC_CHARTTOOLS WrappedProperty
46 /** The property visible to the outer PropertySet in the PropertySetWrapper may have a different name, type and value than
47 a corresponding property of the inner PropertySet. Use this class to do the conversion between the two.
50 WrappedProperty( const ::rtl::OUString
& rOuterName
, const ::rtl::OUString
& rInnerName
);
51 virtual ~WrappedProperty();
53 const ::rtl::OUString
& getOuterName() const;
54 virtual ::rtl::OUString
getInnerName() const;
56 virtual void setPropertyValue( const ::com::sun::star::uno::Any
& rOuterValue
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>& xInnerPropertySet
) const
57 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
);
59 virtual ::com::sun::star::uno::Any
getPropertyValue( const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>& xInnerPropertySet
) const
60 throw (::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
62 virtual void setPropertyToDefault( const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyState
>& xInnerPropertyState
) const
63 throw (::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::uno::RuntimeException
);
65 virtual ::com::sun::star::uno::Any
getPropertyDefault( const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyState
>& xInnerPropertyState
) const
66 throw (::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
68 virtual ::com::sun::star::beans::PropertyState
getPropertyState( const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyState
>& xInnerPropertyState
) const
69 throw (::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::uno::RuntimeException
);
72 virtual ::com::sun::star::uno::Any
convertInnerToOuterValue( const ::com::sun::star::uno::Any
& rInnerValue
) const;
73 virtual ::com::sun::star::uno::Any
convertOuterToInnerValue( const ::com::sun::star::uno::Any
& rOuterValue
) const;
76 ::rtl::OUString m_aOuterName
;
77 ::rtl::OUString m_aInnerName
;
80 //.............................................................................
82 typedef ::std::map
< sal_Int32
, const WrappedProperty
* > tWrappedPropertyMap
;
84 //.............................................................................
86 //.............................................................................
88 // CHART_WRAPPEDPROPERTY_HXX