LCOV - code coverage report
Current view: top level - sw/source/ui/vba - vbaaddin.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 32 0.0 %
Date: 2012-08-25 Functions: 0 11 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 36 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                 :            : #include "vbaaddin.hxx"
      29                 :            : #include <vbahelper/vbahelper.hxx>
      30                 :            : #include <tools/diagnose_ex.h>
      31                 :            : #include <tools/urlobj.hxx>
      32                 :            : #include <osl/file.hxx>
      33                 :            : 
      34                 :            : using namespace ::ooo::vba;
      35                 :            : using namespace ::com::sun::star;
      36                 :            : 
      37                 :          0 : SwVbaAddin::SwVbaAddin( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext, const rtl::OUString& rFileURL, sal_Bool bAutoload ) throw ( uno::RuntimeException ) :
      38                 :          0 :     SwVbaAddin_BASE( rParent, rContext ), msFileURL( rFileURL ), mbAutoload( bAutoload ), mbInstalled( bAutoload )
      39                 :            : {
      40                 :          0 : }
      41                 :            : 
      42                 :          0 : SwVbaAddin::~SwVbaAddin()
      43                 :            : {
      44         [ #  # ]:          0 : }
      45                 :            : 
      46                 :          0 : ::rtl::OUString SAL_CALL SwVbaAddin::getName() throw (uno::RuntimeException)
      47                 :            : {
      48                 :          0 :     rtl::OUString sName;
      49         [ #  # ]:          0 :     INetURLObject aURL( msFileURL );
      50 [ #  # ][ #  # ]:          0 :     ::osl::File::getSystemPathFromFileURL( aURL.GetLastName(), sName );
      51         [ #  # ]:          0 :     return sName;
      52                 :            : }
      53                 :            : 
      54                 :            : void SAL_CALL
      55                 :          0 : SwVbaAddin::setName( const rtl::OUString& ) throw ( css::uno::RuntimeException )
      56                 :            : {
      57                 :            :     throw uno::RuntimeException( rtl::OUString(
      58 [ #  # ][ #  # ]:          0 :             RTL_CONSTASCII_USTRINGPARAM(" Fail to set name")), uno::Reference< uno::XInterface >() );
      59                 :            : }
      60                 :            : 
      61                 :          0 : ::rtl::OUString SAL_CALL SwVbaAddin::getPath() throw (uno::RuntimeException)
      62                 :            : {
      63         [ #  # ]:          0 :     INetURLObject aURL( msFileURL );
      64         [ #  # ]:          0 :     aURL.CutLastName();
      65 [ #  # ][ #  # ]:          0 :     return aURL.GetURLPath();
      66                 :            : }
      67                 :            : 
      68                 :          0 : ::sal_Bool SAL_CALL SwVbaAddin::getAutoload() throw (uno::RuntimeException)
      69                 :            : {
      70                 :          0 :     return mbAutoload;
      71                 :            : }
      72                 :            : 
      73                 :          0 : ::sal_Bool SAL_CALL SwVbaAddin::getInstalled() throw (uno::RuntimeException)
      74                 :            : {
      75                 :          0 :     return mbInstalled;
      76                 :            : }
      77                 :            : 
      78                 :          0 : void SAL_CALL SwVbaAddin::setInstalled( ::sal_Bool _installed ) throw (uno::RuntimeException)
      79                 :            : {
      80         [ #  # ]:          0 :     if( _installed != mbInstalled )
      81                 :            :     {
      82                 :          0 :         mbInstalled = _installed;
      83                 :            :         // TODO: should call AutoExec and AutoExit etc.
      84                 :            :     }
      85                 :          0 : }
      86                 :            : 
      87                 :            : rtl::OUString
      88                 :          0 : SwVbaAddin::getServiceImplName()
      89                 :            : {
      90                 :          0 :     return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SwVbaAddin"));
      91                 :            : }
      92                 :            : 
      93                 :            : uno::Sequence< rtl::OUString >
      94                 :          0 : SwVbaAddin::getServiceNames()
      95                 :            : {
      96 [ #  # ][ #  # ]:          0 :     static uno::Sequence< rtl::OUString > aServiceNames;
         [ #  # ][ #  # ]
      97         [ #  # ]:          0 :     if ( aServiceNames.getLength() == 0 )
      98                 :            :     {
      99                 :          0 :         aServiceNames.realloc( 1 );
     100         [ #  # ]:          0 :         aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.word.Addin" ) );
     101                 :            :     }
     102                 :          0 :     return aServiceNames;
     103                 :            : }
     104                 :            : 
     105                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10