LCOV - code coverage report
Current view: top level - sd/source/ui/slidesorter/controller - SlsTransferable.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 23 0.0 %
Date: 2012-08-25 Functions: 0 6 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 26 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 "controller/SlsTransferable.hxx"
      31                 :            : 
      32                 :            : #include "SlideSorterViewShell.hxx"
      33                 :            : #include "View.hxx"
      34                 :            : 
      35                 :            : namespace sd { namespace slidesorter { namespace controller {
      36                 :            : 
      37                 :          0 : Transferable::Transferable (
      38                 :            :     SdDrawDocument* pSrcDoc,
      39                 :            :     ::sd::View* pWorkView,
      40                 :            :     sal_Bool bInitOnGetData,
      41                 :            :     SlideSorterViewShell* pViewShell,
      42                 :            :     const ::std::vector<Representative>& rRepresentatives)
      43                 :            :     : SdTransferable (pSrcDoc, pWorkView, bInitOnGetData),
      44                 :            :       mpViewShell(pViewShell),
      45         [ #  # ]:          0 :       maRepresentatives(rRepresentatives)
      46                 :            : {
      47         [ #  # ]:          0 :     if (mpViewShell != NULL)
      48         [ #  # ]:          0 :         StartListening(*mpViewShell);
      49                 :          0 : }
      50                 :            : 
      51                 :            : 
      52                 :            : 
      53                 :            : 
      54                 :          0 : Transferable::~Transferable (void)
      55                 :            : {
      56         [ #  # ]:          0 :     if (mpViewShell != NULL)
      57         [ #  # ]:          0 :         EndListening(*mpViewShell);
      58         [ #  # ]:          0 : }
      59                 :            : 
      60                 :            : 
      61                 :            : 
      62                 :            : 
      63                 :          0 : void Transferable::DragFinished (sal_Int8 nDropAction)
      64                 :            : {
      65         [ #  # ]:          0 :     if (mpViewShell != NULL)
      66                 :          0 :         mpViewShell->DragFinished(nDropAction);
      67                 :          0 : }
      68                 :            : 
      69                 :            : 
      70                 :            : 
      71                 :            : 
      72                 :          0 : void Transferable::Notify (SfxBroadcaster& rBroadcaster, const SfxHint& rHint)
      73                 :            : {
      74 [ #  # ][ #  # ]:          0 :     if (rHint.ISA(SfxSimpleHint) && mpViewShell!=NULL)
                 [ #  # ]
      75                 :            :     {
      76 [ #  # ][ #  # ]:          0 :         SfxSimpleHint& rSimpleHint (*PTR_CAST(SfxSimpleHint, &rHint));
      77         [ #  # ]:          0 :         if (rSimpleHint.GetId() == SFX_HINT_DYING)
      78                 :            :         {
      79                 :            :             // This hint may come either from the ViewShell or from the
      80                 :            :             // document (registered by SdTransferable).  We do not know
      81                 :            :             // which but both are sufficient to disconnect from the
      82                 :            :             // ViewShell.
      83                 :          0 :             EndListening(*mpViewShell);
      84                 :          0 :             mpViewShell = NULL;
      85                 :            :         }
      86                 :            :     }
      87                 :            : 
      88                 :          0 :     SdTransferable::Notify(rBroadcaster, rHint);
      89                 :          0 : }
      90                 :            : 
      91                 :            : 
      92                 :            : 
      93                 :            : 
      94                 :          0 : const ::std::vector<Transferable::Representative>& Transferable::GetRepresentatives (void) const
      95                 :            : {
      96                 :          0 :     return maRepresentatives;
      97                 :            : }
      98                 :            : 
      99                 :            : 
     100                 :            : } } } // end of namespace ::sd::slidesorter::controller
     101                 :            : 
     102                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10