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 <svl/eitem.hxx>
21 : #include <svl/intitem.hxx>
22 :
23 : #include "optsave.hrc"
24 : #include <cuires.hrc>
25 :
26 : #include "optsave.hxx"
27 : #include <dialmgr.hxx>
28 : #include <comphelper/processfactory.hxx>
29 : #include <unotools/moduleoptions.hxx>
30 : #include <unotools/saveopt.hxx>
31 : #include <comphelper/sequenceasvector.hxx>
32 : #include <comphelper/sequenceashashmap.hxx>
33 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
34 : #include <com/sun/star/container/XNameContainer.hpp>
35 : #include <com/sun/star/container/XContainerQuery.hpp>
36 : #include <com/sun/star/container/XEnumeration.hpp>
37 : #include <com/sun/star/beans/PropertyValue.hpp>
38 : #include <com/sun/star/util/XFlushable.hpp>
39 : #include <sfx2/docfilt.hxx>
40 : #include <svtools/stdctrl.hxx>
41 : #include <vcl/fixed.hxx>
42 : #include <unotools/configitem.hxx>
43 : #include <unotools/optionsdlg.hxx>
44 :
45 : #include <vcl/msgbox.hxx>
46 :
47 : using namespace com::sun::star::uno;
48 : using namespace com::sun::star::util;
49 : using namespace com::sun::star::lang;
50 : using namespace com::sun::star::beans;
51 : using namespace com::sun::star::container;
52 : using namespace comphelper;
53 :
54 : #define CFG_PAGE_AND_GROUP OUString("General"), OUString("LoadSave")
55 :
56 :
57 :
58 : struct SvxSaveTabPage_Impl
59 : {
60 : Reference< XNameContainer > xFact;
61 : Sequence< OUString > aFilterArr[APP_COUNT];
62 : Sequence< sal_Bool > aAlienArr[APP_COUNT];
63 : Sequence< sal_Bool > aODFArr[APP_COUNT];
64 : Sequence< OUString > aUIFilterArr[APP_COUNT];
65 : OUString aDefaultArr[APP_COUNT];
66 : sal_Bool aDefaultReadonlyArr[APP_COUNT];
67 : bool bInitialized;
68 :
69 : SvxSaveTabPage_Impl();
70 : ~SvxSaveTabPage_Impl();
71 : };
72 :
73 0 : SvxSaveTabPage_Impl::SvxSaveTabPage_Impl() : bInitialized( false )
74 : {
75 0 : }
76 :
77 0 : SvxSaveTabPage_Impl::~SvxSaveTabPage_Impl()
78 : {
79 0 : }
80 :
81 : // class SvxSaveTabPage --------------------------------------------------
82 :
83 0 : SfxSaveTabPage::SfxSaveTabPage( vcl::Window* pParent, const SfxItemSet& rCoreSet ) :
84 : SfxTabPage( pParent, "OptSavePage", "cui/ui/optsavepage.ui", &rCoreSet ),
85 0 : pImpl ( new SvxSaveTabPage_Impl )
86 : {
87 0 : get(aLoadUserSettingsCB, "load_settings");
88 0 : get(aLoadDocPrinterCB, "load_docprinter");
89 :
90 0 : get(aDocInfoCB, "docinfo");
91 0 : get(aBackupCB, "backup");
92 0 : get(aAutoSaveCB, "autosave");
93 0 : get(aAutoSaveEdit, "autosave_spin");
94 0 : get(aMinuteFT, "autosave_mins");
95 0 : get(aUserAutoSaveCB, "userautosave");
96 0 : get(aRelativeFsysCB, "relative_fsys");
97 0 : get(aRelativeInetCB, "relative_inet");
98 :
99 0 : get(aODFVersionLB, "odfversion");
100 0 : get(aWarnAlienFormatCB, "warnalienformat");
101 0 : get(aDocTypeLB, "doctype");
102 0 : get(aSaveAsFT, "saveas_label");
103 0 : get(aSaveAsLB, "saveas");
104 0 : get(aODFWarningFI, "odfwarning_image");
105 0 : get(aODFWarningFT, "odfwarning_label");
106 :
107 :
108 0 : aODFVersionLB->SetEntryData(0, reinterpret_cast<void*>(2 )); // 1.0/1.1
109 0 : aODFVersionLB->SetEntryData(1, reinterpret_cast<void*>(4 )); // 1.2
110 0 : aODFVersionLB->SetEntryData(2, reinterpret_cast<void*>(8 )); // 1.2 Extended (compatibility mode)
111 0 : aODFVersionLB->SetEntryData(3, reinterpret_cast<void*>(0x7fffffff)); // 1.2 Extended (recommended)
112 :
113 0 : aDocTypeLB->SetEntryData(0, reinterpret_cast<void*>(APP_WRITER) );
114 0 : aDocTypeLB->SetEntryData(1, reinterpret_cast<void*>(APP_WRITER_WEB) );
115 0 : aDocTypeLB->SetEntryData(2, reinterpret_cast<void*>(APP_WRITER_GLOBAL));
116 0 : aDocTypeLB->SetEntryData(3, reinterpret_cast<void*>(APP_CALC) );
117 0 : aDocTypeLB->SetEntryData(4, reinterpret_cast<void*>(APP_IMPRESS) );
118 0 : aDocTypeLB->SetEntryData(5, reinterpret_cast<void*>(APP_DRAW) );
119 0 : aDocTypeLB->SetEntryData(6, reinterpret_cast<void*>(APP_MATH) );
120 :
121 0 : Link aLink = LINK( this, SfxSaveTabPage, AutoClickHdl_Impl );
122 0 : aAutoSaveCB->SetClickHdl( aLink );
123 0 : aAutoSaveEdit->SetMaxTextLen( 2 );
124 :
125 0 : SvtModuleOptions aModuleOpt;
126 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::E_SMATH ) )
127 : {
128 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_MATH) ));
129 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_MATH) ));
130 : }
131 : else
132 : {
133 0 : pImpl->aDefaultArr[APP_MATH] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_MATH);
134 0 : pImpl->aDefaultReadonlyArr[APP_MATH] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_MATH);
135 : }
136 :
137 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::E_SDRAW ) )
138 : {
139 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_DRAW) ));
140 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_DRAW) ));
141 : }
142 : else
143 : {
144 0 : pImpl->aDefaultArr[APP_DRAW] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_DRAW);
145 0 : pImpl->aDefaultReadonlyArr[APP_DRAW] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_DRAW);
146 : }
147 :
148 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::E_SIMPRESS ) )
149 : {
150 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_IMPRESS) ));
151 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_IMPRESS) ));
152 : }
153 : else
154 : {
155 0 : pImpl->aDefaultArr[APP_IMPRESS] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_IMPRESS);
156 0 : pImpl->aDefaultReadonlyArr[APP_IMPRESS] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_IMPRESS);
157 : }
158 :
159 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::E_SCALC ) )
160 : {
161 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_CALC) ));
162 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_CALC) ));
163 : }
164 : else
165 : {
166 0 : pImpl->aDefaultArr[APP_CALC] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_CALC);
167 0 : pImpl->aDefaultReadonlyArr[APP_CALC] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_CALC);
168 : }
169 :
170 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::E_SWRITER ) )
171 : {
172 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER) ));
173 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER_WEB) ));
174 0 : aSaveAsLB->RemoveEntry(aSaveAsLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER_GLOBAL) ));
175 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER) ));
176 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER_WEB) ));
177 0 : aDocTypeLB->RemoveEntry(aDocTypeLB->GetEntryPos( reinterpret_cast<void*>(APP_WRITER_GLOBAL) ));
178 : }
179 : else
180 : {
181 0 : pImpl->aDefaultArr[APP_WRITER] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITER);
182 0 : pImpl->aDefaultArr[APP_WRITER_WEB] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITERWEB);
183 0 : pImpl->aDefaultArr[APP_WRITER_GLOBAL] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITERGLOBAL);
184 0 : pImpl->aDefaultReadonlyArr[APP_WRITER] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_WRITER);
185 0 : pImpl->aDefaultReadonlyArr[APP_WRITER_WEB] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_WRITERWEB);
186 0 : pImpl->aDefaultReadonlyArr[APP_WRITER_GLOBAL] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::E_WRITERGLOBAL);
187 : }
188 :
189 0 : aLink = LINK( this, SfxSaveTabPage, ODFVersionHdl_Impl );
190 0 : aODFVersionLB->SetSelectHdl( aLink );
191 0 : aLink = LINK( this, SfxSaveTabPage, FilterHdl_Impl );
192 0 : aDocTypeLB->SetSelectHdl( aLink );
193 0 : aSaveAsLB->SetSelectHdl( aLink );
194 :
195 0 : DetectHiddenControls();
196 0 : }
197 :
198 :
199 :
200 0 : SfxSaveTabPage::~SfxSaveTabPage()
201 : {
202 0 : delete pImpl;
203 0 : }
204 :
205 :
206 :
207 0 : SfxTabPage* SfxSaveTabPage::Create( vcl::Window* pParent,
208 : const SfxItemSet* rAttrSet )
209 : {
210 0 : return ( new SfxSaveTabPage( pParent, *rAttrSet ) );
211 : }
212 :
213 :
214 0 : void SfxSaveTabPage::DetectHiddenControls()
215 : {
216 0 : SvtOptionsDialogOptions aOptionsDlgOpt;
217 :
218 0 : if ( aOptionsDlgOpt.IsOptionHidden( "Backup", CFG_PAGE_AND_GROUP ) )
219 : {
220 : // hide controls of "Backup"
221 0 : aBackupCB->Hide();
222 : }
223 :
224 0 : if ( aOptionsDlgOpt.IsOptionHidden( "AutoSave", CFG_PAGE_AND_GROUP ) )
225 : {
226 : // hide controls of "AutoSave"
227 0 : aAutoSaveCB->Hide();
228 0 : aAutoSaveEdit->Hide();
229 0 : aMinuteFT->Hide();
230 : }
231 :
232 0 : if ( aOptionsDlgOpt.IsOptionHidden( "UserAutoSave", CFG_PAGE_AND_GROUP ) )
233 : {
234 : // hide controls of "UserAutoSave"
235 0 : aUserAutoSaveCB->Hide();
236 0 : }
237 :
238 0 : }
239 :
240 0 : bool SfxSaveTabPage::FillItemSet( SfxItemSet* rSet )
241 : {
242 0 : bool bModified = false;
243 0 : SvtSaveOptions aSaveOpt;
244 0 : if(aLoadUserSettingsCB->IsValueChangedFromSaved())
245 : {
246 0 : aSaveOpt.SetLoadUserSettings(aLoadUserSettingsCB->IsChecked());
247 : }
248 :
249 0 : if ( aLoadDocPrinterCB->IsValueChangedFromSaved() )
250 0 : aSaveOpt.SetLoadDocumentPrinter( aLoadDocPrinterCB->IsChecked() );
251 :
252 0 : if ( aODFVersionLB->IsValueChangedFromSaved() )
253 : {
254 0 : sal_IntPtr nVersion = sal_IntPtr( aODFVersionLB->GetEntryData( aODFVersionLB->GetSelectEntryPos() ) );
255 0 : aSaveOpt.SetODFDefaultVersion( SvtSaveOptions::ODFDefaultVersion( nVersion ) );
256 : }
257 :
258 0 : if ( aDocInfoCB->IsValueChangedFromSaved() )
259 : {
260 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_DOCINFO ),
261 0 : aDocInfoCB->IsChecked() ) );
262 0 : bModified |= true;
263 : }
264 :
265 0 : if ( aBackupCB->IsEnabled() && aBackupCB->IsValueChangedFromSaved() )
266 : {
267 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_BACKUP ),
268 0 : aBackupCB->IsChecked() ) );
269 0 : bModified |= true;
270 : }
271 :
272 0 : if ( aAutoSaveCB->IsValueChangedFromSaved() )
273 : {
274 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_AUTOSAVE ),
275 0 : aAutoSaveCB->IsChecked() ) );
276 0 : bModified |= true;
277 : }
278 0 : if ( aWarnAlienFormatCB->IsValueChangedFromSaved() )
279 : {
280 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_WARNALIENFORMAT ),
281 0 : aWarnAlienFormatCB->IsChecked() ) );
282 0 : bModified |= true;
283 : }
284 :
285 0 : if ( aAutoSaveEdit->IsValueChangedFromSaved() )
286 : {
287 0 : rSet->Put( SfxUInt16Item( GetWhich( SID_ATTR_AUTOSAVEMINUTE ),
288 0 : (sal_uInt16)aAutoSaveEdit->GetValue() ) );
289 0 : bModified |= true;
290 : }
291 :
292 0 : if ( aUserAutoSaveCB->IsValueChangedFromSaved() )
293 : {
294 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_USERAUTOSAVE ),
295 0 : aUserAutoSaveCB->IsChecked() ) );
296 0 : bModified |= true;
297 : }
298 : // save relatively
299 0 : if ( aRelativeFsysCB->IsValueChangedFromSaved() )
300 : {
301 0 : rSet->Put( SfxBoolItem( GetWhich( SID_SAVEREL_FSYS ),
302 0 : aRelativeFsysCB->IsChecked() ) );
303 0 : bModified |= true;
304 : }
305 :
306 0 : if ( aRelativeInetCB->IsValueChangedFromSaved() )
307 : {
308 0 : rSet->Put( SfxBoolItem( GetWhich( SID_SAVEREL_INET ),
309 0 : aRelativeInetCB->IsChecked() ) );
310 0 : bModified |= true;
311 : }
312 :
313 0 : SvtModuleOptions aModuleOpt;
314 0 : if(!pImpl->aDefaultArr[APP_MATH].isEmpty() &&
315 0 : pImpl->aDefaultArr[APP_MATH] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_MATH))
316 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_MATH, pImpl->aDefaultArr[APP_MATH]);
317 :
318 0 : if( !pImpl->aDefaultArr[APP_DRAW].isEmpty() &&
319 0 : pImpl->aDefaultArr[APP_DRAW] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_DRAW))
320 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_DRAW, pImpl->aDefaultArr[APP_DRAW]);
321 :
322 0 : if(!pImpl->aDefaultArr[APP_IMPRESS].isEmpty() &&
323 0 : pImpl->aDefaultArr[APP_IMPRESS] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_IMPRESS))
324 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_IMPRESS, pImpl->aDefaultArr[APP_IMPRESS]);
325 :
326 0 : if(!pImpl->aDefaultArr[APP_CALC].isEmpty() &&
327 0 : pImpl->aDefaultArr[APP_CALC] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_CALC))
328 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_CALC, pImpl->aDefaultArr[APP_CALC]);
329 :
330 0 : if(!pImpl->aDefaultArr[APP_WRITER].isEmpty() &&
331 0 : pImpl->aDefaultArr[APP_WRITER] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITER))
332 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_WRITER, pImpl->aDefaultArr[APP_WRITER]);
333 :
334 0 : if(!pImpl->aDefaultArr[APP_WRITER_WEB].isEmpty() &&
335 0 : pImpl->aDefaultArr[APP_WRITER_WEB] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITERWEB))
336 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_WRITERWEB, pImpl->aDefaultArr[APP_WRITER_WEB]);
337 :
338 0 : if(!pImpl->aDefaultArr[APP_WRITER_GLOBAL].isEmpty() &&
339 0 : pImpl->aDefaultArr[APP_WRITER_GLOBAL] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::E_WRITERGLOBAL))
340 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::E_WRITERGLOBAL, pImpl->aDefaultArr[APP_WRITER_GLOBAL]);
341 :
342 0 : return bModified;
343 : }
344 :
345 :
346 :
347 0 : bool isODFFormat( const OUString& sFilter )
348 : {
349 : static const char* aODFFormats[] =
350 : {
351 : "writer8",
352 : "writer8_template",
353 : "writerglobal8",
354 : "writerglobal8_writer",
355 : "calc8",
356 : "calc8_template",
357 : "draw8",
358 : "draw8_template",
359 : "impress8",
360 : "impress8_template",
361 : "impress8_draw",
362 : "chart8",
363 : "math8",
364 : NULL
365 : };
366 :
367 0 : bool bRet = false;
368 0 : int i = 0;
369 0 : while ( aODFFormats[i] != NULL )
370 : {
371 0 : if ( sFilter.equalsAscii( aODFFormats[i++] ) )
372 : {
373 0 : bRet = true;
374 0 : break;
375 : }
376 : }
377 :
378 0 : return bRet;
379 : }
380 :
381 0 : void SfxSaveTabPage::Reset( const SfxItemSet* )
382 : {
383 0 : SvtSaveOptions aSaveOpt;
384 0 : aLoadUserSettingsCB->Check(aSaveOpt.IsLoadUserSettings());
385 0 : aLoadUserSettingsCB->SaveValue();
386 0 : aLoadDocPrinterCB->Check( aSaveOpt.IsLoadDocumentPrinter() );
387 0 : aLoadDocPrinterCB->SaveValue();
388 :
389 0 : if ( !pImpl->bInitialized )
390 : {
391 : try
392 : {
393 0 : Reference< XMultiServiceFactory > xMSF = comphelper::getProcessServiceFactory();
394 0 : pImpl->xFact = Reference<XNameContainer>(
395 0 : xMSF->createInstance("com.sun.star.document.FilterFactory"), UNO_QUERY);
396 :
397 : DBG_ASSERT(pImpl->xFact.is(), "service com.sun.star.document.FilterFactory unavailable");
398 0 : Reference< XContainerQuery > xQuery(pImpl->xFact, UNO_QUERY);
399 0 : if(xQuery.is())
400 : {
401 0 : for(sal_uInt16 n = 0; n < aDocTypeLB->GetEntryCount(); n++)
402 : {
403 0 : sal_IntPtr nData = reinterpret_cast<sal_IntPtr>(aDocTypeLB->GetEntryData(n));
404 0 : OUString sCommand;
405 0 : sCommand = "matchByDocumentService=%1:iflags=" +
406 0 : OUString::number(SFX_FILTER_IMPORT|SFX_FILTER_EXPORT) +
407 0 : ":eflags=" +
408 0 : OUString::number(SFX_FILTER_NOTINFILEDLG) +
409 0 : ":default_first";
410 0 : OUString sReplace;
411 0 : switch(nData)
412 : {
413 0 : case APP_WRITER : sReplace = "com.sun.star.text.TextDocument"; break;
414 0 : case APP_WRITER_WEB : sReplace = "com.sun.star.text.WebDocument"; break;
415 0 : case APP_WRITER_GLOBAL : sReplace = "com.sun.star.text.GlobalDocument"; break;
416 0 : case APP_CALC : sReplace = "com.sun.star.sheet.SpreadsheetDocument";break;
417 0 : case APP_IMPRESS : sReplace = "com.sun.star.presentation.PresentationDocument";break;
418 0 : case APP_DRAW : sReplace = "com.sun.star.drawing.DrawingDocument";break;
419 0 : case APP_MATH : sReplace = "com.sun.star.formula.FormulaProperties";break;
420 : default: OSL_FAIL("illegal user data");
421 : }
422 0 : sCommand = sCommand.replaceFirst("%1", sReplace);
423 0 : Reference< XEnumeration > xList = xQuery->createSubSetEnumerationByQuery(sCommand);
424 0 : SequenceAsVector< OUString > lList;
425 0 : SequenceAsVector< sal_Bool > lAlienList;
426 0 : SequenceAsVector< sal_Bool > lODFList;
427 0 : while(xList->hasMoreElements())
428 : {
429 0 : SequenceAsHashMap aFilter(xList->nextElement());
430 0 : OUString sFilter = aFilter.getUnpackedValueOrDefault("Name",OUString());
431 0 : if (!sFilter.isEmpty())
432 : {
433 0 : sal_Int32 nFlags = aFilter.getUnpackedValueOrDefault("Flags",sal_Int32());
434 0 : lList.push_back(sFilter);
435 0 : lAlienList.push_back(0 != (nFlags & SFX_FILTER_ALIEN));
436 0 : lODFList.push_back( isODFFormat( sFilter ) );
437 : }
438 0 : }
439 0 : pImpl->aFilterArr[nData] = lList.getAsConstList();
440 0 : pImpl->aAlienArr[nData] = lAlienList.getAsConstList();
441 0 : pImpl->aODFArr[nData] = lODFList.getAsConstList();
442 0 : }
443 : }
444 0 : aDocTypeLB->SelectEntryPos(0);
445 0 : FilterHdl_Impl(aDocTypeLB);
446 : }
447 0 : catch(Exception& e)
448 : {
449 : (void) e;
450 : OSL_FAIL(
451 : OUStringToOString(
452 : (OUString(
453 : "exception in FilterFactory access: ") +
454 : e.Message),
455 : RTL_TEXTENCODING_UTF8).
456 : getStr());
457 : }
458 :
459 0 : pImpl->bInitialized = true;
460 : }
461 :
462 0 : aDocInfoCB->Check(aSaveOpt.IsDocInfoSave());
463 :
464 0 : aBackupCB->Check(aSaveOpt.IsBackup());
465 0 : bool bBackupRO = aSaveOpt.IsReadOnly(SvtSaveOptions::E_BACKUP);
466 0 : aBackupCB->Enable(!bBackupRO);
467 :
468 0 : aAutoSaveCB->Check(aSaveOpt.IsAutoSave());
469 0 : aUserAutoSaveCB->Check(aSaveOpt.IsUserAutoSave());
470 0 : aWarnAlienFormatCB->Check(aSaveOpt.IsWarnAlienFormat());
471 0 : aWarnAlienFormatCB->Enable(!aSaveOpt.IsReadOnly(SvtSaveOptions::E_WARNALIENFORMAT));
472 :
473 0 : aAutoSaveEdit->SetValue( aSaveOpt.GetAutoSaveTime() );
474 :
475 : // save relatively
476 0 : aRelativeFsysCB->Check( aSaveOpt.IsSaveRelFSys() );
477 :
478 0 : aRelativeInetCB->Check( aSaveOpt.IsSaveRelINet() );
479 :
480 0 : void* pDefaultVersion = reinterpret_cast<void*>( aSaveOpt.GetODFDefaultVersion() );
481 0 : aODFVersionLB->SelectEntryPos( aODFVersionLB->GetEntryPos( pDefaultVersion ) );
482 :
483 0 : AutoClickHdl_Impl( aAutoSaveCB );
484 0 : ODFVersionHdl_Impl( aODFVersionLB );
485 :
486 0 : aDocInfoCB->SaveValue();
487 0 : aBackupCB->SaveValue();
488 0 : aWarnAlienFormatCB->SaveValue();
489 0 : aAutoSaveCB->SaveValue();
490 0 : aAutoSaveEdit->SaveValue();
491 :
492 0 : aUserAutoSaveCB->SaveValue();
493 :
494 0 : aRelativeFsysCB->SaveValue();
495 0 : aRelativeInetCB->SaveValue();
496 0 : aODFVersionLB->SaveValue();
497 0 : }
498 :
499 :
500 :
501 0 : IMPL_LINK( SfxSaveTabPage, AutoClickHdl_Impl, CheckBox *, pBox )
502 : {
503 0 : if ( pBox == aAutoSaveCB )
504 : {
505 0 : if ( aAutoSaveCB->IsChecked() )
506 : {
507 0 : aAutoSaveEdit->Enable();
508 0 : aMinuteFT->Enable();
509 0 : aUserAutoSaveCB->Enable();
510 : }
511 : else
512 : {
513 0 : aAutoSaveEdit->Disable();
514 0 : aMinuteFT->Disable();
515 0 : aUserAutoSaveCB->Disable();
516 : }
517 : }
518 0 : return 0;
519 : }
520 :
521 0 : static OUString lcl_ExtracUIName(const Sequence<PropertyValue> &rProperties)
522 : {
523 0 : OUString sName;
524 0 : const PropertyValue* pPropVal = rProperties.getConstArray();
525 0 : const PropertyValue* const pEnd = pPropVal + rProperties.getLength();
526 0 : for( ; pPropVal != pEnd; pPropVal++ )
527 : {
528 0 : const OUString &rName = pPropVal->Name;
529 0 : if (rName == "UIName")
530 : {
531 0 : OUString sUIName;
532 0 : if ( ( pPropVal->Value >>= sUIName ) && sUIName.getLength() )
533 0 : return sUIName;
534 : }
535 0 : else if (rName == "Name")
536 : {
537 0 : pPropVal->Value >>= sName;
538 : }
539 : }
540 :
541 : OSL_ENSURE( false, "Filter without UIName!" );
542 :
543 0 : return sName;
544 : }
545 :
546 0 : IMPL_LINK( SfxSaveTabPage, FilterHdl_Impl, ListBox *, pBox )
547 : {
548 0 : sal_uInt16 nCurPos = aDocTypeLB->GetSelectEntryPos();
549 :
550 0 : sal_IntPtr nData = -1;
551 0 : if(nCurPos < APP_COUNT)
552 0 : nData = reinterpret_cast<sal_IntPtr>( aDocTypeLB->GetEntryData(nCurPos) );
553 :
554 0 : if ( nData >= 0 && nData < APP_COUNT )
555 : {
556 0 : if(aDocTypeLB == pBox)
557 : {
558 0 : aSaveAsLB->Clear();
559 0 : const OUString* pFilters = pImpl->aFilterArr[nData].getConstArray();
560 0 : if(!pImpl->aUIFilterArr[nData].getLength())
561 : {
562 0 : pImpl->aUIFilterArr[nData].realloc(pImpl->aFilterArr[nData].getLength());
563 0 : OUString* pUIFilters = pImpl->aUIFilterArr[nData].getArray();
564 0 : for(int nFilter = 0; nFilter < pImpl->aFilterArr[nData].getLength(); nFilter++)
565 : {
566 0 : Any aProps = pImpl->xFact->getByName(pFilters[nFilter]);
567 0 : Sequence<PropertyValue> aProperties;
568 0 : aProps >>= aProperties;
569 0 : pUIFilters[nFilter] = lcl_ExtracUIName(aProperties);
570 0 : }
571 : }
572 0 : const OUString* pUIFilters = pImpl->aUIFilterArr[nData].getConstArray();
573 0 : OUString sSelect;
574 0 : for(int i = 0; i < pImpl->aUIFilterArr[nData].getLength(); i++)
575 : {
576 0 : sal_uInt16 nEntryPos = aSaveAsLB->InsertEntry(pUIFilters[i]);
577 0 : if ( pImpl->aODFArr[nData][i] )
578 0 : aSaveAsLB->SetEntryData( nEntryPos, (void*)pImpl );
579 0 : if(pFilters[i] == pImpl->aDefaultArr[nData])
580 0 : sSelect = pUIFilters[i];
581 : }
582 0 : if(!sSelect.isEmpty())
583 : {
584 0 : aSaveAsLB->SelectEntry(sSelect);
585 : }
586 :
587 0 : aSaveAsFT->Enable(!pImpl->aDefaultReadonlyArr[nData]);
588 0 : aSaveAsLB->Enable(!pImpl->aDefaultReadonlyArr[nData]);
589 : }
590 : else
591 : {
592 0 : OUString sSelect = pBox->GetSelectEntry();
593 0 : const OUString* pFilters = pImpl->aFilterArr[nData].getConstArray();
594 0 : OUString* pUIFilters = pImpl->aUIFilterArr[nData].getArray();
595 0 : for(int i = 0; i < pImpl->aUIFilterArr[nData].getLength(); i++)
596 0 : if(pUIFilters[i] == sSelect)
597 : {
598 0 : sSelect = pFilters[i];
599 0 : break;
600 : }
601 :
602 0 : pImpl->aDefaultArr[nData] = sSelect;
603 : }
604 : }
605 :
606 0 : ODFVersionHdl_Impl( aSaveAsLB );
607 0 : return 0;
608 : };
609 :
610 0 : IMPL_LINK_NOARG(SfxSaveTabPage, ODFVersionHdl_Impl)
611 : {
612 0 : sal_IntPtr nVersion = sal_IntPtr( aODFVersionLB->GetEntryData( aODFVersionLB->GetSelectEntryPos() ) );
613 0 : bool bShown = SvtSaveOptions::ODFDefaultVersion( nVersion ) != SvtSaveOptions::ODFVER_LATEST;
614 0 : if ( bShown )
615 : {
616 0 : bool bHasODFFormat = false;
617 0 : sal_uInt16 i = 0, nCount = aSaveAsLB->GetEntryCount();
618 0 : for ( ; i < nCount; ++ i )
619 : {
620 0 : if ( aSaveAsLB->GetEntryData(i) != NULL )
621 : {
622 0 : bHasODFFormat = true;
623 0 : break;
624 : }
625 : }
626 :
627 0 : bShown = !bHasODFFormat
628 0 : || ( aSaveAsLB->GetEntryData( aSaveAsLB->GetSelectEntryPos() ) != NULL );
629 : }
630 :
631 0 : aODFWarningFI->Show( bShown );
632 0 : aODFWarningFT->Show( bShown );
633 :
634 0 : return 0;
635 0 : }
636 :
637 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|