LCOV - code coverage report
Current view: top level - sc/source/ui/docshell - arealink.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 159 234 67.9 %
Date: 2014-11-03 Functions: 12 23 52.2 %
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             : #include <comphelper/string.hxx>
      21             : #include <sfx2/app.hxx>
      22             : #include <sfx2/docfile.hxx>
      23             : #include <sfx2/fcontnr.hxx>
      24             : #include <sfx2/linkmgr.hxx>
      25             : #include <svl/stritem.hxx>
      26             : #include <vcl/msgbox.hxx>
      27             : 
      28             : #include "arealink.hxx"
      29             : 
      30             : #include "tablink.hxx"
      31             : #include "document.hxx"
      32             : #include "docsh.hxx"
      33             : #include "rangenam.hxx"
      34             : #include "dbdata.hxx"
      35             : #include "undoblk.hxx"
      36             : #include "globstr.hrc"
      37             : #include "markdata.hxx"
      38             : #include "hints.hxx"
      39             : #include "filter.hxx"
      40             : 
      41             : #include "attrib.hxx"
      42             : #include "patattr.hxx"
      43             : #include "docpool.hxx"
      44             : 
      45             : #include "sc.hrc"
      46             : #include "scabstdlg.hxx"
      47             : #include "clipparam.hxx"
      48             : 
      49             : struct AreaLink_Impl
      50             : {
      51             :     ScDocShell* m_pDocSh;
      52             :     AbstractScLinkedAreaDlg* m_pDialog;
      53             : 
      54          32 :     AreaLink_Impl() : m_pDocSh( NULL ), m_pDialog( NULL ) {}
      55             : };
      56             : 
      57         586 : TYPEINIT1(ScAreaLink,::sfx2::SvBaseLink);
      58             : 
      59          32 : ScAreaLink::ScAreaLink( SfxObjectShell* pShell, const OUString& rFile,
      60             :                         const OUString& rFilter, const OUString& rOpt,
      61             :                         const OUString& rArea, const ScRange& rDest,
      62             :                         sal_uLong nRefresh ) :
      63             :     ::sfx2::SvBaseLink(sfx2::LINKUPDATE_ONCALL,FORMAT_FILE),
      64             :     ScRefreshTimer  ( nRefresh ),
      65             :     pImpl           ( new AreaLink_Impl() ),
      66             :     aFileName       (rFile),
      67             :     aFilterName     (rFilter),
      68             :     aOptions        (rOpt),
      69             :     aSourceArea     (rArea),
      70             :     aDestArea       (rDest),
      71             :     bAddUndo        (true),
      72             :     bInCreate       (false),
      73          32 :     bDoInsert       (true)
      74             : {
      75             :     OSL_ENSURE(pShell->ISA(ScDocShell), "ScAreaLink mit falscher ObjectShell");
      76          32 :     pImpl->m_pDocSh = static_cast< ScDocShell* >( pShell );
      77          32 :     SetRefreshHandler( LINK( this, ScAreaLink, RefreshHdl ) );
      78          32 :     SetRefreshControl( &pImpl->m_pDocSh->GetDocument().GetRefreshTimerControlAddress() );
      79          32 : }
      80             : 
      81          96 : ScAreaLink::~ScAreaLink()
      82             : {
      83          32 :     StopRefreshTimer();
      84          32 :     delete pImpl;
      85          64 : }
      86             : 
      87           0 : void ScAreaLink::Edit(vcl::Window* pParent, const Link& /* rEndEditHdl */ )
      88             : {
      89             :     //  use own dialog instead of SvBaseLink::Edit...
      90             :     //  DefModalDialogParent setzen, weil evtl. aus der DocShell beim ConvertFrom
      91             :     //  ein Optionen-Dialog kommt...
      92             : 
      93           0 :     ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
      94             :     OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
      95             : 
      96           0 :     AbstractScLinkedAreaDlg* pDlg = pFact->CreateScLinkedAreaDlg(pParent);
      97             :     OSL_ENSURE(pDlg, "Dialog create fail!");
      98           0 :     pDlg->InitFromOldLink( aFileName, aFilterName, aOptions, aSourceArea, GetRefreshDelay() );
      99           0 :     pImpl->m_pDialog = pDlg;
     100           0 :     pDlg->StartExecuteModal( LINK( this, ScAreaLink, AreaEndEditHdl ) );
     101           0 : }
     102             : 
     103          32 : ::sfx2::SvBaseLink::UpdateResult ScAreaLink::DataChanged(
     104             :     const OUString&, const ::com::sun::star::uno::Any& )
     105             : {
     106             :     //  bei bInCreate nichts tun, damit Update gerufen werden kann, um den Status im
     107             :     //  LinkManager zu setzen, ohne die Daten im Dokument zu aendern
     108             : 
     109          32 :     if (bInCreate)
     110           0 :         return SUCCESS;
     111             : 
     112          32 :     sfx2::LinkManager* pLinkManager=pImpl->m_pDocSh->GetDocument().GetLinkManager();
     113          32 :     if (pLinkManager!=NULL)
     114             :     {
     115          64 :         OUString aFile, aArea, aFilter;
     116          32 :         pLinkManager->GetDisplayNames(this, NULL, &aFile, &aArea, &aFilter);
     117             : 
     118             :         //  the file dialog returns the filter name with the application prefix
     119             :         //  -> remove prefix
     120          32 :         ScDocumentLoader::RemoveAppPrefix( aFilter );
     121             : 
     122             :         // dialog doesn't set area, so keep old one
     123          32 :         if (aArea.isEmpty())
     124             :         {
     125           0 :             aArea = aSourceArea;
     126             : 
     127             :             // adjust in dialog:
     128           0 :             OUString aNewLinkName;
     129           0 :             OUString aTmp = aFilter;
     130           0 :             sfx2::MakeLnkName(aNewLinkName, NULL, aFile, aArea, &aTmp);
     131           0 :             aFilter = aTmp;
     132           0 :             SetName( aNewLinkName );
     133             :         }
     134             : 
     135          64 :         sfx2::SvBaseLinkRef const xThis(this); // keep yourself alive
     136          64 :         Refresh( aFile, aFilter, aArea, GetRefreshDelay() );
     137             :     }
     138             : 
     139          32 :     return SUCCESS;
     140             : }
     141             : 
     142           0 : void ScAreaLink::Closed()
     143             : {
     144             :     // Verknuepfung loeschen: Undo
     145             : 
     146           0 :     ScDocument& rDoc = pImpl->m_pDocSh->GetDocument();
     147           0 :     bool bUndo (rDoc.IsUndoEnabled());
     148           0 :     if (bAddUndo && bUndo)
     149             :     {
     150           0 :         pImpl->m_pDocSh->GetUndoManager()->AddUndoAction( new ScUndoRemoveAreaLink( pImpl->m_pDocSh,
     151             :                                                         aFileName, aFilterName, aOptions,
     152           0 :                                                         aSourceArea, aDestArea, GetRefreshDelay() ) );
     153             : 
     154           0 :         bAddUndo = false;   // nur einmal
     155             :     }
     156             : 
     157           0 :     SCTAB nDestTab = aDestArea.aStart.Tab();
     158           0 :     if (rDoc.IsStreamValid(nDestTab))
     159           0 :         rDoc.SetStreamValid(nDestTab, false);
     160             : 
     161           0 :     SvBaseLink::Closed();
     162           0 : }
     163             : 
     164           0 : void ScAreaLink::SetDestArea(const ScRange& rNew)
     165             : {
     166           0 :     aDestArea = rNew;           // fuer Undo
     167           0 : }
     168             : 
     169           0 : void ScAreaLink::SetSource(const OUString& rDoc, const OUString& rFlt, const OUString& rOpt,
     170             :                                 const OUString& rArea)
     171             : {
     172           0 :     aFileName   = rDoc;
     173           0 :     aFilterName = rFlt;
     174           0 :     aOptions    = rOpt;
     175           0 :     aSourceArea = rArea;
     176             : 
     177             :     //  also update link name for dialog
     178           0 :     OUString aNewLinkName;
     179           0 :     sfx2::MakeLnkName( aNewLinkName, NULL, aFileName, aSourceArea, &aFilterName );
     180           0 :     SetName( aNewLinkName );
     181           0 : }
     182             : 
     183           0 : bool ScAreaLink::IsEqual( const OUString& rFile, const OUString& rFilter, const OUString& rOpt,
     184             :                             const OUString& rSource, const ScRange& rDest ) const
     185             : {
     186           0 :     return aFileName == rFile && aFilterName == rFilter && aOptions == rOpt &&
     187           0 :             aSourceArea == rSource && aDestArea.aStart == rDest.aStart;
     188             : }
     189             : 
     190             : // find a range with name >rAreaName< in >pSrcDoc<, return it in >rRange<
     191          16 : bool ScAreaLink::FindExtRange( ScRange& rRange, ScDocument* pSrcDoc, const OUString& rAreaName )
     192             : {
     193          16 :     bool bFound = false;
     194          16 :     OUString aUpperName = ScGlobal::pCharClass->uppercase(rAreaName);
     195          16 :     ScRangeName* pNames = pSrcDoc->GetRangeName();
     196          16 :     if (pNames)         // benannte Bereiche
     197             :     {
     198          16 :         const ScRangeData* p = pNames->findByUpperName(aUpperName);
     199          16 :         if (p && p->IsValidReference(rRange))
     200           0 :             bFound = true;
     201             :     }
     202          16 :     if (!bFound)        // Datenbankbereiche
     203             :     {
     204          16 :         ScDBCollection* pDBColl = pSrcDoc->GetDBCollection();
     205          16 :         if (pDBColl)
     206             :         {
     207          16 :             const ScDBData* pDB = pDBColl->getNamedDBs().findByUpperName(aUpperName);
     208          16 :             if (pDB)
     209             :             {
     210             :                 SCTAB nTab;
     211             :                 SCCOL nCol1, nCol2;
     212             :                 SCROW nRow1, nRow2;
     213           0 :                 pDB->GetArea(nTab,nCol1,nRow1,nCol2,nRow2);
     214           0 :                 rRange = ScRange( nCol1,nRow1,nTab, nCol2,nRow2,nTab );
     215           0 :                 bFound = true;
     216             :             }
     217             :         }
     218             :     }
     219          16 :     if (!bFound)        // direct reference (range or cell)
     220             :     {
     221          16 :         ScAddress::Details aDetails(pSrcDoc->GetAddressConvention(), 0, 0);
     222          16 :         if ( rRange.ParseAny( rAreaName, pSrcDoc, aDetails ) & SCA_VALID )
     223          16 :             bFound = true;
     224             :     }
     225          16 :     return bFound;
     226             : }
     227             : 
     228             : //  ausfuehren:
     229             : 
     230          32 : bool ScAreaLink::Refresh( const OUString& rNewFile, const OUString& rNewFilter,
     231             :                             const OUString& rNewArea, sal_uLong nNewRefresh )
     232             : {
     233             :     //  Dokument laden - wie TabLink
     234             : 
     235          32 :     if (rNewFile.isEmpty() || rNewFilter.isEmpty())
     236           0 :         return false;
     237             : 
     238          32 :     OUString aNewUrl( ScGlobal::GetAbsDocName( rNewFile, pImpl->m_pDocSh ) );
     239          32 :     bool bNewUrlName = (aNewUrl != aFileName);
     240             : 
     241          32 :     const SfxFilter* pFilter = pImpl->m_pDocSh->GetFactory().GetFilterContainer()->GetFilter4FilterName(rNewFilter);
     242          32 :     if (!pFilter)
     243          24 :         return false;
     244             : 
     245           8 :     ScDocument& rDoc = pImpl->m_pDocSh->GetDocument();
     246             : 
     247           8 :     bool bUndo (rDoc.IsUndoEnabled());
     248           8 :     rDoc.SetInLinkUpdate( true );
     249             : 
     250             :     //  wenn neuer Filter ausgewaehlt wurde, Optionen vergessen
     251           8 :     if ( rNewFilter != aFilterName )
     252           0 :         aOptions = "";
     253             : 
     254           8 :     SfxMedium* pMed = ScDocumentLoader::CreateMedium( aNewUrl, pFilter, aOptions);
     255             : 
     256             :     // aRef->DoClose() will be closed explicitly, but it is still more safe to use SfxObjectShellLock here
     257           8 :     ScDocShell* pSrcShell = new ScDocShell(SFX_CREATE_MODE_INTERNAL);
     258          16 :     SfxObjectShellLock aRef = pSrcShell;
     259           8 :     pSrcShell->DoLoad(pMed);
     260             : 
     261           8 :     ScDocument& rSrcDoc = pSrcShell->GetDocument();
     262             : 
     263             :     // Optionen koennten gesetzt worden sein
     264          16 :     OUString aNewOpt = ScDocumentLoader::GetOptions(*pMed);
     265           8 :     if (aNewOpt.isEmpty())
     266           8 :         aNewOpt = aOptions;
     267             : 
     268             :     // correct source range name list for web query import
     269          16 :     OUString aTempArea;
     270             : 
     271           8 :     if( rNewFilter == ScDocShell::GetWebQueryFilterName() )
     272           0 :         aTempArea = ScFormatFilter::Get().GetHTMLRangeNameList( &rSrcDoc, rNewArea );
     273             :     else
     274           8 :         aTempArea = rNewArea;
     275             : 
     276             :     // find total size of source area
     277           8 :     SCCOL nWidth = 0;
     278           8 :     SCROW nHeight = 0;
     279           8 :     sal_Int32 nTokenCnt = comphelper::string::getTokenCount(aTempArea, ';');
     280           8 :     sal_Int32 nStringIx = 0;
     281             :     sal_Int32 nToken;
     282             : 
     283          16 :     for( nToken = 0; nToken < nTokenCnt; nToken++ )
     284             :     {
     285           8 :         OUString aToken( aTempArea.getToken( 0, ';', nStringIx ) );
     286           8 :         ScRange aTokenRange;
     287           8 :         if( FindExtRange( aTokenRange, &rSrcDoc, aToken ) )
     288             :         {
     289             :             // columns: find maximum
     290           8 :             nWidth = std::max( nWidth, (SCCOL)(aTokenRange.aEnd.Col() - aTokenRange.aStart.Col() + 1) );
     291             :             // rows: add row range + 1 empty row
     292           8 :             nHeight += aTokenRange.aEnd.Row() - aTokenRange.aStart.Row() + 2;
     293             :         }
     294           8 :     }
     295             :     // remove the last empty row
     296           8 :     if( nHeight > 0 )
     297           8 :         nHeight--;
     298             : 
     299             :     //  alte Daten loeschen / neue kopieren
     300             : 
     301           8 :     ScAddress aDestPos = aDestArea.aStart;
     302           8 :     SCTAB nDestTab = aDestPos.Tab();
     303           8 :     ScRange aOldRange = aDestArea;
     304           8 :     ScRange aNewRange = aDestArea;          // alter Bereich, wenn Datei nicht gefunden o.ae.
     305           8 :     if (nWidth > 0 && nHeight > 0)
     306             :     {
     307           8 :         aNewRange.aEnd.SetCol( aNewRange.aStart.Col() + nWidth - 1 );
     308           8 :         aNewRange.aEnd.SetRow( aNewRange.aStart.Row() + nHeight - 1 );
     309             :     }
     310             : 
     311             :     //! check CanFitBlock only if bDoInsert is set?
     312          16 :     bool bCanDo = ValidColRow( aNewRange.aEnd.Col(), aNewRange.aEnd.Row() ) &&
     313          16 :                   rDoc.CanFitBlock( aOldRange, aNewRange );
     314           8 :     if (bCanDo)
     315             :     {
     316           8 :         ScDocShellModificator aModificator( *pImpl->m_pDocSh );
     317             : 
     318           8 :         SCCOL nOldEndX = aOldRange.aEnd.Col();
     319           8 :         SCROW nOldEndY = aOldRange.aEnd.Row();
     320           8 :         SCCOL nNewEndX = aNewRange.aEnd.Col();
     321           8 :         SCROW nNewEndY = aNewRange.aEnd.Row();
     322             :         ScRange aMaxRange( aDestPos,
     323           8 :                     ScAddress(std::max(nOldEndX,nNewEndX), std::max(nOldEndY,nNewEndY), nDestTab) );
     324             : 
     325             :         //  Undo initialisieren
     326             : 
     327           8 :         ScDocument* pUndoDoc = NULL;
     328           8 :         if ( bAddUndo && bUndo )
     329             :         {
     330           8 :             pUndoDoc = new ScDocument( SCDOCMODE_UNDO );
     331           8 :             if ( bDoInsert )
     332             :             {
     333           2 :                 if ( nNewEndX != nOldEndX || nNewEndY != nOldEndY )             // Bereich veraendert?
     334             :                 {
     335           0 :                     pUndoDoc->InitUndo( &rDoc, 0, rDoc.GetTableCount()-1 );
     336             :                     rDoc.CopyToDocument( 0,0,0,MAXCOL,MAXROW,MAXTAB,
     337           0 :                                             IDF_FORMULA, false, pUndoDoc );     // alle Formeln
     338             :                 }
     339             :                 else
     340           2 :                     pUndoDoc->InitUndo( &rDoc, nDestTab, nDestTab );             // nur Zieltabelle
     341           2 :                 rDoc.CopyToDocument( aOldRange, IDF_ALL & ~IDF_NOTE, false, pUndoDoc );
     342             :             }
     343             :             else        // ohne Einfuegen
     344             :             {
     345           6 :                 pUndoDoc->InitUndo( &rDoc, nDestTab, nDestTab );             // nur Zieltabelle
     346           6 :                 rDoc.CopyToDocument( aMaxRange, IDF_ALL & ~IDF_NOTE, false, pUndoDoc );
     347             :             }
     348             :         }
     349             : 
     350             :         //  Zellen einfuegen / loeschen
     351             :         //  DeleteAreaTab loescht auch MERGE_FLAG Attribute
     352             : 
     353           8 :         if (bDoInsert)
     354           2 :             rDoc.FitBlock( aOldRange, aNewRange );         // incl. loeschen
     355             :         else
     356           6 :             rDoc.DeleteAreaTab( aMaxRange, IDF_ALL & ~IDF_NOTE );
     357             : 
     358             :         //  Daten kopieren
     359             : 
     360           8 :         if (nWidth > 0 && nHeight > 0)
     361             :         {
     362           8 :             ScDocument aClipDoc( SCDOCMODE_CLIP );
     363           8 :             ScRange aNewTokenRange( aNewRange.aStart );
     364           8 :             nStringIx = 0;
     365          16 :             for( nToken = 0; nToken < nTokenCnt; nToken++ )
     366             :             {
     367           8 :                 OUString aToken( aTempArea.getToken( 0, ';', nStringIx ) );
     368           8 :                 ScRange aTokenRange;
     369           8 :                 if( FindExtRange( aTokenRange, &rSrcDoc, aToken ) )
     370             :                 {
     371           8 :                     SCTAB nSrcTab = aTokenRange.aStart.Tab();
     372           8 :                     ScMarkData aSourceMark;
     373           8 :                     aSourceMark.SelectOneTable( nSrcTab );      // selektieren fuer CopyToClip
     374           8 :                     aSourceMark.SetMarkArea( aTokenRange );
     375             : 
     376          16 :                     ScClipParam aClipParam(aTokenRange, false);
     377           8 :                     rSrcDoc.CopyToClip(aClipParam, &aClipDoc, &aSourceMark);
     378             : 
     379           8 :                     if ( aClipDoc.HasAttrib( 0,0,nSrcTab, MAXCOL,MAXROW,nSrcTab,
     380           8 :                                             HASATTR_MERGED | HASATTR_OVERLAPPED ) )
     381             :                     {
     382             :                         //! ResetAttrib am Dokument !!!
     383             : 
     384           0 :                         ScPatternAttr aPattern( rSrcDoc.GetPool() );
     385           0 :                         aPattern.GetItemSet().Put( ScMergeAttr() );             // Defaults
     386           0 :                         aPattern.GetItemSet().Put( ScMergeFlagAttr() );
     387           0 :                         aClipDoc.ApplyPatternAreaTab( 0,0, MAXCOL,MAXROW, nSrcTab, aPattern );
     388             :                     }
     389             : 
     390           8 :                     aNewTokenRange.aEnd.SetCol( aNewTokenRange.aStart.Col() + (aTokenRange.aEnd.Col() - aTokenRange.aStart.Col()) );
     391           8 :                     aNewTokenRange.aEnd.SetRow( aNewTokenRange.aStart.Row() + (aTokenRange.aEnd.Row() - aTokenRange.aStart.Row()) );
     392          16 :                     ScMarkData aDestMark;
     393           8 :                     aDestMark.SelectOneTable( nDestTab );
     394           8 :                     aDestMark.SetMarkArea( aNewTokenRange );
     395           8 :                     rDoc.CopyFromClip( aNewTokenRange, aDestMark, IDF_ALL, NULL, &aClipDoc, false );
     396          16 :                     aNewTokenRange.aStart.SetRow( aNewTokenRange.aEnd.Row() + 2 );
     397             :                 }
     398          16 :             }
     399             :         }
     400             :         else
     401             :         {
     402           0 :             OUString aErr = ScGlobal::GetRscString(STR_LINKERROR);
     403           0 :             rDoc.SetString( aDestPos.Col(), aDestPos.Row(), aDestPos.Tab(), aErr );
     404             :         }
     405             : 
     406             :         //  Undo eintragen
     407             : 
     408           8 :         if ( bAddUndo && bUndo)
     409             :         {
     410           8 :             ScDocument* pRedoDoc = new ScDocument( SCDOCMODE_UNDO );
     411           8 :             pRedoDoc->InitUndo( &rDoc, nDestTab, nDestTab );
     412           8 :             rDoc.CopyToDocument( aNewRange, IDF_ALL & ~IDF_NOTE, false, pRedoDoc );
     413             : 
     414           8 :             pImpl->m_pDocSh->GetUndoManager()->AddUndoAction(
     415             :                 new ScUndoUpdateAreaLink( pImpl->m_pDocSh,
     416             :                                             aFileName, aFilterName, aOptions,
     417           8 :                                             aSourceArea, aOldRange, GetRefreshDelay(),
     418             :                                             aNewUrl, rNewFilter, aNewOpt,
     419             :                                             rNewArea, aNewRange, nNewRefresh,
     420          16 :                                             pUndoDoc, pRedoDoc, bDoInsert ) );
     421             :         }
     422             : 
     423             :         //  neue Einstellungen merken
     424             : 
     425           8 :         if ( bNewUrlName )
     426           0 :             aFileName = aNewUrl;
     427           8 :         if ( rNewFilter != aFilterName )
     428           0 :             aFilterName = rNewFilter;
     429           8 :         if ( rNewArea != aSourceArea )
     430           0 :             aSourceArea = rNewArea;
     431           8 :         if ( aNewOpt != aOptions )
     432           0 :             aOptions = aNewOpt;
     433             : 
     434           8 :         if ( aNewRange != aDestArea )
     435           6 :             aDestArea = aNewRange;
     436             : 
     437           8 :         if ( nNewRefresh != GetRefreshDelay() )
     438           0 :             SetRefreshDelay( nNewRefresh );
     439             : 
     440           8 :         SCCOL nPaintEndX = std::max( aOldRange.aEnd.Col(), aNewRange.aEnd.Col() );
     441           8 :         SCROW nPaintEndY = std::max( aOldRange.aEnd.Row(), aNewRange.aEnd.Row() );
     442             : 
     443           8 :         if ( aOldRange.aEnd.Col() != aNewRange.aEnd.Col() )
     444           6 :             nPaintEndX = MAXCOL;
     445           8 :         if ( aOldRange.aEnd.Row() != aNewRange.aEnd.Row() )
     446           6 :             nPaintEndY = MAXROW;
     447             : 
     448           8 :         if ( !pImpl->m_pDocSh->AdjustRowHeight( aDestPos.Row(), nPaintEndY, nDestTab ) )
     449             :             pImpl->m_pDocSh->PostPaint(
     450           8 :                 ScRange(aDestPos.Col(), aDestPos.Row(), nDestTab, nPaintEndX, nPaintEndY, nDestTab),
     451          16 :                 PAINT_GRID);
     452           8 :         aModificator.SetDocumentModified();
     453             :     }
     454             :     else
     455             :     {
     456             :         //  CanFitBlock sal_False -> Probleme mit zusammengefassten Zellen
     457             :         //                       oder Tabellengrenze erreicht!
     458             :         //! Zellschutz ???
     459             : 
     460             :         //! Link-Dialog muss Default-Parent setzen
     461             :         //  "kann keine Zeilen einfuegen"
     462             :         InfoBox aBox( Application::GetDefDialogParent(),
     463           0 :                         ScGlobal::GetRscString( STR_MSSG_DOSUBTOTALS_2 ) );
     464           0 :         aBox.Execute();
     465             :     }
     466             : 
     467             :     //  aufraeumen
     468             : 
     469           8 :     aRef->DoClose();
     470             : 
     471           8 :     rDoc.SetInLinkUpdate( false );
     472             : 
     473           8 :     if (bCanDo)
     474             :     {
     475             :         //  notify Uno objects (for XRefreshListener)
     476             :         //! also notify Uno objects if file name was changed!
     477           8 :         ScLinkRefreshedHint aHint;
     478           8 :         aHint.SetAreaLink( aDestPos );
     479           8 :         rDoc.BroadcastUno( aHint );
     480             :     }
     481             : 
     482          40 :     return bCanDo;
     483             : }
     484             : 
     485           0 : IMPL_LINK_NOARG(ScAreaLink, RefreshHdl)
     486             : {
     487             :     return long(
     488           0 :         Refresh( aFileName, aFilterName, aSourceArea, GetRefreshDelay() ));
     489             : }
     490             : 
     491           0 : IMPL_LINK_NOARG(ScAreaLink, AreaEndEditHdl)
     492             : {
     493             :     //  #i76514# can't use link argument to access the dialog,
     494             :     //  because it's the ScLinkedAreaDlg, not AbstractScLinkedAreaDlg
     495             : 
     496           0 :     if ( pImpl->m_pDialog && pImpl->m_pDialog->GetResult() == RET_OK )
     497             :     {
     498           0 :         aOptions = pImpl->m_pDialog->GetOptions();
     499           0 :         Refresh( pImpl->m_pDialog->GetURL(), pImpl->m_pDialog->GetFilter(),
     500           0 :                  pImpl->m_pDialog->GetSource(), pImpl->m_pDialog->GetRefresh() );
     501             : 
     502             :         //  copy source data from members (set in Refresh) into link name for dialog
     503           0 :         OUString aNewLinkName;
     504           0 :         sfx2::MakeLnkName( aNewLinkName, NULL, aFileName, aSourceArea, &aFilterName );
     505           0 :         SetName( aNewLinkName );
     506             :     }
     507           0 :     pImpl->m_pDialog = NULL;    // dialog is deleted with parent
     508             : 
     509           0 :     return 0;
     510         228 : }
     511             : 
     512             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10