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