Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include "ChartRangeSelectionListener.hxx"
22 :
23 : #include <com/sun/star/chart2/data/XRangeHighlighter.hpp>
24 :
25 : #include <sfx2/viewfrm.hxx>
26 : #include "tabvwsh.hxx"
27 : #include "unonames.hxx"
28 : #include "miscuno.hxx"
29 :
30 : using namespace ::com::sun::star;
31 :
32 : using ::com::sun::star::uno::Reference;
33 : using ::com::sun::star::uno::Sequence;
34 : using ::rtl::OUString;
35 :
36 0 : SC_SIMPLE_SERVICE_INFO( ScChartRangeSelectionListener, "ScChartRangeSelectionListener",
37 : SC_SERVICENAME_CHRANGEHILIGHT )
38 :
39 0 : ScChartRangeSelectionListener::ScChartRangeSelectionListener( ScTabViewShell * pViewShell ) :
40 : ScChartRangeSelectionListener_Base( m_aMutex ),
41 0 : m_pViewShell( pViewShell )
42 0 : {}
43 :
44 0 : ScChartRangeSelectionListener::~ScChartRangeSelectionListener()
45 0 : {}
46 :
47 : // ____ XModifyListener ____
48 0 : void SAL_CALL ScChartRangeSelectionListener::selectionChanged( const lang::EventObject& aEvent )
49 : throw (uno::RuntimeException)
50 : {
51 0 : Reference< chart2::data::XRangeHighlighter > xRangeHighlighter( aEvent.Source, uno::UNO_QUERY );
52 0 : if( xRangeHighlighter.is())
53 : {
54 0 : Sequence< chart2::data::HighlightedRange > aRanges( xRangeHighlighter->getSelectedRanges());
55 :
56 : // search the view on which the chart is active
57 :
58 0 : if( m_pViewShell )
59 : {
60 0 : m_pViewShell->DoChartSelection( aRanges );
61 0 : }
62 0 : }
63 0 : }
64 :
65 : // ____ XEventListener ____
66 0 : void SAL_CALL ScChartRangeSelectionListener::disposing( const lang::EventObject& /*Source*/ )
67 : throw (uno::RuntimeException)
68 : {
69 0 : }
70 :
71 : // ____ WeakComponentImplHelperBase ____
72 0 : void SAL_CALL ScChartRangeSelectionListener::disposing()
73 : {
74 0 : m_pViewShell = 0;
75 15 : }
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|