1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir #ifndef CHART_DIAGRAMWRAPPER_HXX 28*cdf0e10cSrcweir #define CHART_DIAGRAMWRAPPER_HXX 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir #include "WrappedPropertySet.hxx" 31*cdf0e10cSrcweir #include "ServiceMacros.hxx" 32*cdf0e10cSrcweir #include "DiagramHelper.hxx" 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir #if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13) 35*cdf0e10cSrcweir #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13 36*cdf0e10cSrcweir #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 13 37*cdf0e10cSrcweir #include "comphelper/implbase_var.hxx" 38*cdf0e10cSrcweir #endif 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir #include <comphelper/uno3.hxx> 41*cdf0e10cSrcweir #include <cppuhelper/interfacecontainer.hxx> 42*cdf0e10cSrcweir #include <com/sun/star/chart2/XChartDocument.hpp> 43*cdf0e10cSrcweir #include <com/sun/star/chart2/XDiagram.hpp> 44*cdf0e10cSrcweir #include <com/sun/star/uno/XComponentContext.hpp> 45*cdf0e10cSrcweir #include <com/sun/star/chart/XDiagramPositioning.hpp> 46*cdf0e10cSrcweir #include <com/sun/star/chart2/XDiagramProvider.hpp> 47*cdf0e10cSrcweir #include <com/sun/star/chart2/XChartTypeTemplate.hpp> 48*cdf0e10cSrcweir #include <com/sun/star/chart2/XChartTypeManager.hpp> 49*cdf0e10cSrcweir #include <com/sun/star/chart/XDiagram.hpp> 50*cdf0e10cSrcweir #include <com/sun/star/chart/XAxisSupplier.hpp> 51*cdf0e10cSrcweir #include <com/sun/star/chart/XAxisZSupplier.hpp> 52*cdf0e10cSrcweir #include <com/sun/star/chart/XTwoAxisXSupplier.hpp> 53*cdf0e10cSrcweir #include <com/sun/star/chart/XTwoAxisYSupplier.hpp> 54*cdf0e10cSrcweir #include <com/sun/star/chart/XStatisticDisplay.hpp> 55*cdf0e10cSrcweir #include <com/sun/star/chart/X3DDisplay.hpp> 56*cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp> 57*cdf0e10cSrcweir #include <com/sun/star/lang/XComponent.hpp> 58*cdf0e10cSrcweir #include <com/sun/star/lang/XEventListener.hpp> 59*cdf0e10cSrcweir #include <com/sun/star/chart/XSecondAxisTitleSupplier.hpp> 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir #include <com/sun/star/chart/X3DDefaultSetter.hpp> 62*cdf0e10cSrcweir #include <boost/shared_ptr.hpp> 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir namespace chart 65*cdf0e10cSrcweir { 66*cdf0e10cSrcweir namespace wrapper 67*cdf0e10cSrcweir { 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir class Chart2ModelContact; 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir class DiagramWrapper : public ::comphelper::ImplInheritanceHelper13< 72*cdf0e10cSrcweir WrappedPropertySet 73*cdf0e10cSrcweir , ::com::sun::star::chart::XDiagram 74*cdf0e10cSrcweir , ::com::sun::star::chart::XAxisSupplier 75*cdf0e10cSrcweir , ::com::sun::star::chart::XAxisZSupplier 76*cdf0e10cSrcweir , ::com::sun::star::chart::XTwoAxisXSupplier // : XAxisXSupplier 77*cdf0e10cSrcweir , ::com::sun::star::chart::XTwoAxisYSupplier // : XAxisYSupplier 78*cdf0e10cSrcweir , ::com::sun::star::chart::XStatisticDisplay 79*cdf0e10cSrcweir , ::com::sun::star::chart::X3DDisplay 80*cdf0e10cSrcweir , ::com::sun::star::chart::X3DDefaultSetter 81*cdf0e10cSrcweir , ::com::sun::star::lang::XServiceInfo 82*cdf0e10cSrcweir , ::com::sun::star::lang::XComponent 83*cdf0e10cSrcweir // , ::com::sun::star::lang::XEventListener 84*cdf0e10cSrcweir , ::com::sun::star::chart::XDiagramPositioning 85*cdf0e10cSrcweir , ::com::sun::star::chart2::XDiagramProvider 86*cdf0e10cSrcweir , ::com::sun::star::chart::XSecondAxisTitleSupplier 87*cdf0e10cSrcweir > 88*cdf0e10cSrcweir { 89*cdf0e10cSrcweir public: 90*cdf0e10cSrcweir DiagramWrapper( ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact ); 91*cdf0e10cSrcweir virtual ~DiagramWrapper(); 92*cdf0e10cSrcweir 93*cdf0e10cSrcweir /// XServiceInfo declarations 94*cdf0e10cSrcweir APPHELPER_XSERVICEINFO_DECL() 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir // ____ XComponent ____ 97*cdf0e10cSrcweir virtual void SAL_CALL dispose() 98*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 99*cdf0e10cSrcweir virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< 100*cdf0e10cSrcweir ::com::sun::star::lang::XEventListener >& xListener ) 101*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 102*cdf0e10cSrcweir virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< 103*cdf0e10cSrcweir ::com::sun::star::lang::XEventListener >& aListener ) 104*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir // ____ XDiagram ____ 107*cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getDiagramType() 108*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 109*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 110*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getDataRowProperties( sal_Int32 nRow ) 111*cdf0e10cSrcweir throw (::com::sun::star::lang::IndexOutOfBoundsException, 112*cdf0e10cSrcweir ::com::sun::star::uno::RuntimeException); 113*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 114*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getDataPointProperties( sal_Int32 nCol, sal_Int32 nRow ) 115*cdf0e10cSrcweir throw (::com::sun::star::lang::IndexOutOfBoundsException, 116*cdf0e10cSrcweir ::com::sun::star::uno::RuntimeException); 117*cdf0e10cSrcweir 118*cdf0e10cSrcweir // ____ XShape (base of XDiagram) ____ 119*cdf0e10cSrcweir virtual ::com::sun::star::awt::Point SAL_CALL getPosition() 120*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 121*cdf0e10cSrcweir virtual void SAL_CALL setPosition( const ::com::sun::star::awt::Point& aPosition ) 122*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 123*cdf0e10cSrcweir virtual ::com::sun::star::awt::Size SAL_CALL getSize() 124*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 125*cdf0e10cSrcweir virtual void SAL_CALL setSize( const ::com::sun::star::awt::Size& aSize ) 126*cdf0e10cSrcweir throw (::com::sun::star::beans::PropertyVetoException, 127*cdf0e10cSrcweir ::com::sun::star::uno::RuntimeException); 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir // ____ XShapeDescriptor (base of XShape) ____ 130*cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getShapeType() 131*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir // ____ XAxisSupplier ____ 134*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 135*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > SAL_CALL getAxis( sal_Int32 nDimensionIndex ) 136*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 137*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 138*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > SAL_CALL getSecondaryAxis( sal_Int32 nDimensionIndex ) 139*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 140*cdf0e10cSrcweir 141*cdf0e10cSrcweir // ____ XAxisZSupplier ____ 142*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 143*cdf0e10cSrcweir ::com::sun::star::drawing::XShape > SAL_CALL getZAxisTitle() 144*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 145*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 146*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getZMainGrid() 147*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 148*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 149*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getZHelpGrid() 150*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 151*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 152*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getZAxis() 153*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir // ____ XTwoAxisXSupplier ____ 156*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 157*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getSecondaryXAxis() 158*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 159*cdf0e10cSrcweir 160*cdf0e10cSrcweir // ____ XAxisXSupplier (base of XTwoAxisXSupplier) ____ 161*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 162*cdf0e10cSrcweir ::com::sun::star::drawing::XShape > SAL_CALL getXAxisTitle() 163*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 164*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 165*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getXAxis() 166*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 167*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 168*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getXMainGrid() 169*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 170*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 171*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getXHelpGrid() 172*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir // ____ XTwoAxisYSupplier ____ 175*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 176*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getSecondaryYAxis() 177*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir // ____ XAxisYSupplier (base of XTwoAxisYSupplier) ____ 180*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 181*cdf0e10cSrcweir ::com::sun::star::drawing::XShape > SAL_CALL getYAxisTitle() 182*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 183*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 184*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getYAxis() 185*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 186*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 187*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getYHelpGrid() 188*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 189*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 190*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getYMainGrid() 191*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir // ____ XSecondAxisTitleSupplier ____ 194*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 195*cdf0e10cSrcweir ::com::sun::star::drawing::XShape > SAL_CALL getSecondXAxisTitle() 196*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 197*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 198*cdf0e10cSrcweir ::com::sun::star::drawing::XShape > SAL_CALL getSecondYAxisTitle() 199*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 200*cdf0e10cSrcweir 201*cdf0e10cSrcweir // ____ XStatisticDisplay ____ 202*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 203*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getUpBar() 204*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 205*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 206*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getDownBar() 207*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 208*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 209*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getMinMaxLine() 210*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 211*cdf0e10cSrcweir 212*cdf0e10cSrcweir // ____ X3DDisplay ____ 213*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 214*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getWall() 215*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 216*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 217*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > SAL_CALL getFloor() 218*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 219*cdf0e10cSrcweir 220*cdf0e10cSrcweir // ____ X3DDefaultSetter ____ 221*cdf0e10cSrcweir virtual void SAL_CALL set3DSettingsToDefault() throw (::com::sun::star::uno::RuntimeException); 222*cdf0e10cSrcweir virtual void SAL_CALL setDefaultRotation() throw (::com::sun::star::uno::RuntimeException); 223*cdf0e10cSrcweir virtual void SAL_CALL setDefaultIllumination() throw (::com::sun::star::uno::RuntimeException); 224*cdf0e10cSrcweir 225*cdf0e10cSrcweir // // ____ XEventListener ____ 226*cdf0e10cSrcweir // virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) 227*cdf0e10cSrcweir // throw (::com::sun::star::uno::RuntimeException); 228*cdf0e10cSrcweir 229*cdf0e10cSrcweir // ____ XDiagramPositioning ____ 230*cdf0e10cSrcweir 231*cdf0e10cSrcweir virtual void SAL_CALL setAutomaticDiagramPositioning( ) throw (::com::sun::star::uno::RuntimeException); 232*cdf0e10cSrcweir virtual ::sal_Bool SAL_CALL isAutomaticDiagramPositioning( ) throw (::com::sun::star::uno::RuntimeException); 233*cdf0e10cSrcweir virtual void SAL_CALL setDiagramPositionExcludingAxes( const ::com::sun::star::awt::Rectangle& PositionRect ) throw (::com::sun::star::uno::RuntimeException); 234*cdf0e10cSrcweir virtual ::sal_Bool SAL_CALL isExcludingDiagramPositioning( ) throw (::com::sun::star::uno::RuntimeException); 235*cdf0e10cSrcweir virtual ::com::sun::star::awt::Rectangle SAL_CALL calculateDiagramPositionExcludingAxes( ) throw (::com::sun::star::uno::RuntimeException); 236*cdf0e10cSrcweir virtual void SAL_CALL setDiagramPositionIncludingAxes( const ::com::sun::star::awt::Rectangle& PositionRect ) throw (::com::sun::star::uno::RuntimeException); 237*cdf0e10cSrcweir virtual ::com::sun::star::awt::Rectangle SAL_CALL calculateDiagramPositionIncludingAxes( ) throw (::com::sun::star::uno::RuntimeException); 238*cdf0e10cSrcweir virtual void SAL_CALL setDiagramPositionIncludingAxesAndAxisTitles( const ::com::sun::star::awt::Rectangle& PositionRect ) throw (::com::sun::star::uno::RuntimeException); 239*cdf0e10cSrcweir virtual ::com::sun::star::awt::Rectangle SAL_CALL calculateDiagramPositionIncludingAxesAndAxisTitles( ) throw (::com::sun::star::uno::RuntimeException); 240*cdf0e10cSrcweir 241*cdf0e10cSrcweir // ____ XDiagramProvider ____ 242*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< 243*cdf0e10cSrcweir ::com::sun::star::chart2::XDiagram > SAL_CALL getDiagram() 244*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 245*cdf0e10cSrcweir virtual void SAL_CALL setDiagram( const ::com::sun::star::uno::Reference< 246*cdf0e10cSrcweir ::com::sun::star::chart2::XDiagram >& xDiagram ) 247*cdf0e10cSrcweir throw (::com::sun::star::uno::RuntimeException); 248*cdf0e10cSrcweir 249*cdf0e10cSrcweir protected: 250*cdf0e10cSrcweir // ____ WrappedPropertySet ____ 251*cdf0e10cSrcweir virtual const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& getPropertySequence(); 252*cdf0e10cSrcweir virtual const std::vector< WrappedProperty* > createWrappedProperties(); 253*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getInnerPropertySet(); 254*cdf0e10cSrcweir 255*cdf0e10cSrcweir private: 256*cdf0e10cSrcweir void updateFromModel(); 257*cdf0e10cSrcweir 258*cdf0e10cSrcweir ::boost::shared_ptr< Chart2ModelContact > m_spChart2ModelContact; 259*cdf0e10cSrcweir ::cppu::OInterfaceContainerHelper m_aEventListenerContainer; 260*cdf0e10cSrcweir 261*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 262*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > m_xXAxis; 263*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 264*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > m_xYAxis; 265*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 266*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > m_xZAxis; 267*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 268*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > m_xSecondXAxis; 269*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 270*cdf0e10cSrcweir ::com::sun::star::chart::XAxis > m_xSecondYAxis; 271*cdf0e10cSrcweir 272*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 273*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > m_xWall; 274*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 275*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > m_xFloor; 276*cdf0e10cSrcweir 277*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 278*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > m_xMinMaxLineWrapper; 279*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 280*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > m_xUpBarWrapper; 281*cdf0e10cSrcweir ::com::sun::star::uno::Reference< 282*cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet > m_xDownBarWrapper; 283*cdf0e10cSrcweir }; 284*cdf0e10cSrcweir 285*cdf0e10cSrcweir } // namespace wrapper 286*cdf0e10cSrcweir } // namespace chart 287*cdf0e10cSrcweir 288*cdf0e10cSrcweir // CHART_DIAGRAMWRAPPER_HXX 289*cdf0e10cSrcweir #endif 290