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 : #undef SC_DLLIMPLEMENTATION
22 :
23 : #include <comphelper/string.hxx>
24 : #include <sfx2/app.hxx>
25 : #include <sfx2/docfile.hxx>
26 : #include <sfx2/docfilt.hxx>
27 : #include <sfx2/docinsert.hxx>
28 : #include <sfx2/fcontnr.hxx>
29 : #include <sfx2/filedlghelper.hxx>
30 : #include <svtools/ehdl.hxx>
31 : #include <svtools/sfxecode.hxx>
32 : #include <vcl/waitobj.hxx>
33 :
34 : #include "linkarea.hxx"
35 : #include "scresid.hxx"
36 : #include "sc.hrc"
37 : #include "rangeutl.hxx"
38 : #include "docsh.hxx"
39 : #include "tablink.hxx"
40 :
41 0 : ScLinkedAreaDlg::ScLinkedAreaDlg(Window* pParent)
42 : : ModalDialog(pParent, "ExternalDataDialog", "modules/scalc/ui/externaldata.ui")
43 : , pSourceShell(NULL)
44 0 : , pDocInserter(NULL)
45 :
46 : {
47 0 : get(m_pCbUrl, "url");
48 0 : get(m_pLbRanges, "ranges");
49 0 : m_pLbRanges->EnableMultiSelection(true);
50 0 : m_pLbRanges->SetDropDownLineCount(8);
51 0 : get(m_pBtnBrowse, "browse");
52 0 : get(m_pBtnReload, "reload");
53 0 : get(m_pNfDelay, "delay");
54 0 : get(m_pFtSeconds, "secondsft");
55 0 : get(m_pBtnOk, "ok");
56 :
57 0 : m_pCbUrl->SetSelectHdl( LINK( this, ScLinkedAreaDlg, FileHdl ) );
58 0 : m_pBtnBrowse->SetClickHdl( LINK( this, ScLinkedAreaDlg, BrowseHdl ) );
59 0 : m_pLbRanges->SetSelectHdl( LINK( this, ScLinkedAreaDlg, RangeHdl ) );
60 0 : m_pBtnReload->SetClickHdl( LINK( this, ScLinkedAreaDlg, ReloadHdl ) );
61 0 : UpdateEnable();
62 0 : }
63 :
64 0 : ScLinkedAreaDlg::~ScLinkedAreaDlg()
65 : {
66 : // pSourceShell is deleted by aSourceRef
67 0 : }
68 :
69 0 : short ScLinkedAreaDlg::Execute()
70 : {
71 : // set parent for file dialog or filter options
72 :
73 0 : Window* pOldDefParent = Application::GetDefDialogParent();
74 0 : Application::SetDefDialogParent( this );
75 :
76 0 : short nRet = ModalDialog::Execute();
77 :
78 0 : Application::SetDefDialogParent( pOldDefParent );
79 :
80 0 : return nRet;
81 : }
82 :
83 : #define FILTERNAME_HTML "HTML (StarCalc)"
84 : #define FILTERNAME_QUERY "calc_HTML_WebQuery"
85 :
86 0 : IMPL_LINK_NOARG(ScLinkedAreaDlg, BrowseHdl)
87 : {
88 0 : if ( !pDocInserter )
89 : pDocInserter = new sfx2::DocumentInserter(
90 0 : OUString::createFromAscii( ScDocShell::Factory().GetShortName() ) );
91 0 : pDocInserter->StartExecuteModal( LINK( this, ScLinkedAreaDlg, DialogClosedHdl ) );
92 0 : return 0;
93 : }
94 :
95 0 : IMPL_LINK_NOARG(ScLinkedAreaDlg, FileHdl)
96 : {
97 0 : OUString aEntered = m_pCbUrl->GetURL();
98 0 : if (pSourceShell)
99 : {
100 0 : SfxMedium* pMed = pSourceShell->GetMedium();
101 0 : if ( aEntered.equals(pMed->GetName()) )
102 : {
103 : // already loaded - nothing to do
104 0 : return 0;
105 : }
106 : }
107 :
108 0 : OUString aFilter;
109 0 : OUString aOptions;
110 : // get filter name by looking at the file content (bWithContent = true)
111 : // Break operation if any error occurred inside.
112 0 : if (!ScDocumentLoader::GetFilterName( aEntered, aFilter, aOptions, true, true ))
113 0 : return 0;
114 :
115 : // #i53241# replace HTML filter with DataQuery filter
116 0 : if (aFilter.equalsAscii(FILTERNAME_HTML))
117 0 : aFilter = OUString(FILTERNAME_QUERY);
118 :
119 0 : LoadDocument( aEntered, aFilter, aOptions );
120 :
121 0 : UpdateSourceRanges();
122 0 : UpdateEnable();
123 0 : return 0;
124 : }
125 :
126 0 : void ScLinkedAreaDlg::LoadDocument( const OUString& rFile, const OUString& rFilter, const OUString& rOptions )
127 : {
128 0 : if ( pSourceShell )
129 : {
130 : // unload old document
131 0 : pSourceShell->DoClose();
132 0 : pSourceShell = NULL;
133 0 : aSourceRef.Clear();
134 : }
135 :
136 0 : if ( !rFile.isEmpty() )
137 : {
138 0 : WaitObject aWait( this );
139 :
140 0 : OUString aNewFilter = rFilter;
141 0 : OUString aNewOptions = rOptions;
142 :
143 0 : SfxErrorContext aEc( ERRCTX_SFX_OPENDOC, rFile );
144 :
145 0 : ScDocumentLoader aLoader( rFile, aNewFilter, aNewOptions, 0, true ); // with interaction
146 0 : pSourceShell = aLoader.GetDocShell();
147 0 : if ( pSourceShell )
148 : {
149 0 : sal_uLong nErr = pSourceShell->GetErrorCode();
150 0 : if (nErr)
151 0 : ErrorHandler::HandleError( nErr ); // including warnings
152 :
153 0 : aSourceRef = pSourceShell;
154 0 : aLoader.ReleaseDocRef(); // don't call DoClose in DocLoader dtor
155 0 : }
156 : }
157 0 : }
158 :
159 0 : void ScLinkedAreaDlg::InitFromOldLink( const OUString& rFile, const OUString& rFilter,
160 : const OUString& rOptions, const OUString& rSource,
161 : sal_uLong nRefresh )
162 : {
163 0 : LoadDocument( rFile, rFilter, rOptions );
164 0 : if (pSourceShell)
165 : {
166 0 : SfxMedium* pMed = pSourceShell->GetMedium();
167 0 : m_pCbUrl->SetText( pMed->GetName() );
168 : }
169 : else
170 0 : m_pCbUrl->SetText( EMPTY_OUSTRING );
171 :
172 0 : UpdateSourceRanges();
173 :
174 0 : sal_Int32 nRangeCount = comphelper::string::getTokenCount(rSource, ';');
175 0 : for ( sal_Int32 i=0; i<nRangeCount; i++ )
176 : {
177 0 : OUString aRange = rSource.getToken(i,';');
178 0 : m_pLbRanges->SelectEntry( aRange );
179 0 : }
180 :
181 0 : bool bDoRefresh = (nRefresh != 0);
182 0 : m_pBtnReload->Check( bDoRefresh );
183 0 : if (bDoRefresh)
184 0 : m_pNfDelay->SetValue( nRefresh );
185 :
186 0 : UpdateEnable();
187 0 : }
188 :
189 0 : IMPL_LINK_NOARG(ScLinkedAreaDlg, RangeHdl)
190 : {
191 0 : UpdateEnable();
192 0 : return 0;
193 : }
194 :
195 0 : IMPL_LINK_NOARG(ScLinkedAreaDlg, ReloadHdl)
196 : {
197 0 : UpdateEnable();
198 0 : return 0;
199 : }
200 :
201 0 : IMPL_LINK( ScLinkedAreaDlg, DialogClosedHdl, sfx2::FileDialogHelper*, _pFileDlg )
202 : {
203 0 : if ( _pFileDlg->GetError() != ERRCODE_NONE )
204 0 : return 0;
205 :
206 0 : SfxMedium* pMed = pDocInserter->CreateMedium();
207 0 : if ( pMed )
208 : {
209 0 : WaitObject aWait( this );
210 :
211 : // replace HTML filter with DataQuery filter
212 0 : const OUString aHTMLFilterName( FILTERNAME_HTML );
213 0 : const OUString aWebQFilterName( FILTERNAME_QUERY );
214 :
215 0 : const SfxFilter* pFilter = pMed->GetFilter();
216 0 : if (pFilter && aHTMLFilterName.equals(pFilter->GetFilterName()))
217 : {
218 : const SfxFilter* pNewFilter =
219 0 : ScDocShell::Factory().GetFilterContainer()->GetFilter4FilterName( aWebQFilterName );
220 0 : if( pNewFilter )
221 0 : pMed->SetFilter( pNewFilter );
222 : }
223 :
224 : // ERRCTX_SFX_OPENDOC -> "Fehler beim Laden des Dokumentes"
225 0 : SfxErrorContext aEc( ERRCTX_SFX_OPENDOC, pMed->GetName() );
226 :
227 0 : if (pSourceShell)
228 0 : pSourceShell->DoClose(); // deleted when assigning aSourceRef
229 :
230 0 : pMed->UseInteractionHandler( true ); // to enable the filter options dialog
231 :
232 0 : pSourceShell = new ScDocShell;
233 0 : aSourceRef = pSourceShell;
234 0 : pSourceShell->DoLoad( pMed );
235 :
236 0 : sal_uLong nErr = pSourceShell->GetErrorCode();
237 0 : if (nErr)
238 0 : ErrorHandler::HandleError( nErr ); // including warnings
239 :
240 0 : if ( !pSourceShell->GetError() ) // only errors
241 : {
242 0 : m_pCbUrl->SetText( pMed->GetName() );
243 : }
244 : else
245 : {
246 0 : pSourceShell->DoClose();
247 0 : pSourceShell = NULL;
248 0 : aSourceRef.Clear();
249 :
250 0 : m_pCbUrl->SetText( EMPTY_OUSTRING );
251 0 : }
252 : }
253 :
254 0 : UpdateSourceRanges();
255 0 : UpdateEnable();
256 0 : return 0;
257 : }
258 :
259 : #undef FILTERNAME_HTML
260 : #undef FILTERNAME_QUERY
261 :
262 0 : void ScLinkedAreaDlg::UpdateSourceRanges()
263 : {
264 0 : m_pLbRanges->SetUpdateMode(false);
265 :
266 0 : m_pLbRanges->Clear();
267 0 : if ( pSourceShell )
268 : {
269 0 : ScAreaNameIterator aIter( pSourceShell->GetDocument() );
270 0 : ScRange aDummy;
271 0 : OUString aName;
272 0 : while ( aIter.Next( aName, aDummy ) )
273 0 : m_pLbRanges->InsertEntry( aName );
274 : }
275 :
276 0 : m_pLbRanges->SetUpdateMode(true);
277 :
278 0 : if ( m_pLbRanges->GetEntryCount() == 1 )
279 0 : m_pLbRanges->SelectEntryPos(0);
280 0 : }
281 :
282 0 : void ScLinkedAreaDlg::UpdateEnable()
283 : {
284 0 : bool bEnable = ( pSourceShell && m_pLbRanges->GetSelectEntryCount() );
285 0 : m_pBtnOk->Enable( bEnable );
286 :
287 0 : bool bReload = m_pBtnReload->IsChecked();
288 0 : m_pNfDelay->Enable( bReload );
289 0 : m_pFtSeconds->Enable( bReload );
290 0 : }
291 :
292 0 : OUString ScLinkedAreaDlg::GetURL()
293 : {
294 0 : if (pSourceShell)
295 : {
296 0 : SfxMedium* pMed = pSourceShell->GetMedium();
297 0 : return pMed->GetName();
298 : }
299 0 : return EMPTY_OUSTRING;
300 : }
301 :
302 0 : OUString ScLinkedAreaDlg::GetFilter()
303 : {
304 0 : if (pSourceShell)
305 : {
306 0 : SfxMedium* pMed = pSourceShell->GetMedium();
307 0 : return pMed->GetFilter()->GetFilterName();
308 : }
309 0 : return OUString();
310 : }
311 :
312 0 : OUString ScLinkedAreaDlg::GetOptions()
313 : {
314 0 : if (pSourceShell)
315 : {
316 0 : SfxMedium* pMed = pSourceShell->GetMedium();
317 0 : return ScDocumentLoader::GetOptions( *pMed );
318 : }
319 0 : return OUString();
320 : }
321 :
322 0 : OUString ScLinkedAreaDlg::GetSource()
323 : {
324 0 : OUStringBuffer aBuf;
325 0 : sal_uInt16 nCount = m_pLbRanges->GetSelectEntryCount();
326 0 : for (sal_uInt16 i=0; i<nCount; i++)
327 : {
328 0 : if (i > 0)
329 0 : aBuf.append(';');
330 0 : aBuf.append(m_pLbRanges->GetSelectEntry(i));
331 : }
332 0 : return aBuf.makeStringAndClear();
333 : }
334 :
335 0 : sal_uLong ScLinkedAreaDlg::GetRefresh()
336 : {
337 0 : if ( m_pBtnReload->IsChecked() )
338 0 : return sal::static_int_cast<sal_uLong>( m_pNfDelay->GetValue() );
339 : else
340 0 : return 0; // disabled
341 : }
342 :
343 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|