LCOV - code coverage report
Current view: top level - sc/source/ui/vba - vbaname.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 1 0.0 %
Date: 2012-08-25 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 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                 :            : #ifndef SC_VBA_NAME_HXX
      29                 :            : #define SC_VBA_NAME_HXX
      30                 :            : 
      31                 :            : #include <ooo/vba/excel/XName.hpp>
      32                 :            : #include <com/sun/star/sheet/XNamedRange.hpp>
      33                 :            : #include <com/sun/star/sheet/XNamedRanges.hpp>
      34                 :            : 
      35                 :            : #include <vbahelper/vbahelperinterface.hxx>
      36                 :            : 
      37                 :            : #include <formula/grammar.hxx>
      38                 :            : 
      39                 :            : class ScDocument;
      40                 :            : 
      41                 :            : typedef InheritedHelperInterfaceImpl1< ov::excel::XName > NameImpl_BASE;
      42                 :            : 
      43                 :            : class ScVbaName : public NameImpl_BASE
      44                 :            : {
      45                 :            :     css::uno::Reference< css::frame::XModel > mxModel;
      46                 :            :     css::uno::Reference< css::sheet::XNamedRange > mxNamedRange;
      47                 :            :     css::uno::Reference< css::sheet::XNamedRanges > mxNames;
      48                 :            : 
      49                 :            :     ScDocument * m_pDoc;
      50                 :            : 
      51                 :            : protected:
      52                 :          0 :     virtual css::uno::Reference< css::frame::XModel >  getModel() { return mxModel; }
      53                 :            :     virtual css::uno::Reference< ov::excel::XWorksheet > getWorkSheet() throw (css::uno::RuntimeException);
      54                 :            :     // Get value by FormulaGrammar, such as FormulaGrammar::GRAM_NATIVE_XL_R1C1
      55                 :            :     virtual ::rtl::OUString SAL_CALL getValue(const formula::FormulaGrammar::Grammar eGrammar) throw (css::uno::RuntimeException);
      56                 :            : 
      57                 :            : public:
      58                 :            :     ScVbaName( const css::uno::Reference< ov::XHelperInterface >& xParent,  const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::sheet::XNamedRange >& xName , const css::uno::Reference< css::sheet::XNamedRanges >& xNames , const css::uno::Reference< css::frame::XModel >& xModel );
      59                 :            :     virtual ~ScVbaName();
      60                 :            : 
      61                 :            :     // Attributes
      62                 :            :     virtual ::rtl::OUString SAL_CALL getName() throw (css::uno::RuntimeException);
      63                 :            :     virtual void SAL_CALL setName( const ::rtl::OUString &rName ) throw (css::uno::RuntimeException);
      64                 :            :     virtual ::rtl::OUString SAL_CALL getNameLocal() throw (css::uno::RuntimeException);
      65                 :            :     virtual void SAL_CALL setNameLocal( const ::rtl::OUString &rName ) throw (css::uno::RuntimeException);
      66                 :            :     virtual sal_Bool SAL_CALL getVisible() throw (css::uno::RuntimeException);
      67                 :            :     virtual void SAL_CALL setVisible( sal_Bool bVisible ) throw (css::uno::RuntimeException);
      68                 :            :     virtual ::rtl::OUString SAL_CALL getValue() throw (css::uno::RuntimeException);
      69                 :            :     virtual void SAL_CALL setValue( const ::rtl::OUString &rValue ) throw (css::uno::RuntimeException);
      70                 :            :     virtual ::rtl::OUString SAL_CALL getRefersTo() throw (css::uno::RuntimeException);
      71                 :            :     virtual void SAL_CALL setRefersTo( const ::rtl::OUString &rRefersTo ) throw (css::uno::RuntimeException);
      72                 :            :     virtual ::rtl::OUString SAL_CALL getRefersToLocal() throw (css::uno::RuntimeException);
      73                 :            :     virtual void SAL_CALL setRefersToLocal( const ::rtl::OUString &rRefersTo ) throw (css::uno::RuntimeException);
      74                 :            :     virtual ::rtl::OUString SAL_CALL getRefersToR1C1() throw (css::uno::RuntimeException);
      75                 :            :     virtual void SAL_CALL setRefersToR1C1( const ::rtl::OUString &rRefersTo ) throw (css::uno::RuntimeException);
      76                 :            :     virtual ::rtl::OUString SAL_CALL getRefersToR1C1Local() throw (css::uno::RuntimeException);
      77                 :            :     virtual void SAL_CALL setRefersToR1C1Local( const ::rtl::OUString &rRefersTo ) throw (css::uno::RuntimeException);
      78                 :            :     virtual css::uno::Reference< ov::excel::XRange > SAL_CALL getRefersToRange() throw (css::uno::RuntimeException);
      79                 :            :     virtual void SAL_CALL setRefersToRange( const css::uno::Reference< ov::excel::XRange > xRange ) throw (css::uno::RuntimeException);
      80                 :            : 
      81                 :            :     // Methods
      82                 :            :     virtual void SAL_CALL Delete() throw (css::uno::RuntimeException);
      83                 :            : 
      84                 :            :     // XHelperInterface
      85                 :            :     virtual rtl::OUString getServiceImplName();
      86                 :            :     virtual css::uno::Sequence<rtl::OUString> getServiceNames();
      87                 :            : };
      88                 :            : #endif /* SC_VBA_NAME_HXX */
      89                 :            : 
      90                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10