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 <comphelper/string.hxx>
21 : #include <sfx2/new.hxx>
22 : #include <vcl/builderfactory.hxx>
23 : #include <vcl/layout.hxx>
24 : #include <vcl/msgbox.hxx>
25 : #include <vcl/idle.hxx>
26 : #include <svtools/svmedit.hxx>
27 : #include <svl/itemset.hxx>
28 : #include <svl/eitem.hxx>
29 : #include <svtools/sfxecode.hxx>
30 : #include <svtools/ehdl.hxx>
31 : #include <tools/urlobj.hxx>
32 : #include <unotools/localfilehelper.hxx>
33 :
34 : #include "doc.hrc"
35 : #include <sfx2/app.hxx>
36 : #include <sfx2/objsh.hxx>
37 : #include <sfx2/sfxresid.hxx>
38 : #include <sfx2/docfile.hxx>
39 : #include "preview.hxx"
40 : #include <sfx2/printer.hxx>
41 : #include <vcl/waitobj.hxx>
42 :
43 0 : void SfxPreviewBase_Impl::SetObjectShell(SfxObjectShell* pObj)
44 : {
45 : std::shared_ptr<GDIMetaFile> xFile = pObj
46 : ? pObj->GetPreviewMetaFile()
47 0 : : std::shared_ptr<GDIMetaFile>();
48 0 : xMetaFile = xFile;
49 0 : Invalidate();
50 0 : }
51 :
52 0 : SfxPreviewBase_Impl::SfxPreviewBase_Impl(vcl::Window* pParent, WinBits nStyle)
53 : : Window(pParent, nStyle)
54 0 : , xMetaFile()
55 : {
56 0 : }
57 :
58 0 : void SfxPreviewBase_Impl::Resize()
59 : {
60 0 : Invalidate();
61 0 : }
62 :
63 0 : Size SfxPreviewBase_Impl::GetOptimalSize() const
64 : {
65 0 : return LogicToPixel(Size(127, 129), MAP_APPFONT);
66 : }
67 :
68 0 : void SfxPreviewWin_Impl::ImpPaint(vcl::RenderContext& rRenderContext, const Rectangle& /*rRect*/, GDIMetaFile* pFile)
69 : {
70 0 : rRenderContext.SetLineColor();
71 0 : Color aLightGrayCol(COL_LIGHTGRAY);
72 0 : rRenderContext.SetFillColor(aLightGrayCol);
73 0 : rRenderContext.DrawRect(Rectangle(Point(0,0), rRenderContext.GetOutputSize()));
74 :
75 0 : Size aTmpSize = pFile ? pFile->GetPrefSize() : Size(1, 1);
76 : DBG_ASSERT(aTmpSize.Height() * aTmpSize.Width(), "size of first page is 0, override GetFirstPageSize or set vis-area!");
77 :
78 : #define FRAME 4
79 :
80 0 : long nWidth = rRenderContext.GetOutputSize().Width() - 2 * FRAME;
81 0 : long nHeight = rRenderContext.GetOutputSize().Height() - 2 * FRAME;
82 0 : if (nWidth <= 0 || nHeight <= 0)
83 0 : return;
84 :
85 0 : double dRatio = double(aTmpSize.Width()) / aTmpSize.Height();
86 0 : double dRatioPreV = double(nWidth) / nHeight;
87 0 : Size aSize;
88 0 : Point aPoint;
89 0 : if (dRatio > dRatioPreV)
90 : {
91 0 : aSize = Size(nWidth, sal_uInt16(nWidth / dRatio));
92 0 : aPoint = Point(0, sal_uInt16((nHeight - aSize.Height()) / 2));
93 : }
94 : else
95 : {
96 0 : aSize = Size(sal_uInt16(nHeight * dRatio), nHeight);
97 0 : aPoint = Point(sal_uInt16((nWidth - aSize.Width()) / 2), 0);
98 : }
99 0 : Point bPoint = Point(nWidth, nHeight) - aPoint;
100 :
101 0 : if (pFile)
102 : {
103 0 : Color aBlackCol(COL_BLACK);
104 0 : Color aWhiteCol(COL_WHITE);
105 0 : rRenderContext.SetLineColor(aBlackCol);
106 0 : rRenderContext.SetFillColor(aWhiteCol);
107 0 : rRenderContext.DrawRect(Rectangle(aPoint + Point(FRAME, FRAME), bPoint + Point(FRAME, FRAME)));
108 0 : pFile->WindStart();
109 0 : pFile->Play(&rRenderContext, aPoint + Point(FRAME, FRAME), aSize);
110 : }
111 : }
112 :
113 0 : void SfxPreviewWin_Impl::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect)
114 : {
115 0 : ImpPaint(rRenderContext, rRect, xMetaFile.get());
116 0 : }
117 :
118 0 : VCL_BUILDER_DECL_FACTORY(SfxPreviewWin)
119 : {
120 : (void) rMap;
121 0 : rRet = VclPtr<SfxPreviewWin_Impl>::Create(pParent, 0);
122 0 : }
123 :
124 : class SfxNewFileDialog_Impl
125 : {
126 : VclPtr<ListBox> m_pRegionLb;
127 : VclPtr<ListBox> m_pTemplateLb;
128 :
129 : VclPtr<SfxPreviewWin_Impl> m_pPreviewWin;
130 :
131 : VclPtr<CheckBox> m_pTextStyleCB;
132 : VclPtr<CheckBox> m_pFrameStyleCB;
133 : VclPtr<CheckBox> m_pPageStyleCB;
134 : VclPtr<CheckBox> m_pNumStyleCB;
135 : VclPtr<CheckBox> m_pMergeStyleCB;
136 : VclPtr<PushButton> m_pLoadFilePB;
137 :
138 : VclPtr<VclExpander> m_pMoreBt;
139 : Idle aPrevIdle;
140 : OUString aNone;
141 : OUString sLoadTemplate;
142 :
143 : sal_uInt16 nFlags;
144 : SfxDocumentTemplates aTemplates;
145 : SfxObjectShellLock xDocShell;
146 : VclPtr<SfxNewFileDialog> pAntiImpl;
147 :
148 : DECL_LINK_TYPED( Update, Idle *, void );
149 :
150 : DECL_LINK(RegionSelect, ListBox*);
151 : DECL_LINK(TemplateSelect, void*);
152 : DECL_LINK(DoubleClick, ListBox*);
153 : DECL_LINK(Expand, void*);
154 : DECL_LINK(LoadFile, void*);
155 : sal_uInt16 GetSelectedTemplatePos() const;
156 :
157 : public:
158 :
159 : SfxNewFileDialog_Impl(SfxNewFileDialog* pAntiImplP, sal_uInt16 nFlags);
160 : ~SfxNewFileDialog_Impl();
161 :
162 : // Returns sal_False if '- No -' is set as a template
163 : // Template name can only be obtained if IsTemplate() is TRUE
164 : // erfragt werden
165 : bool IsTemplate() const;
166 : OUString GetTemplateFileName() const;
167 :
168 : SfxTemplateFlags GetTemplateFlags() const;
169 : void SetTemplateFlags(SfxTemplateFlags nSet);
170 : };
171 :
172 0 : IMPL_LINK_NOARG_TYPED(SfxNewFileDialog_Impl, Update, Idle*, void)
173 : {
174 0 : if (xDocShell.Is())
175 : {
176 0 : if (xDocShell->GetProgress())
177 0 : return;
178 0 : xDocShell.Clear();
179 : }
180 :
181 0 : const sal_uInt16 nEntry = GetSelectedTemplatePos();
182 0 : if (!nEntry)
183 : {
184 0 : m_pPreviewWin->Invalidate();
185 0 : m_pPreviewWin->SetObjectShell( 0);
186 0 : return;
187 : }
188 :
189 0 : if (m_pMoreBt->get_expanded() && (nFlags & SFXWB_PREVIEW) == SFXWB_PREVIEW)
190 : {
191 :
192 0 : OUString aFileName = aTemplates.GetPath(m_pRegionLb->GetSelectEntryPos(), nEntry - 1);
193 0 : INetURLObject aTestObj(aFileName);
194 0 : if (aTestObj.GetProtocol() == INetProtocol::NotValid)
195 : {
196 : // temp. fix until Templates are managed by UCB compatible service
197 : // does NOT work with locally cached components !
198 0 : OUString aTemp;
199 0 : utl::LocalFileHelper::ConvertPhysicalNameToURL( aFileName, aTemp );
200 0 : aFileName = aTemp;
201 : }
202 :
203 0 : INetURLObject aObj(aFileName);
204 0 : for (SfxObjectShell* pTmp = SfxObjectShell::GetFirst(); pTmp; pTmp = SfxObjectShell::GetNext(*pTmp))
205 : {
206 : //! fsys bug op==
207 0 : if (pTmp->GetMedium())
208 : // ??? HasName() MM
209 0 : if (INetURLObject( pTmp->GetMedium()->GetName() ) == aObj)
210 : {
211 0 : xDocShell = pTmp;
212 0 : break;
213 : }
214 : }
215 :
216 0 : if (!xDocShell.Is())
217 : {
218 0 : vcl::Window *pParent = Application::GetDefDialogParent();
219 0 : Application::SetDefDialogParent(pAntiImpl);
220 0 : SfxErrorContext eEC(ERRCTX_SFX_LOADTEMPLATE,pAntiImpl);
221 0 : SfxApplication *pSfxApp = SfxGetpApp();
222 : sal_uIntPtr lErr;
223 0 : SfxItemSet* pSet = new SfxAllItemSet(pSfxApp->GetPool());
224 0 : pSet->Put(SfxBoolItem(SID_TEMPLATE, true));
225 0 : pSet->Put(SfxBoolItem(SID_PREVIEW, true));
226 0 : lErr = pSfxApp->LoadTemplate(xDocShell, aFileName, true, pSet);
227 0 : if (lErr)
228 0 : ErrorHandler::HandleError(lErr);
229 0 : Application::SetDefDialogParent(pParent);
230 0 : if (!xDocShell.Is())
231 : {
232 0 : m_pPreviewWin->SetObjectShell(0);
233 0 : return;
234 0 : }
235 : }
236 :
237 0 : m_pPreviewWin->SetObjectShell(xDocShell);
238 : }
239 : }
240 :
241 0 : IMPL_LINK( SfxNewFileDialog_Impl, RegionSelect, ListBox*, pBox )
242 : {
243 0 : if (xDocShell.Is() && xDocShell->GetProgress())
244 0 : return 0;
245 :
246 0 : const sal_uInt16 nRegion = pBox->GetSelectEntryPos();
247 0 : const sal_uInt16 nCount = aTemplates.GetRegionCount()? aTemplates.GetCount(nRegion): 0;
248 0 : m_pTemplateLb->SetUpdateMode(false);
249 0 : m_pTemplateLb->Clear();
250 0 : OUString aSel = m_pRegionLb->GetSelectEntry();
251 0 : sal_Int32 nc = aSel.indexOf('(');
252 0 : if (nc != -1 && nc != 0)
253 0 : aSel = aSel.replaceAt(nc-1, 1, "");
254 0 : if ( aSel.compareToIgnoreAsciiCase( SfxResId(STR_STANDARD).toString() ) == 0 )
255 0 : m_pTemplateLb->InsertEntry(aNone);
256 0 : for (sal_uInt16 i = 0; i < nCount; ++i)
257 0 : m_pTemplateLb->InsertEntry(aTemplates.GetName(nRegion, i));
258 0 : m_pTemplateLb->SelectEntryPos(0);
259 0 : m_pTemplateLb->SetUpdateMode(true);
260 0 : m_pTemplateLb->Invalidate();
261 0 : m_pTemplateLb->Update();
262 0 : TemplateSelect(m_pTemplateLb);
263 0 : return 0;
264 : }
265 :
266 0 : IMPL_LINK_NOARG(SfxNewFileDialog_Impl, Expand)
267 : {
268 0 : TemplateSelect(m_pTemplateLb);
269 0 : return 0;
270 : }
271 :
272 0 : IMPL_LINK_NOARG(SfxNewFileDialog_Impl, TemplateSelect)
273 : {
274 : // Still loading
275 0 : if ( xDocShell && xDocShell->GetProgress() )
276 0 : return 0;
277 :
278 0 : if (!m_pMoreBt->get_expanded())
279 : // Dialog is not opened
280 0 : return 0;
281 :
282 0 : aPrevIdle.Start();
283 0 : return 0;
284 : }
285 :
286 0 : IMPL_LINK( SfxNewFileDialog_Impl, DoubleClick, ListBox *, pListBox )
287 : {
288 : (void)pListBox;
289 : // Still loadning
290 0 : if ( !xDocShell.Is() || !xDocShell->GetProgress() )
291 0 : pAntiImpl->EndDialog(RET_OK);
292 0 : return 0;
293 : }
294 :
295 0 : IMPL_LINK_NOARG(SfxNewFileDialog_Impl, LoadFile)
296 : {
297 0 : pAntiImpl->EndDialog(RET_TEMPLATE_LOAD);
298 0 : return 0;
299 : }
300 :
301 0 : sal_uInt16 SfxNewFileDialog_Impl::GetSelectedTemplatePos() const
302 : {
303 0 : sal_uInt16 nEntry = m_pTemplateLb->GetSelectEntryPos();
304 0 : OUString aSel = m_pRegionLb->GetSelectEntry();
305 0 : sal_Int32 nc = aSel.indexOf('(');
306 0 : if (nc != -1 && nc != 0)
307 0 : aSel = aSel.replaceAt(nc-1, 1, "");
308 0 : if ( aSel.compareToIgnoreAsciiCase(SfxResId(STR_STANDARD).toString()) != 0 )
309 0 : nEntry++;
310 0 : if (!m_pTemplateLb->GetSelectEntryCount())
311 0 : nEntry = 0;
312 0 : return nEntry;
313 : }
314 :
315 0 : bool SfxNewFileDialog_Impl::IsTemplate() const
316 : {
317 0 : return GetSelectedTemplatePos()!=0;
318 :
319 : }
320 :
321 0 : OUString SfxNewFileDialog_Impl::GetTemplateFileName() const
322 : {
323 0 : if(!IsTemplate() || !aTemplates.GetRegionCount())
324 0 : return OUString();
325 0 : return aTemplates.GetPath(m_pRegionLb->GetSelectEntryPos(),
326 0 : GetSelectedTemplatePos()-1);
327 : }
328 :
329 0 : SfxTemplateFlags SfxNewFileDialog_Impl::GetTemplateFlags()const
330 : {
331 0 : SfxTemplateFlags nRet = m_pTextStyleCB->IsChecked() ? SfxTemplateFlags::LOAD_TEXT_STYLES : SfxTemplateFlags::NONE;
332 0 : if(m_pFrameStyleCB->IsChecked())
333 0 : nRet |= SfxTemplateFlags::LOAD_FRAME_STYLES;
334 0 : if(m_pPageStyleCB->IsChecked())
335 0 : nRet |= SfxTemplateFlags::LOAD_PAGE_STYLES;
336 0 : if(m_pNumStyleCB->IsChecked())
337 0 : nRet |= SfxTemplateFlags::LOAD_NUM_STYLES;
338 0 : if(m_pMergeStyleCB->IsChecked())
339 0 : nRet |= SfxTemplateFlags::MERGE_STYLES;
340 0 : return nRet;
341 : }
342 :
343 0 : void SfxNewFileDialog_Impl::SetTemplateFlags(SfxTemplateFlags nSet)
344 : {
345 0 : m_pTextStyleCB->Check( bool(nSet & SfxTemplateFlags::LOAD_TEXT_STYLES ));
346 0 : m_pFrameStyleCB->Check( bool(nSet & SfxTemplateFlags::LOAD_FRAME_STYLES));
347 0 : m_pPageStyleCB->Check( bool(nSet & SfxTemplateFlags::LOAD_PAGE_STYLES ));
348 0 : m_pNumStyleCB->Check( bool(nSet & SfxTemplateFlags::LOAD_NUM_STYLES ));
349 0 : m_pMergeStyleCB->Check( bool(nSet & SfxTemplateFlags::MERGE_STYLES ));
350 0 : }
351 :
352 :
353 :
354 0 : SfxNewFileDialog_Impl::SfxNewFileDialog_Impl(
355 : SfxNewFileDialog* pAntiImplP, sal_uInt16 nFl)
356 : : aNone(SfxResId(STR_NONE).toString())
357 : , nFlags(nFl)
358 0 : , pAntiImpl(pAntiImplP)
359 : {
360 0 : pAntiImplP->get(m_pRegionLb, "categories");
361 0 : pAntiImplP->get(m_pTemplateLb, "templates");
362 :
363 0 : Size aSize(m_pRegionLb->LogicToPixel(Size(127, 72), MAP_APPFONT));
364 0 : m_pRegionLb->set_width_request(aSize.Width());
365 0 : m_pRegionLb->set_height_request(aSize.Height());
366 0 : m_pTemplateLb->set_width_request(aSize.Width());
367 0 : m_pTemplateLb->set_height_request(aSize.Height());
368 :
369 0 : pAntiImplP->get(m_pTextStyleCB, "text");
370 0 : pAntiImplP->get(m_pFrameStyleCB, "frame");
371 0 : pAntiImplP->get(m_pPageStyleCB, "pages");
372 0 : pAntiImplP->get(m_pNumStyleCB, "numbering");
373 0 : pAntiImplP->get(m_pMergeStyleCB, "overwrite");
374 0 : pAntiImplP->get(m_pMoreBt, "expander");
375 0 : pAntiImplP->get(m_pPreviewWin, "image");
376 0 : pAntiImplP->get(m_pLoadFilePB, "fromfile");
377 0 : sLoadTemplate = pAntiImplP->get<FixedText>("alttitle")->GetText();
378 :
379 0 : if (!nFlags)
380 0 : m_pMoreBt->Hide();
381 0 : else if(SFXWB_LOAD_TEMPLATE == nFlags)
382 : {
383 0 : m_pLoadFilePB->SetClickHdl(LINK(this, SfxNewFileDialog_Impl, LoadFile));
384 0 : m_pLoadFilePB->Show();
385 0 : m_pTextStyleCB->Show();
386 0 : m_pFrameStyleCB->Show();
387 0 : m_pPageStyleCB->Show();
388 0 : m_pNumStyleCB->Show();
389 0 : m_pMergeStyleCB->Show();
390 0 : m_pMoreBt->Hide();
391 0 : m_pTextStyleCB->Check();
392 0 : pAntiImplP->SetText(sLoadTemplate);
393 : }
394 : else
395 : {
396 0 : m_pMoreBt->SetExpandedHdl(LINK(this, SfxNewFileDialog_Impl, Expand));
397 0 : m_pPreviewWin->Show();
398 : }
399 :
400 0 : OUString &rExtra = pAntiImplP->GetExtraData();
401 0 : bool bExpand = !rExtra.isEmpty() && rExtra[0] == 'Y';
402 0 : m_pMoreBt->set_expanded(bExpand && nFlags);
403 :
404 0 : m_pTemplateLb->SetSelectHdl(LINK(this, SfxNewFileDialog_Impl, TemplateSelect));
405 0 : m_pTemplateLb->SetDoubleClickHdl(LINK(this, SfxNewFileDialog_Impl, DoubleClick));
406 :
407 : // update the template configuration if necessary
408 : {
409 0 : WaitObject aWaitCursor( pAntiImplP->GetParent() );
410 0 : aTemplates.Update( true /* be smart */ );
411 : }
412 : // fill the list boxes
413 0 : const sal_uInt16 nCount = aTemplates.GetRegionCount();
414 0 : if (nCount)
415 : {
416 0 : for(sal_uInt16 i = 0; i < nCount; ++i)
417 0 : m_pRegionLb->InsertEntry(aTemplates.GetFullRegionName(i));
418 0 : m_pRegionLb->SetSelectHdl(LINK(this, SfxNewFileDialog_Impl, RegionSelect));
419 : }
420 :
421 0 : aPrevIdle.SetPriority( SchedulerPriority::LOWEST );
422 0 : aPrevIdle.SetIdleHdl( LINK( this, SfxNewFileDialog_Impl, Update));
423 :
424 0 : m_pRegionLb->SelectEntryPos(0);
425 0 : RegionSelect(m_pRegionLb);
426 0 : }
427 :
428 0 : SfxNewFileDialog_Impl::~SfxNewFileDialog_Impl()
429 : {
430 0 : OUString &rExtra = pAntiImpl->GetExtraData();
431 0 : rExtra = m_pMoreBt->get_expanded() ? OUString("Y") : OUString("N");
432 0 : }
433 :
434 0 : SfxNewFileDialog::SfxNewFileDialog(vcl::Window *pParent, sal_uInt16 nFlags)
435 : : SfxModalDialog(pParent, "LoadTemplateDialog",
436 0 : "sfx/ui/loadtemplatedialog.ui")
437 : {
438 0 : pImpl = new SfxNewFileDialog_Impl(this, nFlags);
439 0 : }
440 :
441 0 : SfxNewFileDialog::~SfxNewFileDialog()
442 : {
443 0 : disposeOnce();
444 0 : }
445 :
446 0 : void SfxNewFileDialog::dispose()
447 : {
448 0 : delete pImpl;
449 0 : SfxModalDialog::dispose();
450 0 : }
451 :
452 0 : bool SfxNewFileDialog::IsTemplate() const
453 : {
454 0 : return pImpl->IsTemplate();
455 : }
456 :
457 0 : OUString SfxNewFileDialog::GetTemplateFileName() const
458 : {
459 0 : return pImpl->GetTemplateFileName();
460 : }
461 :
462 0 : SfxTemplateFlags SfxNewFileDialog::GetTemplateFlags()const
463 : {
464 0 : return pImpl->GetTemplateFlags();
465 : }
466 :
467 0 : void SfxNewFileDialog::SetTemplateFlags(SfxTemplateFlags nSet)
468 : {
469 0 : pImpl->SetTemplateFlags(nSet);
470 648 : }
471 :
472 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|