update emoji autocorrect entries from po-files
[LibreOffice.git] / sc / inc / optuno.hxx
blobc71314c8bcf5858851728c0672e1748d06bae548
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
39 class ScDocOptionsHelper
41 public:
42 static const SfxItemPropertyMapEntry* GetPropertyMap();
44 static bool setPropertyValue( ScDocOptions& rOptions,
45 const SfxItemPropertyMap& rPropMap,
46 const OUString& aPropertyName,
47 const ::com::sun::star::uno::Any& aValue );
48 static ::com::sun::star::uno::Any getPropertyValue(
49 const ScDocOptions& rOptions,
50 const SfxItemPropertyMap& rPropMap,
51 const OUString& PropertyName );
54 // empty doc object to supply only doc options
56 class ScDocOptionsObj : public ScModelObj
58 private:
59 ScDocOptions aOptions;
61 public:
62 ScDocOptionsObj( const ScDocOptions& rOpt );
63 virtual ~ScDocOptionsObj();
65 // get/setPropertyValue override to used stored options instead of document
67 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
68 const ::com::sun::star::uno::Any& aValue )
69 throw(::com::sun::star::beans::UnknownPropertyException,
70 ::com::sun::star::beans::PropertyVetoException,
71 ::com::sun::star::lang::IllegalArgumentException,
72 ::com::sun::star::lang::WrappedTargetException,
73 ::com::sun::star::uno::RuntimeException,
74 std::exception) SAL_OVERRIDE;
75 virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(
76 const OUString& PropertyName )
77 throw(::com::sun::star::beans::UnknownPropertyException,
78 ::com::sun::star::lang::WrappedTargetException,
79 ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */