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_OPTUNO_HXX
21 #define INCLUDED_SC_INC_OPTUNO_HXX
22 
23 #include "docuno.hxx"
24 #include "docoptio.hxx"
25 
26 #define PROP_UNO_CALCASSHOWN    1
27 #define PROP_UNO_DEFTABSTOP     2
28 #define PROP_UNO_IGNORECASE     3
29 #define PROP_UNO_ITERENABLED    4
30 #define PROP_UNO_ITERCOUNT      5
31 #define PROP_UNO_ITEREPSILON    6
32 #define PROP_UNO_LOOKUPLABELS   7
33 #define PROP_UNO_MATCHWHOLE     8
34 #define PROP_UNO_NULLDATE       9
35 #define PROP_UNO_SPELLONLINE    10
36 #define PROP_UNO_STANDARDDEC    11
37 #define PROP_UNO_REGEXENABLED   12
38 #define PROP_UNO_WILDCARDSENABLED 13
39 
40 class ScDocOptionsHelper
41 {
42 public:
43     static const SfxItemPropertyMapEntry* GetPropertyMap();
44 
45     static bool setPropertyValue( ScDocOptions& rOptions,
46                                     const SfxItemPropertyMap& rPropMap,
47                                     const OUString& aPropertyName,
48                                     const css::uno::Any& aValue );
49     static css::uno::Any getPropertyValue(
50                                     const ScDocOptions& rOptions,
51                                     const SfxItemPropertyMap& rPropMap,
52                                     const OUString& PropertyName );
53 };
54 
55 //  empty doc object to supply only doc options
56 
57 class ScDocOptionsObj final : public ScModelObj
58 {
59 private:
60     ScDocOptions    aOptions;
61 
62 public:
63                             ScDocOptionsObj( const ScDocOptions& rOpt );
64     virtual                 ~ScDocOptionsObj() override;
65 
66     // get/setPropertyValue override to used stored options instead of document
67 
68     virtual void SAL_CALL   setPropertyValue( const OUString& aPropertyName,
69                                     const css::uno::Any& aValue ) override;
70     virtual css::uno::Any SAL_CALL getPropertyValue(
71                                     const OUString& PropertyName ) override;
72 };
73 
74 #endif
75 
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
77