1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 SC_CHARTRANGESELECTIONLISTENER_HXX
20 #define SC_CHARTRANGESELECTIONLISTENER_HXX
22 #include <cppuhelper/compbase2.hxx>
23 #include <comphelper/broadcasthelper.hxx>
24 #include <com/sun/star/view/XSelectionChangeListener.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
29 typedef ::cppu::WeakComponentImplHelper2
<
30 ::com::sun::star::view::XSelectionChangeListener
,
31 ::com::sun::star::lang::XServiceInfo
>
32 ScChartRangeSelectionListener_Base
;
34 class ScChartRangeSelectionListener
:
35 public comphelper::OBaseMutex
,
36 public ScChartRangeSelectionListener_Base
39 explicit ScChartRangeSelectionListener( ScTabViewShell
* pViewShell
);
40 virtual ~ScChartRangeSelectionListener();
43 // ____ XSelectionChangeListener ____
44 virtual void SAL_CALL
selectionChanged(
45 const ::com::sun::star::lang::EventObject
& aEvent
)
46 throw (::com::sun::star::uno::RuntimeException
);
48 // ____ XEventListener (base of XSelectionChangeListener) ____
49 virtual void SAL_CALL
disposing(
50 const ::com::sun::star::lang::EventObject
& Source
)
51 throw (::com::sun::star::uno::RuntimeException
);
53 // ____ WeakComponentImplHelperBase ____
54 // is called when dispose() is called at this component
55 virtual void SAL_CALL
disposing();
57 // ____ XServiceInfo ____
58 virtual OUString SAL_CALL
getImplementationName()
59 throw (::com::sun::star::uno::RuntimeException
);
60 virtual ::sal_Bool SAL_CALL
supportsService(
61 const OUString
& ServiceName
)
62 throw (::com::sun::star::uno::RuntimeException
);
63 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
64 throw (::com::sun::star::uno::RuntimeException
);
67 ScTabViewShell
* m_pViewShell
;
70 // SC_CHARTRANGESELECTIONLISTENER_HXX
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */