LCOV - code coverage report
Current view: top level - sc/inc - docoptio.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 65 66 98.5 %
Date: 2014-11-03 Functions: 30 31 96.8 %
Legend: Lines: hit not hit

          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 INCLUDED_SC_INC_DOCOPTIO_HXX
      21             : #define INCLUDED_SC_INC_DOCOPTIO_HXX
      22             : 
      23             : #include <unotools/configitem.hxx>
      24             : #include <svl/poolitem.hxx>
      25             : #include <svl/itemprop.hxx>
      26             : #include "scdllapi.h"
      27             : #include "scmod.hxx"
      28             : #include "optutil.hxx"
      29             : 
      30             : #include <formula/grammar.hxx>
      31             : 
      32             : class SC_DLLPUBLIC ScDocOptions
      33             : {
      34             :     double     fIterEps;                // epsilon value dazu
      35             :     sal_uInt16 nIterCount;              ///< number
      36             :     sal_uInt16 nPrecStandardFormat;     ///< precision for standard format
      37             :     sal_uInt16 nDay;                    ///< Null date:
      38             :     sal_uInt16 nMonth;
      39             :     sal_uInt16 nYear;
      40             :     sal_uInt16 nYear2000;               ///< earlier 19YY is assumed, 20YY otherwise (if only YY of year is given)
      41             :     sal_uInt16 nTabDistance;            ///< distance of standard tabs
      42             :     bool       bIsIgnoreCase;           ///< ignore case for comparisons?
      43             :     bool       bIsIter;                 ///< iterations for circular refs
      44             :     bool       bCalcAsShown;            ///< calculate as shown (wrt precision)
      45             :     bool       bMatchWholeCell;         ///< search criteria must match the whole cell
      46             :     bool       bDoAutoSpell;            ///< auto-spelling
      47             :     bool       bLookUpColRowNames;      ///< determine column-/row titles automagically
      48             :     bool       bFormulaRegexEnabled;    ///< regular expressions in formulas enabled
      49             : public:
      50             :                 ScDocOptions();
      51             :                 ScDocOptions( const ScDocOptions& rCpy );
      52             :                 ~ScDocOptions();
      53             : 
      54         134 :     bool   IsLookUpColRowNames() const       { return bLookUpColRowNames; }
      55         702 :     void   SetLookUpColRowNames( bool bVal ) { bLookUpColRowNames = bVal; }
      56        3615 :     bool   IsAutoSpell() const              { return bDoAutoSpell; }
      57         964 :     void   SetAutoSpell( bool bVal )        { bDoAutoSpell = bVal; }
      58        1792 :     bool   IsMatchWholeCell() const         { return bMatchWholeCell; }
      59         404 :     void   SetMatchWholeCell( bool bVal )   { bMatchWholeCell = bVal; }
      60        3160 :     bool   IsIgnoreCase() const             { return bIsIgnoreCase; }
      61         676 :     void   SetIgnoreCase( bool bVal )       { bIsIgnoreCase = bVal; }
      62         166 :     bool   IsIter() const                   { return bIsIter; }
      63         940 :     void   SetIter( bool bVal )             { bIsIter = bVal; }
      64         164 :     sal_uInt16 GetIterCount() const         { return nIterCount; }
      65         864 :     void   SetIterCount( sal_uInt16 nCount) { nIterCount = nCount; }
      66         164 :     double GetIterEps() const               { return fIterEps; }
      67         940 :     void   SetIterEps( double fEps )        { fIterEps = fEps; }
      68             : 
      69        5662 :     void   GetDate( sal_uInt16& rD, sal_uInt16& rM, sal_uInt16& rY ) const
      70        5662 :                                         { rD = nDay; rM = nMonth; rY = nYear;}
      71         944 :     void   SetDate (sal_uInt16 nD, sal_uInt16 nM, sal_uInt16 nY)
      72         944 :                                         { nDay = nD; nMonth = nM; nYear = nY; }
      73         902 :     sal_uInt16 GetTabDistance() const { return nTabDistance;}
      74         348 :     void   SetTabDistance( sal_uInt16 nTabDist ) {nTabDistance = nTabDist;}
      75             : 
      76             :     void        ResetDocOptions();
      77             : 
      78             :     inline const ScDocOptions&  operator=( const ScDocOptions& rOpt );
      79             :     inline bool                 operator==( const ScDocOptions& rOpt ) const;
      80             :     inline bool                 operator!=( const ScDocOptions& rOpt ) const;
      81             : 
      82        4618 :     sal_uInt16  GetStdPrecision() const         { return nPrecStandardFormat; }
      83         370 :     void        SetStdPrecision( sal_uInt16 n ) { nPrecStandardFormat = n; }
      84             : 
      85       44784 :     bool    IsCalcAsShown() const           { return bCalcAsShown; }
      86         670 :     void    SetCalcAsShown( bool bVal )     { bCalcAsShown = bVal; }
      87             : 
      88        1274 :     void    SetYear2000( sal_uInt16 nVal )  { nYear2000 = nVal; }
      89        4478 :     sal_uInt16  GetYear2000() const         { return nYear2000; }
      90             : 
      91         676 :     void    SetFormulaRegexEnabled( bool bVal ) { bFormulaRegexEnabled = bVal; }
      92         170 :     bool    IsFormulaRegexEnabled() const       { return bFormulaRegexEnabled; }
      93             : 
      94             : };
      95             : 
      96        8236 : inline const ScDocOptions& ScDocOptions::operator=( const ScDocOptions& rCpy )
      97             : {
      98        8236 :     bIsIgnoreCase       = rCpy.bIsIgnoreCase;
      99        8236 :     bIsIter             = rCpy.bIsIter;
     100        8236 :     nIterCount          = rCpy.nIterCount;
     101        8236 :     fIterEps            = rCpy.fIterEps;
     102        8236 :     nPrecStandardFormat = rCpy.nPrecStandardFormat;
     103        8236 :     nDay                = rCpy.nDay;
     104        8236 :     nMonth              = rCpy.nMonth;
     105        8236 :     nYear               = rCpy.nYear;
     106        8236 :     nYear2000           = rCpy.nYear2000;
     107        8236 :     nTabDistance        = rCpy.nTabDistance;
     108        8236 :     bCalcAsShown        = rCpy.bCalcAsShown;
     109        8236 :     bMatchWholeCell     = rCpy.bMatchWholeCell;
     110        8236 :     bDoAutoSpell        = rCpy.bDoAutoSpell;
     111        8236 :     bLookUpColRowNames  = rCpy.bLookUpColRowNames;
     112        8236 :     bFormulaRegexEnabled= rCpy.bFormulaRegexEnabled;
     113             : 
     114        8236 :     return *this;
     115             : }
     116             : 
     117        5136 : inline bool ScDocOptions::operator==( const ScDocOptions& rOpt ) const
     118             : {
     119             :     return (
     120        5136 :                 rOpt.bIsIgnoreCase          == bIsIgnoreCase
     121        4974 :             &&  rOpt.bIsIter                == bIsIter
     122        4956 :             &&  rOpt.nIterCount             == nIterCount
     123        4938 :             &&  rOpt.fIterEps               == fIterEps
     124        4826 :             &&  rOpt.nPrecStandardFormat    == nPrecStandardFormat
     125        4814 :             &&  rOpt.nDay                   == nDay
     126        4696 :             &&  rOpt.nMonth                 == nMonth
     127        4696 :             &&  rOpt.nYear                  == nYear
     128        4696 :             &&  rOpt.nYear2000              == nYear2000
     129        4696 :             &&  rOpt.nTabDistance           == nTabDistance
     130        4684 :             &&  rOpt.bCalcAsShown           == bCalcAsShown
     131        4668 :             &&  rOpt.bMatchWholeCell        == bMatchWholeCell
     132        4656 :             &&  rOpt.bDoAutoSpell           == bDoAutoSpell
     133        4644 :             &&  rOpt.bLookUpColRowNames     == bLookUpColRowNames
     134        9624 :             &&  rOpt.bFormulaRegexEnabled   == bFormulaRegexEnabled
     135        5136 :             );
     136             : }
     137             : 
     138        5136 : inline bool ScDocOptions::operator!=( const ScDocOptions& rOpt ) const
     139             : {
     140        5136 :     return !(operator==(rOpt));
     141             : }
     142             : 
     143             : // Item for preferences dialog - calculation
     144             : 
     145             : class SC_DLLPUBLIC ScTpCalcItem : public SfxPoolItem
     146             : {
     147             : public:
     148             :                 TYPEINFO_OVERRIDE();
     149             :                 ScTpCalcItem( sal_uInt16 nWhich,
     150             :                               const ScDocOptions& rOpt );
     151             :                 ScTpCalcItem( const ScTpCalcItem& rItem );
     152             :                 virtual ~ScTpCalcItem();
     153             : 
     154             :     virtual OUString        GetValueText() const;
     155             :     virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
     156             :     virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
     157             : 
     158           0 :     const ScDocOptions& GetDocOptions() const { return theOptions; }
     159             : 
     160             : private:
     161             :     ScDocOptions theOptions;
     162             : };
     163             : 
     164             : //  Config Item containing document options
     165             : 
     166          20 : class ScDocCfg : public ScDocOptions
     167             : {
     168             :     ScLinkConfigItem    aCalcItem;
     169             :     ScLinkConfigItem    aLayoutItem;
     170             : 
     171             :     DECL_LINK( CalcCommitHdl, void* );
     172             :     DECL_LINK( LayoutCommitHdl, void* );
     173             : 
     174             :     com::sun::star::uno::Sequence<OUString> GetCalcPropertyNames();
     175             :     com::sun::star::uno::Sequence<OUString> GetLayoutPropertyNames();
     176             : 
     177             : public:
     178             :             ScDocCfg();
     179             : 
     180             :     void    SetOptions( const ScDocOptions& rNew );
     181             : };
     182             : 
     183             : #endif
     184             : 
     185             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10