Line data Source code
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 : #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_USRPREF_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_USRPREF_HXX
21 :
22 : #include <unotools/configitem.hxx>
23 : #include <fldupde.hxx>
24 : #include "viewopt.hxx"
25 : #include <tools/fldunit.hxx>
26 :
27 : class SwMasterUsrPref;
28 :
29 : class SwContentViewConfig : public utl::ConfigItem
30 : {
31 : SwMasterUsrPref& rParent;
32 : bool bWeb;
33 :
34 : com::sun::star::uno::Sequence<OUString> GetPropertyNames();
35 : public:
36 : SwContentViewConfig(bool bWeb, SwMasterUsrPref& rParent);
37 : virtual ~SwContentViewConfig();
38 :
39 : // utl::ConfigItem
40 : virtual void Notify( const com::sun::star::uno::Sequence< OUString > &rPropertyNames ) SAL_OVERRIDE;
41 : virtual void Commit() SAL_OVERRIDE;
42 :
43 : void Load();
44 0 : void SetModified(){ConfigItem::SetModified();}
45 : };
46 :
47 : class SwLayoutViewConfig : public utl::ConfigItem
48 : {
49 : SwMasterUsrPref& rParent;
50 : bool bWeb;
51 :
52 : com::sun::star::uno::Sequence<OUString> GetPropertyNames();
53 : public:
54 : SwLayoutViewConfig(bool bWeb, SwMasterUsrPref& rParent);
55 : virtual ~SwLayoutViewConfig();
56 :
57 : virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
58 : virtual void Commit() SAL_OVERRIDE;
59 : void Load();
60 182 : void SetModified(){ConfigItem::SetModified();}
61 : };
62 :
63 : class SwGridConfig : public utl::ConfigItem
64 : {
65 : SwMasterUsrPref& rParent;
66 :
67 : com::sun::star::uno::Sequence<OUString> GetPropertyNames();
68 : public:
69 : SwGridConfig(bool bWeb, SwMasterUsrPref& rParent);
70 : virtual ~SwGridConfig();
71 :
72 : virtual void Commit() SAL_OVERRIDE;
73 : virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
74 : void Load();
75 0 : void SetModified(){ConfigItem::SetModified();}
76 : };
77 :
78 : class SwCursorConfig : public utl::ConfigItem
79 : {
80 : SwMasterUsrPref& rParent;
81 :
82 : com::sun::star::uno::Sequence<OUString> GetPropertyNames();
83 : public:
84 : SwCursorConfig(SwMasterUsrPref& rParent);
85 : virtual ~SwCursorConfig();
86 :
87 : virtual void Commit() SAL_OVERRIDE;
88 : virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
89 : void Load();
90 0 : void SetModified(){ConfigItem::SetModified();}
91 : };
92 :
93 : class SwWebColorConfig : public utl::ConfigItem
94 : {
95 : SwMasterUsrPref& rParent;
96 : com::sun::star::uno::Sequence<OUString> aPropNames;
97 :
98 : public:
99 : SwWebColorConfig(SwMasterUsrPref& rParent);
100 : virtual ~SwWebColorConfig();
101 :
102 : virtual void Commit() SAL_OVERRIDE;
103 : virtual void Notify( const ::com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
104 : void Load();
105 0 : void SetModified(){ConfigItem::SetModified();}
106 : };
107 :
108 : class SwMasterUsrPref : public SwViewOption
109 : {
110 : friend class SwContentViewConfig;
111 : friend class SwLayoutViewConfig;
112 : friend class SwGridConfig;
113 : friend class SwCursorConfig;
114 : friend class SwWebColorConfig;
115 :
116 : SwFldUpdateFlags eFldUpdateFlags; //udpate of fields and charts
117 : sal_Int32 nLinkUpdateMode;
118 : FieldUnit eUserMetric;
119 : FieldUnit eHScrollMetric;
120 : bool bIsHScrollMetricSet;
121 : FieldUnit eVScrollMetric;
122 : bool bIsVScrollMetricSet;
123 :
124 : sal_Int32 nDefTab; //default tab stop distance
125 :
126 : bool bIsSquaredPageMode; //default page mode for text grid
127 : bool bIsAlignMathObjectsToBaseline;
128 :
129 : SwContentViewConfig aContentConfig;
130 : SwLayoutViewConfig aLayoutConfig;
131 : SwGridConfig aGridConfig;
132 : SwCursorConfig aCursorConfig;
133 : SwWebColorConfig* pWebColorConfig;
134 :
135 : bool bApplyCharUnit; // apply_char_unit
136 : public:
137 : SwMasterUsrPref(bool bWeb);
138 : ~SwMasterUsrPref();
139 :
140 : void SetUsrPref(const SwViewOption &rCopy);
141 :
142 : void Commit()
143 : {
144 : aContentConfig.Commit();
145 : aLayoutConfig.Commit();
146 : aGridConfig.Commit();
147 : aCursorConfig.Commit();
148 : if(pWebColorConfig)
149 : pWebColorConfig->Commit();
150 : }
151 0 : void SetModified()
152 : {
153 0 : aContentConfig.SetModified();
154 0 : aLayoutConfig.SetModified();
155 0 : aGridConfig.SetModified();
156 0 : aCursorConfig.SetModified();
157 0 : if(pWebColorConfig)
158 0 : pWebColorConfig->SetModified();
159 0 : }
160 :
161 172 : void SetUpdateLinkMode(sal_Int32 nSet, bool bNoModify = false)
162 : {
163 172 : nLinkUpdateMode = nSet;
164 172 : if(!bNoModify)
165 0 : aContentConfig.SetModified();
166 172 : }
167 3728 : sal_Int32 GetUpdateLinkMode() const {return nLinkUpdateMode; }
168 :
169 172 : void SetUpdateFields(bool bSet, bool bNoModify = false)
170 : {
171 172 : if(bSet && eFldUpdateFlags == AUTOUPD_OFF)
172 : {
173 86 : eFldUpdateFlags = AUTOUPD_FIELD_ONLY;
174 172 : if(!bNoModify)
175 0 : aContentConfig.SetModified();
176 : }
177 86 : else if(!bSet)
178 : {
179 0 : eFldUpdateFlags = AUTOUPD_OFF;
180 0 : if(!bNoModify)
181 0 : aContentConfig.SetModified();
182 : }
183 172 : };
184 0 : bool IsUpdateFields()const {return eFldUpdateFlags != AUTOUPD_OFF; }
185 :
186 482 : SwFldUpdateFlags GetFldUpdateFlags()const {return eFldUpdateFlags;}
187 0 : void SetFldUpdateFlags(SwFldUpdateFlags eSet, bool bNoModify = false)
188 : {
189 0 : eFldUpdateFlags = eSet;
190 0 : if(!bNoModify)
191 0 : aContentConfig.SetModified();
192 0 : }
193 :
194 172 : void SetUpdateCharts(bool bSet, bool bNoModify = false)
195 : {
196 172 : if(bSet)
197 : {
198 172 : eFldUpdateFlags = AUTOUPD_FIELD_AND_CHARTS;
199 172 : if(!bNoModify)
200 0 : aContentConfig.SetModified();
201 : }
202 0 : else if(eFldUpdateFlags == AUTOUPD_FIELD_AND_CHARTS)
203 : {
204 0 : eFldUpdateFlags = AUTOUPD_FIELD_ONLY;
205 0 : if(!bNoModify)
206 0 : aContentConfig.SetModified();
207 : }
208 172 : };
209 0 : bool IsUpdateCharts()const {return eFldUpdateFlags == AUTOUPD_FIELD_AND_CHARTS; }
210 :
211 519 : FieldUnit GetMetric() const { return eUserMetric;}
212 24 : void SetMetric(FieldUnit eSet, bool bNoModify = false)
213 : {
214 24 : eUserMetric = eSet;
215 24 : if(!bNoModify)
216 8 : aLayoutConfig.SetModified();
217 24 : }
218 :
219 0 : bool IsHScrollMetric()const {return bIsHScrollMetricSet;}
220 4708 : FieldUnit GetHScrollMetric() const { return bIsHScrollMetricSet ? eHScrollMetric : eUserMetric;}
221 0 : void SetHScrollMetric(FieldUnit eSet, bool bNoModify = false)
222 : {
223 0 : eHScrollMetric = eSet; bIsHScrollMetricSet = true;
224 0 : if(!bNoModify)
225 0 : aLayoutConfig.SetModified();
226 0 : }
227 :
228 0 : bool IsVScrollMetric()const {return bIsVScrollMetricSet;}
229 4708 : FieldUnit GetVScrollMetric() const { return bIsVScrollMetricSet ? eVScrollMetric : eUserMetric;}
230 0 : void SetVScrollMetric(FieldUnit eSet, bool bNoModify = false)
231 : {
232 0 : eVScrollMetric = eSet; bIsVScrollMetricSet = true;
233 0 : if(!bNoModify)
234 0 : aLayoutConfig.SetModified();
235 0 : }
236 :
237 84 : bool IsApplyCharUnit() const
238 : {
239 84 : return bApplyCharUnit;
240 : }
241 86 : void SetApplyCharUnit(bool bSet, bool bNoModify = false)
242 : {
243 86 : bApplyCharUnit = bSet;
244 86 : if(!bNoModify)
245 86 : aLayoutConfig.SetModified();
246 86 : }
247 :
248 4814 : sal_Int32 GetDefTab() const { return nDefTab;}
249 86 : void SetDefTab( sal_Int32 nSet, bool bNoModify = false )
250 : {
251 86 : nDefTab = nSet;
252 86 : if(!bNoModify)
253 0 : aLayoutConfig.SetModified();
254 86 : }
255 :
256 : //default page mode for text grid
257 4814 : bool IsSquaredPageMode() const {return bIsSquaredPageMode;}
258 86 : void SetDefaultPageMode( bool bVal, bool bNoModify = false )
259 : {
260 86 : bIsSquaredPageMode = bVal;
261 86 : if(!bNoModify)
262 0 : aLayoutConfig.SetModified();
263 86 : }
264 :
265 4820 : bool IsAlignMathObjectsToBaseline() const { return bIsAlignMathObjectsToBaseline; }
266 88 : void SetAlignMathObjectsToBaseline( bool bVal, bool bNoModify = false )
267 : {
268 88 : bIsAlignMathObjectsToBaseline = bVal;
269 88 : if(!bNoModify)
270 88 : aLayoutConfig.SetModified();
271 88 : }
272 : };
273 :
274 : #endif
275 :
276 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|