LOK: tilebench improvements
[LibreOffice.git] / sc / inc / TablePivotChart.hxx
blobdce05e711f86270458946270a8f550e59becfc58
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/.
8 */
10 #ifndef INCLUDED_SC_INC_TABLEPIVOTCHART_HXX
11 #define INCLUDED_SC_INC_TABLEPIVOTCHART_HXX
13 #include <com/sun/star/table/XTablePivotChart.hpp>
14 #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
15 #include <com/sun/star/lang/XServiceInfo.hpp>
16 #include <com/sun/star/container/XNamed.hpp>
18 #include <svl/lstner.hxx>
19 #include <cppuhelper/compbase.hxx>
20 #include <cppuhelper/implbase.hxx>
22 #include "types.hxx"
24 class ScDocShell;
26 namespace sc
29 typedef cppu::WeakComponentImplHelper<css::table::XTablePivotChart,
30 css::document::XEmbeddedObjectSupplier,
31 css::container::XNamed,
32 css::lang::XServiceInfo>
33 TablePivotChart_Base;
35 class TablePivotChart : public cppu::BaseMutex,
36 public TablePivotChart_Base,
37 public SfxListener
39 private:
40 ScDocShell* m_pDocShell;
41 SCTAB m_nTab; // Charts are per sheet
42 OUString m_aChartName;
44 public:
45 TablePivotChart(ScDocShell* pDocShell, SCTAB nTab, OUString const & rName);
46 virtual ~TablePivotChart() override;
48 virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override;
50 // XComponent
51 using TablePivotChart_Base::disposing;
53 // XEmbeddedObjectSupplier
54 virtual css::uno::Reference<css::lang::XComponent> SAL_CALL
55 getEmbeddedObject() override;
57 // XNamed
58 virtual OUString SAL_CALL getName() override;
59 virtual void SAL_CALL setName(OUString const & aName) override;
61 // XTablePivotChart
62 virtual OUString SAL_CALL getPivotTableName() override;
64 // XServiceInfo
65 virtual OUString SAL_CALL getImplementationName() override;
66 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
67 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
72 #endif
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */