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 SC_FORMULAOPT_HXX
11 : #define SC_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 0 : ::formula::FormulaGrammar::Grammar GetFormulaSyntax() const { return eFormulaGrammar; }
45 :
46 0 : ScCalcConfig& GetCalcConfig() { return aCalcConfig; }
47 0 : const ScCalcConfig& GetCalcConfig() const { return aCalcConfig; }
48 0 : void SetCalcConfig(const ScCalcConfig& rConfig) { aCalcConfig = rConfig; }
49 :
50 0 : void SetUseEnglishFuncName( bool bVal ) { bUseEnglishFuncName = bVal; }
51 0 : bool GetUseEnglishFuncName() const { return bUseEnglishFuncName; }
52 :
53 0 : void SetFormulaSepArg(const OUString& rSep) { aFormulaSepArg = rSep; }
54 0 : OUString GetFormulaSepArg() const { return aFormulaSepArg; }
55 :
56 0 : void SetFormulaSepArrayRow(const OUString& rSep) { aFormulaSepArrayRow = rSep; }
57 0 : OUString GetFormulaSepArrayRow() const { return aFormulaSepArrayRow; }
58 :
59 0 : void SetFormulaSepArrayCol(const OUString& rSep) { aFormulaSepArrayCol = rSep; }
60 0 : OUString GetFormulaSepArrayCol() const { return aFormulaSepArrayCol; }
61 :
62 0 : void SetOOXMLRecalcOptions( ScRecalcOptions eOpt ) { meOOXMLRecalc = eOpt; }
63 0 : ScRecalcOptions GetOOXMLRecalcOptions() const { return meOOXMLRecalc; }
64 :
65 0 : 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 OUString GetValueText() const;
91 : virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
92 : virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
93 :
94 0 : const ScFormulaOptions& GetFormulaOptions() const { return theOptions; }
95 :
96 : private:
97 : ScFormulaOptions theOptions;
98 : };
99 :
100 : // config item
101 :
102 0 : class ScFormulaCfg : public ScFormulaOptions, public utl::ConfigItem
103 : {
104 : typedef std::map<OUString,sal_uInt16> PropsToIds;
105 : com::sun::star::uno::Sequence<OUString> GetPropertyNames();
106 : ScFormulaCfg::PropsToIds GetPropNamesToId();
107 : void UpdateFromProperties( const com::sun::star::uno::Sequence<OUString>& rNames );
108 : public:
109 : ScFormulaCfg();
110 :
111 : void SetOptions( const ScFormulaOptions& rNew );
112 :
113 : virtual void Commit() SAL_OVERRIDE;
114 : virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
115 : };
116 :
117 : #endif
118 :
119 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|