fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / vba / vbachartobject.hxx
blob01dd37728d67fb8b8bceda0fddfd94868da9e19a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_SOURCE_UI_VBA_VBACHARTOBJECT_HXX
21 #define INCLUDED_SC_SOURCE_UI_VBA_VBACHARTOBJECT_HXX
23 #include <cppuhelper/implbase1.hxx>
24 #include <com/sun/star/uno/XComponentContext.hpp>
25 #include <com/sun/star/table/XTableChart.hpp>
26 #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
27 #include <com/sun/star/container/XNamed.hpp>
28 #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
29 #include <ooo/vba/excel/XChartObject.hpp>
30 #include <vbahelper/vbahelperinterface.hxx>
31 #include <memory>
33 typedef InheritedHelperInterfaceImpl1<ov::excel::XChartObject > ChartObjectImpl_BASE;
35 class ScVbaChartObject : public ChartObjectImpl_BASE
38 css::uno::Reference< css::table::XTableChart > xTableChart;
39 css::uno::Reference< css::document::XEmbeddedObjectSupplier > xEmbeddedObjectSupplier;
40 css::uno::Reference< css::beans::XPropertySet > xPropertySet;
41 css::uno::Reference< css::drawing::XDrawPageSupplier > xDrawPageSupplier;
42 css::uno::Reference< css::drawing::XDrawPage > xDrawPage;
43 css::uno::Reference< css::drawing::XShape > xShape;
44 css::uno::Reference< css::container::XNamed > xNamed;
45 OUString sPersistName;
46 std::unique_ptr<ov::ShapeHelper> oShapeHelper;
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, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
56 void Activate() throw ( css::script::BasicErrorException );
57 // XHelperInterface
58 virtual OUString getServiceImplName() SAL_OVERRIDE;
59 virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
62 #endif // INCLUDED_SC_SOURCE_UI_VBA_VBACHARTOBJECT_HXX
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */