LCOV - code coverage report
Current view: top level - reportdesign/source/core/inc - Function.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 13 0.0 %
Date: 2012-08-25 Functions: 0 5 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 48 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 RPT_FUNCTION_HXX
      20                 :            : #define RPT_FUNCTION_HXX
      21                 :            : 
      22                 :            : #include <cppuhelper/propertysetmixin.hxx>
      23                 :            : #include <com/sun/star/report/XFunction.hpp>
      24                 :            : #include <cppuhelper/basemutex.hxx>
      25                 :            : #include "ReportControlModel.hxx"
      26                 :            : #include <cppuhelper/compbase2.hxx>
      27                 :            : #include <com/sun/star/lang/XServiceInfo.hpp>
      28                 :            : 
      29                 :            : namespace reportdesign
      30                 :            : {
      31                 :            :     typedef ::cppu::PropertySetMixin<        com::sun::star::report::XFunction  > FunctionPropertySet;
      32                 :            :     typedef ::cppu::WeakComponentImplHelper2<    com::sun::star::report::XFunction
      33                 :            :                                                 ,com::sun::star::lang::XServiceInfo > FunctionBase;
      34                 :            : 
      35                 :            :     /** \class OFunction Defines the implementation of a \interface com:::sun::star::report::XFunction
      36                 :            :      * \ingroup reportdesign_api
      37                 :            :      *
      38                 :            :      */
      39                 :            :     class OFunction :   public cppu::BaseMutex,
      40                 :            :                             public FunctionBase,
      41                 :            :                             public FunctionPropertySet
      42                 :            :     {
      43                 :            :         com::sun::star::beans::Optional< ::rtl::OUString> m_sInitialFormula;
      44                 :            :         ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >  m_xContext;
      45                 :            :         ::com::sun::star::uno::WeakReference< ::com::sun::star::report::XFunctions >  m_xParent;
      46                 :            :         ::rtl::OUString m_sName;
      47                 :            :         ::rtl::OUString m_sFormula;
      48                 :            :         ::sal_Bool      m_bPreEvaluated;
      49                 :            :         ::sal_Bool      m_bDeepTraversing;
      50                 :            :     private:
      51                 :            :         OFunction(const OFunction&);
      52                 :            :         OFunction& operator=(const OFunction&);
      53                 :            : 
      54                 :          0 :         template <typename T> void set(  const ::rtl::OUString& _sProperty
      55                 :            :                                         ,const T& _Value
      56                 :            :                                         ,T& _member)
      57                 :            :         {
      58 [ #  # ][ #  # ]:          0 :             BoundListeners l;
                 [ #  # ]
      59                 :            :             {
      60 [ #  # ][ #  # ]:          0 :                 ::osl::MutexGuard aGuard(m_aMutex);
                 [ #  # ]
      61 [ #  # ][ #  # ]:          0 :                 prepareSet(_sProperty, ::com::sun::star::uno::makeAny(_member), ::com::sun::star::uno::makeAny(_Value), &l);
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
      62   [ #  #  #  #  :          0 :                 _member = _Value;
                   #  # ]
      63                 :            :             }
      64 [ #  # ][ #  # ]:          0 :             l.notify();
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
      65                 :          0 :         }
      66                 :            :     protected:
      67                 :            :         virtual ~OFunction();
      68                 :            :     public:
      69                 :            :         explicit OFunction(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & _xContext);
      70                 :            : 
      71                 :            :         DECLARE_XINTERFACE( )
      72                 :            :         // ::com::sun::star::lang::XServiceInfo
      73                 :            :         virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
      74                 :            :         virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw(::com::sun::star::uno::RuntimeException);
      75                 :            :         virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException);
      76                 :            : 
      77                 :            :         static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
      78                 :            :         static ::rtl::OUString getImplementationName_Static(void) throw( ::com::sun::star::uno::RuntimeException );
      79                 :            :         static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
      80                 :            :             create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext);
      81                 :            :         // com::sun::star::beans::XPropertySet
      82                 :            :         virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException);
      83                 :            :         virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      84                 :            :         virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      85                 :            :         virtual void SAL_CALL addPropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      86                 :            :         virtual void SAL_CALL removePropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      87                 :            :         virtual void SAL_CALL addVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      88                 :            :         virtual void SAL_CALL removeVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
      89                 :            : 
      90                 :            :         // ::com::sun::star::report::XFunction:
      91                 :            :         virtual ::sal_Bool SAL_CALL getPreEvaluated() throw (::com::sun::star::uno::RuntimeException);
      92                 :            :         virtual void SAL_CALL setPreEvaluated(::sal_Bool the_value) throw (::com::sun::star::uno::RuntimeException);
      93                 :            :         virtual ::sal_Bool SAL_CALL getDeepTraversing() throw (::com::sun::star::uno::RuntimeException);
      94                 :            :         virtual void SAL_CALL setDeepTraversing(::sal_Bool the_value) throw (::com::sun::star::uno::RuntimeException);
      95                 :            :         virtual ::rtl::OUString SAL_CALL getName() throw (::com::sun::star::uno::RuntimeException);
      96                 :            :         virtual void SAL_CALL setName(const ::rtl::OUString & the_value) throw (::com::sun::star::uno::RuntimeException);
      97                 :            :         virtual ::rtl::OUString SAL_CALL getFormula() throw (::com::sun::star::uno::RuntimeException);
      98                 :            :         virtual void SAL_CALL setFormula(const ::rtl::OUString & the_value) throw (::com::sun::star::uno::RuntimeException);
      99                 :            :         virtual com::sun::star::beans::Optional< ::rtl::OUString> SAL_CALL getInitialFormula() throw (::com::sun::star::uno::RuntimeException);
     100                 :            :         virtual void SAL_CALL setInitialFormula(const com::sun::star::beans::Optional< ::rtl::OUString> & the_value) throw (::com::sun::star::uno::RuntimeException);
     101                 :            : 
     102                 :            :         // XComponent
     103                 :            :         virtual void SAL_CALL dispose() throw(::com::sun::star::uno::RuntimeException);
     104                 :          0 :         virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw(::com::sun::star::uno::RuntimeException)
     105                 :            :         {
     106                 :          0 :             cppu::WeakComponentImplHelperBase::addEventListener(aListener);
     107                 :          0 :         }
     108                 :          0 :         virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw(::com::sun::star::uno::RuntimeException)
     109                 :            :         {
     110                 :          0 :             cppu::WeakComponentImplHelperBase::removeEventListener(aListener);
     111                 :          0 :         }
     112                 :            : 
     113                 :            :         // XChild
     114                 :            :         virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getParent(  ) throw (::com::sun::star::uno::RuntimeException);
     115                 :            :         virtual void SAL_CALL setParent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& Parent ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException);
     116                 :            :     };
     117                 :            : }
     118                 :            : #endif //RPT_FUNCTION_HXX
     119                 :            : 
     120                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10