Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / optuno.hxx
blobb75fb3c58e8f891defdff7328fded94f1642c5cc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_INC_OPTUNO_HXX
21 #define INCLUDED_SC_INC_OPTUNO_HXX
23 #include "docuno.hxx"
24 #include "docoptio.hxx"
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
40 class ScDocOptionsHelper
42 public:
43 static const SfxItemPropertyMapEntry* GetPropertyMap();
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 );
55 // empty doc object to supply only doc options
57 class ScDocOptionsObj : public ScModelObj
59 private:
60 ScDocOptions aOptions;
62 public:
63 ScDocOptionsObj( const ScDocOptions& rOpt );
64 virtual ~ScDocOptionsObj();
66 // get/setPropertyValue override to used stored options instead of document
68 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
69 const css::uno::Any& aValue )
70 throw(css::beans::UnknownPropertyException,
71 css::beans::PropertyVetoException,
72 css::lang::IllegalArgumentException,
73 css::lang::WrappedTargetException,
74 css::uno::RuntimeException,
75 std::exception) override;
76 virtual css::uno::Any SAL_CALL getPropertyValue(
77 const OUString& PropertyName )
78 throw(css::beans::UnknownPropertyException,
79 css::lang::WrappedTargetException,
80 css::uno::RuntimeException, std::exception) override;
83 #endif
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */