LCOV - code coverage report
Current view: top level - svx/source/form - datalistener.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 23 0.0 %
Date: 2012-08-25 Functions: 0 9 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 6 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            :  /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : 
      30                 :            : #include "datalistener.hxx"
      31                 :            : #include "datanavi.hxx"
      32                 :            : 
      33                 :            : using namespace ::com::sun::star::container;
      34                 :            : using namespace ::com::sun::star::frame;
      35                 :            : using namespace ::com::sun::star::lang;
      36                 :            : using namespace ::com::sun::star::uno;
      37                 :            : using namespace ::com::sun::star::xml::dom::events;
      38                 :            : 
      39                 :            : //............................................................................
      40                 :            : namespace svxform
      41                 :            : {
      42                 :            : //............................................................................
      43                 :            : 
      44                 :          0 :     DataListener::DataListener( DataNavigatorWindow* pNaviWin ) :
      45                 :            : 
      46                 :          0 :         m_pNaviWin( pNaviWin )
      47                 :            : 
      48                 :            :     {
      49                 :            :         DBG_ASSERT( m_pNaviWin, "DataListener::Ctor(): no navigator win" );
      50                 :          0 :     }
      51                 :            : 
      52                 :          0 :     DataListener::~DataListener()
      53                 :            :     {
      54         [ #  # ]:          0 :     }
      55                 :            : 
      56                 :            :     // XContainerListener
      57                 :          0 :     void SAL_CALL DataListener::elementInserted( const ContainerEvent& /*Event*/ ) throw (RuntimeException)
      58                 :            :     {
      59                 :          0 :         m_pNaviWin->NotifyChanges();
      60                 :          0 :     }
      61                 :            : 
      62                 :          0 :     void SAL_CALL DataListener::elementRemoved( const ContainerEvent& /*Event*/ ) throw (RuntimeException)
      63                 :            :     {
      64                 :          0 :         m_pNaviWin->NotifyChanges();
      65                 :          0 :     }
      66                 :            : 
      67                 :          0 :     void SAL_CALL DataListener::elementReplaced( const ContainerEvent& /*Event*/ ) throw (RuntimeException)
      68                 :            :     {
      69                 :          0 :         m_pNaviWin->NotifyChanges();
      70                 :          0 :     }
      71                 :            : 
      72                 :            :     // XFrameActionListener
      73                 :          0 :     void SAL_CALL DataListener::frameAction( const FrameActionEvent& rActionEvt ) throw (RuntimeException)
      74                 :            :     {
      75 [ #  # ][ #  # ]:          0 :         if ( FrameAction_COMPONENT_ATTACHED == rActionEvt.Action ||
      76                 :            :              FrameAction_COMPONENT_REATTACHED == rActionEvt.Action )
      77                 :            :         {
      78                 :          0 :             m_pNaviWin->NotifyChanges( FrameAction_COMPONENT_REATTACHED == rActionEvt.Action );
      79                 :            :         }
      80                 :          0 :     }
      81                 :            : 
      82                 :            :     // xml::dom::events::XEventListener
      83                 :          0 :     void SAL_CALL DataListener::handleEvent( const Reference< XEvent >& /*evt*/ ) throw (RuntimeException)
      84                 :            :     {
      85                 :          0 :         m_pNaviWin->NotifyChanges();
      86                 :          0 :     }
      87                 :            : 
      88                 :            :     // lang::XEventListener
      89                 :          0 :     void SAL_CALL DataListener::disposing( const EventObject& /*Source*/ ) throw (RuntimeException)
      90                 :            :     {
      91                 :            :         SAL_WARN( "svx.form", "disposing" );
      92                 :          0 :     }
      93                 :            : 
      94                 :            : //............................................................................
      95                 :            : }   // namespace svxform
      96                 :            : //............................................................................
      97                 :            : 
      98                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10