LCOV - code coverage report
Current view: top level - sc/inc - formulaopt.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 14 19 73.7 %
Date: 2015-06-13 12:38:46 Functions: 15 20 75.0 %
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             : 
      10             : #ifndef INCLUDED_SC_INC_FORMULAOPT_HXX
      11             : #define INCLUDED_SC_INC_FORMULAOPT_HXX
      12             : 
      13             : #include <map>
      14             : #include <svl/poolitem.hxx>
      15             : #include <unotools/configitem.hxx>
      16             : #include <unotools/localedatawrapper.hxx>
      17             : #include <formula/grammar.hxx>
      18             : #include "scdllapi.h"
      19             : #include "global.hxx"
      20             : #include "calcconfig.hxx"
      21             : 
      22             : class SC_DLLPUBLIC ScFormulaOptions
      23             : {
      24             : private:
      25             :     bool bUseEnglishFuncName;     // use English function name even if the locale is not English.
      26             :     formula::FormulaGrammar::Grammar eFormulaGrammar;  // formula grammar used to switch different formula syntax
      27             :     ScCalcConfig aCalcConfig;
      28             : 
      29             :     OUString aFormulaSepArg;
      30             :     OUString aFormulaSepArrayRow;
      31             :     OUString aFormulaSepArrayCol;
      32             : 
      33             :     ScRecalcOptions meOOXMLRecalc;
      34             :     ScRecalcOptions meODFRecalc;
      35             : 
      36             : public:
      37             :     ScFormulaOptions();
      38             :     ScFormulaOptions( const ScFormulaOptions& rCpy );
      39             :     ~ScFormulaOptions();
      40             : 
      41             :     void SetDefaults();
      42             : 
      43           0 :     void SetFormulaSyntax( ::formula::FormulaGrammar::Grammar eGram ) { eFormulaGrammar = eGram; }
      44         614 :     ::formula::FormulaGrammar::Grammar GetFormulaSyntax() const { return eFormulaGrammar; }
      45             : 
      46         588 :     ScCalcConfig& GetCalcConfig() { return aCalcConfig; }
      47        1081 :     const ScCalcConfig& GetCalcConfig() const { return aCalcConfig; }
      48           0 :     void SetCalcConfig(const ScCalcConfig& rConfig) { aCalcConfig = rConfig; }
      49             : 
      50          49 :     void SetUseEnglishFuncName( bool bVal ) { bUseEnglishFuncName = bVal; }
      51         934 :     bool GetUseEnglishFuncName() const { return bUseEnglishFuncName; }
      52             : 
      53           5 :     void SetFormulaSepArg(const OUString& rSep) { aFormulaSepArg = rSep; }
      54         763 :     OUString GetFormulaSepArg() const { return aFormulaSepArg; }
      55             : 
      56           5 :     void SetFormulaSepArrayRow(const OUString& rSep) { aFormulaSepArrayRow = rSep; }
      57         763 :     OUString GetFormulaSepArrayRow() const { return aFormulaSepArrayRow; }
      58             : 
      59           5 :     void SetFormulaSepArrayCol(const OUString& rSep) { aFormulaSepArrayCol = rSep; }
      60         763 :     OUString GetFormulaSepArrayCol() const { return aFormulaSepArrayCol; }
      61             : 
      62          49 :     void SetOOXMLRecalcOptions( ScRecalcOptions eOpt ) { meOOXMLRecalc = eOpt; }
      63           0 :     ScRecalcOptions GetOOXMLRecalcOptions() const { return meOOXMLRecalc; }
      64             : 
      65          49 :     void SetODFRecalcOptions( ScRecalcOptions eOpt ) { meODFRecalc = eOpt; }
      66           0 :     ScRecalcOptions GetODFRecalcOptions() const { return meODFRecalc; }
      67             : 
      68             :     void ResetFormulaSeparators();
      69             : 
      70             :     static void GetDefaultFormulaSeparators(OUString& rSepArg, OUString& rSepArrayCol, OUString& rSepArrayRow);
      71             : 
      72             :     static const LocaleDataWrapper& GetLocaleDataWrapper();
      73             : 
      74             :     ScFormulaOptions&  operator=  ( const ScFormulaOptions& rCpy );
      75             :     bool               operator== ( const ScFormulaOptions& rOpt ) const;
      76             :     bool               operator!= ( const ScFormulaOptions& rOpt ) const;
      77             : };
      78             : 
      79             : // item for the dialog / options page
      80             : 
      81             : class SC_DLLPUBLIC ScTpFormulaItem : public SfxPoolItem
      82             : {
      83             : public:
      84             :     TYPEINFO_OVERRIDE();
      85             :     ScTpFormulaItem( sal_uInt16 nWhich,
      86             :                    const ScFormulaOptions& rOpt );
      87             :     ScTpFormulaItem( const ScTpFormulaItem& rItem );
      88             :     virtual ~ScTpFormulaItem();
      89             : 
      90             :     virtual bool            operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
      91             :     virtual SfxPoolItem*    Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
      92             : 
      93           0 :     const ScFormulaOptions& GetFormulaOptions() const { return theOptions; }
      94             : 
      95             : private:
      96             :     ScFormulaOptions theOptions;
      97             : };
      98             : 
      99             : // config item
     100             : 
     101          32 : class ScFormulaCfg : public ScFormulaOptions, public utl::ConfigItem
     102             : {
     103             :     typedef std::map<OUString,sal_uInt16> PropsToIds;
     104             :     static com::sun::star::uno::Sequence<OUString> GetPropertyNames();
     105             :     static ScFormulaCfg::PropsToIds GetPropNamesToId();
     106             :     void UpdateFromProperties( const com::sun::star::uno::Sequence<OUString>& rNames );
     107             : 
     108             :     virtual void ImplCommit() SAL_OVERRIDE;
     109             : 
     110             : public:
     111             :     ScFormulaCfg();
     112             : 
     113             :     void SetOptions( const ScFormulaOptions& rNew );
     114             : 
     115             :     virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
     116             : };
     117             : 
     118             : #endif
     119             : 
     120             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11