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