Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef SC_VBA_CHARTOBJECT_HXX
20 : #define SC_VBA_CHARTOBJECT_HXX
21 : #include <cppuhelper/implbase1.hxx>
22 : #include <com/sun/star/uno/XComponentContext.hpp>
23 : #include <com/sun/star/table/XTableChart.hpp>
24 : #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
25 : #include <com/sun/star/container/XNamed.hpp>
26 : #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
27 : #include <ooo/vba/excel/XChartObject.hpp>
28 : #include <vbahelper/vbahelperinterface.hxx>
29 : #include <memory>
30 :
31 : typedef InheritedHelperInterfaceImpl1<ov::excel::XChartObject > ChartObjectImpl_BASE;
32 :
33 0 : class ScVbaChartObject : public ChartObjectImpl_BASE
34 : {
35 :
36 : css::uno::Reference< css::table::XTableChart > xTableChart;
37 : css::uno::Reference< css::document::XEmbeddedObjectSupplier > xEmbeddedObjectSupplier;
38 : css::uno::Reference< css::beans::XPropertySet > xPropertySet;
39 : css::uno::Reference< css::drawing::XDrawPageSupplier > xDrawPageSupplier;
40 : css::uno::Reference< css::drawing::XDrawPage > xDrawPage;
41 : css::uno::Reference< css::drawing::XShape > xShape;
42 : css::uno::Reference< css::container::XNamed > xNamed;
43 : OUString sPersistName;
44 : SAL_WNODEPRECATED_DECLARATIONS_PUSH
45 : std::auto_ptr<ov::ShapeHelper> oShapeHelper;
46 : SAL_WNODEPRECATED_DECLARATIONS_POP
47 : css::uno::Reference< css::container::XNamed > xNamedShape;
48 : OUString getPersistName();
49 : css::uno::Reference< css::drawing::XShape > setShape() throw ( css::script::BasicErrorException );
50 : public:
51 : ScVbaChartObject( const css::uno::Reference< ov::XHelperInterface >& _xParent, const css::uno::Reference< css::uno::XComponentContext >& _xContext, const css::uno::Reference< css::table::XTableChart >& _xTableChart, const css::uno::Reference< css::drawing::XDrawPageSupplier >& _xDrawPageSupplier );
52 : virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
53 : virtual void SAL_CALL setName( const OUString& sName ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
54 : virtual css::uno::Reference< ov::excel::XChart > SAL_CALL getChart() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
55 : virtual void SAL_CALL Delete() throw ( css::script::BasicErrorException, std::exception ) SAL_OVERRIDE;
56 : virtual void Activate() throw ( css::script::BasicErrorException );
57 : // XHelperInterface
58 : virtual OUString getServiceImplName() SAL_OVERRIDE;
59 : virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
60 : };
61 :
62 : #endif //SC_VBA_WINDOW_HXX
63 :
64 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|