LCOV - code coverage report
Current view: top level - sc/source/ui/miscdlgs - linkarea.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 171 0.0 %
Date: 2014-11-03 Functions: 0 25 0.0 %
Legend: Lines: hit not hit

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

Generated by: LCOV version 1.10