Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / ui / inc / ChartRangeSelectionListener.hxx
blobcdba0dbb00bbfeeddfe1b694f41145e826d7467a
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 .
19 #ifndef INCLUDED_SC_SOURCE_UI_INC_CHARTRANGESELECTIONLISTENER_HXX
20 #define INCLUDED_SC_SOURCE_UI_INC_CHARTRANGESELECTIONLISTENER_HXX
22 #include <cppuhelper/compbase.hxx>
23 #include <cppuhelper/basemutex.hxx>
24 #include <com/sun/star/view/XSelectionChangeListener.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
27 class ScTabViewShell;
29 typedef ::cppu::WeakComponentImplHelper<
30 css::view::XSelectionChangeListener,
31 css::lang::XServiceInfo >
32 ScChartRangeSelectionListener_Base;
34 class ScChartRangeSelectionListener :
35 public cppu::BaseMutex,
36 public ScChartRangeSelectionListener_Base
38 public:
39 explicit ScChartRangeSelectionListener( ScTabViewShell * pViewShell );
40 virtual ~ScChartRangeSelectionListener() override;
42 protected:
43 // ____ XSelectionChangeListener ____
44 virtual void SAL_CALL selectionChanged(
45 const css::lang::EventObject& aEvent ) override;
47 // ____ XEventListener (base of XSelectionChangeListener) ____
48 virtual void SAL_CALL disposing(
49 const css::lang::EventObject& Source ) override;
51 // ____ WeakComponentImplHelperBase ____
52 // is called when dispose() is called at this component
53 virtual void SAL_CALL disposing() override;
55 // ____ XServiceInfo ____
56 virtual OUString SAL_CALL getImplementationName() override;
57 virtual sal_Bool SAL_CALL supportsService(
58 const OUString& ServiceName ) override;
59 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
61 private:
62 ScTabViewShell * m_pViewShell;
65 // INCLUDED_SC_SOURCE_UI_INC_CHARTRANGESELECTIONLISTENER_HXX
66 #endif
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */