LCOV - code coverage report
Current view: top level - vbahelper/source/vbahelper - vbalineformat.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 1 0.0 %
Date: 2012-08-25 Functions: 0 2 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 2 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*
       3                 :            :  * This file is part of the LibreOffice project.
       4                 :            :  *
       5                 :            :  * This Source Code Form is subject to the terms of the Mozilla Public
       6                 :            :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7                 :            :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8                 :            :  *
       9                 :            :  * This file incorporates work covered by the following license notice:
      10                 :            :  *
      11                 :            :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12                 :            :  *   contributor license agreements. See the NOTICE file distributed
      13                 :            :  *   with this work for additional information regarding copyright
      14                 :            :  *   ownership. The ASF licenses this file to you under the Apache
      15                 :            :  *   License, Version 2.0 (the "License"); you may not use this file
      16                 :            :  *   except in compliance with the License. You may obtain a copy of
      17                 :            :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18                 :            :  */
      19                 :            : #ifndef SC_VBA_XLINEFORMAT_HXX
      20                 :            : #define SC_VBA_XLINEFORMAT_HXX
      21                 :            : 
      22                 :            : #include <com/sun/star/drawing/XShape.hpp>
      23                 :            : #include <com/sun/star/beans/XPropertySet.hpp>
      24                 :            : #include <ooo/vba/msforms/XLineFormat.hpp>
      25                 :            : #include <vbahelper/vbahelperinterface.hxx>
      26                 :            : 
      27                 :            : typedef InheritedHelperInterfaceImpl1< ov::msforms::XLineFormat > ScVbaLineFormat_BASE;
      28                 :            : 
      29         [ #  # ]:          0 : class ScVbaLineFormat : public ScVbaLineFormat_BASE
      30                 :            : {
      31                 :            : private:
      32                 :            :     css::uno::Reference< css::drawing::XShape > m_xShape;
      33                 :            :     css::uno::Reference< css::beans::XPropertySet > m_xPropertySet;
      34                 :            :     sal_Int32 m_nLineDashStyle;
      35                 :            :     double m_nLineWeight;
      36                 :            : protected:
      37                 :            :     virtual rtl::OUString getServiceImplName();
      38                 :            :     virtual css::uno::Sequence<rtl::OUString> getServiceNames();
      39                 :            :     sal_Int32 convertLineStartEndNameToArrowheadStyle( rtl::OUString sLineName );
      40                 :            :     rtl::OUString convertArrowheadStyleToLineStartEndName( sal_Int32 nArrowheadStyle ) throw (css::uno::RuntimeException);
      41                 :            : public:
      42                 :            :     ScVbaLineFormat( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::drawing::XShape > xShape );
      43                 :            : 
      44                 :            :     // Attributes
      45                 :            :     virtual sal_Int32 SAL_CALL getBeginArrowheadStyle() throw (css::uno::RuntimeException);
      46                 :            :     virtual void SAL_CALL setBeginArrowheadStyle( sal_Int32 _beginarrowheadstyle ) throw (css::uno::RuntimeException);
      47                 :            :     virtual sal_Int32 SAL_CALL getBeginArrowheadLength() throw (css::uno::RuntimeException);
      48                 :            :     virtual void SAL_CALL setBeginArrowheadLength( sal_Int32 _beginarrowheadlength ) throw (css::uno::RuntimeException);
      49                 :            :     virtual sal_Int32 SAL_CALL getBeginArrowheadWidth() throw (css::uno::RuntimeException);
      50                 :            :     virtual void SAL_CALL setBeginArrowheadWidth( sal_Int32 _beginarrowheadwidth ) throw (css::uno::RuntimeException);
      51                 :            :     virtual sal_Int32 SAL_CALL getEndArrowheadStylel() throw (css::uno::RuntimeException);
      52                 :            :     virtual void SAL_CALL setEndArrowheadStylel( sal_Int32 _endarrowheadstylel ) throw (css::uno::RuntimeException);
      53                 :            :     virtual sal_Int32 SAL_CALL getEndArrowheadLength() throw (css::uno::RuntimeException);
      54                 :            :     virtual void SAL_CALL setEndArrowheadLength( sal_Int32 _endarrowheadlength ) throw (css::uno::RuntimeException);
      55                 :            :     virtual sal_Int32 SAL_CALL getEndArrowheadWidth() throw (css::uno::RuntimeException);
      56                 :            :     virtual void SAL_CALL setEndArrowheadWidth( sal_Int32 _endarrowheadwidth ) throw (css::uno::RuntimeException);
      57                 :            :     virtual double SAL_CALL getWeight() throw (css::uno::RuntimeException);
      58                 :            :     virtual void SAL_CALL setWeight( double _weight ) throw (css::uno::RuntimeException);
      59                 :            :     virtual sal_Bool SAL_CALL getVisible() throw (css::uno::RuntimeException);
      60                 :            :     virtual void SAL_CALL setVisible( sal_Bool _visible ) throw (css::uno::RuntimeException);
      61                 :            :     virtual double SAL_CALL getTransparency() throw (css::uno::RuntimeException);
      62                 :            :     virtual void SAL_CALL setTransparency( double _transparency ) throw (css::uno::RuntimeException);
      63                 :            :     virtual sal_Int16 SAL_CALL getStyle() throw (css::uno::RuntimeException);
      64                 :            :     virtual void SAL_CALL setStyle( sal_Int16 _style ) throw (css::uno::RuntimeException);
      65                 :            :     virtual sal_Int32 SAL_CALL getDashStyle() throw (css::uno::RuntimeException);
      66                 :            :     virtual void SAL_CALL setDashStyle( sal_Int32 _dashstyle ) throw (css::uno::RuntimeException);
      67                 :            : 
      68                 :            :     // Methods
      69                 :            :     virtual css::uno::Reference< ov::msforms::XColorFormat > SAL_CALL BackColor() throw (css::uno::RuntimeException);
      70                 :            :     virtual css::uno::Reference< ov::msforms::XColorFormat > SAL_CALL ForeColor() throw (css::uno::RuntimeException);
      71                 :            : };
      72                 :            : 
      73                 :            : #endif//SC_VBA_XLINEFORMAT_HXX
      74                 :            : 
      75                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10