LCOV - code coverage report
Current view: top level - libreoffice/sc/source/ui/docshell - docsh5.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 19 511 3.7 %
Date: 2012-12-27 Functions: 5 22 22.7 %
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 "scitems.hxx"
      21             : #include <vcl/msgbox.hxx>
      22             : #include <vcl/waitobj.hxx>
      23             : #include <sfx2/app.hxx>
      24             : #include <sfx2/bindings.hxx>
      25             : 
      26             : #include <com/sun/star/script/vba/XVBACompatibility.hpp>
      27             : 
      28             : #include "docsh.hxx"
      29             : #include "global.hxx"
      30             : #include "globstr.hrc"
      31             : #include "globalnames.hxx"
      32             : #include "undodat.hxx"
      33             : #include "undotab.hxx"
      34             : #include "undoblk.hxx"
      35             : #include "dpobject.hxx"
      36             : #include "dpshttab.hxx"
      37             : #include "dbdocfun.hxx"
      38             : #include "consoli.hxx"
      39             : #include "dbdata.hxx"
      40             : #include "progress.hxx"
      41             : #include "olinetab.hxx"
      42             : #include "patattr.hxx"
      43             : #include "attrib.hxx"
      44             : #include "docpool.hxx"
      45             : #include "uiitems.hxx"
      46             : #include "sc.hrc"
      47             : #include "waitoff.hxx"
      48             : #include "sizedev.hxx"
      49             : #include "clipparam.hxx"
      50             : 
      51             : // defined in docfunc.cxx
      52             : void VBA_InsertModule( ScDocument& rDoc, SCTAB nTab, const rtl::OUString& sModuleName, const rtl::OUString& sModuleSource );
      53             : 
      54             : using com::sun::star::script::XLibraryContainer;
      55             : using com::sun::star::script::vba::XVBACompatibility;
      56             : using com::sun::star::container::XNameContainer;
      57             : using com::sun::star::uno::Reference;
      58             : using com::sun::star::uno::UNO_QUERY;
      59             : 
      60             : using ::std::auto_ptr;
      61             : using ::std::vector;
      62             : 
      63             : // ---------------------------------------------------------------------------
      64             : 
      65             : //
      66             : //  former viewfunc/dbfunc methods
      67             : //
      68             : 
      69           0 : void ScDocShell::ErrorMessage( sal_uInt16 nGlobStrId )
      70             : {
      71             :     //! StopMarking an der (aktiven) View?
      72             : 
      73           0 :     Window* pParent = GetActiveDialogParent();
      74           0 :     ScWaitCursorOff aWaitOff( pParent );
      75           0 :     sal_Bool bFocus = pParent && pParent->HasFocus();
      76             : 
      77           0 :     if(nGlobStrId==STR_PROTECTIONERR)
      78             :     {
      79           0 :         if(IsReadOnly())
      80             :         {
      81           0 :             nGlobStrId=STR_READONLYERR;
      82             :         }
      83             :     }
      84             : 
      85           0 :     InfoBox aBox( pParent, ScGlobal::GetRscString( nGlobStrId ) );
      86           0 :     aBox.Execute();
      87           0 :     if (bFocus)
      88           0 :         pParent->GrabFocus();
      89           0 : }
      90             : 
      91         166 : sal_Bool ScDocShell::IsEditable() const
      92             : {
      93             :     // import into read-only document is possible - must be extended if other filters use api
      94             :     // #i108547# MSOOXML filter uses "IsChangeReadOnlyEnabled" property
      95             : 
      96         166 :     return !IsReadOnly() || aDocument.IsImportingXML() || aDocument.IsChangeReadOnlyEnabled();
      97             : }
      98             : 
      99           0 : void ScDocShell::DBAreaDeleted( SCTAB nTab, SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW /* nY2 */ )
     100             : {
     101           0 :     ScDocShellModificator aModificator( *this );
     102           0 :     aDocument.RemoveFlagsTab( nX1, nY1, nX2, nY1, nTab, SC_MF_AUTO );
     103           0 :     PostPaint( nX1, nY1, nTab, nX2, nY1, nTab, PAINT_GRID );
     104             :     // No SetDocumentModified, as the unnamed database range might have to be restored later.
     105             :     // The UNO hint is broadcast directly instead, to keep UNO objects in valid state.
     106           0 :     aDocument.BroadcastUno( SfxSimpleHint( SFX_HINT_DATACHANGED ) );
     107           0 : }
     108             : 
     109           0 : ScDBData* ScDocShell::GetDBData( const ScRange& rMarked, ScGetDBMode eMode, ScGetDBSelection eSel )
     110             : {
     111           0 :     SCCOL nCol = rMarked.aStart.Col();
     112           0 :     SCROW nRow = rMarked.aStart.Row();
     113           0 :     SCTAB nTab = rMarked.aStart.Tab();
     114             : 
     115           0 :     SCCOL nStartCol = nCol;
     116           0 :     SCROW nStartRow = nRow;
     117           0 :     SCTAB nStartTab = nTab;
     118           0 :     SCCOL nEndCol = rMarked.aEnd.Col();
     119           0 :     SCROW nEndRow = rMarked.aEnd.Row();
     120           0 :     SCTAB nEndTab = rMarked.aEnd.Tab();
     121             :     //  Nicht einfach GetDBAtCursor: Der zusammenhaengende Datenbereich
     122             :     //  fuer "unbenannt" (GetDataArea) kann neben dem Cursor legen, also muss auch ein
     123             :     //  benannter DB-Bereich dort gesucht werden.
     124           0 :     ScDBCollection* pColl = aDocument.GetDBCollection();
     125           0 :     ScDBData* pData = aDocument.GetDBAtArea( nTab, nStartCol, nStartRow, nEndCol, nEndRow );
     126           0 :     if (!pData && pColl)
     127           0 :         pData = pColl->GetDBNearCursor(nCol, nRow, nTab );
     128             : 
     129             :     sal_Bool bSelected = ( eSel == SC_DBSEL_FORCE_MARK ||
     130           0 :             (rMarked.aStart != rMarked.aEnd && eSel != SC_DBSEL_ROW_DOWN) );
     131           0 :     bool bOnlyDown = (!bSelected && eSel == SC_DBSEL_ROW_DOWN && rMarked.aStart.Row() == rMarked.aEnd.Row());
     132             : 
     133           0 :     sal_Bool bUseThis = false;
     134           0 :     if (pData)
     135             :     {
     136             :         //      Bereich nehmen, wenn nichts anderes markiert
     137             : 
     138             :         SCTAB nDummy;
     139             :         SCCOL nOldCol1;
     140             :         SCROW nOldRow1;
     141             :         SCCOL nOldCol2;
     142             :         SCROW nOldRow2;
     143           0 :         pData->GetArea( nDummy, nOldCol1,nOldRow1, nOldCol2,nOldRow2 );
     144           0 :         sal_Bool bIsNoName = ( pData->GetName() == STR_DB_LOCAL_NONAME );
     145             : 
     146           0 :         if (!bSelected)
     147             :         {
     148           0 :             bUseThis = sal_True;
     149           0 :             if ( bIsNoName && eMode == SC_DB_MAKE )
     150             :             {
     151             :                 // If nothing marked or only one row marked, adapt
     152             :                 // "unbenannt"/"unnamed" to contiguous area.
     153           0 :                 nStartCol = nCol;
     154           0 :                 nStartRow = nRow;
     155           0 :                 if (bOnlyDown)
     156             :                 {
     157           0 :                     nEndCol = rMarked.aEnd.Col();
     158           0 :                     nEndRow = rMarked.aEnd.Row();
     159             :                 }
     160             :                 else
     161             :                 {
     162           0 :                     nEndCol = nStartCol;
     163           0 :                     nEndRow = nStartRow;
     164             :                 }
     165           0 :                 aDocument.GetDataArea( nTab, nStartCol, nStartRow, nEndCol, nEndRow, false, bOnlyDown );
     166           0 :                 if ( nOldCol1 != nStartCol || nOldCol2 != nEndCol || nOldRow1 != nStartRow )
     167           0 :                     bUseThis = false;               // passt gar nicht
     168           0 :                 else if ( nOldRow2 != nEndRow )
     169             :                 {
     170             :                     //  Bereich auf neue End-Zeile erweitern
     171           0 :                     pData->SetArea( nTab, nOldCol1,nOldRow1, nOldCol2,nEndRow );
     172             :                 }
     173             :             }
     174             :         }
     175             :         else
     176             :         {
     177           0 :             if ( nOldCol1 == nStartCol && nOldRow1 == nStartRow &&
     178             :                  nOldCol2 == nEndCol && nOldRow2 == nEndRow )               // genau markiert?
     179           0 :                 bUseThis = sal_True;
     180             :             else
     181           0 :                 bUseThis = false;           // immer Markierung nehmen (Bug 11964)
     182             :         }
     183             : 
     184             :         //      fuer Import nie "unbenannt" nehmen
     185             : 
     186           0 :         if ( bUseThis && eMode == SC_DB_IMPORT && bIsNoName )
     187           0 :             bUseThis = false;
     188             :     }
     189             : 
     190           0 :     if ( bUseThis )
     191             :     {
     192           0 :         pData->GetArea( nStartTab, nStartCol,nStartRow, nEndCol,nEndRow );
     193           0 :         nEndTab = nStartTab;
     194             :     }
     195           0 :     else if ( eMode == SC_DB_OLD )
     196             :     {
     197           0 :         pData = NULL;                           // nichts gefunden
     198           0 :         nStartCol = nEndCol = nCol;
     199           0 :         nStartRow = nEndRow = nRow;
     200           0 :         nStartTab = nEndTab = nTab;
     201             :     }
     202             :     else
     203             :     {
     204           0 :         if ( !bSelected )
     205             :         {                                       // zusammenhaengender Bereich
     206           0 :             nStartCol = nCol;
     207           0 :             nStartRow = nRow;
     208           0 :             if (bOnlyDown)
     209             :             {
     210           0 :                 nEndCol = rMarked.aEnd.Col();
     211           0 :                 nEndRow = rMarked.aEnd.Row();
     212             :             }
     213             :             else
     214             :             {
     215           0 :                 nEndCol = nStartCol;
     216           0 :                 nEndRow = nStartRow;
     217             :             }
     218           0 :             aDocument.GetDataArea( nTab, nStartCol, nStartRow, nEndCol, nEndRow, false, bOnlyDown );
     219             :         }
     220             : 
     221           0 :         sal_Bool bHasHeader = aDocument.HasColHeader( nStartCol,nStartRow, nEndCol,nEndRow, nTab );
     222             : 
     223           0 :         ScDBData* pNoNameData = aDocument.GetAnonymousDBData(nTab);
     224           0 :         if ( eMode != SC_DB_IMPORT && pNoNameData)
     225             :         {
     226             : 
     227           0 :             if ( !pOldAutoDBRange )
     228             :             {
     229             :                 // store the old unnamed database range with its settings for undo
     230             :                 // (store at the first change, get the state before all changes)
     231           0 :                 pOldAutoDBRange = new ScDBData( *pNoNameData );
     232             :             }
     233             : 
     234             :             SCCOL nOldX1;                                   // alten Bereich sauber wegnehmen
     235             :             SCROW nOldY1;                                   //! (UNDO ???)
     236             :             SCCOL nOldX2;
     237             :             SCROW nOldY2;
     238             :             SCTAB nOldTab;
     239           0 :             pNoNameData->GetArea( nOldTab, nOldX1, nOldY1, nOldX2, nOldY2 );
     240           0 :             DBAreaDeleted( nOldTab, nOldX1, nOldY1, nOldX2, nOldY2 );
     241             : 
     242           0 :             pNoNameData->SetSortParam( ScSortParam() );             // Parameter zuruecksetzen
     243           0 :             pNoNameData->SetQueryParam( ScQueryParam() );
     244           0 :             pNoNameData->SetSubTotalParam( ScSubTotalParam() );
     245             : 
     246           0 :             pNoNameData->SetArea( nTab, nStartCol,nStartRow, nEndCol,nEndRow );     // neu setzen
     247           0 :             pNoNameData->SetByRow( sal_True );
     248           0 :             pNoNameData->SetHeader( bHasHeader );
     249           0 :             pNoNameData->SetAutoFilter( false );
     250             :         }
     251             :         else
     252             :         {
     253           0 :             ScDBCollection* pUndoColl = NULL;
     254             : 
     255           0 :             String aNewName;
     256           0 :             if (eMode==SC_DB_IMPORT)
     257             :             {
     258           0 :                 aDocument.CompileDBFormula( sal_True );         // CreateFormulaString
     259           0 :                 pUndoColl = new ScDBCollection( *pColl );   // Undo fuer Import1-Bereich
     260             : 
     261           0 :                 String aImport = ScGlobal::GetRscString( STR_DBNAME_IMPORT );
     262           0 :                 long nCount = 0;
     263           0 :                 const ScDBData* pDummy = NULL;
     264           0 :                 ScDBCollection::NamedDBs& rDBs = pColl->getNamedDBs();
     265           0 :                 do
     266             :                 {
     267           0 :                     ++nCount;
     268           0 :                     aNewName = aImport;
     269           0 :                     aNewName += String::CreateFromInt32( nCount );
     270           0 :                     pDummy = rDBs.findByUpperName(ScGlobal::pCharClass->uppercase(aNewName));
     271             :                 }
     272             :                 while (pDummy);
     273             :                 pNoNameData = new ScDBData( aNewName, nTab,
     274             :                                 nStartCol,nStartRow, nEndCol,nEndRow,
     275           0 :                                 sal_True, bHasHeader );
     276           0 :                 rDBs.insert(pNoNameData);
     277             :             }
     278             :             else
     279             :             {
     280           0 :                 aNewName = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(STR_DB_LOCAL_NONAME));
     281             :                 pNoNameData = new ScDBData(aNewName , nTab,
     282             :                                 nStartCol,nStartRow, nEndCol,nEndRow,
     283           0 :                                 sal_True, bHasHeader );
     284           0 :                 aDocument.SetAnonymousDBData(nTab, pNoNameData);
     285             :             }
     286             : 
     287             : 
     288             : 
     289           0 :             if ( pUndoColl )
     290             :             {
     291           0 :                 aDocument.CompileDBFormula( false );        // CompileFormulaString
     292             : 
     293           0 :                 ScDBCollection* pRedoColl = new ScDBCollection( *pColl );
     294           0 :                 GetUndoManager()->AddUndoAction( new ScUndoDBData( this, pUndoColl, pRedoColl ) );
     295             :             }
     296             : 
     297             :             //  neuen Bereich am Sba anmelden nicht mehr noetig
     298             : 
     299             :             //  "Import1" etc am Navigator bekanntmachen
     300           0 :             if (eMode==SC_DB_IMPORT)
     301           0 :                 SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_DBAREAS_CHANGED ) );
     302             :         }
     303           0 :         pData = pNoNameData;
     304             :     }
     305             : 
     306           0 :     return pData;
     307             : }
     308             : 
     309           0 : ScDBData* ScDocShell::GetAnonymousDBData(const ScRange& rRange)
     310             : {
     311             :     bool bHasHeader = aDocument.HasColHeader(
     312           0 :         rRange.aStart.Col(), rRange.aStart.Row(), rRange.aEnd.Col(), rRange.aEnd.Row(), rRange.aStart.Tab());
     313             : 
     314           0 :     ScDBCollection* pColl = aDocument.GetDBCollection();
     315           0 :     if (!pColl)
     316           0 :         return NULL;
     317             : 
     318           0 :     ScDBData* pData = pColl->getAnonDBs().getByRange(rRange);
     319           0 :     if (!pData)
     320           0 :         return NULL;
     321             : 
     322           0 :     pData->SetHeader(bHasHeader);
     323           0 :     return pData;
     324             : }
     325             : 
     326           0 : ScDBData* ScDocShell::GetOldAutoDBRange()
     327             : {
     328           0 :     ScDBData* pRet = pOldAutoDBRange;
     329           0 :     pOldAutoDBRange = NULL;
     330           0 :     return pRet;                    // has to be deleted by caller!
     331             : }
     332             : 
     333           0 : void ScDocShell::CancelAutoDBRange()
     334             : {
     335             :     // called when dialog is cancelled
     336             : //moggi:TODO
     337           0 :     if ( pOldAutoDBRange )
     338             :     {
     339           0 :         SCTAB nTab = GetCurTab();
     340           0 :         ScDBData* pDBData = aDocument.GetAnonymousDBData(nTab);
     341           0 :         if ( pDBData )
     342             :         {
     343             :             SCCOL nRangeX1;
     344             :             SCROW nRangeY1;
     345             :             SCCOL nRangeX2;
     346             :             SCROW nRangeY2;
     347             :             SCTAB nRangeTab;
     348           0 :             pDBData->GetArea( nRangeTab, nRangeX1, nRangeY1, nRangeX2, nRangeY2 );
     349           0 :             DBAreaDeleted( nRangeTab, nRangeX1, nRangeY1, nRangeX2, nRangeY2 );
     350             : 
     351           0 :             *pDBData = *pOldAutoDBRange;    // restore old settings
     352             : 
     353           0 :             if ( pOldAutoDBRange->HasAutoFilter() )
     354             :             {
     355             :                 // restore AutoFilter buttons
     356           0 :                 pOldAutoDBRange->GetArea( nRangeTab, nRangeX1, nRangeY1, nRangeX2, nRangeY2 );
     357           0 :                 aDocument.ApplyFlagsTab( nRangeX1, nRangeY1, nRangeX2, nRangeY1, nRangeTab, SC_MF_AUTO );
     358           0 :                 PostPaint( nRangeX1, nRangeY1, nRangeTab, nRangeX2, nRangeY1, nRangeTab, PAINT_GRID );
     359             :             }
     360             :         }
     361             : 
     362           0 :         delete pOldAutoDBRange;
     363           0 :         pOldAutoDBRange = NULL;
     364             :     }
     365           0 : }
     366             : 
     367             : 
     368             :         //  Hoehen anpassen
     369             :         //! mit docfunc zusammenfassen
     370             : 
     371           6 : sal_Bool ScDocShell::AdjustRowHeight( SCROW nStartRow, SCROW nEndRow, SCTAB nTab )
     372             : {
     373           6 :     ScSizeDeviceProvider aProv(this);
     374           6 :     Fraction aZoom(1,1);
     375             :     sal_Bool bChange = aDocument.SetOptimalHeight( nStartRow,nEndRow, nTab, 0, aProv.GetDevice(),
     376           6 :                                                 aProv.GetPPTX(),aProv.GetPPTY(), aZoom,aZoom, false );
     377           6 :     if (bChange)
     378           6 :         PostPaint( 0,nStartRow,nTab, MAXCOL,MAXROW,nTab, PAINT_GRID|PAINT_LEFT );
     379             : 
     380           6 :     return bChange;
     381             : }
     382             : 
     383           0 : void ScDocShell::UpdateAllRowHeights( const ScMarkData* pTabMark )
     384             : {
     385             :     // update automatic row heights
     386             : 
     387           0 :     ScSizeDeviceProvider aProv(this);
     388           0 :     Fraction aZoom(1,1);
     389           0 :     aDocument.UpdateAllRowHeights( aProv.GetDevice(), aProv.GetPPTX(), aProv.GetPPTY(), aZoom, aZoom, pTabMark );
     390           0 : }
     391             : 
     392          69 : void ScDocShell::UpdatePendingRowHeights( SCTAB nUpdateTab, bool bBefore )
     393             : {
     394          69 :     sal_Bool bIsUndoEnabled = aDocument.IsUndoEnabled();
     395          69 :     aDocument.EnableUndo( false );
     396          69 :     aDocument.LockStreamValid( true );      // ignore draw page size (but not formula results)
     397          69 :     if ( bBefore )          // check all sheets up to nUpdateTab
     398             :     {
     399           0 :         SCTAB nTabCount = aDocument.GetTableCount();
     400           0 :         if ( nUpdateTab >= nTabCount )
     401           0 :             nUpdateTab = nTabCount-1;     // nUpdateTab is inclusive
     402             : 
     403           0 :         ScMarkData aUpdateSheets;
     404             :         SCTAB nTab;
     405           0 :         for (nTab=0; nTab<=nUpdateTab; ++nTab)
     406           0 :             if ( aDocument.IsPendingRowHeights( nTab ) )
     407           0 :                 aUpdateSheets.SelectTable( nTab, sal_True );
     408             : 
     409           0 :         if (aUpdateSheets.GetSelectCount())
     410           0 :             UpdateAllRowHeights(&aUpdateSheets);        // update with a single progress bar
     411             : 
     412           0 :         for (nTab=0; nTab<=nUpdateTab; ++nTab)
     413           0 :             if ( aUpdateSheets.GetTableSelect( nTab ) )
     414             :             {
     415           0 :                 aDocument.UpdatePageBreaks( nTab );
     416           0 :                 aDocument.SetPendingRowHeights( nTab, false );
     417           0 :             }
     418             :     }
     419             :     else                    // only nUpdateTab
     420             :     {
     421          69 :         if ( aDocument.IsPendingRowHeights( nUpdateTab ) )
     422             :         {
     423           0 :             AdjustRowHeight( 0, MAXROW, nUpdateTab );
     424           0 :             aDocument.UpdatePageBreaks( nUpdateTab );
     425           0 :             aDocument.SetPendingRowHeights( nUpdateTab, false );
     426             :         }
     427             :     }
     428          69 :     aDocument.LockStreamValid( false );
     429          69 :     aDocument.EnableUndo( bIsUndoEnabled );
     430          69 : }
     431             : 
     432           0 : void ScDocShell::RefreshPivotTables( const ScRange& rSource )
     433             : {
     434             :     //! rename to RefreshDataPilotTables?
     435             : 
     436           0 :     ScDPCollection* pColl = aDocument.GetDPCollection();
     437           0 :     if ( pColl )
     438             :     {
     439             :         //  DataPilotUpdate doesn't modify the collection order like PivotUpdate did,
     440             :         //  so a simple loop can be used.
     441             : 
     442           0 :         sal_uInt16 nCount = pColl->GetCount();
     443           0 :         for ( sal_uInt16 i=0; i<nCount; i++ )
     444             :         {
     445           0 :             ScDPObject* pOld = (*pColl)[i];
     446           0 :             if ( pOld )
     447             :             {
     448           0 :                 const ScSheetSourceDesc* pSheetDesc = pOld->GetSheetDesc();
     449           0 :                 if ( pSheetDesc && pSheetDesc->GetSourceRange().Intersects( rSource ) )
     450             :                 {
     451           0 :                     ScDPObject* pNew = new ScDPObject( *pOld );
     452           0 :                     ScDBDocFunc aFunc( *this );
     453           0 :                     aFunc.DataPilotUpdate( pOld, pNew, sal_True, false );
     454           0 :                     delete pNew;    // DataPilotUpdate copies settings from "new" object
     455             :                 }
     456             :             }
     457             :         }
     458             :     }
     459           0 : }
     460             : 
     461           0 : static rtl::OUString lcl_GetAreaName( ScDocument* pDoc, ScArea* pArea )
     462             : {
     463           0 :     rtl::OUString aName;
     464           0 :     sal_Bool bOk = false;
     465             :     ScDBData* pData = pDoc->GetDBAtArea( pArea->nTab, pArea->nColStart, pArea->nRowStart,
     466           0 :                                                         pArea->nColEnd, pArea->nRowEnd );
     467           0 :     if (pData)
     468             :     {
     469           0 :         aName = pData->GetName();
     470           0 :         bOk = sal_True;
     471             :     }
     472             : 
     473           0 :     if (!bOk)
     474           0 :         pDoc->GetName( pArea->nTab, aName );
     475             : 
     476           0 :     return aName;
     477             : }
     478             : 
     479           0 : void ScDocShell::DoConsolidate( const ScConsolidateParam& rParam, sal_Bool bRecord )
     480             : {
     481           0 :     ScConsData aData;
     482             : 
     483             :     sal_uInt16 nPos;
     484           0 :     SCCOL nColSize = 0;
     485           0 :     SCROW nRowSize = 0;
     486           0 :     sal_Bool bErr = false;
     487           0 :     for (nPos=0; nPos<rParam.nDataAreaCount; nPos++)
     488             :     {
     489           0 :         ScArea* pArea = rParam.ppDataAreas[nPos];
     490           0 :         nColSize = Max( nColSize, SCCOL( pArea->nColEnd - pArea->nColStart + 1 ) );
     491           0 :         nRowSize = Max( nRowSize, SCROW( pArea->nRowEnd - pArea->nRowStart + 1 ) );
     492             : 
     493             :                                         // Test, ob Quelldaten verschoben wuerden
     494           0 :         if (rParam.bReferenceData)
     495           0 :             if (pArea->nTab == rParam.nTab && pArea->nRowEnd >= rParam.nRow)
     496           0 :                 bErr = sal_True;
     497             :     }
     498             : 
     499           0 :     if (bErr)
     500             :     {
     501             :         InfoBox aBox( GetActiveDialogParent(),
     502           0 :                 ScGlobal::GetRscString( STR_CONSOLIDATE_ERR1 ) );
     503           0 :         aBox.Execute();
     504           0 :         return;
     505             :     }
     506             : 
     507             :     //      ausfuehren
     508             : 
     509           0 :     WaitObject aWait( GetActiveDialogParent() );
     510           0 :     ScDocShellModificator aModificator( *this );
     511             : 
     512           0 :     ScRange aOldDest;
     513           0 :     ScDBData* pDestData = aDocument.GetDBAtCursor( rParam.nCol, rParam.nRow, rParam.nTab, true );
     514           0 :     if (pDestData)
     515           0 :         pDestData->GetArea(aOldDest);
     516             : 
     517           0 :     aData.SetSize( nColSize, nRowSize );
     518           0 :     aData.SetFlags( rParam.eFunction, rParam.bByCol, rParam.bByRow, rParam.bReferenceData );
     519           0 :     if ( rParam.bByCol || rParam.bByRow )
     520           0 :         for (nPos=0; nPos<rParam.nDataAreaCount; nPos++)
     521             :         {
     522           0 :             ScArea* pArea = rParam.ppDataAreas[nPos];
     523             :             aData.AddFields( &aDocument, pArea->nTab, pArea->nColStart, pArea->nRowStart,
     524           0 :                                                         pArea->nColEnd, pArea->nRowEnd );
     525             :         }
     526           0 :     aData.DoneFields();
     527           0 :     for (nPos=0; nPos<rParam.nDataAreaCount; nPos++)
     528             :     {
     529           0 :         ScArea* pArea = rParam.ppDataAreas[nPos];
     530             :         aData.AddData( &aDocument, pArea->nTab, pArea->nColStart, pArea->nRowStart,
     531           0 :                                                     pArea->nColEnd, pArea->nRowEnd );
     532           0 :         aData.AddName( lcl_GetAreaName(&aDocument,pArea) );
     533             :     }
     534             : 
     535           0 :     aData.GetSize( nColSize, nRowSize );
     536           0 :     if (bRecord && nColSize > 0 && nRowSize > 0)
     537             :     {
     538           0 :         ScDBData* pUndoData = pDestData ? new ScDBData(*pDestData) : NULL;
     539             : 
     540           0 :         SCTAB nDestTab = rParam.nTab;
     541             :         ScArea aDestArea( rParam.nTab, rParam.nCol, rParam.nRow,
     542           0 :                             rParam.nCol+nColSize-1, rParam.nRow+nRowSize-1 );
     543           0 :         if (rParam.bByCol) ++aDestArea.nColEnd;
     544           0 :         if (rParam.bByRow) ++aDestArea.nRowEnd;
     545             : 
     546           0 :         if (rParam.bReferenceData)
     547             :         {
     548           0 :             SCTAB nTabCount = aDocument.GetTableCount();
     549           0 :             SCROW nInsertCount = aData.GetInsertCount();
     550             : 
     551             :             // alte Outlines
     552           0 :             ScOutlineTable* pTable = aDocument.GetOutlineTable( nDestTab );
     553           0 :             ScOutlineTable* pUndoTab = pTable ? new ScOutlineTable( *pTable ) : NULL;
     554             : 
     555           0 :             ScDocument* pUndoDoc = new ScDocument( SCDOCMODE_UNDO );
     556           0 :             pUndoDoc->InitUndo( &aDocument, 0, nTabCount-1, false, sal_True );
     557             : 
     558             :             // Zeilenstatus
     559             :             aDocument.CopyToDocument( 0,0,nDestTab, MAXCOL,MAXROW,nDestTab,
     560           0 :                                     IDF_NONE, false, pUndoDoc );
     561             : 
     562             :             // alle Formeln
     563             :             aDocument.CopyToDocument( 0,0,0, MAXCOL,MAXROW,nTabCount-1,
     564           0 :                                         IDF_FORMULA, false, pUndoDoc );
     565             : 
     566             :             // komplette Ausgangszeilen
     567             :             aDocument.CopyToDocument( 0,aDestArea.nRowStart,nDestTab,
     568             :                                     MAXCOL,aDestArea.nRowEnd,nDestTab,
     569           0 :                                     IDF_ALL, false, pUndoDoc );
     570             : 
     571             :             // alten Ausgabebereich
     572           0 :             if (pDestData)
     573           0 :                 aDocument.CopyToDocument( aOldDest, IDF_ALL, false, pUndoDoc );
     574             : 
     575           0 :             GetUndoManager()->AddUndoAction(
     576             :                     new ScUndoConsolidate( this, aDestArea, rParam, pUndoDoc,
     577           0 :                                             sal_True, nInsertCount, pUndoTab, pUndoData ) );
     578             :         }
     579             :         else
     580             :         {
     581           0 :             ScDocument* pUndoDoc = new ScDocument( SCDOCMODE_UNDO );
     582           0 :             pUndoDoc->InitUndo( &aDocument, aDestArea.nTab, aDestArea.nTab );
     583             : 
     584             :             aDocument.CopyToDocument( aDestArea.nColStart, aDestArea.nRowStart, aDestArea.nTab,
     585             :                                     aDestArea.nColEnd, aDestArea.nRowEnd, aDestArea.nTab,
     586           0 :                                     IDF_ALL, false, pUndoDoc );
     587             : 
     588             :             // alten Ausgabebereich
     589           0 :             if (pDestData)
     590           0 :                 aDocument.CopyToDocument( aOldDest, IDF_ALL, false, pUndoDoc );
     591             : 
     592           0 :             GetUndoManager()->AddUndoAction(
     593             :                     new ScUndoConsolidate( this, aDestArea, rParam, pUndoDoc,
     594           0 :                                             false, 0, NULL, pUndoData ) );
     595             :         }
     596             :     }
     597             : 
     598           0 :     if (pDestData)                                      // Zielbereich loeschen / anpassen
     599             :     {
     600           0 :         aDocument.DeleteAreaTab(aOldDest, IDF_CONTENTS);
     601             :         pDestData->SetArea( rParam.nTab, rParam.nCol, rParam.nRow,
     602           0 :                             rParam.nCol + nColSize - 1, rParam.nRow + nRowSize - 1 );
     603           0 :         pDestData->SetHeader( rParam.bByRow );
     604             :     }
     605             : 
     606           0 :     aData.OutputToDocument( &aDocument, rParam.nCol, rParam.nRow, rParam.nTab );
     607             : 
     608           0 :     SCCOL nPaintStartCol = rParam.nCol;
     609           0 :     SCROW nPaintStartRow = rParam.nRow;
     610           0 :     SCCOL nPaintEndCol = nPaintStartCol + nColSize - 1;
     611           0 :     SCROW nPaintEndRow = nPaintStartRow + nRowSize - 1;
     612           0 :     sal_uInt16 nPaintFlags = PAINT_GRID;
     613           0 :     if (rParam.bByCol)
     614           0 :         ++nPaintEndRow;
     615           0 :     if (rParam.bByRow)
     616           0 :         ++nPaintEndCol;
     617           0 :     if (rParam.bReferenceData)
     618             :     {
     619           0 :         nPaintStartCol = 0;
     620           0 :         nPaintEndCol = MAXCOL;
     621           0 :         nPaintEndRow = MAXROW;
     622           0 :         nPaintFlags |= PAINT_LEFT | PAINT_SIZE;
     623             :     }
     624           0 :     if (pDestData)
     625             :     {
     626           0 :         if ( aOldDest.aEnd.Col() > nPaintEndCol )
     627           0 :             nPaintEndCol = aOldDest.aEnd.Col();
     628           0 :         if ( aOldDest.aEnd.Row() > nPaintEndRow )
     629           0 :             nPaintEndRow = aOldDest.aEnd.Row();
     630             :     }
     631             :     PostPaint( nPaintStartCol, nPaintStartRow, rParam.nTab,
     632           0 :                 nPaintEndCol, nPaintEndRow, rParam.nTab, nPaintFlags );
     633           0 :     aModificator.SetDocumentModified();
     634             : }
     635             : 
     636           0 : void ScDocShell::UseScenario( SCTAB nTab, const String& rName, sal_Bool bRecord )
     637             : {
     638           0 :     if (!aDocument.IsScenario(nTab))
     639             :     {
     640           0 :         SCTAB   nTabCount = aDocument.GetTableCount();
     641           0 :         SCTAB   nSrcTab = SCTAB_MAX;
     642           0 :         SCTAB   nEndTab = nTab;
     643           0 :         rtl::OUString aCompare;
     644           0 :         while ( nEndTab+1 < nTabCount && aDocument.IsScenario(nEndTab+1) )
     645             :         {
     646           0 :             ++nEndTab;
     647           0 :             if (nSrcTab > MAXTAB)           // noch auf der Suche nach dem Szenario?
     648             :             {
     649           0 :                 aDocument.GetName( nEndTab, aCompare );
     650           0 :                 if (aCompare.equals(rName))
     651           0 :                     nSrcTab = nEndTab;      // gefunden
     652             :             }
     653             :         }
     654           0 :         if (ValidTab(nSrcTab))
     655             :         {
     656           0 :             if ( aDocument.TestCopyScenario( nSrcTab, nTab ) )          // Zellschutz testen
     657             :             {
     658           0 :                 ScDocShellModificator aModificator( *this );
     659           0 :                 ScMarkData aScenMark;
     660           0 :                 aDocument.MarkScenario( nSrcTab, nTab, aScenMark );
     661           0 :                 ScRange aMultiRange;
     662           0 :                 aScenMark.GetMultiMarkArea( aMultiRange );
     663           0 :                 SCCOL nStartCol = aMultiRange.aStart.Col();
     664           0 :                 SCROW nStartRow = aMultiRange.aStart.Row();
     665           0 :                 SCCOL nEndCol = aMultiRange.aEnd.Col();
     666           0 :                 SCROW nEndRow = aMultiRange.aEnd.Row();
     667             : 
     668           0 :                 if (bRecord)
     669             :                 {
     670           0 :                     ScDocument* pUndoDoc = new ScDocument( SCDOCMODE_UNDO );
     671           0 :                     pUndoDoc->InitUndo( &aDocument, nTab,nEndTab );             // auch alle Szenarien
     672             :                     //  angezeigte Tabelle:
     673             :                     aDocument.CopyToDocument( nStartCol,nStartRow,nTab,
     674           0 :                                     nEndCol,nEndRow,nTab, IDF_ALL,sal_True, pUndoDoc, &aScenMark );
     675             :                     //  Szenarien
     676           0 :                     for (SCTAB i=nTab+1; i<=nEndTab; i++)
     677             :                     {
     678           0 :                         pUndoDoc->SetScenario( i, sal_True );
     679           0 :                         rtl::OUString aComment;
     680           0 :                         Color  aColor;
     681             :                         sal_uInt16 nScenFlags;
     682           0 :                         aDocument.GetScenarioData( i, aComment, aColor, nScenFlags );
     683           0 :                         pUndoDoc->SetScenarioData( i, aComment, aColor, nScenFlags );
     684           0 :                         sal_Bool bActive = aDocument.IsActiveScenario( i );
     685           0 :                         pUndoDoc->SetActiveScenario( i, bActive );
     686             :                         //  Bei Zurueckkopier-Szenarios auch Inhalte
     687           0 :                         if ( nScenFlags & SC_SCENARIO_TWOWAY )
     688             :                             aDocument.CopyToDocument( 0,0,i, MAXCOL,MAXROW,i,
     689           0 :                                                         IDF_ALL,false, pUndoDoc );
     690           0 :                     }
     691             : 
     692           0 :                     GetUndoManager()->AddUndoAction(
     693             :                         new ScUndoUseScenario( this, aScenMark,
     694             :                                         ScArea( nTab,nStartCol,nStartRow,nEndCol,nEndRow ),
     695           0 :                                         pUndoDoc, rName ) );
     696             :                 }
     697             : 
     698           0 :                 aDocument.CopyScenario( nSrcTab, nTab );
     699           0 :                 aDocument.SetDirty();
     700             : 
     701             :                 //  alles painten, weil in anderen Bereichen das aktive Szenario
     702             :                 //  geaendert sein kann
     703             :                 //! nur, wenn sichtbare Rahmen vorhanden?
     704           0 :                 PostPaint( 0,0,nTab, MAXCOL,MAXROW,nTab, PAINT_GRID );
     705           0 :                 aModificator.SetDocumentModified();
     706             :             }
     707             :             else
     708             :             {
     709             :                 InfoBox aBox(GetActiveDialogParent(),
     710           0 :                     ScGlobal::GetRscString( STR_PROTECTIONERR ) );
     711           0 :                 aBox.Execute();
     712             :             }
     713             :         }
     714             :         else
     715             :         {
     716             :             InfoBox aBox(GetActiveDialogParent(),
     717           0 :                 ScGlobal::GetRscString( STR_SCENARIO_NOTFOUND ) );
     718           0 :             aBox.Execute();
     719           0 :         }
     720             :     }
     721             :     else
     722             :     {
     723             :         OSL_FAIL( "UseScenario auf Szenario-Blatt" );
     724             :     }
     725           0 : }
     726             : 
     727           0 : void ScDocShell::ModifyScenario( SCTAB nTab, const String& rName, const String& rComment,
     728             :                                     const Color& rColor, sal_uInt16 nFlags )
     729             : {
     730             :     //  Undo
     731           0 :     rtl::OUString aOldName;
     732           0 :     aDocument.GetName( nTab, aOldName );
     733           0 :     rtl::OUString aOldComment;
     734           0 :     Color aOldColor;
     735             :     sal_uInt16 nOldFlags;
     736           0 :     aDocument.GetScenarioData( nTab, aOldComment, aOldColor, nOldFlags );
     737           0 :     GetUndoManager()->AddUndoAction(
     738             :         new ScUndoScenarioFlags( this, nTab,
     739             :                 aOldName, rName, aOldComment, rComment,
     740           0 :                 aOldColor, rColor, nOldFlags, nFlags ) );
     741             : 
     742             :     //  ausfuehren
     743           0 :     ScDocShellModificator aModificator( *this );
     744           0 :     aDocument.RenameTab( nTab, rName );
     745           0 :     aDocument.SetScenarioData( nTab, rComment, rColor, nFlags );
     746           0 :     PostPaintGridAll();
     747           0 :     aModificator.SetDocumentModified();
     748             : 
     749           0 :     if (!aOldName.equals(rName))
     750           0 :         SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
     751             : 
     752           0 :     SfxBindings* pBindings = GetViewBindings();
     753           0 :     if (pBindings)
     754           0 :         pBindings->Invalidate( SID_SELECT_SCENARIO );
     755           0 : }
     756             : 
     757           0 : SCTAB ScDocShell::MakeScenario( SCTAB nTab, const String& rName, const String& rComment,
     758             :                                     const Color& rColor, sal_uInt16 nFlags,
     759             :                                     ScMarkData& rMark, sal_Bool bRecord )
     760             : {
     761           0 :     rMark.MarkToMulti();
     762           0 :     if (rMark.IsMultiMarked())
     763             :     {
     764           0 :         SCTAB nNewTab = nTab + 1;
     765           0 :         while (aDocument.IsScenario(nNewTab))
     766           0 :             ++nNewTab;
     767             : 
     768           0 :         sal_Bool bCopyAll = ( (nFlags & SC_SCENARIO_COPYALL) != 0 );
     769           0 :         const ScMarkData* pCopyMark = NULL;
     770           0 :         if (!bCopyAll)
     771           0 :             pCopyMark = &rMark;
     772             : 
     773           0 :         ScDocShellModificator aModificator( *this );
     774             : 
     775           0 :         if (bRecord)
     776           0 :             aDocument.BeginDrawUndo();      // drawing layer must do its own undo actions
     777             : 
     778           0 :         if (aDocument.CopyTab( nTab, nNewTab, pCopyMark ))
     779             :         {
     780           0 :             if (bRecord)
     781             :             {
     782           0 :                 GetUndoManager()->AddUndoAction(
     783             :                         new ScUndoMakeScenario( this, nTab, nNewTab,
     784           0 :                                                 rName, rComment, rColor, nFlags, rMark ));
     785             :             }
     786             : 
     787           0 :             aDocument.RenameTab( nNewTab, rName, false );           // ohne Formel-Update
     788           0 :             aDocument.SetScenario( nNewTab, sal_True );
     789           0 :             aDocument.SetScenarioData( nNewTab, rComment, rColor, nFlags );
     790             : 
     791           0 :             ScMarkData aDestMark = rMark;
     792           0 :             aDestMark.SelectOneTable( nNewTab );
     793             : 
     794             :             //!     auf Filter / Buttons / Merging testen !
     795             : 
     796           0 :             ScPatternAttr aProtPattern( aDocument.GetPool() );
     797           0 :             aProtPattern.GetItemSet().Put( ScProtectionAttr( sal_True ) );
     798           0 :             aDocument.ApplyPatternAreaTab( 0,0, MAXCOL,MAXROW, nNewTab, aProtPattern );
     799             : 
     800           0 :             ScPatternAttr aPattern( aDocument.GetPool() );
     801           0 :             aPattern.GetItemSet().Put( ScMergeFlagAttr( SC_MF_SCENARIO ) );
     802           0 :             aPattern.GetItemSet().Put( ScProtectionAttr( sal_True ) );
     803           0 :             aDocument.ApplySelectionPattern( aPattern, aDestMark );
     804             : 
     805           0 :             if (!bCopyAll)
     806           0 :                 aDocument.SetVisible( nNewTab, false );
     807             : 
     808             :             //  dies ist dann das aktive Szenario
     809           0 :             aDocument.CopyScenario( nNewTab, nTab, sal_True );  // sal_True - nicht aus Szenario kopieren
     810             : 
     811           0 :             if (nFlags & SC_SCENARIO_SHOWFRAME)
     812           0 :                 PostPaint( 0,0,nTab, MAXCOL,MAXROW,nTab, PAINT_GRID );  // Rahmen painten
     813           0 :             PostPaintExtras();                                          // Tabellenreiter
     814           0 :             aModificator.SetDocumentModified();
     815             : 
     816           0 :             SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
     817             : 
     818           0 :             return nNewTab;
     819           0 :         }
     820             :     }
     821           0 :     return nTab;
     822             : }
     823             : 
     824           0 : sal_uLong ScDocShell::TransferTab( ScDocShell& rSrcDocShell, SCTAB nSrcPos,
     825             :                                 SCTAB nDestPos, sal_Bool bInsertNew,
     826             :                                 sal_Bool bNotifyAndPaint )
     827             : {
     828           0 :     ScDocument* pSrcDoc = rSrcDocShell.GetDocument();
     829             : 
     830             :     // set the transfered area to the copyparam to make adjusting formulas possible
     831           0 :     ScClipParam aParam;
     832           0 :     ScRange aRange(0, 0, nSrcPos, MAXCOL, MAXROW, nSrcPos);
     833           0 :     aParam.maRanges.Append(aRange);
     834           0 :     pSrcDoc->SetClipParam(aParam);
     835             : 
     836             :     sal_uLong nErrVal =  aDocument.TransferTab( pSrcDoc, nSrcPos, nDestPos,
     837           0 :                     bInsertNew );       // no insert
     838             : 
     839             :     // TransferTab doesn't copy drawing objects with bInsertNew=FALSE
     840           0 :     if ( nErrVal > 0 && !bInsertNew)
     841           0 :         aDocument.TransferDrawPage( pSrcDoc, nSrcPos, nDestPos );
     842             : 
     843           0 :     if(nErrVal>0 && pSrcDoc->IsScenario( nSrcPos ))
     844             :     {
     845           0 :         rtl::OUString aComment;
     846           0 :         Color  aColor;
     847             :         sal_uInt16 nFlags;
     848             : 
     849           0 :         pSrcDoc->GetScenarioData( nSrcPos, aComment,aColor, nFlags);
     850           0 :         aDocument.SetScenario(nDestPos,true);
     851           0 :         aDocument.SetScenarioData(nDestPos,aComment,aColor,nFlags);
     852           0 :         sal_Bool bActive = pSrcDoc->IsActiveScenario(nSrcPos);
     853           0 :         aDocument.SetActiveScenario(nDestPos, bActive );
     854             : 
     855           0 :         sal_Bool bVisible=pSrcDoc->IsVisible(nSrcPos);
     856           0 :         aDocument.SetVisible(nDestPos,bVisible );
     857             : 
     858             :     }
     859             : 
     860           0 :     if ( nErrVal > 0 && pSrcDoc->IsTabProtected( nSrcPos ) )
     861           0 :         aDocument.SetTabProtection(nDestPos, pSrcDoc->GetTabProtection(nSrcPos));
     862           0 :     if ( bNotifyAndPaint )
     863             :     {
     864           0 :             Broadcast( ScTablesHint( SC_TAB_INSERTED, nDestPos ) );
     865           0 :             PostPaintExtras();
     866           0 :             PostPaintGridAll();
     867             :     }
     868           0 :     return nErrVal;
     869             : }
     870             : 
     871           0 : sal_Bool ScDocShell::MoveTable( SCTAB nSrcTab, SCTAB nDestTab, sal_Bool bCopy, sal_Bool bRecord )
     872             : {
     873           0 :     ScDocShellModificator aModificator( *this );
     874             : 
     875             :     // #i92477# be consistent with ScDocFunc::InsertTable: any index past the last sheet means "append"
     876             :     // #i101139# nDestTab must be the target position, not APPEND (for CopyTabProtection etc.)
     877           0 :     if ( nDestTab >= aDocument.GetTableCount() )
     878           0 :         nDestTab = aDocument.GetTableCount();
     879             : 
     880           0 :     if (bCopy)
     881             :     {
     882           0 :         if (bRecord)
     883           0 :             aDocument.BeginDrawUndo();          // drawing layer must do its own undo actions
     884             : 
     885           0 :         rtl::OUString sSrcCodeName;
     886           0 :         aDocument.GetCodeName( nSrcTab, sSrcCodeName );
     887           0 :         if (!aDocument.CopyTab( nSrcTab, nDestTab ))
     888             :         {
     889             :             //! EndDrawUndo?
     890           0 :             return false;
     891             :         }
     892             :         else
     893             :         {
     894           0 :             SCTAB nAdjSource = nSrcTab;
     895           0 :             if ( nDestTab <= nSrcTab )
     896           0 :                 ++nAdjSource;               // new position of source table after CopyTab
     897             : 
     898           0 :             if ( aDocument.IsTabProtected( nAdjSource ) )
     899           0 :                 aDocument.CopyTabProtection(nAdjSource, nDestTab);
     900             : 
     901           0 :             if (bRecord)
     902             :             {
     903             :                 SAL_WNODEPRECATED_DECLARATIONS_PUSH
     904           0 :                 auto_ptr< vector<SCTAB> > pSrcList(new vector<SCTAB>(1, nSrcTab));
     905           0 :                 auto_ptr< vector<SCTAB> > pDestList(new vector<SCTAB>(1, nDestTab));
     906             :                 SAL_WNODEPRECATED_DECLARATIONS_POP
     907           0 :                 GetUndoManager()->AddUndoAction(
     908           0 :                         new ScUndoCopyTab(this, pSrcList.release(), pDestList.release()));
     909             :             }
     910             : 
     911           0 :             sal_Bool bVbaEnabled = aDocument.IsInVBAMode();
     912           0 :             if ( bVbaEnabled )
     913             :             {
     914           0 :                 String aLibName( RTL_CONSTASCII_USTRINGPARAM( "Standard" ) );
     915           0 :                 Reference< XLibraryContainer > xLibContainer = GetBasicContainer();
     916           0 :                 Reference< XVBACompatibility > xVBACompat( xLibContainer, UNO_QUERY );
     917             : 
     918           0 :                 if ( xVBACompat.is() )
     919             :                 {
     920           0 :                     aLibName = xVBACompat->getProjectName();
     921             :                 }
     922             : 
     923           0 :                 SCTAB nTabToUse = nDestTab;
     924           0 :                 if ( nDestTab == SC_TAB_APPEND )
     925           0 :                     nTabToUse = aDocument.GetMaxTableNumber() - 1;
     926           0 :                 rtl::OUString sCodeName;
     927           0 :                 rtl::OUString sSource;
     928             :                 try
     929             :                 {
     930           0 :                     Reference< XNameContainer > xLib;
     931           0 :                     if( xLibContainer.is() )
     932             :                     {
     933           0 :                         com::sun::star::uno::Any aLibAny = xLibContainer->getByName( aLibName );
     934           0 :                         aLibAny >>= xLib;
     935             :                     }
     936           0 :                     if( xLib.is() )
     937             :                     {
     938           0 :                         xLib->getByName( sSrcCodeName ) >>= sSource;
     939           0 :                     }
     940             :                 }
     941           0 :                 catch ( const com::sun::star::uno::Exception& )
     942             :                 {
     943             :                 }
     944           0 :                 VBA_InsertModule( aDocument, nTabToUse, sCodeName, sSource );
     945             :             }
     946             :         }
     947           0 :         Broadcast( ScTablesHint( SC_TAB_COPIED, nSrcTab, nDestTab ) );
     948             :     }
     949             :     else
     950             :     {
     951           0 :         if ( aDocument.GetChangeTrack() )
     952           0 :             return false;
     953             : 
     954           0 :         if ( nSrcTab<nDestTab && nDestTab!=SC_TAB_APPEND )
     955           0 :             nDestTab--;
     956             : 
     957           0 :         if ( nSrcTab == nDestTab )
     958             :         {
     959             :             //! allow only for api calls?
     960           0 :             return sal_True;    // nothing to do, but valid
     961             :         }
     962             : 
     963             :         ScProgress* pProgress = new ScProgress(this, ScGlobal::GetRscString(STR_UNDO_MOVE_TAB),
     964           0 :                                                 aDocument.GetCodeCount());
     965           0 :         bool bDone = aDocument.MoveTab( nSrcTab, nDestTab, pProgress );
     966           0 :         delete pProgress;
     967           0 :         if (!bDone)
     968             :         {
     969           0 :             return false;
     970             :         }
     971           0 :         else if (bRecord)
     972             :         {
     973             :             SAL_WNODEPRECATED_DECLARATIONS_PUSH
     974           0 :             auto_ptr< vector<SCTAB> > pSrcList(new vector<SCTAB>(1, nSrcTab));
     975           0 :             auto_ptr< vector<SCTAB> > pDestList(new vector<SCTAB>(1, nDestTab));
     976             :             SAL_WNODEPRECATED_DECLARATIONS_POP
     977           0 :             GetUndoManager()->AddUndoAction(
     978           0 :                     new ScUndoMoveTab(this, pSrcList.release(), pDestList.release()));
     979             :         }
     980             : 
     981           0 :         Broadcast( ScTablesHint( SC_TAB_MOVED, nSrcTab, nDestTab ) );
     982             :     }
     983             : 
     984           0 :     PostPaintGridAll();
     985           0 :     PostPaintExtras();
     986           0 :     aModificator.SetDocumentModified();
     987           0 :     SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
     988             : 
     989           0 :     return sal_True;
     990             : }
     991             : 
     992             : 
     993           0 : IMPL_LINK( ScDocShell, RefreshDBDataHdl, ScRefreshTimer*, pRefreshTimer )
     994             : {
     995           0 :     ScDBDocFunc aFunc(*this);
     996             : 
     997           0 :     sal_Bool bContinue = sal_True;
     998           0 :     ScDBData* pDBData = static_cast<ScDBData*>(pRefreshTimer);
     999           0 :     ScImportParam aImportParam;
    1000           0 :     pDBData->GetImportParam( aImportParam );
    1001           0 :     if (aImportParam.bImport && !pDBData->HasImportSelection())
    1002             :     {
    1003           0 :         ScRange aRange;
    1004           0 :         pDBData->GetArea( aRange );
    1005           0 :         bContinue = aFunc.DoImport( aRange.aStart.Tab(), aImportParam, NULL, true, false ); //! Api-Flag as parameter
    1006             :         // internal operations (sort, query, subtotal) only if no error
    1007           0 :         if (bContinue)
    1008             :         {
    1009           0 :             aFunc.RepeatDB( pDBData->GetName(), sal_True, sal_True );
    1010           0 :             RefreshPivotTables(aRange);
    1011             :         }
    1012             :     }
    1013             : 
    1014           0 :     return bContinue != 0;
    1015          15 : }
    1016             : 
    1017             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10