LCOV - code coverage report
Current view: top level - sc/source/ui/unoobj - ChartRangeSelectionListener.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 1 20 5.0 %
Date: 2014-04-11 Functions: 2 11 18.2 %
Legend: Lines: hit not hit

          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             : 
      35           0 : SC_SIMPLE_SERVICE_INFO( ScChartRangeSelectionListener, "ScChartRangeSelectionListener",
      36             :                         SC_SERVICENAME_CHRANGEHILIGHT )
      37             : 
      38           0 : ScChartRangeSelectionListener::ScChartRangeSelectionListener( ScTabViewShell * pViewShell ) :
      39             :         ScChartRangeSelectionListener_Base( m_aMutex ),
      40           0 :         m_pViewShell( pViewShell )
      41           0 : {}
      42             : 
      43           0 : ScChartRangeSelectionListener::~ScChartRangeSelectionListener()
      44           0 : {}
      45             : 
      46             : // ____ XModifyListener ____
      47           0 : void SAL_CALL ScChartRangeSelectionListener::selectionChanged( const lang::EventObject& aEvent )
      48             :     throw (uno::RuntimeException, std::exception)
      49             : {
      50           0 :     Reference< chart2::data::XRangeHighlighter > xRangeHighlighter( aEvent.Source, uno::UNO_QUERY );
      51           0 :     if( xRangeHighlighter.is())
      52             :     {
      53           0 :         Sequence< chart2::data::HighlightedRange > aRanges( xRangeHighlighter->getSelectedRanges());
      54             : 
      55             :         // search the view on which the chart is active
      56             : 
      57           0 :         if( m_pViewShell )
      58             :         {
      59           0 :             m_pViewShell->DoChartSelection( aRanges );
      60           0 :         }
      61           0 :     }
      62           0 : }
      63             : 
      64             : // ____ XEventListener ____
      65           0 : void SAL_CALL ScChartRangeSelectionListener::disposing( const lang::EventObject& /*Source*/ )
      66             :     throw (uno::RuntimeException, std::exception)
      67             : {
      68           0 : }
      69             : 
      70             : // ____ WeakComponentImplHelperBase ____
      71           0 : void SAL_CALL ScChartRangeSelectionListener::disposing()
      72             : {
      73           0 :     m_pViewShell = 0;
      74         102 : }
      75             : 
      76             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10