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/sequence.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::EModule::MATH ) )
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::EFactory::MATH);
134 0 : pImpl->aDefaultReadonlyArr[APP_MATH] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::MATH);
135 : }
136 :
137 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::DRAW ) )
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::EFactory::DRAW);
145 0 : pImpl->aDefaultReadonlyArr[APP_DRAW] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::DRAW);
146 : }
147 :
148 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::IMPRESS ) )
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::EFactory::IMPRESS);
156 0 : pImpl->aDefaultReadonlyArr[APP_IMPRESS] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::IMPRESS);
157 : }
158 :
159 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::CALC ) )
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::EFactory::CALC);
167 0 : pImpl->aDefaultReadonlyArr[APP_CALC] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::CALC);
168 : }
169 :
170 0 : if ( !aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::WRITER ) )
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::EFactory::WRITER);
182 0 : pImpl->aDefaultArr[APP_WRITER_WEB] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERWEB);
183 0 : pImpl->aDefaultArr[APP_WRITER_GLOBAL] = aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERGLOBAL);
184 0 : pImpl->aDefaultReadonlyArr[APP_WRITER] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::WRITER);
185 0 : pImpl->aDefaultReadonlyArr[APP_WRITER_WEB] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::WRITERWEB);
186 0 : pImpl->aDefaultReadonlyArr[APP_WRITER_GLOBAL] = aModuleOpt.IsDefaultFilterReadonly(SvtModuleOptions::EFactory::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 : disposeOnce();
203 0 : }
204 :
205 0 : void SvxSaveTabPage::dispose()
206 : {
207 0 : delete pImpl;
208 0 : pImpl = NULL;
209 0 : aLoadUserSettingsCB.clear();
210 0 : aLoadDocPrinterCB.clear();
211 0 : aDocInfoCB.clear();
212 0 : aBackupCB.clear();
213 0 : aAutoSaveCB.clear();
214 0 : aAutoSaveEdit.clear();
215 0 : aMinuteFT.clear();
216 0 : aUserAutoSaveCB.clear();
217 0 : aRelativeFsysCB.clear();
218 0 : aRelativeInetCB.clear();
219 0 : aODFVersionLB.clear();
220 0 : aWarnAlienFormatCB.clear();
221 0 : aDocTypeLB.clear();
222 0 : aSaveAsFT.clear();
223 0 : aSaveAsLB.clear();
224 0 : aODFWarningFI.clear();
225 0 : aODFWarningFT.clear();
226 0 : SfxTabPage::dispose();
227 0 : }
228 :
229 0 : VclPtr<SfxTabPage> SfxSaveTabPage::Create( vcl::Window* pParent,
230 : const SfxItemSet* rAttrSet )
231 : {
232 0 : return VclPtr<SfxSaveTabPage>::Create( pParent, *rAttrSet );
233 : }
234 :
235 0 : void SfxSaveTabPage::DetectHiddenControls()
236 : {
237 0 : SvtOptionsDialogOptions aOptionsDlgOpt;
238 :
239 0 : if ( aOptionsDlgOpt.IsOptionHidden( "Backup", CFG_PAGE_AND_GROUP ) )
240 : {
241 : // hide controls of "Backup"
242 0 : aBackupCB->Hide();
243 : }
244 :
245 0 : if ( aOptionsDlgOpt.IsOptionHidden( "AutoSave", CFG_PAGE_AND_GROUP ) )
246 : {
247 : // hide controls of "AutoSave"
248 0 : aAutoSaveCB->Hide();
249 0 : aAutoSaveEdit->Hide();
250 0 : aMinuteFT->Hide();
251 : }
252 :
253 0 : if ( aOptionsDlgOpt.IsOptionHidden( "UserAutoSave", CFG_PAGE_AND_GROUP ) )
254 : {
255 : // hide controls of "UserAutoSave"
256 0 : aUserAutoSaveCB->Hide();
257 0 : }
258 :
259 0 : }
260 :
261 0 : bool SfxSaveTabPage::FillItemSet( SfxItemSet* rSet )
262 : {
263 0 : bool bModified = false;
264 0 : SvtSaveOptions aSaveOpt;
265 0 : if(aLoadUserSettingsCB->IsValueChangedFromSaved())
266 : {
267 0 : aSaveOpt.SetLoadUserSettings(aLoadUserSettingsCB->IsChecked());
268 : }
269 :
270 0 : if ( aLoadDocPrinterCB->IsValueChangedFromSaved() )
271 0 : aSaveOpt.SetLoadDocumentPrinter( aLoadDocPrinterCB->IsChecked() );
272 :
273 0 : if ( aODFVersionLB->IsValueChangedFromSaved() )
274 : {
275 0 : sal_IntPtr nVersion = sal_IntPtr( aODFVersionLB->GetSelectEntryData() );
276 0 : aSaveOpt.SetODFDefaultVersion( SvtSaveOptions::ODFDefaultVersion( nVersion ) );
277 : }
278 :
279 0 : if ( aDocInfoCB->IsValueChangedFromSaved() )
280 : {
281 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_DOCINFO ),
282 0 : aDocInfoCB->IsChecked() ) );
283 0 : bModified |= true;
284 : }
285 :
286 0 : if ( aBackupCB->IsEnabled() && aBackupCB->IsValueChangedFromSaved() )
287 : {
288 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_BACKUP ),
289 0 : aBackupCB->IsChecked() ) );
290 0 : bModified |= true;
291 : }
292 :
293 0 : if ( aAutoSaveCB->IsValueChangedFromSaved() )
294 : {
295 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_AUTOSAVE ),
296 0 : aAutoSaveCB->IsChecked() ) );
297 0 : bModified |= true;
298 : }
299 0 : if ( aWarnAlienFormatCB->IsValueChangedFromSaved() )
300 : {
301 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_WARNALIENFORMAT ),
302 0 : aWarnAlienFormatCB->IsChecked() ) );
303 0 : bModified |= true;
304 : }
305 :
306 0 : if ( aAutoSaveEdit->IsValueChangedFromSaved() )
307 : {
308 0 : rSet->Put( SfxUInt16Item( GetWhich( SID_ATTR_AUTOSAVEMINUTE ),
309 0 : (sal_uInt16)aAutoSaveEdit->GetValue() ) );
310 0 : bModified |= true;
311 : }
312 :
313 0 : if ( aUserAutoSaveCB->IsValueChangedFromSaved() )
314 : {
315 0 : rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_USERAUTOSAVE ),
316 0 : aUserAutoSaveCB->IsChecked() ) );
317 0 : bModified |= true;
318 : }
319 : // save relatively
320 0 : if ( aRelativeFsysCB->IsValueChangedFromSaved() )
321 : {
322 0 : rSet->Put( SfxBoolItem( GetWhich( SID_SAVEREL_FSYS ),
323 0 : aRelativeFsysCB->IsChecked() ) );
324 0 : bModified |= true;
325 : }
326 :
327 0 : if ( aRelativeInetCB->IsValueChangedFromSaved() )
328 : {
329 0 : rSet->Put( SfxBoolItem( GetWhich( SID_SAVEREL_INET ),
330 0 : aRelativeInetCB->IsChecked() ) );
331 0 : bModified |= true;
332 : }
333 :
334 0 : SvtModuleOptions aModuleOpt;
335 0 : if(!pImpl->aDefaultArr[APP_MATH].isEmpty() &&
336 0 : pImpl->aDefaultArr[APP_MATH] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::MATH))
337 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::MATH, pImpl->aDefaultArr[APP_MATH]);
338 :
339 0 : if( !pImpl->aDefaultArr[APP_DRAW].isEmpty() &&
340 0 : pImpl->aDefaultArr[APP_DRAW] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::DRAW))
341 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::DRAW, pImpl->aDefaultArr[APP_DRAW]);
342 :
343 0 : if(!pImpl->aDefaultArr[APP_IMPRESS].isEmpty() &&
344 0 : pImpl->aDefaultArr[APP_IMPRESS] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::IMPRESS))
345 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::IMPRESS, pImpl->aDefaultArr[APP_IMPRESS]);
346 :
347 0 : if(!pImpl->aDefaultArr[APP_CALC].isEmpty() &&
348 0 : pImpl->aDefaultArr[APP_CALC] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::CALC))
349 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::CALC, pImpl->aDefaultArr[APP_CALC]);
350 :
351 0 : if(!pImpl->aDefaultArr[APP_WRITER].isEmpty() &&
352 0 : pImpl->aDefaultArr[APP_WRITER] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITER))
353 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITER, pImpl->aDefaultArr[APP_WRITER]);
354 :
355 0 : if(!pImpl->aDefaultArr[APP_WRITER_WEB].isEmpty() &&
356 0 : pImpl->aDefaultArr[APP_WRITER_WEB] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERWEB))
357 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERWEB, pImpl->aDefaultArr[APP_WRITER_WEB]);
358 :
359 0 : if(!pImpl->aDefaultArr[APP_WRITER_GLOBAL].isEmpty() &&
360 0 : pImpl->aDefaultArr[APP_WRITER_GLOBAL] != aModuleOpt.GetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERGLOBAL))
361 0 : aModuleOpt.SetFactoryDefaultFilter(SvtModuleOptions::EFactory::WRITERGLOBAL, pImpl->aDefaultArr[APP_WRITER_GLOBAL]);
362 :
363 0 : return bModified;
364 : }
365 :
366 :
367 :
368 0 : bool isODFFormat( const OUString& sFilter )
369 : {
370 : static const char* aODFFormats[] =
371 : {
372 : "writer8",
373 : "writer8_template",
374 : "writerglobal8",
375 : "writerglobal8_writer",
376 : "calc8",
377 : "calc8_template",
378 : "draw8",
379 : "draw8_template",
380 : "impress8",
381 : "impress8_template",
382 : "impress8_draw",
383 : "chart8",
384 : "math8",
385 : NULL
386 : };
387 :
388 0 : bool bRet = false;
389 0 : int i = 0;
390 0 : while ( aODFFormats[i] != NULL )
391 : {
392 0 : if ( sFilter.equalsAscii( aODFFormats[i++] ) )
393 : {
394 0 : bRet = true;
395 0 : break;
396 : }
397 : }
398 :
399 0 : return bRet;
400 : }
401 :
402 0 : void SfxSaveTabPage::Reset( const SfxItemSet* )
403 : {
404 0 : SvtSaveOptions aSaveOpt;
405 0 : aLoadUserSettingsCB->Check(aSaveOpt.IsLoadUserSettings());
406 0 : aLoadUserSettingsCB->SaveValue();
407 0 : aLoadDocPrinterCB->Check( aSaveOpt.IsLoadDocumentPrinter() );
408 0 : aLoadDocPrinterCB->SaveValue();
409 :
410 0 : if ( !pImpl->bInitialized )
411 : {
412 : try
413 : {
414 0 : Reference< XMultiServiceFactory > xMSF = comphelper::getProcessServiceFactory();
415 0 : pImpl->xFact = Reference<XNameContainer>(
416 0 : xMSF->createInstance("com.sun.star.document.FilterFactory"), UNO_QUERY);
417 :
418 : DBG_ASSERT(pImpl->xFact.is(), "service com.sun.star.document.FilterFactory unavailable");
419 0 : Reference< XContainerQuery > xQuery(pImpl->xFact, UNO_QUERY);
420 0 : if(xQuery.is())
421 : {
422 0 : for(sal_Int32 n = 0; n < aDocTypeLB->GetEntryCount(); n++)
423 : {
424 0 : sal_IntPtr nData = reinterpret_cast<sal_IntPtr>(aDocTypeLB->GetEntryData(n));
425 0 : OUString sCommand;
426 0 : sCommand = "matchByDocumentService=%1:iflags=" +
427 0 : OUString::number(static_cast<int>(SfxFilterFlags::IMPORT|SfxFilterFlags::EXPORT)) +
428 0 : ":eflags=" +
429 0 : OUString::number(static_cast<int>(SfxFilterFlags::NOTINFILEDLG)) +
430 0 : ":default_first";
431 0 : OUString sReplace;
432 0 : switch(nData)
433 : {
434 0 : case APP_WRITER : sReplace = "com.sun.star.text.TextDocument"; break;
435 0 : case APP_WRITER_WEB : sReplace = "com.sun.star.text.WebDocument"; break;
436 0 : case APP_WRITER_GLOBAL : sReplace = "com.sun.star.text.GlobalDocument"; break;
437 0 : case APP_CALC : sReplace = "com.sun.star.sheet.SpreadsheetDocument";break;
438 0 : case APP_IMPRESS : sReplace = "com.sun.star.presentation.PresentationDocument";break;
439 0 : case APP_DRAW : sReplace = "com.sun.star.drawing.DrawingDocument";break;
440 0 : case APP_MATH : sReplace = "com.sun.star.formula.FormulaProperties";break;
441 : default: OSL_FAIL("illegal user data");
442 : }
443 0 : sCommand = sCommand.replaceFirst("%1", sReplace);
444 0 : Reference< XEnumeration > xList = xQuery->createSubSetEnumerationByQuery(sCommand);
445 0 : std::vector< OUString > lList;
446 0 : std::vector< sal_Bool > lAlienList;
447 0 : std::vector< sal_Bool > lODFList;
448 0 : while(xList->hasMoreElements())
449 : {
450 0 : SequenceAsHashMap aFilter(xList->nextElement());
451 0 : OUString sFilter = aFilter.getUnpackedValueOrDefault("Name",OUString());
452 0 : if (!sFilter.isEmpty())
453 : {
454 0 : SfxFilterFlags nFlags = static_cast<SfxFilterFlags>(aFilter.getUnpackedValueOrDefault("Flags",sal_Int32()));
455 0 : lList.push_back(sFilter);
456 0 : lAlienList.push_back(bool(nFlags & SfxFilterFlags::ALIEN));
457 0 : lODFList.push_back( isODFFormat( sFilter ) );
458 : }
459 0 : }
460 0 : pImpl->aFilterArr[nData] = comphelper::containerToSequence(lList);
461 0 : pImpl->aAlienArr[nData] = comphelper::containerToSequence(lAlienList);
462 0 : pImpl->aODFArr[nData] = comphelper::containerToSequence(lODFList);
463 0 : }
464 : }
465 0 : aDocTypeLB->SelectEntryPos(0);
466 0 : FilterHdl_Impl(aDocTypeLB);
467 : }
468 0 : catch(Exception& e)
469 : {
470 : (void) e;
471 : OSL_FAIL(
472 : OUStringToOString(
473 : "exception in FilterFactory access: " + e.Message,
474 : RTL_TEXTENCODING_UTF8).
475 : getStr());
476 : }
477 :
478 0 : pImpl->bInitialized = true;
479 : }
480 :
481 0 : aDocInfoCB->Check(aSaveOpt.IsDocInfoSave());
482 :
483 0 : aBackupCB->Check(aSaveOpt.IsBackup());
484 0 : bool bBackupRO = aSaveOpt.IsReadOnly(SvtSaveOptions::E_BACKUP);
485 0 : aBackupCB->Enable(!bBackupRO);
486 :
487 0 : aAutoSaveCB->Check(aSaveOpt.IsAutoSave());
488 0 : aUserAutoSaveCB->Check(aSaveOpt.IsUserAutoSave());
489 0 : aWarnAlienFormatCB->Check(aSaveOpt.IsWarnAlienFormat());
490 0 : aWarnAlienFormatCB->Enable(!aSaveOpt.IsReadOnly(SvtSaveOptions::E_WARNALIENFORMAT));
491 :
492 0 : aAutoSaveEdit->SetValue( aSaveOpt.GetAutoSaveTime() );
493 :
494 : // save relatively
495 0 : aRelativeFsysCB->Check( aSaveOpt.IsSaveRelFSys() );
496 :
497 0 : aRelativeInetCB->Check( aSaveOpt.IsSaveRelINet() );
498 :
499 0 : void* pDefaultVersion = reinterpret_cast<void*>( aSaveOpt.GetODFDefaultVersion() );
500 0 : aODFVersionLB->SelectEntryPos( aODFVersionLB->GetEntryPos( pDefaultVersion ) );
501 :
502 0 : AutoClickHdl_Impl( aAutoSaveCB );
503 0 : ODFVersionHdl_Impl( aODFVersionLB );
504 :
505 0 : aDocInfoCB->SaveValue();
506 0 : aBackupCB->SaveValue();
507 0 : aWarnAlienFormatCB->SaveValue();
508 0 : aAutoSaveCB->SaveValue();
509 0 : aAutoSaveEdit->SaveValue();
510 :
511 0 : aUserAutoSaveCB->SaveValue();
512 :
513 0 : aRelativeFsysCB->SaveValue();
514 0 : aRelativeInetCB->SaveValue();
515 0 : aODFVersionLB->SaveValue();
516 0 : }
517 :
518 :
519 :
520 0 : IMPL_LINK( SfxSaveTabPage, AutoClickHdl_Impl, CheckBox *, pBox )
521 : {
522 0 : if ( pBox == aAutoSaveCB )
523 : {
524 0 : if ( aAutoSaveCB->IsChecked() )
525 : {
526 0 : aAutoSaveEdit->Enable();
527 0 : aMinuteFT->Enable();
528 0 : aUserAutoSaveCB->Enable();
529 : }
530 : else
531 : {
532 0 : aAutoSaveEdit->Disable();
533 0 : aMinuteFT->Disable();
534 0 : aUserAutoSaveCB->Disable();
535 : }
536 : }
537 0 : return 0;
538 : }
539 :
540 0 : static OUString lcl_ExtracUIName(const Sequence<PropertyValue> &rProperties)
541 : {
542 0 : OUString sName;
543 0 : const PropertyValue* pPropVal = rProperties.getConstArray();
544 0 : const PropertyValue* const pEnd = pPropVal + rProperties.getLength();
545 0 : for( ; pPropVal != pEnd; pPropVal++ )
546 : {
547 0 : const OUString &rName = pPropVal->Name;
548 0 : if (rName == "UIName")
549 : {
550 0 : OUString sUIName;
551 0 : if ( ( pPropVal->Value >>= sUIName ) && sUIName.getLength() )
552 0 : return sUIName;
553 : }
554 0 : else if (rName == "Name")
555 : {
556 0 : pPropVal->Value >>= sName;
557 : }
558 : }
559 :
560 : OSL_ENSURE( false, "Filter without UIName!" );
561 :
562 0 : return sName;
563 : }
564 :
565 0 : IMPL_LINK( SfxSaveTabPage, FilterHdl_Impl, ListBox *, pBox )
566 : {
567 0 : sal_uInt16 nCurPos = aDocTypeLB->GetSelectEntryPos();
568 :
569 0 : sal_IntPtr nData = -1;
570 0 : if(nCurPos < APP_COUNT)
571 0 : nData = reinterpret_cast<sal_IntPtr>( aDocTypeLB->GetEntryData(nCurPos) );
572 :
573 0 : if ( nData >= 0 && nData < APP_COUNT )
574 : {
575 0 : if(aDocTypeLB == pBox)
576 : {
577 0 : aSaveAsLB->Clear();
578 0 : const OUString* pFilters = pImpl->aFilterArr[nData].getConstArray();
579 0 : if(!pImpl->aUIFilterArr[nData].getLength())
580 : {
581 0 : pImpl->aUIFilterArr[nData].realloc(pImpl->aFilterArr[nData].getLength());
582 0 : OUString* pUIFilters = pImpl->aUIFilterArr[nData].getArray();
583 0 : for(int nFilter = 0; nFilter < pImpl->aFilterArr[nData].getLength(); nFilter++)
584 : {
585 0 : Any aProps = pImpl->xFact->getByName(pFilters[nFilter]);
586 0 : Sequence<PropertyValue> aProperties;
587 0 : aProps >>= aProperties;
588 0 : pUIFilters[nFilter] = lcl_ExtracUIName(aProperties);
589 0 : }
590 : }
591 0 : const OUString* pUIFilters = pImpl->aUIFilterArr[nData].getConstArray();
592 0 : OUString sSelect;
593 0 : for(int i = 0; i < pImpl->aUIFilterArr[nData].getLength(); i++)
594 : {
595 0 : sal_uInt16 nEntryPos = aSaveAsLB->InsertEntry(pUIFilters[i]);
596 0 : if ( pImpl->aODFArr[nData][i] )
597 0 : aSaveAsLB->SetEntryData( nEntryPos, static_cast<void*>(pImpl) );
598 0 : if(pFilters[i] == pImpl->aDefaultArr[nData])
599 0 : sSelect = pUIFilters[i];
600 : }
601 0 : if(!sSelect.isEmpty())
602 : {
603 0 : aSaveAsLB->SelectEntry(sSelect);
604 : }
605 :
606 0 : aSaveAsFT->Enable(!pImpl->aDefaultReadonlyArr[nData]);
607 0 : aSaveAsLB->Enable(!pImpl->aDefaultReadonlyArr[nData]);
608 : }
609 : else
610 : {
611 0 : OUString sSelect = pBox->GetSelectEntry();
612 0 : const OUString* pFilters = pImpl->aFilterArr[nData].getConstArray();
613 0 : OUString* pUIFilters = pImpl->aUIFilterArr[nData].getArray();
614 0 : for(int i = 0; i < pImpl->aUIFilterArr[nData].getLength(); i++)
615 0 : if(pUIFilters[i] == sSelect)
616 : {
617 0 : sSelect = pFilters[i];
618 0 : break;
619 : }
620 :
621 0 : pImpl->aDefaultArr[nData] = sSelect;
622 : }
623 : }
624 :
625 0 : ODFVersionHdl_Impl( aSaveAsLB );
626 0 : return 0;
627 : };
628 :
629 0 : IMPL_LINK_NOARG(SfxSaveTabPage, ODFVersionHdl_Impl)
630 : {
631 0 : sal_IntPtr nVersion = sal_IntPtr( aODFVersionLB->GetSelectEntryData() );
632 0 : bool bShown = SvtSaveOptions::ODFDefaultVersion( nVersion ) != SvtSaveOptions::ODFVER_LATEST;
633 0 : if ( bShown )
634 : {
635 0 : bool bHasODFFormat = false;
636 0 : sal_uInt16 i = 0, nCount = aSaveAsLB->GetEntryCount();
637 0 : for ( ; i < nCount; ++ i )
638 : {
639 0 : if ( aSaveAsLB->GetEntryData(i) != NULL )
640 : {
641 0 : bHasODFFormat = true;
642 0 : break;
643 : }
644 : }
645 :
646 0 : bShown = !bHasODFFormat
647 0 : || ( aSaveAsLB->GetSelectEntryData() != NULL );
648 : }
649 :
650 0 : aODFWarningFI->Show( bShown );
651 0 : aODFWarningFT->Show( bShown );
652 :
653 0 : return 0;
654 0 : }
655 :
656 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|