Files
libreoffice/sc/source/ui/undo/undotab.cxx
Noel Grandin aa25be5965 loplugin:loopvartoosmall
Change-Id: Iafe55d4aa65a380d8d338edd54338f53a3e920dc
2015-06-01 12:29:42 +02:00

1583 lines
44 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/app.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <svl/smplhint.hxx>
#include "undotab.hxx"
#include "document.hxx"
#include "docsh.hxx"
#include "tabvwsh.hxx"
#include "globstr.hrc"
#include "global.hxx"
#include "sc.hrc"
#include "undoolk.hxx"
#include "target.hxx"
#include "uiitems.hxx"
#include "prnsave.hxx"
#include "printfun.hxx"
#include "chgtrack.hxx"
#include "tabprotection.hxx"
#include "viewdata.hxx"
#include "progress.hxx"
#include "markdata.hxx"
// for ScUndoRenameObject - might me moved to another file later
#include <svx/svditer.hxx>
#include <svx/svdoole2.hxx>
#include <svx/svdpage.hxx>
#include "drwlayer.hxx"
#include "scresid.hxx"
#include <utility>
#include <vector>
#include <boost/scoped_ptr.hpp>
extern bool bDrawIsInUndo; // somewhere as member!
using namespace com::sun::star;
using ::com::sun::star::uno::Sequence;
using ::std::unique_ptr;
using ::std::vector;
using ::boost::shared_ptr;
TYPEINIT1(ScUndoInsertTab, SfxUndoAction);
TYPEINIT1(ScUndoInsertTables, SfxUndoAction);
TYPEINIT1(ScUndoDeleteTab, SfxUndoAction);
TYPEINIT1(ScUndoRenameTab, SfxUndoAction);
TYPEINIT1(ScUndoMoveTab, SfxUndoAction);
TYPEINIT1(ScUndoCopyTab, SfxUndoAction);
TYPEINIT1(ScUndoMakeScenario, SfxUndoAction);
TYPEINIT1(ScUndoImportTab, SfxUndoAction);
TYPEINIT1(ScUndoRemoveLink, SfxUndoAction);
TYPEINIT1(ScUndoShowHideTab, SfxUndoAction);
TYPEINIT1(ScUndoPrintRange, SfxUndoAction);
TYPEINIT1(ScUndoScenarioFlags, SfxUndoAction);
TYPEINIT1(ScUndoRenameObject, SfxUndoAction);
TYPEINIT1(ScUndoLayoutRTL, SfxUndoAction);
TYPEINIT1(ScUndoTabColor, SfxUndoAction);
ScUndoInsertTab::ScUndoInsertTab( ScDocShell* pNewDocShell,
SCTAB nTabNum,
bool bApp,
const OUString& rNewName) :
ScSimpleUndo( pNewDocShell ),
sNewName( rNewName ),
pDrawUndo( NULL ),
nTab( nTabNum ),
bAppend( bApp )
{
pDrawUndo = GetSdrUndoAction( &pDocShell->GetDocument() );
SetChangeTrack();
}
ScUndoInsertTab::~ScUndoInsertTab()
{
DeleteSdrUndoAction( pDrawUndo );
}
OUString ScUndoInsertTab::GetComment() const
{
if (bAppend)
return ScGlobal::GetRscString( STR_UNDO_APPEND_TAB );
else
return ScGlobal::GetRscString( STR_UNDO_INSERT_TAB );
}
void ScUndoInsertTab::SetChangeTrack()
{
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
{
ScRange aRange( 0, 0, nTab, MAXCOL, MAXROW, nTab );
pChangeTrack->AppendInsert( aRange );
nEndChangeAction = pChangeTrack->GetActionMax();
}
else
nEndChangeAction = 0;
}
void ScUndoInsertTab::Undo()
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
pViewShell->SetTabNo(nTab);
pDocShell->SetInUndo( true ); //! BeginUndo
bDrawIsInUndo = true;
pViewShell->DeleteTable( nTab, false );
bDrawIsInUndo = false;
pDocShell->SetInUndo( false ); //! EndUndo
DoSdrUndoAction( pDrawUndo, &pDocShell->GetDocument() );
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
pChangeTrack->Undo( nEndChangeAction, nEndChangeAction );
// SetTabNo(...,sal_True) for all views to sync with drawing layer pages
pDocShell->Broadcast( SfxSimpleHint( SC_HINT_FORCESETTAB ) );
}
void ScUndoInsertTab::Redo()
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
RedoSdrUndoAction( pDrawUndo ); // Draw Redo first
pDocShell->SetInUndo( true ); //! BeginRedo
bDrawIsInUndo = true;
if (bAppend)
pViewShell->AppendTable( sNewName, false );
else
{
pViewShell->SetTabNo(nTab);
pViewShell->InsertTable( sNewName, nTab, false );
}
bDrawIsInUndo = false;
pDocShell->SetInUndo( false ); //! EndRedo
SetChangeTrack();
}
void ScUndoInsertTab::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->GetViewData().GetDispatcher().
Execute(FID_INS_TABLE, SfxCallMode::SLOT | SfxCallMode::RECORD);
}
bool ScUndoInsertTab::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
ScUndoInsertTables::ScUndoInsertTables( ScDocShell* pNewDocShell,
SCTAB nTabNum,
std::vector<OUString>& newNameList) :
ScSimpleUndo( pNewDocShell ),
pDrawUndo( NULL ),
aNameList( newNameList ),
nTab( nTabNum )
{
pDrawUndo = GetSdrUndoAction( &pDocShell->GetDocument() );
SetChangeTrack();
}
ScUndoInsertTables::~ScUndoInsertTables()
{
DeleteSdrUndoAction( pDrawUndo );
}
OUString ScUndoInsertTables::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_INSERT_TAB );
}
void ScUndoInsertTables::SetChangeTrack()
{
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
{
nStartChangeAction = pChangeTrack->GetActionMax() + 1;
nEndChangeAction = 0;
ScRange aRange( 0, 0, nTab, MAXCOL, MAXROW, nTab );
for( size_t i = 0; i < aNameList.size(); i++ )
{
aRange.aStart.SetTab( sal::static_int_cast<SCTAB>( nTab + i ) );
aRange.aEnd.SetTab( sal::static_int_cast<SCTAB>( nTab + i ) );
pChangeTrack->AppendInsert( aRange );
nEndChangeAction = pChangeTrack->GetActionMax();
}
}
else
nStartChangeAction = nEndChangeAction = 0;
}
void ScUndoInsertTables::Undo()
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
pViewShell->SetTabNo(nTab);
pDocShell->SetInUndo( true ); //! BeginUndo
bDrawIsInUndo = true;
pViewShell->DeleteTables( nTab, static_cast<SCTAB>(aNameList.size()) );
bDrawIsInUndo = false;
pDocShell->SetInUndo( false ); //! EndUndo
DoSdrUndoAction( pDrawUndo, &pDocShell->GetDocument() );
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
pChangeTrack->Undo( nStartChangeAction, nEndChangeAction );
// SetTabNo(...,sal_True) for all views to sync with drawing layer pages
pDocShell->Broadcast( SfxSimpleHint( SC_HINT_FORCESETTAB ) );
}
void ScUndoInsertTables::Redo()
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
RedoSdrUndoAction( pDrawUndo ); // Draw Redo first
pDocShell->SetInUndo( true ); //! BeginRedo
bDrawIsInUndo = true;
pViewShell->SetTabNo(nTab);
pViewShell->InsertTables( aNameList, nTab, static_cast<SCTAB>(aNameList.size()),false );
bDrawIsInUndo = false;
pDocShell->SetInUndo( false ); //! EndRedo
SetChangeTrack();
}
void ScUndoInsertTables::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->GetViewData().GetDispatcher().
Execute(FID_INS_TABLE, SfxCallMode::SLOT | SfxCallMode::RECORD);
}
bool ScUndoInsertTables::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
ScUndoDeleteTab::ScUndoDeleteTab( ScDocShell* pNewDocShell, const vector<SCTAB> &aTab,
ScDocument* pUndoDocument, ScRefUndoData* pRefData ) :
ScMoveUndo( pNewDocShell, pUndoDocument, pRefData, SC_UNDO_REFLAST )
{
theTabs.insert(theTabs.end(), aTab.begin(), aTab.end() );
SetChangeTrack();
}
ScUndoDeleteTab::~ScUndoDeleteTab()
{
theTabs.clear();
}
OUString ScUndoDeleteTab::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_DELETE_TAB );
}
void ScUndoDeleteTab::SetChangeTrack()
{
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
{
sal_uLong nTmpChangeAction;
nStartChangeAction = pChangeTrack->GetActionMax() + 1;
nEndChangeAction = 0;
ScRange aRange( 0, 0, 0, MAXCOL, MAXROW, 0 );
for ( size_t i = 0; i < theTabs.size(); ++i )
{
aRange.aStart.SetTab( theTabs[i] );
aRange.aEnd.SetTab( theTabs[i] );
pChangeTrack->AppendDeleteRange( aRange, pRefUndoDoc,
nTmpChangeAction, nEndChangeAction, (short) i );
}
}
else
nStartChangeAction = nEndChangeAction = 0;
}
static SCTAB lcl_GetVisibleTabBefore( ScDocument& rDoc, SCTAB nTab )
{
while ( nTab > 0 && !rDoc.IsVisible( nTab ) )
--nTab;
return nTab;
}
void ScUndoDeleteTab::Undo()
{
BeginUndo();
unsigned int i=0;
ScDocument& rDoc = pDocShell->GetDocument();
bool bLink = false;
OUString aName;
for(i=0; i<theTabs.size(); ++i)
{
SCTAB nTab = theTabs[i];
pRefUndoDoc->GetName( nTab, aName );
bDrawIsInUndo = true;
bool bOk = rDoc.InsertTab(nTab, aName, false, true);
bDrawIsInUndo = false;
if (bOk)
{
pRefUndoDoc->CopyToDocument(0,0,nTab, MAXCOL,MAXROW,nTab, IDF_ALL,false, &rDoc );
OUString aOldName;
pRefUndoDoc->GetName( nTab, aOldName );
rDoc.RenameTab( nTab, aOldName, false );
if (pRefUndoDoc->IsLinked(nTab))
{
rDoc.SetLink( nTab, pRefUndoDoc->GetLinkMode(nTab), pRefUndoDoc->GetLinkDoc(nTab),
pRefUndoDoc->GetLinkFlt(nTab), pRefUndoDoc->GetLinkOpt(nTab),
pRefUndoDoc->GetLinkTab(nTab), pRefUndoDoc->GetLinkRefreshDelay(nTab) );
bLink = true;
}
if ( pRefUndoDoc->IsScenario(nTab) )
{
rDoc.SetScenario( nTab, true );
OUString aComment;
Color aColor;
sal_uInt16 nScenFlags;
pRefUndoDoc->GetScenarioData( nTab, aComment, aColor, nScenFlags );
rDoc.SetScenarioData( nTab, aComment, aColor, nScenFlags );
bool bActive = pRefUndoDoc->IsActiveScenario( nTab );
rDoc.SetActiveScenario( nTab, bActive );
}
rDoc.SetVisible( nTab, pRefUndoDoc->IsVisible( nTab ) );
rDoc.SetTabBgColor( nTab, pRefUndoDoc->GetTabBgColor(nTab) );
rDoc.SetSheetEvents( nTab, pRefUndoDoc->GetSheetEvents( nTab ) );
rDoc.SetLayoutRTL( nTab, pRefUndoDoc->IsLayoutRTL( nTab ) );
if ( pRefUndoDoc->IsTabProtected( nTab ) )
rDoc.SetTabProtection(nTab, pRefUndoDoc->GetTabProtection(nTab));
}
}
if (bLink)
{
pDocShell->UpdateLinks(); // update Link Manager
}
EndUndo(); // Draw-Undo has to be called before Broadcast!
ScChangeTrack* pChangeTrack = pDocShell->GetDocument().GetChangeTrack();
if ( pChangeTrack )
pChangeTrack->Undo( nStartChangeAction, nEndChangeAction );
for(i=0; i<theTabs.size(); ++i)
{
pDocShell->Broadcast( ScTablesHint( SC_TAB_INSERTED, theTabs[i]) );
}
SfxApplication* pSfxApp = SfxGetpApp(); // Navigator
pSfxApp->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
pSfxApp->Broadcast( SfxSimpleHint( SC_HINT_DBAREAS_CHANGED ) );
pSfxApp->Broadcast( SfxSimpleHint( SC_HINT_AREALINKS_CHANGED ) );
pDocShell->PostPaint(0,0,0, MAXCOL,MAXROW,MAXTAB, PAINT_ALL ); // incl. extras
// not ShowTable due to SetTabNo(..., sal_True):
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo( lcl_GetVisibleTabBefore( rDoc, theTabs[0] ), true );
}
void ScUndoDeleteTab::Redo()
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
pViewShell->SetTabNo( lcl_GetVisibleTabBefore( pDocShell->GetDocument(), theTabs.front() ) );
RedoSdrUndoAction( pDrawUndo ); // Draw Redo first
pDocShell->SetInUndo( true ); //! BeginRedo
bDrawIsInUndo = true;
pViewShell->DeleteTables( theTabs, false );
bDrawIsInUndo = false;
pDocShell->SetInUndo( true ); //! EndRedo
SetChangeTrack();
// SetTabNo(...,sal_True) for all views to sync with drawing layer pages
pDocShell->Broadcast( SfxSimpleHint( SC_HINT_FORCESETTAB ) );
}
void ScUndoDeleteTab::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
{
ScTabViewShell* pViewShell = static_cast<ScTabViewTarget&>(rTarget).GetViewShell();
pViewShell->DeleteTable( pViewShell->GetViewData().GetTabNo(), true );
}
}
bool ScUndoDeleteTab::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
ScUndoRenameTab::ScUndoRenameTab( ScDocShell* pNewDocShell,
SCTAB nT,
const OUString& rOldName,
const OUString& rNewName) :
ScSimpleUndo( pNewDocShell ),
nTab ( nT )
{
sOldName = rOldName;
sNewName = rNewName;
}
ScUndoRenameTab::~ScUndoRenameTab()
{
}
OUString ScUndoRenameTab::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_RENAME_TAB );
}
void ScUndoRenameTab::DoChange( SCTAB nTabP, const OUString& rName ) const
{
ScDocument& rDoc = pDocShell->GetDocument();
rDoc.RenameTab( nTabP, rName );
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) ); // Navigator
pDocShell->PostPaintGridAll();
pDocShell->PostPaintExtras();
pDocShell->PostDataChanged();
// The sheet name might be used in a formula ...
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->UpdateInputHandler();
}
void ScUndoRenameTab::Undo()
{
DoChange(nTab, sOldName);
}
void ScUndoRenameTab::Redo()
{
DoChange(nTab, sNewName);
}
void ScUndoRenameTab::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoRenameTab::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoMoveTab::ScUndoMoveTab(
ScDocShell* pNewDocShell, vector<SCTAB>* pOldTabs, vector<SCTAB>* pNewTabs,
vector<OUString>* pOldNames, vector<OUString>* pNewNames) :
ScSimpleUndo( pNewDocShell ),
mpOldTabs(pOldTabs), mpNewTabs(pNewTabs),
mpOldNames(pOldNames), mpNewNames(pNewNames)
{
if (mpOldNames && mpOldTabs->size() != mpOldNames->size())
// The sizes differ. Something is wrong.
mpOldNames.reset();
if (mpNewNames && mpNewTabs->size() != mpNewNames->size())
// The sizes differ. Something is wrong.
mpNewNames.reset();
}
ScUndoMoveTab::~ScUndoMoveTab()
{
}
OUString ScUndoMoveTab::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_MOVE_TAB );
}
void ScUndoMoveTab::DoChange( bool bUndo ) const
{
ScDocument& rDoc = pDocShell->GetDocument();
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (bUndo) // UnDo
{
size_t i = mpNewTabs->size();
boost::scoped_ptr<ScProgress> pProgress(new ScProgress(pDocShell , ScGlobal::GetRscString(STR_UNDO_MOVE_TAB),
i * rDoc.GetCodeCount()));
for (; i > 0; --i)
{
SCTAB nDestTab = (*mpNewTabs)[i-1];
SCTAB nOldTab = (*mpOldTabs)[i-1];
if (nDestTab > MAXTAB) // appended ?
nDestTab = rDoc.GetTableCount() - 1;
rDoc.MoveTab( nDestTab, nOldTab, pProgress.get() );
pViewShell->GetViewData().MoveTab( nDestTab, nOldTab );
pViewShell->SetTabNo( nOldTab, true );
if (mpOldNames)
{
const OUString& rOldName = (*mpOldNames)[i-1];
rDoc.RenameTab(nOldTab, rOldName);
}
}
}
else
{
size_t n = mpNewTabs->size();
boost::scoped_ptr<ScProgress> pProgress(new ScProgress(pDocShell , ScGlobal::GetRscString(STR_UNDO_MOVE_TAB),
n * rDoc.GetCodeCount()));
for (size_t i = 0; i < n; ++i)
{
SCTAB nDestTab = (*mpNewTabs)[i];
SCTAB nNewTab = nDestTab;
SCTAB nOldTab = (*mpOldTabs)[i];
if (nDestTab > MAXTAB) // appended ?
nDestTab = rDoc.GetTableCount() - 1;
rDoc.MoveTab( nOldTab, nNewTab, pProgress.get() );
pViewShell->GetViewData().MoveTab( nOldTab, nNewTab );
pViewShell->SetTabNo( nDestTab, true );
if (mpNewNames)
{
const OUString& rNewName = (*mpNewNames)[i];
rDoc.RenameTab(nNewTab, rNewName);
}
}
}
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) ); // Navigator
pDocShell->PostPaintGridAll();
pDocShell->PostPaintExtras();
pDocShell->PostDataChanged();
}
void ScUndoMoveTab::Undo()
{
DoChange( true );
}
void ScUndoMoveTab::Redo()
{
DoChange( false );
}
void ScUndoMoveTab::Repeat(SfxRepeatTarget& /* rTarget */)
{
// No Repeat ! ? !
}
bool ScUndoMoveTab::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoCopyTab::ScUndoCopyTab(
ScDocShell* pNewDocShell,
vector<SCTAB>* pOldTabs, vector<SCTAB>* pNewTabs,
vector<OUString>* pNewNames) :
ScSimpleUndo( pNewDocShell ),
mpOldTabs(pOldTabs),
mpNewTabs(pNewTabs),
mpNewNames(pNewNames),
pDrawUndo( NULL )
{
pDrawUndo = GetSdrUndoAction( &pDocShell->GetDocument() );
if (mpNewNames && mpNewTabs->size() != mpNewNames->size())
// The sizes differ. Something is wrong.
mpNewNames.reset();
}
ScUndoCopyTab::~ScUndoCopyTab()
{
DeleteSdrUndoAction( pDrawUndo );
}
OUString ScUndoCopyTab::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_COPY_TAB );
}
void ScUndoCopyTab::DoChange() const
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo((*mpOldTabs)[0],true);
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) ); // Navigator
pDocShell->PostPaintGridAll();
pDocShell->PostPaintExtras();
pDocShell->PostDataChanged();
}
void ScUndoCopyTab::Undo()
{
ScDocument& rDoc = pDocShell->GetDocument();
DoSdrUndoAction( pDrawUndo, &rDoc ); // before the sheets are deleted
vector<SCTAB>::const_reverse_iterator itr, itrEnd = mpNewTabs->rend();
for (itr = mpNewTabs->rbegin(); itr != itrEnd; ++itr)
{
SCTAB nDestTab = *itr;
if (nDestTab > MAXTAB) // append?
nDestTab = rDoc.GetTableCount() - 1;
bDrawIsInUndo = true;
rDoc.DeleteTab(nDestTab);
bDrawIsInUndo = false;
}
// ScTablesHint broadcasts after all sheets have been deleted,
// so sheets and draw pages are in sync!
for (itr = mpNewTabs->rbegin(); itr != itrEnd; ++itr)
{
SCTAB nDestTab = *itr;
if (nDestTab > MAXTAB) // append?
nDestTab = rDoc.GetTableCount() - 1;
pDocShell->Broadcast( ScTablesHint( SC_TAB_DELETED, nDestTab ) );
}
DoChange();
}
void ScUndoCopyTab::Redo()
{
ScDocument& rDoc = pDocShell->GetDocument();
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
SCTAB nDestTab = 0;
for (size_t i = 0, n = mpNewTabs->size(); i < n; ++i)
{
nDestTab = (*mpNewTabs)[i];
SCTAB nNewTab = nDestTab;
SCTAB nOldTab = (*mpOldTabs)[i];
if (nDestTab > MAXTAB) // appended ?
nDestTab = rDoc.GetTableCount() - 1;
bDrawIsInUndo = true;
rDoc.CopyTab( nOldTab, nNewTab );
bDrawIsInUndo = false;
pViewShell->GetViewData().MoveTab( nOldTab, nNewTab );
SCTAB nAdjSource = nOldTab;
if ( nNewTab <= nOldTab )
++nAdjSource; // new position of source table after CopyTab
if ( rDoc.IsScenario(nAdjSource) )
{
rDoc.SetScenario(nNewTab, true );
OUString aComment;
Color aColor;
sal_uInt16 nScenFlags;
rDoc.GetScenarioData(nAdjSource, aComment, aColor, nScenFlags );
rDoc.SetScenarioData(nNewTab, aComment, aColor, nScenFlags );
bool bActive = rDoc.IsActiveScenario(nAdjSource);
rDoc.SetActiveScenario(nNewTab, bActive );
bool bVisible = rDoc.IsVisible(nAdjSource);
rDoc.SetVisible(nNewTab,bVisible );
}
if ( rDoc.IsTabProtected( nAdjSource ) )
rDoc.CopyTabProtection(nAdjSource, nNewTab);
if (mpNewNames)
{
const OUString& rName = (*mpNewNames)[i];
rDoc.RenameTab(nNewTab, rName);
}
}
RedoSdrUndoAction( pDrawUndo ); // after the sheets are inserted
pViewShell->SetTabNo( nDestTab, true ); // after draw-undo
DoChange();
}
void ScUndoCopyTab::Repeat(SfxRepeatTarget& /* rTarget */)
{
// no Repeat ! ? !
}
bool ScUndoCopyTab::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoTabColor::ScUndoTabColor(
ScDocShell* pNewDocShell, SCTAB nT, const Color& aOTabBgColor, const Color& aNTabBgColor) :
ScSimpleUndo( pNewDocShell )
{
ScUndoTabColorInfo aInfo(nT);
aInfo.maOldTabBgColor = aOTabBgColor;
aInfo.maNewTabBgColor = aNTabBgColor;
aTabColorList.push_back(aInfo);
}
ScUndoTabColor::ScUndoTabColor(
ScDocShell* pNewDocShell,
const ScUndoTabColorInfo::List& rUndoTabColorList) :
ScSimpleUndo(pNewDocShell),
aTabColorList(rUndoTabColorList)
{
}
ScUndoTabColor::~ScUndoTabColor()
{
}
OUString ScUndoTabColor::GetComment() const
{
if (aTabColorList.size() > 1)
return ScGlobal::GetRscString(STR_UNDO_SET_MULTI_TAB_BG_COLOR);
return ScGlobal::GetRscString(STR_UNDO_SET_TAB_BG_COLOR);
}
void ScUndoTabColor::DoChange(bool bUndoType) const
{
ScDocument& rDoc = pDocShell->GetDocument();
size_t nTabColorCount = aTabColorList.size();
for (size_t i = 0; i < nTabColorCount; ++i)
{
const ScUndoTabColorInfo& rTabColor = aTabColorList[i];
rDoc.SetTabBgColor(rTabColor.mnTabId,
bUndoType ? rTabColor.maOldTabBgColor : rTabColor.maNewTabBgColor);
}
pDocShell->PostPaintExtras();
ScDocShellModificator aModificator( *pDocShell );
aModificator.SetDocumentModified();
}
void ScUndoTabColor::Undo()
{
DoChange(true);
}
void ScUndoTabColor::Redo()
{
DoChange(false);
}
void ScUndoTabColor::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoTabColor::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoMakeScenario::ScUndoMakeScenario( ScDocShell* pNewDocShell,
SCTAB nSrc, SCTAB nDest,
const OUString& rN, const OUString& rC,
const Color& rCol, sal_uInt16 nF,
const ScMarkData& rMark ) :
ScSimpleUndo( pNewDocShell ),
mpMarkData(new ScMarkData(rMark)),
nSrcTab( nSrc ),
nDestTab( nDest ),
aName( rN ),
aComment( rC ),
aColor( rCol ),
nFlags( nF ),
pDrawUndo( NULL )
{
pDrawUndo = GetSdrUndoAction( &pDocShell->GetDocument() );
}
ScUndoMakeScenario::~ScUndoMakeScenario()
{
DeleteSdrUndoAction( pDrawUndo );
}
OUString ScUndoMakeScenario::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_MAKESCENARIO );
}
void ScUndoMakeScenario::Undo()
{
ScDocument& rDoc = pDocShell->GetDocument();
pDocShell->SetInUndo( true );
bDrawIsInUndo = true;
rDoc.DeleteTab( nDestTab );
bDrawIsInUndo = false;
pDocShell->SetInUndo( false );
DoSdrUndoAction( pDrawUndo, &rDoc );
pDocShell->PostPaint(0,0,nDestTab,MAXCOL,MAXROW,MAXTAB, PAINT_ALL);
pDocShell->PostDataChanged();
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo( nSrcTab, true );
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
// SetTabNo(...,sal_True) for all views to sync with drawing layer pages
pDocShell->Broadcast( SfxSimpleHint( SC_HINT_FORCESETTAB ) );
}
void ScUndoMakeScenario::Redo()
{
SetViewMarkData(*mpMarkData);
RedoSdrUndoAction( pDrawUndo ); // Draw Redo first
pDocShell->SetInUndo( true );
bDrawIsInUndo = true;
pDocShell->MakeScenario( nSrcTab, aName, aComment, aColor, nFlags, *mpMarkData, false );
bDrawIsInUndo = false;
pDocShell->SetInUndo( false );
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo( nDestTab, true );
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
}
void ScUndoMakeScenario::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
{
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->MakeScenario( aName, aComment, aColor, nFlags );
}
}
bool ScUndoMakeScenario::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
ScUndoImportTab::ScUndoImportTab( ScDocShell* pShell,
SCTAB nNewTab, SCTAB nNewCount ) :
ScSimpleUndo( pShell ),
nTab( nNewTab ),
nCount( nNewCount ),
pRedoDoc( NULL ),
pDrawUndo( NULL )
{
pDrawUndo = GetSdrUndoAction( &pDocShell->GetDocument() );
}
ScUndoImportTab::~ScUndoImportTab()
{
delete pRedoDoc;
DeleteSdrUndoAction( pDrawUndo );
}
OUString ScUndoImportTab::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_INSERT_TAB );
}
void ScUndoImportTab::DoChange() const
{
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
ScDocument& rDoc = pDocShell->GetDocument();
SCTAB nTabCount = rDoc.GetTableCount();
if (pViewShell)
{
if(nTab<nTabCount)
{
pViewShell->SetTabNo(nTab,true);
}
else
{
pViewShell->SetTabNo(nTab-1,true);
}
}
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) ); // Navigator
pDocShell->PostPaint( 0,0,0, MAXCOL,MAXROW,MAXTAB,
PAINT_GRID | PAINT_TOP | PAINT_LEFT | PAINT_EXTRAS );
}
void ScUndoImportTab::Undo()
{
// Inserted range names, etc.
SCTAB i;
ScDocument& rDoc = pDocShell->GetDocument();
bool bMakeRedo = !pRedoDoc;
if (bMakeRedo)
{
pRedoDoc = new ScDocument( SCDOCMODE_UNDO );
pRedoDoc->InitUndo( &rDoc, nTab,nTab+nCount-1, true,true );
OUString aOldName;
for (i=0; i<nCount; i++)
{
SCTAB nTabPos=nTab+i;
rDoc.CopyToDocument(0,0,nTabPos, MAXCOL,MAXROW,nTabPos, IDF_ALL,false, pRedoDoc );
rDoc.GetName( nTabPos, aOldName );
pRedoDoc->RenameTab( nTabPos, aOldName, false );
pRedoDoc->SetTabBgColor( nTabPos, rDoc.GetTabBgColor(nTabPos) );
if ( rDoc.IsScenario(nTabPos) )
{
pRedoDoc->SetScenario(nTabPos, true );
OUString aComment;
Color aColor;
sal_uInt16 nScenFlags;
rDoc.GetScenarioData(nTabPos, aComment, aColor, nScenFlags );
pRedoDoc->SetScenarioData(nTabPos, aComment, aColor, nScenFlags );
bool bActive = rDoc.IsActiveScenario(nTabPos);
pRedoDoc->SetActiveScenario(nTabPos, bActive );
bool bVisible = rDoc.IsVisible(nTabPos);
pRedoDoc->SetVisible(nTabPos,bVisible );
}
if ( rDoc.IsTabProtected( nTabPos ) )
pRedoDoc->SetTabProtection(nTabPos, rDoc.GetTabProtection(nTabPos));
}
}
DoSdrUndoAction( pDrawUndo, &rDoc ); // before the sheets are deleted
bDrawIsInUndo = true;
for (i=0; i<nCount; i++)
rDoc.DeleteTab( nTab );
bDrawIsInUndo = false;
DoChange();
}
void ScUndoImportTab::Redo()
{
if (!pRedoDoc)
{
OSL_FAIL("Where is my Redo Document?");
return;
}
ScDocument& rDoc = pDocShell->GetDocument();
OUString aName;
SCTAB i;
for (i=0; i<nCount; i++) // first insert all sheets (#63304#)
{
SCTAB nTabPos=nTab+i;
pRedoDoc->GetName(nTabPos,aName);
bDrawIsInUndo = true;
rDoc.InsertTab(nTabPos,aName);
bDrawIsInUndo = false;
}
for (i=0; i<nCount; i++) // then copy into inserted sheets
{
SCTAB nTabPos=nTab+i;
pRedoDoc->CopyToDocument(0,0,nTabPos, MAXCOL,MAXROW,nTabPos, IDF_ALL,false, &rDoc );
rDoc.SetTabBgColor( nTabPos, pRedoDoc->GetTabBgColor(nTabPos) );
if ( pRedoDoc->IsScenario(nTabPos) )
{
rDoc.SetScenario(nTabPos, true );
OUString aComment;
Color aColor;
sal_uInt16 nScenFlags;
pRedoDoc->GetScenarioData(nTabPos, aComment, aColor, nScenFlags );
rDoc.SetScenarioData(nTabPos, aComment, aColor, nScenFlags );
bool bActive = pRedoDoc->IsActiveScenario(nTabPos);
rDoc.SetActiveScenario(nTabPos, bActive );
bool bVisible=pRedoDoc->IsVisible(nTabPos);
rDoc.SetVisible(nTabPos,bVisible );
}
if ( pRedoDoc->IsTabProtected( nTabPos ) )
rDoc.SetTabProtection(nTabPos, pRedoDoc->GetTabProtection(nTabPos));
}
RedoSdrUndoAction( pDrawUndo ); // after the sheets are inserted
DoChange();
}
void ScUndoImportTab::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->GetViewData().GetDispatcher().
Execute(FID_INS_TABLE, SfxCallMode::SLOT | SfxCallMode::RECORD);
}
bool ScUndoImportTab::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
ScUndoRemoveLink::ScUndoRemoveLink( ScDocShell* pShell, const OUString& rDocName ) :
ScSimpleUndo( pShell ),
aDocName( rDocName ),
nRefreshDelay( 0 ),
nCount( 0 )
{
ScDocument& rDoc = pDocShell->GetDocument();
SCTAB nTabCount = rDoc.GetTableCount();
pTabs = new SCTAB[nTabCount];
pModes = new sal_uInt8[nTabCount];
pTabNames = new OUString[nTabCount];
for (SCTAB i=0; i<nTabCount; i++)
{
sal_uInt8 nMode = rDoc.GetLinkMode(i);
if (nMode)
if (rDoc.GetLinkDoc(i) == aDocName)
{
if (!nCount)
{
aFltName = rDoc.GetLinkFlt(i);
aOptions = rDoc.GetLinkOpt(i);
nRefreshDelay = rDoc.GetLinkRefreshDelay(i);
}
else
{
OSL_ENSURE(OUString(aFltName) == rDoc.GetLinkFlt(i) &&
OUString(aOptions) == rDoc.GetLinkOpt(i),
"different Filter for a Document?");
}
pTabs[nCount] = i;
pModes[nCount] = nMode;
pTabNames[nCount] = rDoc.GetLinkTab(i);
++nCount;
}
}
}
ScUndoRemoveLink::~ScUndoRemoveLink()
{
delete pTabs;
delete pModes;
delete[] pTabNames;
}
OUString ScUndoRemoveLink::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_REMOVELINK );
}
void ScUndoRemoveLink::DoChange( bool bLink ) const
{
ScDocument& rDoc = pDocShell->GetDocument();
OUString aEmpty;
for (sal_uInt16 i=0; i<nCount; i++)
if (bLink) // establish link
rDoc.SetLink( pTabs[i], pModes[i], aDocName, aFltName, aOptions, pTabNames[i], nRefreshDelay );
else // remove link
rDoc.SetLink( pTabs[i], SC_LINK_NONE, aEmpty, aEmpty, aEmpty, aEmpty, 0 );
pDocShell->UpdateLinks();
}
void ScUndoRemoveLink::Undo()
{
DoChange( true );
}
void ScUndoRemoveLink::Redo()
{
DoChange( false );
}
void ScUndoRemoveLink::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoRemoveLink::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoShowHideTab::ScUndoShowHideTab( ScDocShell* pShell, const std::vector<SCTAB>& newUndoTabs, bool bNewShow ) :
ScSimpleUndo( pShell ),
undoTabs( newUndoTabs ),
bShow( bNewShow )
{
}
ScUndoShowHideTab::~ScUndoShowHideTab()
{
}
void ScUndoShowHideTab::DoChange( bool bShowP ) const
{
ScDocument& rDoc = pDocShell->GetDocument();
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
SCTAB nTab;
for(std::vector<SCTAB>::const_iterator itr = undoTabs.begin(), itrEnd = undoTabs.end(); itr != itrEnd; ++itr)
{
nTab = *itr;
rDoc.SetVisible( nTab, bShowP );
if (pViewShell)
pViewShell->SetTabNo(nTab,true);
}
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
pDocShell->SetDocumentModified();
}
void ScUndoShowHideTab::Undo()
{
DoChange(!bShow);
}
void ScUndoShowHideTab::Redo()
{
DoChange(bShow);
}
void ScUndoShowHideTab::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->GetViewData().GetDispatcher().
Execute( bShow ? FID_TABLE_SHOW : FID_TABLE_HIDE,
SfxCallMode::SLOT | SfxCallMode::RECORD);
}
bool ScUndoShowHideTab::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
OUString ScUndoShowHideTab::GetComment() const
{
sal_uInt16 nId;
if (undoTabs.size() > 1)
{
nId = bShow ? STR_UNDO_SHOWTABS : STR_UNDO_HIDETABS;
}
else
{
nId = bShow ? STR_UNDO_SHOWTAB : STR_UNDO_HIDETAB;
}
return ScGlobal::GetRscString( nId );
}
ScUndoDocProtect::ScUndoDocProtect(ScDocShell* pShell, unique_ptr<ScDocProtection> && pProtectSettings) :
ScSimpleUndo(pShell),
mpProtectSettings(std::move(pProtectSettings))
{
}
ScUndoDocProtect::~ScUndoDocProtect()
{
}
void ScUndoDocProtect::DoProtect(bool bProtect)
{
ScDocument& rDoc = pDocShell->GetDocument();
if (bProtect)
{
// set protection.
unique_ptr<ScDocProtection> pCopy(new ScDocProtection(*mpProtectSettings));
pCopy->setProtected(true);
rDoc.SetDocProtection(pCopy.get());
}
else
{
// remove protection.
rDoc.SetDocProtection(NULL);
}
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
{
pViewShell->UpdateLayerLocks();
pViewShell->UpdateInputHandler(true); // so that input can be immediately entered again
}
pDocShell->PostPaintGridAll();
}
void ScUndoDocProtect::Undo()
{
BeginUndo();
DoProtect(!mpProtectSettings->isProtected());
EndUndo();
}
void ScUndoDocProtect::Redo()
{
BeginRedo();
DoProtect(mpProtectSettings->isProtected());
EndRedo();
}
void ScUndoDocProtect::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoDocProtect::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false; // makes no sense
}
OUString ScUndoDocProtect::GetComment() const
{
sal_uInt16 nId = mpProtectSettings->isProtected() ? STR_UNDO_PROTECT_DOC : STR_UNDO_UNPROTECT_DOC;
return ScGlobal::GetRscString( nId );
}
ScUndoTabProtect::ScUndoTabProtect(ScDocShell* pShell, SCTAB nTab, unique_ptr<ScTableProtection> && pProtectSettings) :
ScSimpleUndo(pShell),
mnTab(nTab),
mpProtectSettings(std::move(pProtectSettings))
{
}
ScUndoTabProtect::~ScUndoTabProtect()
{
}
void ScUndoTabProtect::DoProtect(bool bProtect)
{
ScDocument& rDoc = pDocShell->GetDocument();
if (bProtect)
{
// set protection.
unique_ptr<ScTableProtection> pCopy(new ScTableProtection(*mpProtectSettings));
pCopy->setProtected(true);
rDoc.SetTabProtection(mnTab, pCopy.get());
}
else
{
// remove protection.
rDoc.SetTabProtection(mnTab, NULL);
}
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
{
pViewShell->UpdateLayerLocks();
pViewShell->UpdateInputHandler(true); // so that input can be immediately entered again
}
pDocShell->PostPaintGridAll();
}
void ScUndoTabProtect::Undo()
{
BeginUndo();
DoProtect(!mpProtectSettings->isProtected());
EndUndo();
}
void ScUndoTabProtect::Redo()
{
BeginRedo();
DoProtect(mpProtectSettings->isProtected());
EndRedo();
}
void ScUndoTabProtect::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoTabProtect::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false; // makes no sense
}
OUString ScUndoTabProtect::GetComment() const
{
sal_uInt16 nId = mpProtectSettings->isProtected() ? STR_UNDO_PROTECT_TAB : STR_UNDO_UNPROTECT_TAB;
return ScGlobal::GetRscString( nId );
}
ScUndoPrintRange::ScUndoPrintRange( ScDocShell* pShell, SCTAB nNewTab,
ScPrintRangeSaver* pOld, ScPrintRangeSaver* pNew ) :
ScSimpleUndo( pShell ),
nTab( nNewTab ),
pOldRanges( pOld ),
pNewRanges( pNew )
{
}
ScUndoPrintRange::~ScUndoPrintRange()
{
delete pOldRanges;
delete pNewRanges;
}
void ScUndoPrintRange::DoChange(bool bUndo)
{
ScDocument& rDoc = pDocShell->GetDocument();
if (bUndo)
rDoc.RestorePrintRanges( *pOldRanges );
else
rDoc.RestorePrintRanges( *pNewRanges );
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo( nTab );
ScPrintFunc( pDocShell, pDocShell->GetPrinter(), nTab ).UpdatePages();
pDocShell->PostPaint( ScRange(0,0,nTab,MAXCOL,MAXROW,nTab), PAINT_GRID );
}
void ScUndoPrintRange::Undo()
{
BeginUndo();
DoChange( true );
EndUndo();
}
void ScUndoPrintRange::Redo()
{
BeginRedo();
DoChange( false );
EndRedo();
}
void ScUndoPrintRange::Repeat(SfxRepeatTarget& /* rTarget */)
{
// makes no sense
}
bool ScUndoPrintRange::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false; // makes no sense
}
OUString ScUndoPrintRange::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_PRINTRANGES );
}
ScUndoScenarioFlags::ScUndoScenarioFlags( ScDocShell* pNewDocShell, SCTAB nT,
const OUString& rON, const OUString& rNN, const OUString& rOC, const OUString& rNC,
const Color& rOCol, const Color& rNCol, sal_uInt16 nOF, sal_uInt16 nNF ) :
ScSimpleUndo( pNewDocShell ),
nTab ( nT ),
aOldName ( rON ),
aNewName ( rNN ),
aOldComment ( rOC ),
aNewComment ( rNC ),
aOldColor ( rOCol ),
aNewColor ( rNCol ),
nOldFlags ( nOF ),
nNewFlags ( nNF )
{
}
ScUndoScenarioFlags::~ScUndoScenarioFlags()
{
}
OUString ScUndoScenarioFlags::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_EDITSCENARIO );
}
void ScUndoScenarioFlags::Undo()
{
ScDocument& rDoc = pDocShell->GetDocument();
rDoc.RenameTab( nTab, aOldName );
rDoc.SetScenarioData( nTab, aOldComment, aOldColor, nOldFlags );
pDocShell->PostPaintGridAll();
// The sheet name might be used in a formula ...
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->UpdateInputHandler();
if ( aOldName != aNewName )
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
}
void ScUndoScenarioFlags::Redo()
{
ScDocument& rDoc = pDocShell->GetDocument();
rDoc.RenameTab( nTab, aNewName );
rDoc.SetScenarioData( nTab, aNewComment, aNewColor, nNewFlags );
pDocShell->PostPaintGridAll();
// The sheet name might be used in a formula ...
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->UpdateInputHandler();
if ( aOldName != aNewName )
SfxGetpApp()->Broadcast( SfxSimpleHint( SC_HINT_TABLES_CHANGED ) );
}
void ScUndoScenarioFlags::Repeat(SfxRepeatTarget& /* rTarget */)
{
// Repeat makes no sense
}
bool ScUndoScenarioFlags::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
// (move to different file?)
ScUndoRenameObject::ScUndoRenameObject( ScDocShell* pNewDocShell, const OUString& rPN,
const OUString& rON, const OUString& rNN ) :
ScSimpleUndo( pNewDocShell ),
aPersistName( rPN ),
aOldName ( rON ),
aNewName ( rNN )
{
}
ScUndoRenameObject::~ScUndoRenameObject()
{
}
OUString ScUndoRenameObject::GetComment() const
{
// string resource shared with title for dialog
return OUString( ScResId(SCSTR_RENAMEOBJECT) );
}
SdrObject* ScUndoRenameObject::GetObject()
{
ScDocument& rDoc = pDocShell->GetDocument();
ScDrawLayer* pDrawLayer = rDoc.GetDrawLayer();
if ( pDrawLayer )
{
sal_uInt16 nCount = pDrawLayer->GetPageCount();
for (sal_uInt16 nTab=0; nTab<nCount; nTab++)
{
SdrPage* pPage = pDrawLayer->GetPage(nTab);
assert(pPage && "Page ?");
SdrObjListIter aIter( *pPage, IM_DEEPNOGROUPS );
SdrObject* pObject = aIter.Next();
while (pObject)
{
if ( pObject->GetObjIdentifier() == OBJ_OLE2 &&
static_cast<SdrOle2Obj*>(pObject)->GetPersistName() == aPersistName )
{
return pObject;
}
pObject = aIter.Next();
}
}
}
OSL_FAIL("Object not found");
return NULL;
}
void ScUndoRenameObject::Undo()
{
BeginUndo();
SdrObject* pObj = GetObject();
if ( pObj )
pObj->SetName( aOldName );
EndUndo();
}
void ScUndoRenameObject::Redo()
{
BeginRedo();
SdrObject* pObj = GetObject();
if ( pObj )
pObj->SetName( aNewName );
EndRedo();
}
void ScUndoRenameObject::Repeat(SfxRepeatTarget& /* rTarget */)
{
}
bool ScUndoRenameObject::CanRepeat(SfxRepeatTarget& /* rTarget */) const
{
return false;
}
ScUndoLayoutRTL::ScUndoLayoutRTL( ScDocShell* pShell, SCTAB nNewTab, bool bNewRTL ) :
ScSimpleUndo( pShell ),
nTab( nNewTab ),
bRTL( bNewRTL )
{
}
ScUndoLayoutRTL::~ScUndoLayoutRTL()
{
}
void ScUndoLayoutRTL::DoChange( bool bNew )
{
pDocShell->SetInUndo( true );
ScDocument& rDoc = pDocShell->GetDocument();
rDoc.SetLayoutRTL( nTab, bNew );
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)
pViewShell->SetTabNo(nTab,true);
pDocShell->SetDocumentModified();
pDocShell->SetInUndo( false );
}
void ScUndoLayoutRTL::Undo()
{
DoChange(!bRTL);
}
void ScUndoLayoutRTL::Redo()
{
DoChange(bRTL);
}
void ScUndoLayoutRTL::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
static_cast<ScTabViewTarget&>(rTarget).GetViewShell()->GetViewData().GetDispatcher().
Execute( FID_TAB_RTL, SfxCallMode::SLOT | SfxCallMode::RECORD);
}
bool ScUndoLayoutRTL::CanRepeat(SfxRepeatTarget& rTarget) const
{
return rTarget.ISA(ScTabViewTarget);
}
OUString ScUndoLayoutRTL::GetComment() const
{
return ScGlobal::GetRscString( STR_UNDO_TAB_RTL );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */