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 0 : 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 : ::osl::Mutex aIgnoreCounterSafety;
61 :
62 : Sequence< OUString > GetPropertyNames();
63 :
64 : public:
65 : SvtHelpOptions_Impl();
66 :
67 : virtual void Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ) SAL_OVERRIDE;
68 : void Load( const ::com::sun::star::uno::Sequence< OUString>& aPropertyNames);
69 : virtual void Commit() SAL_OVERRIDE;
70 :
71 0 : void SetExtendedHelp( bool b ) { bExtendedHelp= b; SetModified(); }
72 0 : bool IsExtendedHelp() const { return bExtendedHelp; }
73 0 : void SetHelpTips( bool b ) { bHelpTips = b; SetModified(); }
74 0 : bool IsHelpTips() const { return bHelpTips; }
75 :
76 0 : void SetWelcomeScreen( bool b ) { bWelcomeScreen = b; SetModified(); }
77 0 : bool IsWelcomeScreen() const { return bWelcomeScreen; }
78 0 : 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 0 : 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 0 : const int nCount = sizeof( aPropNames ) / sizeof( const char* );
98 0 : Sequence< OUString > aNames( nCount );
99 0 : OUString* pNames = aNames.getArray();
100 0 : for ( int i = 0; i < nCount; i++ )
101 0 : pNames[i] = OUString::createFromAscii( aPropNames[i] );
102 :
103 0 : return aNames;
104 : }
105 :
106 0 : ::osl::Mutex & SvtHelpOptions_Impl::getInitMutex()
107 : {
108 : static ::osl::Mutex *pMutex = 0;
109 :
110 0 : if( ! pMutex )
111 : {
112 0 : ::osl::MutexGuard guard( ::osl::Mutex::getGlobalMutex() );
113 0 : if( ! pMutex )
114 : {
115 0 : static ::osl::Mutex mutex;
116 0 : pMutex = &mutex;
117 0 : }
118 : }
119 0 : return *pMutex;
120 : }
121 :
122 :
123 :
124 :
125 0 : SvtHelpOptions_Impl::SvtHelpOptions_Impl()
126 : : ConfigItem( OUString( "Office.Common/Help" ) )
127 : , bExtendedHelp( false )
128 : , bHelpTips( true )
129 0 : , bWelcomeScreen( false )
130 : {
131 0 : Sequence< OUString > aNames = GetPropertyNames();
132 0 : Load( aNames );
133 0 : EnableNotification( aNames );
134 0 : }
135 :
136 :
137 0 : static int lcl_MapPropertyName( const OUString& rCompare,
138 : const uno::Sequence< OUString>& aInternalPropertyNames)
139 : {
140 0 : for(int nProp = 0; nProp < aInternalPropertyNames.getLength(); ++nProp)
141 : {
142 0 : if( aInternalPropertyNames[nProp] == rCompare )
143 0 : return nProp;
144 : }
145 0 : return -1;
146 : }
147 :
148 0 : void SvtHelpOptions_Impl::Load(const uno::Sequence< OUString>& rPropertyNames)
149 : {
150 0 : const uno::Sequence< OUString> aInternalPropertyNames( GetPropertyNames());
151 0 : Sequence< Any > aValues = GetProperties( rPropertyNames );
152 0 : const Any* pValues = aValues.getConstArray();
153 : DBG_ASSERT( aValues.getLength() == rPropertyNames.getLength(), "GetProperties failed" );
154 0 : if ( aValues.getLength() == rPropertyNames.getLength() )
155 : {
156 0 : 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 0 : if ( pValues[nProp].hasValue() )
162 : {
163 0 : sal_Bool bTmp = sal_Bool();
164 0 : OUString aTmpStr;
165 0 : sal_Int32 nTmpInt = 0;
166 0 : if ( pValues[nProp] >>= bTmp )
167 : {
168 0 : switch ( lcl_MapPropertyName(rPropertyNames[nProp], aInternalPropertyNames) )
169 : {
170 : case EXTENDEDHELP :
171 0 : bExtendedHelp = bTmp;
172 0 : break;
173 : case HELPTIPS :
174 0 : bHelpTips = bTmp;
175 0 : break;
176 : default:
177 : SAL_WARN( "svtools.config", "Wrong Member!" );
178 0 : break;
179 : }
180 : }
181 0 : else if ( pValues[nProp] >>= aTmpStr )
182 : {
183 0 : switch ( nProp )
184 : {
185 : case LOCALE:
186 0 : aLocale = aTmpStr;
187 0 : break;
188 :
189 : case SYSTEM:
190 0 : aSystem = aTmpStr;
191 0 : break;
192 : case STYLESHEET :
193 0 : sHelpStyleSheet = aTmpStr;
194 0 : 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 0 : }
208 : }
209 : }
210 0 : if ( IsHelpTips() != Help::IsQuickHelpEnabled() )
211 0 : IsHelpTips() ? Help::EnableQuickHelp() : Help::DisableQuickHelp();
212 0 : if ( IsExtendedHelp() != Help::IsBalloonHelpEnabled() )
213 0 : IsExtendedHelp() ? Help::EnableBalloonHelp() : Help::DisableBalloonHelp();
214 0 : }
215 0 : }
216 :
217 :
218 :
219 0 : void SvtHelpOptions_Impl::Commit()
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 0 : SvtHelpOptions::SvtHelpOptions()
261 : {
262 : // Global access, must be guarded (multithreading)
263 0 : ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
264 0 : ++nRefCount;
265 0 : if ( !pOptions )
266 : {
267 0 : pOptions = new SvtHelpOptions_Impl;
268 :
269 0 : svtools::ItemHolder2::holdConfigItem(E_HELPOPTIONS);
270 : }
271 0 : pImp = pOptions;
272 0 : }
273 :
274 :
275 :
276 0 : SvtHelpOptions::~SvtHelpOptions()
277 : {
278 : // Global access, must be guarded (multithreading)
279 0 : ::osl::MutexGuard aGuard( SvtHelpOptions_Impl::getInitMutex() );
280 0 : if ( !--nRefCount )
281 : {
282 0 : if ( pOptions->IsModified() )
283 0 : pOptions->Commit();
284 0 : DELETEZ( pOptions );
285 0 : }
286 0 : }
287 :
288 0 : void SvtHelpOptions::SetExtendedHelp( bool b )
289 : {
290 0 : pImp->SetExtendedHelp( b );
291 0 : }
292 :
293 0 : bool SvtHelpOptions::IsExtendedHelp() const
294 : {
295 0 : return pImp->IsExtendedHelp();
296 : }
297 :
298 0 : void SvtHelpOptions::SetHelpTips( bool b )
299 : {
300 0 : pImp->SetHelpTips( b );
301 0 : }
302 :
303 0 : bool SvtHelpOptions::IsHelpTips() const
304 : {
305 0 : 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 0 : OUString SvtHelpOptions::GetSystem() const
321 : {
322 0 : 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: */
|