Update ooo320-m1
[ooovba.git] / chart2 / source / controller / chartapiwrapper / WrappedSceneProperty.hxx
blob9007950ba1caa8ee7b4ca942c5a4a43aa55339e7
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: WrappedSceneProperty.hxx,v $
10 * $Revision: 1.3 $
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_WRAPPED_SCENE_PROPERTY_HXX
31 #define CHART_WRAPPED_SCENE_PROPERTY_HXX
33 #include "WrappedProperty.hxx"
34 #include "Chart2ModelContact.hxx"
36 #include <boost/shared_ptr.hpp>
37 #include <vector>
39 //.............................................................................
40 namespace chart
42 namespace wrapper
45 //-----------------------------------------------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------------------------------------------
49 class WrappedSceneProperty
51 public:
52 static void addWrappedProperties( std::vector< WrappedProperty* >& rList
53 , ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact );
56 //----------------------------------------------------------------------------------------------------------------------
57 //----------------------------------------------------------------------------------------------------------------------
58 //----------------------------------------------------------------------------------------------------------------------
60 class WrappedD3DTransformMatrixProperty : public WrappedProperty
62 public:
63 WrappedD3DTransformMatrixProperty(
64 ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact );
65 virtual ~WrappedD3DTransformMatrixProperty();
67 virtual void setPropertyValue( const ::com::sun::star::uno::Any& rOuterValue, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const
68 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);
70 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const
71 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
73 virtual ::com::sun::star::uno::Any getPropertyDefault( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyState >& xInnerPropertyState ) const
74 throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
76 private:
77 ::boost::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
80 } //namespace wrapper
81 } //namespace chart
82 //.............................................................................
84 // CHART_WRAPPED_SCENE_PROPERTY_HXX
85 #endif