update dev300-m57
[ooovba.git] / sc / inc / optuno.hxx
blob525420cf5827e51bce3b002e78932af74e18c4d0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: optuno.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SC_OPTUNO_HXX
32 #define SC_OPTUNO_HXX
34 #include "docuno.hxx"
35 #include "docoptio.hxx"
37 #define PROP_UNO_CALCASSHOWN 1
38 #define PROP_UNO_DEFTABSTOP 2
39 #define PROP_UNO_IGNORECASE 3
40 #define PROP_UNO_ITERENABLED 4
41 #define PROP_UNO_ITERCOUNT 5
42 #define PROP_UNO_ITEREPSILON 6
43 #define PROP_UNO_LOOKUPLABELS 7
44 #define PROP_UNO_MATCHWHOLE 8
45 #define PROP_UNO_NULLDATE 9
46 #define PROP_UNO_SPELLONLINE 10
47 #define PROP_UNO_STANDARDDEC 11
48 #define PROP_UNO_REGEXENABLED 12
51 class ScDocOptionsHelper
53 public:
54 static const SfxItemPropertyMapEntry* GetPropertyMap();
56 static sal_Bool setPropertyValue( ScDocOptions& rOptions,
57 const SfxItemPropertyMap& rPropMap,
58 const ::rtl::OUString& aPropertyName,
59 const ::com::sun::star::uno::Any& aValue );
60 static ::com::sun::star::uno::Any getPropertyValue(
61 const ScDocOptions& rOptions,
62 const SfxItemPropertyMap& rPropMap,
63 const ::rtl::OUString& PropertyName );
67 // empty doc object to supply only doc options
69 class ScDocOptionsObj : public ScModelObj
71 private:
72 ScDocOptions aOptions;
74 public:
75 ScDocOptionsObj( const ScDocOptions& rOpt );
76 virtual ~ScDocOptionsObj();
78 // get/setPropertyValue overloaded to used stored options instead of document
80 virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName,
81 const ::com::sun::star::uno::Any& aValue )
82 throw(::com::sun::star::beans::UnknownPropertyException,
83 ::com::sun::star::beans::PropertyVetoException,
84 ::com::sun::star::lang::IllegalArgumentException,
85 ::com::sun::star::lang::WrappedTargetException,
86 ::com::sun::star::uno::RuntimeException);
87 virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(
88 const ::rtl::OUString& PropertyName )
89 throw(::com::sun::star::beans::UnknownPropertyException,
90 ::com::sun::star::lang::WrappedTargetException,
91 ::com::sun::star::uno::RuntimeException);
95 #endif