1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 #ifndef CHART_WRAPPED_ADDIN_PROPERTY_HXX 24 #define CHART_WRAPPED_ADDIN_PROPERTY_HXX 25 26 #include "WrappedProperty.hxx" 27 #include "ChartDocumentWrapper.hxx" 28 29 //............................................................................. 30 namespace chart 31 { 32 //............................................................................. 33 namespace wrapper 34 { 35 36 class WrappedAddInProperty : public WrappedProperty 37 { 38 public: 39 WrappedAddInProperty( ChartDocumentWrapper& rChartDocumentWrapper ); 40 virtual ~WrappedAddInProperty(); 41 42 virtual void setPropertyValue( const ::com::sun::star::uno::Any& rOuterValue, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 43 44 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 45 46 private: 47 ChartDocumentWrapper& m_rChartDocumentWrapper; 48 }; 49 50 class WrappedBaseDiagramProperty : public WrappedProperty 51 { 52 public: 53 WrappedBaseDiagramProperty( ChartDocumentWrapper& rChartDocumentWrapper ); 54 virtual ~WrappedBaseDiagramProperty(); 55 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 58 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 59 60 private: 61 ChartDocumentWrapper& m_rChartDocumentWrapper; 62 }; 63 64 class WrappedAdditionalShapesProperty : public WrappedProperty 65 { 66 public: 67 WrappedAdditionalShapesProperty( ChartDocumentWrapper& rChartDocumentWrapper ); 68 virtual ~WrappedAdditionalShapesProperty(); 69 70 virtual void setPropertyValue( const ::com::sun::star::uno::Any& rOuterValue, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 71 72 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 73 74 private: 75 ChartDocumentWrapper& m_rChartDocumentWrapper; 76 }; 77 78 class WrappedRefreshAddInAllowedProperty : public WrappedProperty 79 { 80 public: 81 WrappedRefreshAddInAllowedProperty( ChartDocumentWrapper& rChartDocumentWrapper ); 82 virtual ~WrappedRefreshAddInAllowedProperty(); 83 84 virtual void setPropertyValue( const ::com::sun::star::uno::Any& rOuterValue, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 85 86 virtual ::com::sun::star::uno::Any getPropertyValue( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xInnerPropertySet ) const; 87 88 private: 89 ChartDocumentWrapper& m_rChartDocumentWrapper; 90 }; 91 92 } 93 94 //............................................................................. 95 } //namespace chart 96 //............................................................................. 97 98 // CHART_WRAPPED_ADDIN_PROPERTY_HXX 99 #endif 100