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 :
21 : #include "configurationaccess.hxx"
22 : #include <com/sun/star/frame/XComponentLoader.hpp>
23 : #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
24 : #include <com/sun/star/configuration/theDefaultProvider.hpp>
25 : #include <com/sun/star/util/XChangesBatch.hpp>
26 : #include <com/sun/star/container/XNameContainer.hpp>
27 : #include <com/sun/star/util/XMacroExpander.hpp>
28 : #include <com/sun/star/lang/XSingleServiceFactory.hpp>
29 : #include <sal/macros.h>
30 :
31 : using namespace ::rtl;
32 : using namespace ::com::sun::star;
33 : using namespace ::com::sun::star::uno;
34 : using namespace ::com::sun::star::beans;
35 : using namespace ::com::sun::star::container;
36 :
37 0 : static const OUString& GetPathToConfigurationRoot (void)
38 : {
39 : static const OUString sPathToConfigurationRoot (
40 0 : RTL_CONSTASCII_USTRINGPARAM("org.openoffice.Office.extension.SunPresentationMinimizer"));
41 0 : return sPathToConfigurationRoot;
42 : }
43 :
44 0 : void OptimizerSettings::LoadSettingsFromConfiguration( const Reference< XNameAccess >& rSettings )
45 : {
46 0 : if ( rSettings.is() )
47 : {
48 0 : const Sequence< OUString > aElements( rSettings->getElementNames() );
49 0 : for ( int i = 0; i < aElements.getLength(); i++ )
50 : {
51 : try
52 : {
53 0 : const OUString aPropertyName( aElements[ i ] );
54 0 : Any aValue( rSettings->getByName( aPropertyName ) );
55 0 : switch( TKGet( aPropertyName ) )
56 : {
57 0 : case TK_Name : aValue >>= maName; break;
58 0 : case TK_JPEGCompression : aValue >>= mbJPEGCompression; break;
59 0 : case TK_JPEGQuality : aValue >>= mnJPEGQuality; break;
60 0 : case TK_RemoveCropArea : aValue >>= mbRemoveCropArea; break;
61 0 : case TK_ImageResolution : aValue >>= mnImageResolution; break;
62 0 : case TK_EmbedLinkedGraphics : aValue >>= mbEmbedLinkedGraphics; break;
63 0 : case TK_OLEOptimization : aValue >>= mbOLEOptimization; break;
64 0 : case TK_OLEOptimizationType : aValue >>= mnOLEOptimizationType; break;
65 0 : case TK_DeleteUnusedMasterPages : aValue >>= mbDeleteUnusedMasterPages; break;
66 0 : case TK_DeleteHiddenSlides : aValue >>= mbDeleteHiddenSlides; break;
67 0 : case TK_DeleteNotesPages : aValue >>= mbDeleteNotesPages ;break;
68 0 : case TK_SaveAs : aValue >>= mbSaveAs; break;
69 : // case TK_SaveAsURL : aValue >>= maSaveAsURL; break; // URL is not saved to configuration
70 : // case TK_FilterName : aValue >>= maFilterName; break; // URL is not saved to configuration
71 0 : case TK_OpenNewDocument : aValue >>= mbOpenNewDocument; break;
72 0 : default: break;
73 0 : }
74 : }
75 0 : catch (const Exception&)
76 : {
77 : }
78 0 : }
79 : }
80 0 : }
81 :
82 0 : void OptimizerSettings::SaveSettingsToConfiguration( const Reference< XNameReplace >& rSettings )
83 : {
84 0 : if ( rSettings.is() )
85 : {
86 : OUString pNames[] = {
87 : TKGet( TK_Name ),
88 : TKGet( TK_JPEGCompression ),
89 : TKGet( TK_JPEGQuality ),
90 : TKGet( TK_RemoveCropArea ),
91 : TKGet( TK_ImageResolution ),
92 : TKGet( TK_EmbedLinkedGraphics ),
93 : TKGet( TK_OLEOptimization ),
94 : TKGet( TK_OLEOptimizationType ),
95 : TKGet( TK_DeleteUnusedMasterPages ),
96 : TKGet( TK_DeleteHiddenSlides ),
97 : TKGet( TK_DeleteNotesPages ),
98 : TKGet( TK_SaveAs ),
99 : // TKGet( TK_SaveAsURL ),
100 : // TKGet( TK_FilterName ),
101 0 : TKGet( TK_OpenNewDocument ) };
102 :
103 : Any pValues[] = {
104 : Any( maName ),
105 : Any( mbJPEGCompression ),
106 : Any( mnJPEGQuality ),
107 : Any( mbRemoveCropArea ),
108 : Any( mnImageResolution ),
109 : Any( mbEmbedLinkedGraphics ),
110 : Any( mbOLEOptimization ),
111 : Any( mnOLEOptimizationType ),
112 : Any( mbDeleteUnusedMasterPages ),
113 : Any( mbDeleteHiddenSlides ),
114 : Any( mbDeleteNotesPages ),
115 : Any( mbSaveAs ),
116 : // Any( maSaveAsURL ),
117 : // Any( maFilterName ),
118 0 : Any( mbOpenNewDocument ) };
119 :
120 0 : sal_Int32 i, nCount = SAL_N_ELEMENTS( pNames );
121 :
122 0 : for ( i = 0; i < nCount; i++ )
123 : {
124 : try
125 : {
126 0 : rSettings->replaceByName( pNames[ i ], pValues[ i ] );
127 : }
128 0 : catch (const Exception&)
129 : {
130 : }
131 0 : }
132 : }
133 0 : }
134 :
135 0 : sal_Bool OptimizerSettings::operator==( const OptimizerSettings& rOptimizerSettings ) const
136 : {
137 : return ( rOptimizerSettings.mbJPEGCompression == mbJPEGCompression )
138 : && ( rOptimizerSettings.mnJPEGQuality == mnJPEGQuality )
139 : && ( rOptimizerSettings.mbRemoveCropArea == mbRemoveCropArea )
140 : && ( rOptimizerSettings.mnImageResolution == mnImageResolution )
141 : && ( rOptimizerSettings.mbEmbedLinkedGraphics == mbEmbedLinkedGraphics )
142 : && ( rOptimizerSettings.mbOLEOptimization == mbOLEOptimization )
143 : && ( rOptimizerSettings.mnOLEOptimizationType == mnOLEOptimizationType )
144 : && ( rOptimizerSettings.mbDeleteUnusedMasterPages == mbDeleteUnusedMasterPages )
145 : && ( rOptimizerSettings.mbDeleteHiddenSlides == mbDeleteHiddenSlides )
146 0 : && ( rOptimizerSettings.mbDeleteNotesPages == mbDeleteNotesPages );
147 : // && ( rOptimizerSettings.mbOpenNewDocument == mbOpenNewDocument );
148 : }
149 :
150 :
151 0 : ConfigurationAccess::ConfigurationAccess( const Reference< uno::XComponentContext >& rxMSF, OptimizerSettings* pDefaultSettings ) :
152 0 : mxMSF( rxMSF )
153 : {
154 0 : LoadStrings();
155 : maSettings.push_back( pDefaultSettings ?
156 0 : *pDefaultSettings : OptimizerSettings() );
157 0 : maSettings.back().maName = TKGet( TK_LastUsedSettings );
158 0 : LoadConfiguration();
159 0 : maInitialSettings = maSettings;
160 0 : };
161 :
162 0 : ConfigurationAccess::~ConfigurationAccess()
163 : {
164 0 : }
165 :
166 0 : rtl::OUString ConfigurationAccess::getPath( const PPPOptimizerTokenEnum eToken )
167 : {
168 0 : rtl::OUString aPath;
169 : try
170 : {
171 0 : static const OUString sProtocol( RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.expand:" ) );
172 0 : static const OUString stheMacroExpander( RTL_CONSTASCII_USTRINGPARAM( "/singletons/com.sun.star.util.theMacroExpander" ) );
173 0 : Reference< container::XNameAccess > xSet( OpenConfiguration( true ), UNO_QUERY_THROW );
174 0 : if ( xSet->hasByName( TKGet( eToken ) ) )
175 0 : xSet->getByName( TKGet( eToken ) ) >>= aPath;
176 0 : if ( aPath.match( sProtocol, 0 ) )
177 : {
178 0 : rtl::OUString aTmp( aPath.copy( 20 ) );
179 0 : Reference< util::XMacroExpander > xExpander;
180 0 : if ( mxMSF->getValueByName( stheMacroExpander ) >>= xExpander )
181 : {
182 0 : aPath = xExpander->expandMacros( aTmp );
183 0 : }
184 0 : }
185 : }
186 0 : catch (const Exception&)
187 : {
188 : }
189 0 : return aPath;
190 : }
191 :
192 0 : rtl::OUString ConfigurationAccess::getString( const PPPOptimizerTokenEnum eToken ) const
193 : {
194 0 : std::map< PPPOptimizerTokenEnum, rtl::OUString, Compare >::const_iterator aIter( maStrings.find( eToken ) );
195 0 : return aIter != maStrings.end() ? ((*aIter).second) : rtl::OUString();
196 : }
197 :
198 0 : void ConfigurationAccess::LoadStrings()
199 : {
200 : try
201 : {
202 : do
203 : {
204 0 : Reference< XInterface > xRoot( OpenConfiguration( true ) );
205 0 : if ( !xRoot.is() )
206 : break;
207 0 : Reference< container::XNameAccess > xSet( GetConfigurationNode( xRoot, TKGet( TK_Strings ) ), UNO_QUERY );
208 0 : if ( xSet.is() )
209 : {
210 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
211 0 : for ( int i = 0; i < aElements.getLength(); i++ )
212 : {
213 : try
214 : {
215 0 : OUString aString, aPropertyName( aElements[ i ] );
216 0 : if ( xSet->getByName( aPropertyName ) >>= aString )
217 0 : maStrings[ TKGet( aPropertyName ) ] = aString;
218 : }
219 0 : catch (const Exception&)
220 : {
221 : }
222 0 : }
223 0 : }
224 : }
225 : while( false );
226 : }
227 0 : catch (const Exception&)
228 : {
229 : }
230 0 : }
231 :
232 0 : void ConfigurationAccess::LoadConfiguration()
233 : {
234 : try
235 : {
236 : do
237 : {
238 0 : Reference< XInterface > xRoot( OpenConfiguration( true ) );
239 0 : if ( !xRoot.is() )
240 : break;
241 0 : Reference< container::XNameAccess > xSet( GetConfigurationNode( xRoot, TKGet( TK_LastUsedSettings ) ), UNO_QUERY );
242 0 : if ( xSet.is() )
243 : {
244 0 : OptimizerSettings& rCurrent( maSettings.front() );
245 0 : rCurrent.LoadSettingsFromConfiguration( xSet );
246 : }
247 0 : xSet = Reference< container::XNameAccess >( GetConfigurationNode( xRoot, TKGet( TK_Settings_Templates ) ), UNO_QUERY );
248 0 : if ( xSet.is() )
249 : {
250 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
251 0 : for ( int i = 0; i < aElements.getLength(); i++ )
252 : {
253 : try
254 : {
255 0 : OUString aPath( TKGet( TK_Settings_Templates_ ).concat( aElements[ i ] ) );
256 0 : Reference< container::XNameAccess > xTemplates( GetConfigurationNode( xRoot, aPath ), UNO_QUERY );
257 0 : if ( xTemplates.is() )
258 : {
259 0 : maSettings.push_back( OptimizerSettings() );
260 0 : maSettings.back().LoadSettingsFromConfiguration( xTemplates );
261 0 : }
262 : }
263 0 : catch (const Exception&)
264 : {
265 : }
266 0 : }
267 0 : }
268 : }
269 : while( false );
270 : }
271 0 : catch (const Exception&)
272 : {
273 : }
274 0 : }
275 :
276 0 : void ConfigurationAccess::SaveConfiguration()
277 : {
278 : try
279 : {
280 : do
281 : {
282 : int i;
283 : unsigned int k;
284 0 : Reference<util::XChangesBatch> xRoot( OpenConfiguration( false ), UNO_QUERY_THROW );
285 :
286 : // storing the last used settings
287 0 : Reference< container::XNameReplace > xSet( GetConfigurationNode( xRoot, TKGet( TK_LastUsedSettings ) ), UNO_QUERY_THROW );
288 0 : OptimizerSettings& rCurrent( maSettings.front() );
289 0 : rCurrent.SaveSettingsToConfiguration( xSet );
290 :
291 : // updating template elements
292 0 : xSet = Reference< container::XNameReplace >( GetConfigurationNode( xRoot, TKGet( TK_Settings_Templates ) ), UNO_QUERY_THROW );
293 0 : Reference< container::XNameContainer > xNameContainer( xSet, UNO_QUERY_THROW );
294 :
295 0 : const Sequence< OUString > aElements( xSet->getElementNames() );
296 0 : for( i = 0; i < aElements.getLength(); i++ )
297 0 : xNameContainer->removeByName( aElements[ i ] );
298 :
299 0 : for( k = 1; k < maSettings.size(); k++ )
300 : {
301 0 : OptimizerSettings& rSettings( maSettings[ k ] );
302 0 : OUString aElementName( TKGet( TK_Template ).concat( OUString::valueOf( static_cast< sal_Int32 >( k ) ) ) );
303 0 : Reference< lang::XSingleServiceFactory > xChildFactory ( xSet, UNO_QUERY_THROW );
304 0 : Reference< container::XNameReplace > xChild( xChildFactory->createInstance(), UNO_QUERY_THROW );
305 0 : xNameContainer->insertByName( aElementName, Any( xChild ) );
306 :
307 0 : OUString aPath( TKGet( TK_Settings_Templates_ ).concat( aElementName ) );
308 0 : Reference< container::XNameReplace > xTemplates( GetConfigurationNode( xRoot, aPath ), UNO_QUERY );
309 0 : rSettings.SaveSettingsToConfiguration( xTemplates );
310 0 : }
311 0 : xRoot->commitChanges();
312 : }
313 : while( false );
314 : }
315 0 : catch (const Exception&)
316 : {
317 : }
318 0 : }
319 :
320 0 : Reference< XInterface > ConfigurationAccess::OpenConfiguration( bool bReadOnly )
321 : {
322 0 : Reference< XInterface > xRoot;
323 : try
324 : {
325 0 : Reference< lang::XMultiServiceFactory > xProvider = configuration::theDefaultProvider::get( mxMSF );
326 0 : Sequence< Any > aCreationArguments( 2 );
327 0 : aCreationArguments[0] = makeAny( PropertyValue(
328 : OUString( RTL_CONSTASCII_USTRINGPARAM( "nodepath" ) ), 0,
329 0 : makeAny( GetPathToConfigurationRoot() ),
330 0 : PropertyState_DIRECT_VALUE ) );
331 0 : aCreationArguments[1] = makeAny(beans::PropertyValue(
332 : OUString( RTL_CONSTASCII_USTRINGPARAM( "lazywrite" ) ), 0, makeAny( true ),
333 0 : PropertyState_DIRECT_VALUE ) );
334 0 : OUString sAccessService;
335 0 : if ( bReadOnly )
336 : sAccessService = OUString( RTL_CONSTASCII_USTRINGPARAM(
337 0 : "com.sun.star.configuration.ConfigurationAccess" ) );
338 : else
339 : sAccessService = OUString( RTL_CONSTASCII_USTRINGPARAM(
340 0 : "com.sun.star.configuration.ConfigurationUpdateAccess" ) );
341 :
342 0 : xRoot = xProvider->createInstanceWithArguments(
343 0 : sAccessService, aCreationArguments );
344 : }
345 0 : catch (const Exception&)
346 : {
347 : }
348 0 : return xRoot;
349 : }
350 :
351 0 : Reference< XInterface > ConfigurationAccess::GetConfigurationNode(
352 : const Reference< XInterface >& xRoot,
353 : const OUString& sPathToNode )
354 : {
355 0 : Reference< XInterface > xNode;
356 : try
357 : {
358 0 : if ( sPathToNode.isEmpty() )
359 0 : xNode = xRoot;
360 : else
361 : {
362 0 : Reference< XHierarchicalNameAccess > xHierarchy( xRoot, UNO_QUERY );
363 0 : if ( xHierarchy.is() )
364 : {
365 0 : xHierarchy->getByHierarchicalName( sPathToNode ) >>= xNode;
366 0 : }
367 : }
368 : }
369 0 : catch (const Exception& rException)
370 : {
371 : OSL_TRACE ("caught exception while getting configuration node %s: %s",
372 : ::rtl::OUStringToOString(sPathToNode,
373 : RTL_TEXTENCODING_UTF8).getStr(),
374 : ::rtl::OUStringToOString(rException.Message,
375 : RTL_TEXTENCODING_UTF8).getStr());
376 : (void)rException;
377 : }
378 0 : return xNode;
379 : }
380 :
381 0 : com::sun::star::uno::Any ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken ) const
382 : {
383 0 : Any aRetValue;
384 0 : const OptimizerSettings& rSettings( maSettings.front() );
385 : try
386 : {
387 0 : switch( ePropertyToken )
388 : {
389 0 : case TK_Name : aRetValue <<= rSettings.maName; break;
390 0 : case TK_JPEGCompression : aRetValue <<= rSettings.mbJPEGCompression; break;
391 0 : case TK_JPEGQuality : aRetValue <<= rSettings.mnJPEGQuality; break;
392 0 : case TK_RemoveCropArea : aRetValue <<= rSettings.mbRemoveCropArea; break;
393 0 : case TK_ImageResolution : aRetValue <<= rSettings.mnImageResolution; break;
394 0 : case TK_EmbedLinkedGraphics : aRetValue <<= rSettings.mbEmbedLinkedGraphics; break;
395 0 : case TK_OLEOptimization : aRetValue <<= rSettings.mbOLEOptimization; break;
396 0 : case TK_OLEOptimizationType : aRetValue <<= rSettings.mnOLEOptimizationType; break;
397 0 : case TK_DeleteUnusedMasterPages : aRetValue <<= rSettings.mbDeleteUnusedMasterPages; break;
398 0 : case TK_DeleteHiddenSlides : aRetValue <<= rSettings.mbDeleteHiddenSlides; break;
399 0 : case TK_DeleteNotesPages : aRetValue <<= rSettings.mbDeleteNotesPages; break;
400 0 : case TK_SaveAs : aRetValue <<= rSettings.mbSaveAs; break;
401 0 : case TK_SaveAsURL : aRetValue <<= rSettings.maSaveAsURL; break;
402 0 : case TK_FilterName : aRetValue <<= rSettings.maFilterName; break;
403 0 : case TK_OpenNewDocument : aRetValue <<= rSettings.mbOpenNewDocument; break;
404 0 : case TK_EstimatedFileSize : aRetValue <<= rSettings.mnEstimatedFileSize; break;
405 : default:
406 0 : break;
407 : }
408 : }
409 0 : catch (const Exception&)
410 : {
411 : }
412 0 : return aRetValue;
413 : }
414 :
415 0 : void ConfigurationAccess::SetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const com::sun::star::uno::Any& rValue )
416 : {
417 0 : OptimizerSettings& rSettings( maSettings.front() );
418 : try
419 : {
420 0 : switch( ePropertyToken )
421 : {
422 0 : case TK_Name : rValue >>= rSettings.maName; break;
423 0 : case TK_JPEGCompression : rValue >>= rSettings.mbJPEGCompression; break;
424 0 : case TK_JPEGQuality : rValue >>= rSettings.mnJPEGQuality; break;
425 0 : case TK_RemoveCropArea : rValue >>= rSettings.mbRemoveCropArea; break;
426 0 : case TK_ImageResolution : rValue >>= rSettings.mnImageResolution; break;
427 0 : case TK_EmbedLinkedGraphics : rValue >>= rSettings.mbEmbedLinkedGraphics; break;
428 0 : case TK_OLEOptimization : rValue >>= rSettings.mbOLEOptimization; break;
429 0 : case TK_OLEOptimizationType : rValue >>= rSettings.mnOLEOptimizationType; break;
430 0 : case TK_DeleteUnusedMasterPages : rValue >>= rSettings.mbDeleteUnusedMasterPages; break;
431 0 : case TK_DeleteHiddenSlides : rValue >>= rSettings.mbDeleteHiddenSlides; break;
432 0 : case TK_DeleteNotesPages : rValue >>= rSettings.mbDeleteNotesPages; break;
433 0 : case TK_CustomShowName : rValue >>= rSettings.maCustomShowName; break;
434 0 : case TK_SaveAs : rValue >>= rSettings.mbSaveAs; break;
435 0 : case TK_SaveAsURL : rValue >>= rSettings.maSaveAsURL; break;
436 0 : case TK_FilterName : rValue >>= rSettings.maFilterName; break;
437 0 : case TK_OpenNewDocument : rValue >>= rSettings.mbOpenNewDocument; break;
438 0 : case TK_EstimatedFileSize : rValue >>= rSettings.mnEstimatedFileSize; break;
439 : default:
440 0 : break;
441 : }
442 : }
443 : catch (const Exception&)
444 : {
445 : }
446 0 : }
447 :
448 0 : sal_Bool ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const sal_Bool bDefault ) const
449 : {
450 0 : sal_Bool bRetValue = bDefault;
451 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= bRetValue ) )
452 0 : bRetValue = bDefault;
453 0 : return bRetValue;
454 : }
455 :
456 0 : sal_Int16 ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const sal_Int16 nDefault ) const
457 : {
458 0 : sal_Int16 nRetValue = nDefault;
459 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= nRetValue ) )
460 0 : nRetValue = nDefault;
461 0 : return nRetValue;
462 : }
463 :
464 0 : sal_Int32 ConfigurationAccess::GetConfigProperty( const PPPOptimizerTokenEnum ePropertyToken, const sal_Int32 nDefault ) const
465 : {
466 0 : sal_Int32 nRetValue = nDefault;
467 0 : if ( ! ( GetConfigProperty( ePropertyToken ) >>= nRetValue ) )
468 0 : nRetValue = nDefault;
469 0 : return nRetValue;
470 : }
471 :
472 0 : Sequence< PropertyValue > ConfigurationAccess::GetConfigurationSequence()
473 : {
474 0 : Sequence< PropertyValue > aRet( 15 );
475 0 : OptimizerSettings& rSettings( maSettings.front() );
476 0 : aRet[ 0 ].Name = TKGet( TK_JPEGCompression );
477 0 : aRet[ 0 ].Value= Any( rSettings.mbJPEGCompression );
478 0 : aRet[ 1 ].Name = TKGet( TK_JPEGQuality );
479 0 : aRet[ 1 ].Value= Any( rSettings.mnJPEGQuality );
480 0 : aRet[ 2 ].Name = TKGet( TK_RemoveCropArea );
481 0 : aRet[ 2 ].Value= Any( rSettings.mbRemoveCropArea );
482 0 : aRet[ 3 ].Name = TKGet( TK_ImageResolution );
483 0 : aRet[ 3 ].Value= Any( rSettings.mnImageResolution );
484 0 : aRet[ 4 ].Name = TKGet( TK_EmbedLinkedGraphics );
485 0 : aRet[ 4 ].Value= Any( rSettings.mbEmbedLinkedGraphics );
486 0 : aRet[ 5 ].Name = TKGet( TK_OLEOptimization );
487 0 : aRet[ 5 ].Value= Any( rSettings.mbOLEOptimization );
488 0 : aRet[ 6 ].Name = TKGet( TK_OLEOptimizationType );
489 0 : aRet[ 6 ].Value= Any( rSettings.mnOLEOptimizationType );
490 0 : aRet[ 7 ].Name = TKGet( TK_DeleteUnusedMasterPages );
491 0 : aRet[ 7 ].Value= Any( rSettings.mbDeleteUnusedMasterPages );
492 0 : aRet[ 8 ].Name = TKGet( TK_DeleteHiddenSlides );
493 0 : aRet[ 8 ].Value= Any( rSettings.mbDeleteHiddenSlides );
494 0 : aRet[ 9 ].Name = TKGet( TK_DeleteNotesPages );
495 0 : aRet[ 9 ].Value= Any( rSettings.mbDeleteNotesPages );
496 0 : aRet[ 10].Name = TKGet( TK_CustomShowName );
497 0 : aRet[ 10].Value= Any( rSettings.maCustomShowName );
498 0 : aRet[ 11].Name = TKGet( TK_SaveAsURL );
499 0 : aRet[ 11].Value= Any( rSettings.maSaveAsURL );
500 0 : aRet[ 12].Name = TKGet( TK_FilterName );
501 0 : aRet[ 12].Value= Any( rSettings.maFilterName );
502 0 : aRet[ 13].Name = TKGet( TK_OpenNewDocument );
503 0 : aRet[ 13].Value= Any( rSettings.mbOpenNewDocument );
504 0 : aRet[ 14].Name = TKGet( TK_EstimatedFileSize );
505 0 : aRet[ 14].Value= Any( rSettings.mnEstimatedFileSize );
506 0 : return aRet;
507 : }
508 :
509 0 : std::vector< OptimizerSettings >::iterator ConfigurationAccess::GetOptimizerSettingsByName( const rtl::OUString& rName )
510 : {
511 0 : std::vector< OptimizerSettings >::iterator aIter( maSettings.begin() + 1 );
512 0 : while ( aIter != maSettings.end() )
513 : {
514 0 : if ( aIter->maName == rName )
515 0 : break;
516 0 : aIter++;
517 : }
518 0 : return aIter;
519 : }
520 :
521 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|