LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / TablePivotChart.hxx
blob2ba73530ad859c76e9a64c16ab97b3548a4c4883
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 #pragma once
12 #include <com/sun/star/table/XTablePivotChart.hpp>
13 #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
14 #include <com/sun/star/lang/XServiceInfo.hpp>
15 #include <com/sun/star/container/XNamed.hpp>
17 #include <svl/lstner.hxx>
18 #include <cppuhelper/basemutex.hxx>
19 #include <cppuhelper/compbase.hxx>
21 #include "types.hxx"
23 class ScDocShell;
25 namespace sc
28 typedef cppu::WeakComponentImplHelper<css::table::XTablePivotChart,
29 css::document::XEmbeddedObjectSupplier,
30 css::container::XNamed,
31 css::lang::XServiceInfo>
32 TablePivotChart_Base;
34 class TablePivotChart final : public cppu::BaseMutex,
35 public TablePivotChart_Base,
36 public SfxListener
38 private:
39 ScDocShell* m_pDocShell;
40 SCTAB m_nTab; // Charts are per sheet
41 OUString m_aChartName;
43 public:
44 TablePivotChart(ScDocShell* pDocShell, SCTAB nTab, OUString const & rName);
45 virtual ~TablePivotChart() override;
47 virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override;
49 // XComponent
50 using TablePivotChart_Base::disposing;
52 // XEmbeddedObjectSupplier
53 virtual css::uno::Reference<css::lang::XComponent> SAL_CALL
54 getEmbeddedObject() override;
56 // XNamed
57 virtual OUString SAL_CALL getName() override;
58 virtual void SAL_CALL setName(OUString const & aName) override;
60 // XTablePivotChart
61 virtual OUString SAL_CALL getPivotTableName() override;
63 // XServiceInfo
64 virtual OUString SAL_CALL getImplementationName() override;
65 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
66 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */