Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / source / ui / inc / ChartRangeSelectionListener.hxx
blobe4f5c7d5a8224aa2e2a7f5c1d07f7f785f4f89ec
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 <comphelper/broadcasthelper.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 comphelper::OBaseMutex,
36 public ScChartRangeSelectionListener_Base
38 public:
39 explicit ScChartRangeSelectionListener( ScTabViewShell * pViewShell );
40 virtual ~ScChartRangeSelectionListener();
42 protected:
43 // ____ XSelectionChangeListener ____
44 virtual void SAL_CALL selectionChanged(
45 const css::lang::EventObject& aEvent )
46 throw (css::uno::RuntimeException, std::exception) override;
48 // ____ XEventListener (base of XSelectionChangeListener) ____
49 virtual void SAL_CALL disposing(
50 const css::lang::EventObject& Source )
51 throw (css::uno::RuntimeException, std::exception) override;
53 // ____ WeakComponentImplHelperBase ____
54 // is called when dispose() is called at this component
55 virtual void SAL_CALL disposing() override;
57 // ____ XServiceInfo ____
58 virtual OUString SAL_CALL getImplementationName()
59 throw (css::uno::RuntimeException, std::exception) override;
60 virtual sal_Bool SAL_CALL supportsService(
61 const OUString& ServiceName )
62 throw (css::uno::RuntimeException, std::exception) override;
63 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
64 throw (css::uno::RuntimeException, std::exception) override;
66 private:
67 ScTabViewShell * m_pViewShell;
70 // INCLUDED_SC_SOURCE_UI_INC_CHARTRANGESELECTIONLISTENER_HXX
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */