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 :
20 : #include <sal/config.h>
21 :
22 : #include <map>
23 :
24 : #include <svtools/helpopt.hxx>
25 : #include <unotools/configmgr.hxx>
26 : #include <unotools/configitem.hxx>
27 : #include <tools/debug.hxx>
28 : #include <com/sun/star/uno/Any.hxx>
29 : #include <com/sun/star/uno/Sequence.hxx>
30 : #include <vcl/help.hxx>
31 : #include <osl/mutex.hxx>
32 :
33 : #include "itemholder2.hxx"
34 :
35 : using namespace utl;
36 : using namespace com::sun::star::uno;
37 : using namespace com::sun::star;
38 :
39 :
40 : static SvtHelpOptions_Impl* pOptions = NULL;
41 : static sal_Int32 nRefCount = 0;
42 :
43 : #define EXTENDEDHELP 0
44 : #define HELPTIPS 1
45 : #define LOCALE 2
46 : #define SYSTEM 3
47 : #define STYLESHEET 4
48 :
49 412 : class SvtHelpOptions_Impl : public utl::ConfigItem
50 : {
51 : bool bExtendedHelp;
52 : bool bHelpTips;
53 : bool bWelcomeScreen;
54 : OUString aLocale;
55 : OUString aSystem;
56 : OUString sHelpStyleSheet;
57 :
58 : typedef std::map <OUString, sal_Int32> MapString2Int;
59 : MapString2Int aURLIgnoreCounters;
60 :
61 : static Sequence< OUString > GetPropertyNames();
62 :
63 : virtual void ImplCommit() SAL_OVERRIDE;
64 :
65 : public:
66 : SvtHelpOptions_Impl();
67 :
68 : virtual void Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
69 : void Load( const ::com::sun::star::uno::Sequence< OUString>& aPropertyNames);
70 :
71 0 : void SetExtendedHelp( bool b ) { bExtendedHelp= b; SetModified(); }
72 416 : bool IsExtendedHelp() const { return bExtendedHelp; }
73 0 : void SetHelpTips( bool b ) { bHelpTips = b; SetModified(); }
74 832 : bool IsHelpTips() const { return bHelpTips; }
75 :
76 0 : void SetWelcomeScreen( bool b ) { bWelcomeScreen = b; SetModified(); }
77 0 : bool IsWelcomeScreen() const { return bWelcomeScreen; }
78 2938 : OUString GetSystem() const { return aSystem; }
79 :
80 0 : const OUString& GetHelpStyleSheet()const{return sHelpStyleSheet;}
81 0 : void SetHelpStyleSheet(const OUString& rStyleSheet){sHelpStyleSheet = rStyleSheet; SetModified();}
82 :
83 : static ::osl::Mutex & getInitMutex();
84 : };
85 :
86 416 : Sequence< OUString > SvtHelpOptions_Impl::GetPropertyNames()
87 : {
88 : static const char* aPropNames[] =
89 : {
90 : "ExtendedTip",
91 : "Tip",
92 : "Locale",
93 : "System",
94 : "HelpStyleSheet"
95 : };
96 :
97 416 : const int nCount = sizeof( aPropNames ) / sizeof( const char* );
98 416 : Sequence< OUString > aNames( nCount );
99 416 : OUString* pNames = aNames.getArray();
100 2496 : for ( int i = 0; i < nCount; i++ )
101 2080 : pNames[i] = OUString::createFromAscii( aPropNames[i] );
102 :
103 416 : return aNames;
104 : }
105 :
106 7538 : ::osl::Mutex & SvtHelpOptions_Impl::getInitMutex()
107 : {
108 : static ::osl::Mutex *pMutex = 0;
109 :
110 7538 : if( ! pMutex )
111 : {
112 208 : ::osl::MutexGuard guard( ::osl::Mutex::getGlobalMutex() );
113 208 : if( ! pMutex )
114 : {
115 208 : static ::osl::Mutex mutex;
116 208 : pMutex = &mutex;
117 208 : }
118 : }
119 7538 : return *pMutex;
120 : }
121 :
122 :
123 :
124 :
125 208 : SvtHelpOptions_Impl::SvtHelpOptions_Impl()
126 : : ConfigItem( OUString( "Office.Common/Help" ) )
127 : , bExtendedHelp( false )
128 : , bHelpTips( true )
129 208 : , bWelcomeScreen( false )
130 : {
131 208 : Sequence< OUString > aNames = GetPropertyNames();
132 208 : Load( aNames );
133 208 : EnableNotification( aNames );
134 208 : }
135 :
136 :
137 416 : static int lcl_MapPropertyName( const OUString& rCompare,
138 : const uno::Sequence< OUString>& aInternalPropertyNames)
139 : {
140 624 : for(int nProp = 0; nProp < aInternalPropertyNames.getLength(); ++nProp)
141 : {
142 624 : if( aInternalPropertyNames[nProp] == rCompare )
143 416 : return nProp;
144 : }
145 0 : return -1;
146 : }
147 :
148 208 : void SvtHelpOptions_Impl::Load(const uno::Sequence< OUString>& rPropertyNames)
149 : {
150 208 : const uno::Sequence< OUString> aInternalPropertyNames( GetPropertyNames());
151 416 : Sequence< Any > aValues = GetProperties( rPropertyNames );
152 208 : const Any* pValues = aValues.getConstArray();
153 : DBG_ASSERT( aValues.getLength() == rPropertyNames.getLength(), "GetProperties failed" );
154 208 : if ( aValues.getLength() == rPropertyNames.getLength() )
155 : {
156 1248 : for ( int nProp = 0; nProp < rPropertyNames.getLength(); nProp++ )
157 : {
158 : #if OSL_DEBUG_LEVEL > 1
159 : DBG_ASSERT( pValues[nProp].hasValue(), "property value missing" );
160 : #endif
161 1040 : if ( pValues[nProp].hasValue() )
162 : {
163 : bool bTmp;
164 1040 : OUString aTmpStr;
165 1040 : sal_Int32 nTmpInt = 0;
166 1040 : if ( pValues[nProp] >>= bTmp )
167 : {
168 416 : switch ( lcl_MapPropertyName(rPropertyNames[nProp], aInternalPropertyNames) )
169 : {
170 : case EXTENDEDHELP :
171 208 : bExtendedHelp = bTmp;
172 208 : break;
173 : case HELPTIPS :
174 208 : bHelpTips = bTmp;
175 208 : break;
176 : default:
177 : SAL_WARN( "svtools.config", "Wrong Member!" );
178 0 : break;
179 : }
180 : }
181 624 : else if ( pValues[nProp] >>= aTmpStr )
182 : {
183 624 : switch ( nProp )
184 : {
185 : case LOCALE:
186 208 : aLocale = aTmpStr;
187 208 : break;
188 :
189 : case SYSTEM:
190 208 : aSystem = aTmpStr;
191 208 : break;
192 : case STYLESHEET :
193 208 : sHelpStyleSheet = aTmpStr;
194 208 : break;
195 : default:
196 : SAL_WARN( "svtools.config", "Wrong Member!" );
197 0 : break;
198 : }
199 : }
200 0 : else if ( pValues[nProp] >>= nTmpInt )
201 : {
202 : SAL_WARN( "svtools.config", "Wrong Member!" );
203 : }
204 : else
205 : {
206 : SAL_WARN( "svtools.config", "Wrong Type!" );
207 1040 : }
208 : }
209 : }
210 208 : if ( IsHelpTips() != Help::IsQuickHelpEnabled() )
211 208 : IsHelpTips() ? Help::EnableQuickHelp() : Help::DisableQuickHelp();
212 208 : if ( IsExtendedHelp() != Help::IsBalloonHelpEnabled() )
213 0 : IsExtendedHelp() ? Help::EnableBalloonHelp() : Help::DisableBalloonHelp();
214 208 : }
215 208 : }
216 :
217 :
218 :
219 0 : void SvtHelpOptions_Impl::ImplCommit()
220 : {
221 0 : Sequence< OUString > aNames = GetPropertyNames();
222 0 : Sequence< Any > aValues( aNames.getLength() );
223 0 : Any* pValues = aValues.getArray();
224 0 : for ( int nProp = 0; nProp < aNames.getLength(); nProp++ )
225 : {
226 0 : switch ( nProp )
227 : {
228 : case EXTENDEDHELP :
229 0 : pValues[nProp] <<= bExtendedHelp;
230 0 : break;
231 :
232 : case HELPTIPS :
233 0 : pValues[nProp] <<= bHelpTips;
234 0 : break;
235 :
236 : case LOCALE:
237 0 : pValues[nProp] <<= OUString(aLocale);
238 0 : break;
239 :
240 : case SYSTEM:
241 0 : pValues[nProp] <<= OUString(aSystem);
242 0 : break;
243 : case STYLESHEET :
244 0 : pValues[nProp] <<= OUString(sHelpStyleSheet);
245 0 : break;
246 :
247 : }
248 : }
249 :
250 0 : PutProperties( aNames, aValues );
251 0 : }
252 :
253 :
254 :
255 0 : void SvtHelpOptions_Impl::Notify( const Sequence<OUString>& aPropertyNames )
256 : {
257 0 : Load( aPropertyNames );
258 0 : }
259 :
260 3770 : SvtHelpOptions::SvtHelpOptions()
261 : {
262 : // Global access, must be guarded (multithreading)
263 3770 : ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
264 3770 : ++nRefCount;
265 3770 : if ( !pOptions )
266 : {
267 208 : pOptions = new SvtHelpOptions_Impl;
268 :
269 208 : svtools::ItemHolder2::holdConfigItem(E_HELPOPTIONS);
270 : }
271 3770 : pImp = pOptions;
272 3770 : }
273 :
274 :
275 :
276 7742 : SvtHelpOptions::~SvtHelpOptions()
277 : {
278 : // Global access, must be guarded (multithreading)
279 3768 : ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
280 3768 : if ( !--nRefCount )
281 : {
282 206 : if ( pOptions->IsModified() )
283 0 : pOptions->Commit();
284 206 : DELETEZ( pOptions );
285 3768 : }
286 3974 : }
287 :
288 0 : void SvtHelpOptions::SetExtendedHelp( bool b )
289 : {
290 0 : pImp->SetExtendedHelp( b );
291 0 : }
292 :
293 208 : bool SvtHelpOptions::IsExtendedHelp() const
294 : {
295 208 : return pImp->IsExtendedHelp();
296 : }
297 :
298 0 : void SvtHelpOptions::SetHelpTips( bool b )
299 : {
300 0 : pImp->SetHelpTips( b );
301 0 : }
302 :
303 416 : bool SvtHelpOptions::IsHelpTips() const
304 : {
305 416 : return pImp->IsHelpTips();
306 : }
307 :
308 :
309 :
310 0 : void SvtHelpOptions::SetWelcomeScreen( bool b )
311 : {
312 0 : pImp->SetWelcomeScreen( b );
313 0 : }
314 :
315 0 : bool SvtHelpOptions::IsWelcomeScreen() const
316 : {
317 0 : return pImp->IsWelcomeScreen();
318 : }
319 :
320 2938 : OUString SvtHelpOptions::GetSystem() const
321 : {
322 2938 : return pImp->GetSystem();
323 : }
324 :
325 0 : const OUString& SvtHelpOptions::GetHelpStyleSheet()const
326 : {
327 0 : return pImp->GetHelpStyleSheet();
328 : }
329 :
330 0 : void SvtHelpOptions::SetHelpStyleSheet(const OUString& rStyleSheet)
331 : {
332 0 : pImp->SetHelpStyleSheet(rStyleSheet);
333 0 : }
334 :
335 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|