tdf#62032 use style list level when changing style
[LibreOffice.git] / sc / inc / appoptio.hxx
blob09e3a8455916874b95b13175a650f225d223da1f
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 #pragma once
22 #include <sfx2/zoomitem.hxx>
23 #include "scdllapi.h"
24 #include "global.hxx"
25 #include "optutil.hxx"
26 #include <tools/fldunit.hxx>
27 #include <tools/color.hxx>
28 #include <tools/link.hxx>
30 class SC_DLLPUBLIC ScAppOptions
32 public:
33 ScAppOptions();
34 ScAppOptions( const ScAppOptions& rCpy );
35 ~ScAppOptions();
37 void SetDefaults();
39 void SetAppMetric( FieldUnit eUnit ) { eMetric = eUnit; }
40 FieldUnit GetAppMetric() const { return eMetric; }
41 void SetZoom( sal_uInt16 nNew ) { nZoom = nNew; }
42 sal_uInt16 GetZoom() const { return nZoom; }
43 void SetZoomType( SvxZoomType eNew ) { eZoomType = eNew; }
44 SvxZoomType GetZoomType() const { return eZoomType; }
45 void SetSynchronizeZoom( bool bNew ) { bSynchronizeZoom = bNew; }
46 bool GetSynchronizeZoom() const { return bSynchronizeZoom; }
47 sal_uInt16 GetLRUFuncListCount() const { return nLRUFuncCount; }
48 sal_uInt16* GetLRUFuncList() const { return pLRUList.get(); }
49 void SetLRUFuncList( const sal_uInt16* pList,
50 const sal_uInt16 nCount );
51 void SetStatusFunc( sal_uInt32 nNew ) { nStatusFunc = nNew; }
52 sal_uInt32 GetStatusFunc() const { return nStatusFunc; }
53 void SetAutoComplete( bool bNew ) { bAutoComplete = bNew; }
54 bool GetAutoComplete() const { return bAutoComplete; }
55 void SetDetectiveAuto( bool bNew ) { bDetectiveAuto = bNew; }
56 bool GetDetectiveAuto() const { return bDetectiveAuto; }
58 void SetTrackContentColor(Color nNew) { nTrackContentColor = nNew; }
59 Color GetTrackContentColor() const { return nTrackContentColor; }
60 void SetTrackInsertColor(Color nNew) { nTrackInsertColor = nNew; }
61 Color GetTrackInsertColor() const { return nTrackInsertColor; }
62 void SetTrackDeleteColor(Color nNew) { nTrackDeleteColor = nNew; }
63 Color GetTrackDeleteColor() const { return nTrackDeleteColor; }
64 void SetTrackMoveColor(Color nNew) { nTrackMoveColor = nNew; }
65 Color GetTrackMoveColor() const { return nTrackMoveColor; }
67 ScLkUpdMode GetLinkMode() const { return eLinkMode ;}
68 void SetLinkMode( ScLkUpdMode nSet ) { eLinkMode = nSet;}
70 void SetDefaultObjectSizeWidth(sal_Int32 nNew) { nDefaultObjectSizeWidth = nNew; }
71 sal_Int32 GetDefaultObjectSizeWidth() const { return nDefaultObjectSizeWidth; }
72 void SetDefaultObjectSizeHeight(sal_Int32 nNew) { nDefaultObjectSizeHeight = nNew; }
73 sal_Int32 GetDefaultObjectSizeHeight() const { return nDefaultObjectSizeHeight; }
75 void SetShowSharedDocumentWarning( bool bNew ) { mbShowSharedDocumentWarning = bNew; }
76 bool GetShowSharedDocumentWarning() const { return mbShowSharedDocumentWarning; }
77 ScOptionsUtil::KeyBindingType GetKeyBindingType() const { return meKeyBindingType; }
78 void SetKeyBindingType( ScOptionsUtil::KeyBindingType e ) { meKeyBindingType = e; }
80 ScAppOptions& operator= ( const ScAppOptions& rOpt );
82 private:
83 FieldUnit eMetric;
84 sal_uInt16 nLRUFuncCount;
85 std::unique_ptr<sal_uInt16[]>
86 pLRUList;
87 SvxZoomType eZoomType;
88 sal_uInt16 nZoom;
89 bool bSynchronizeZoom;
90 sal_uInt32 nStatusFunc;
91 bool bAutoComplete;
92 bool bDetectiveAuto;
93 Color nTrackContentColor;
94 Color nTrackInsertColor;
95 Color nTrackDeleteColor;
96 Color nTrackMoveColor;
97 ScLkUpdMode eLinkMode;
98 sal_Int32 nDefaultObjectSizeWidth;
99 sal_Int32 nDefaultObjectSizeHeight;
100 bool mbShowSharedDocumentWarning;
101 ScOptionsUtil::KeyBindingType meKeyBindingType;
104 // Config Item containing app options
106 class ScAppCfg : public ScAppOptions
108 // spread about 5 config paths
109 //! split ScAppOptions into different classes
111 ScLinkConfigItem aLayoutItem;
112 ScLinkConfigItem aInputItem;
113 ScLinkConfigItem aRevisionItem;
114 ScLinkConfigItem aContentItem;
115 ScLinkConfigItem aSortListItem;
116 ScLinkConfigItem aMiscItem;
117 ScLinkConfigItem aCompatItem;
119 DECL_LINK( LayoutCommitHdl, ScLinkConfigItem&, void );
120 DECL_LINK( InputCommitHdl, ScLinkConfigItem&, void );
121 DECL_LINK( RevisionCommitHdl, ScLinkConfigItem&, void );
122 DECL_LINK( ContentCommitHdl, ScLinkConfigItem&, void );
123 DECL_LINK( SortListCommitHdl, ScLinkConfigItem&, void );
124 DECL_LINK( MiscCommitHdl, ScLinkConfigItem&, void );
125 DECL_LINK( CompatCommitHdl, ScLinkConfigItem&, void );
127 static css::uno::Sequence<OUString> GetLayoutPropertyNames();
128 static css::uno::Sequence<OUString> GetInputPropertyNames();
129 static css::uno::Sequence<OUString> GetRevisionPropertyNames();
130 static css::uno::Sequence<OUString> GetContentPropertyNames();
131 static css::uno::Sequence<OUString> GetSortListPropertyNames();
132 static css::uno::Sequence<OUString> GetMiscPropertyNames();
133 static css::uno::Sequence<OUString> GetCompatPropertyNames();
135 public:
136 ScAppCfg();
138 void SetOptions( const ScAppOptions& rNew );
139 void OptionsChanged(); // after direct access to ScAppOptions base class
142 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */