LCOV - code coverage report
Current view: top level - reportdesign/source/core/sdr - formatnormalizer.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 2 0.0 %
Date: 2012-08-25 Functions: 0 3 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                 :            :  * 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                 :            : 
      20                 :            : #ifndef REPORTDESIGN_FORMATNORMALIZER_HXX
      21                 :            : #define REPORTDESIGN_FORMATNORMALIZER_HXX
      22                 :            : 
      23                 :            : #include <com/sun/star/report/XReportDefinition.hpp>
      24                 :            : #include <com/sun/star/beans/PropertyChangeEvent.hpp>
      25                 :            : #include <com/sun/star/report/XFormattedField.hpp>
      26                 :            : 
      27                 :            : #include <boost/noncopyable.hpp>
      28                 :            : 
      29                 :            : #include <vector>
      30                 :            : 
      31                 :            : //........................................................................
      32                 :            : namespace rptui
      33                 :            : {
      34                 :            : //........................................................................
      35                 :            : 
      36                 :            :     class OReportModel;
      37                 :            :     //====================================================================
      38                 :            :     //= FormatNormalizer
      39                 :            :     //====================================================================
      40                 :            :     class FormatNormalizer : public ::boost::noncopyable
      41                 :            :     {
      42                 :            :     public:
      43                 :          0 :         struct Field
      44                 :            :         {
      45                 :            :             ::rtl::OUString sName;
      46                 :            :             sal_Int32       nDataType;
      47                 :            :             sal_Int32       nScale;
      48                 :            :             sal_Bool        bIsCurrency;
      49                 :            : 
      50                 :          0 :             Field() : sName(), nDataType( 0 ), nScale( 0 ), bIsCurrency( 0 ) { }
      51                 :            :         };
      52                 :            :         typedef ::std::vector< Field >  FieldList;
      53                 :            : 
      54                 :            :     private:
      55                 :            :         const OReportModel&                                                                 m_rModel;
      56                 :            :         ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >     m_xReportDefinition;
      57                 :            : 
      58                 :            :         /// is our field list dirty?
      59                 :            :         FieldList                       m_aFields;
      60                 :            :         bool                            m_bFieldListDirty;
      61                 :            : 
      62                 :            :     public:
      63                 :            :         FormatNormalizer( const OReportModel& _rModel );
      64                 :            :         ~FormatNormalizer();
      65                 :            : 
      66                 :            :         void    notifyPropertyChange( const ::com::sun::star::beans::PropertyChangeEvent& _rEvent );
      67                 :            :         void    notifyElementInserted( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxElement );
      68                 :            : 
      69                 :            :     private:
      70                 :            :         bool    impl_lateInit();
      71                 :            : 
      72                 :            :         void    impl_onDefinitionPropertyChange( const ::rtl::OUString& _rChangedPropName );
      73                 :            :         void    impl_onFormattedProperttyChange( const ::com::sun::star::uno::Reference< ::com::sun::star::report::XFormattedField >& _rxFormatted, const ::rtl::OUString& _rChangedPropName );
      74                 :            : 
      75                 :            :         bool    impl_ensureUpToDateFieldList_nothrow();
      76                 :            : 
      77                 :            :         void    impl_adjustFormatToDataFieldType_nothrow( const ::com::sun::star::uno::Reference< ::com::sun::star::report::XFormattedField >& _rxFormatted );
      78                 :            :     };
      79                 :            : 
      80                 :            : //........................................................................
      81                 :            : } // namespace rptui
      82                 :            : //........................................................................
      83                 :            : 
      84                 :            : #endif // REPORTDESIGN_FORMATNORMALIZER_HXX
      85                 :            : 
      86                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10