LCOV - code coverage report
Current view: top level - sc/source/ui/vba - vbatextframe.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 3 19 15.8 %
Date: 2012-08-25 Functions: 2 6 33.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 2 38 5.3 %

           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 <vbahelper/helperdecl.hxx>
      29                 :            : #include <com/sun/star/drawing/TextFitToSizeType.hpp>
      30                 :            : #include <com/sun/star/text/XText.hpp>
      31                 :            : #include "vbatextframe.hxx"
      32                 :            : #include "vbacharacters.hxx"
      33                 :            : 
      34                 :            : using namespace ::ooo::vba;
      35                 :            : using namespace ::com::sun::star;
      36                 :            : 
      37 [ #  # ][ #  # ]:          0 : ScVbaTextFrame::ScVbaTextFrame( uno::Sequence< uno::Any> const & args, uno::Reference< uno::XComponentContext> const & xContext ) throw ( lang::IllegalArgumentException ) :  ScVbaTextFrame_BASE( getXSomethingFromArgs< XHelperInterface >( args, 0 ), xContext, getXSomethingFromArgs< drawing::XShape >( args, 1, false ) )
      38                 :            : {
      39                 :          0 : }
      40                 :            : 
      41                 :            : // Methods
      42                 :            : uno::Any SAL_CALL
      43                 :          0 : ScVbaTextFrame::Characters() throw (uno::RuntimeException)
      44                 :            : {
      45         [ #  # ]:          0 :     uno::Reference< text::XSimpleText > xSimpleText( m_xShape, uno::UNO_QUERY_THROW );
      46         [ #  # ]:          0 :     ScVbaPalette aPalette( SfxObjectShell::Current() );
      47         [ #  # ]:          0 :     uno::Any aStart( sal_Int32( 1 ) );
      48         [ #  # ]:          0 :     uno::Any aLength(sal_Int32( -1 ) );
      49 [ #  # ][ #  # ]:          0 :     return uno::makeAny( uno::Reference< ov::excel::XCharacters >( new ScVbaCharacters( this, mxContext, aPalette, xSimpleText, aStart, aLength, sal_True ) ) );
         [ #  # ][ #  # ]
                 [ #  # ]
      50                 :            : }
      51                 :            : 
      52                 :            : rtl::OUString
      53                 :          0 : ScVbaTextFrame::getServiceImplName()
      54                 :            : {
      55                 :          0 :     return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ScVbaTextFrame"));
      56                 :            : }
      57                 :            : 
      58                 :            : uno::Sequence< rtl::OUString >
      59                 :          0 : ScVbaTextFrame::getServiceNames()
      60                 :            : {
      61 [ #  # ][ #  # ]:          0 :     static uno::Sequence< rtl::OUString > aServiceNames;
         [ #  # ][ #  # ]
      62         [ #  # ]:          0 :     if ( aServiceNames.getLength() == 0 )
      63                 :            :     {
      64                 :          0 :         aServiceNames.realloc( 1 );
      65         [ #  # ]:          0 :         aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.excel.TextFrame" ) );
      66                 :            :     }
      67                 :          0 :     return aServiceNames;
      68                 :            : }
      69                 :            : 
      70                 :            : namespace textframe
      71                 :            : {
      72                 :            : namespace sdecl = comphelper::service_decl;
      73                 :          3 : sdecl::vba_service_class_<ScVbaTextFrame, sdecl::with_args<true> > serviceImpl;
      74                 :          3 : extern sdecl::ServiceDecl const serviceDecl(
      75                 :            :     serviceImpl,
      76                 :            :     "ScVbaTextFrame",
      77                 :            :     "ooo.vba.excel.TextFrame" );
      78 [ +  - ][ +  - ]:          9 : }
      79                 :            : 
      80                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10