/* -*- 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 <config_features.h>
#include <com/sun/star/i18n/TextConversionOption.hpp>
#include <com/sun/star/sheet/DataPilotFieldFilter.hpp>
#include <scitems.hxx>
#include <sfx2/viewfrm.hxx>
#include <basic/sberrors.hxx>
#include <comphelper/lok.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/propertysequence.hxx>
#include <svl/stritem.hxx>
#include <svl/numformat.hxx>
#include <svl/zforlist.hxx>
#include <svl/zformat.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/request.hxx>
#include <vcl/commandinfoprovider.hxx>
#include <vcl/unohelp2.hxx>
#include <vcl/svapp.hxx>
#include <vcl/weld.hxx>
#include <svx/svxdlg.hxx>
#include <sot/formats.hxx>
#include <svx/postattr.hxx>
#include <editeng/fontitem.hxx>
#include <svx/clipfmtitem.hxx>
#include <svx/hlnkitem.hxx>
#include <basic/sbxcore.hxx>
#include <editeng/editview.hxx>
#include <editeng/urlfieldhelper.hxx>
#include <svtools/cliplistener.hxx>
#include <cellsh.hxx>
#include <ftools.hxx>
#include <sc.hrc>
#include <document.hxx>
#include <patattr.hxx>
#include <scmod.hxx>
#include <tabvwsh.hxx>
#include <uiitems.hxx>
#include <reffact.hxx>
#include <inputhdl.hxx>
#include <transobj.hxx>
#include <drwtrans.hxx>
#include <docfunc.hxx>
#include <editable.hxx>
#include <dpobject.hxx>
#include <dpsave.hxx>
#include <spellparam.hxx>
#include <postit.hxx>
#include <dpsdbtab.hxx>
#include <dpshttab.hxx>
#include <dbdata.hxx>
#include <docsh.hxx>
#include <cliputil.hxx>
#include <markdata.hxx>
#include <colorscale.hxx>
#include <condformatdlg.hxx>
#include <attrib.hxx>
#include <condformatdlgdata.hxx>
#include <impex.hxx>
#include <globstr.hrc>
#include <scresid.hxx>
#include <scui_def.hxx>
#include <scabstdlg.hxx>
#include <tokenstringcontext.hxx>
#include <cellvalue.hxx>
#include <tokenarray.hxx>
#include <formulacell.hxx>
#include <gridwin.hxx>
#include <searchresults.hxx>
#include <Sparkline.hxx>
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <o3tl/string_view.hxx>
#include <memory>
using namespace ::com::sun::star;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
namespace {
InsertDeleteFlags FlagsFromString(
const OUString& rFlagsStr,
InsertDeleteFlags nFlagsMask = InsertDeleteFlags::CONTENTS | InsertDeleteFlags::ATTRI
B)
{
OUString aFlagsStr = rFlagsStr.toAsciiUpperCase();
InsertDeleteFlags nFlags = InsertDeleteFlags::NONE;
for (sal_Int32 i=0 ; i < aFlagsStr.getLength(); ++i)
{
switch (aFlagsStr[i])
{
case 'A' : return InsertDeleteFlags::ALL;
case 'S' : nFlags |= InsertDeleteFlags::STRING & nFlagsMask; break ;
case 'V' : nFlags |= InsertDeleteFlags::VALUE & nFlagsMask; break ;
case 'D' : nFlags |= InsertDeleteFlags::DATETIME & nFlagsMask; break ;
case 'F' : nFlags |= InsertDeleteFlags::FORMULA & nFlagsMask; break ;
case 'N' : nFlags |= InsertDeleteFlags::NOTE & nFlagsMask; break ;
case 'T' : nFlags |= InsertDeleteFlags::ATTRIB & nFlagsMask; break ;
case 'O' : nFlags |= InsertDeleteFlags::OBJECTS & nFlagsMask; break ;
}
}
return nFlags;
}
OUString FlagsToString( InsertDeleteFlags nFlags,
InsertDeleteFlags nFlagsMask = InsertDeleteFlags::CONTENTS | InsertDeleteFlags::ATTRIB )
{
OUString aFlagsStr;
if ( nFlags == InsertDeleteFlags::ALL )
{
aFlagsStr = "A" ;
}
else
{
nFlags &= nFlagsMask;
if ( nFlags & InsertDeleteFlags::STRING ) aFlagsStr += "S" ;
if ( nFlags & InsertDeleteFlags::VALUE ) aFlagsStr += "V" ;
if ( nFlags & InsertDeleteFlags::DATETIME ) aFlagsStr += "D" ;
if ( nFlags & InsertDeleteFlags::FORMULA ) aFlagsStr += "F" ;
if ( nFlags & InsertDeleteFlags::NOTE ) aFlagsStr += "N" ;
if ( nFlags & InsertDeleteFlags::ATTRIB ) aFlagsStr += "T" ;
if ( nFlags & InsertDeleteFlags::OBJECTS ) aFlagsStr += "O" ;
}
return aFlagsStr;
}
void SetTabNoAndCursor( const ScViewData& rViewData, std::u16string_view rCellId )
{
ScTabViewShell* pTabViewShell = rViewData.GetViewShell();
assert(pTabViewShell);
const ScDocument& rDoc = rViewData.GetDocShell().GetDocument();
std::vector<sc::NoteEntry> aNotes;
rDoc.GetAllNoteEntries(aNotes);
sal_uInt32 nId = o3tl::toUInt32(rCellId);
auto lComp = [nId](const sc::NoteEntry& rNote) { return rNote.mpNote->GetId() == nId; };
const auto aFoundNoteIt = std::find_if(aNotes.begin(), aNotes.end(), lComp);
if (aFoundNoteIt != aNotes.end())
{
ScAddress aFoundPos = aFoundNoteIt->maPos;
pTabViewShell->SetTabNo(aFoundPos.Tab());
pTabViewShell->SetCursor(aFoundPos.Col(), aFoundPos.Row());
}
}
void HandleConditionalFormat(sal_uInt32 nIndex, bool bCondFormatDlg, bool bContainsCondFormat,
const sal_uInt16 nSlot, ScTabViewShell* pTabViewShell)
{
condformat::dialog::ScCondFormatDialogType eType = condformat::dialog::NONE;
switch (nSlot)
{
case SID_OPENDLG_CONDFRMT:
case SID_OPENDLG_CURRENTCONDFRMT:
eType = condformat::dialog::CONDITION;
break ;
case SID_OPENDLG_COLORSCALE:
eType = condformat::dialog::COLORSCALE;
break ;
case SID_OPENDLG_DATABAR:
eType = condformat::dialog::DATABAR;
break ;
case SID_OPENDLG_ICONSET:
eType = condformat::dialog::ICONSET;
break ;
case SID_OPENDLG_CONDDATE:
eType = condformat::dialog::DATE;
break ;
default :
assert(false );
break ;
}
if (bCondFormatDlg || !bContainsCondFormat)
{
// Put the xml string parameter to initialize the
// Conditional Format Dialog. Set the initial DialogData.
std::shared_ptr<ScCondFormatDlgData> pDlgData(std::make_shared<ScCondFormatDlgData>(nullptr, nIndex, false ));
pDlgData->SetDialogType(eType);
pTabViewShell->setScCondFormatDlgData(pDlgData);
sal_uInt16 nId = ScCondFormatDlgWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow(nId);
ScModule::get()->SetRefDialog(nId, pWnd == nullptr);
}
}
void InsertCells(ScTabViewShell* pTabViewShell, SfxRequest &rReq, InsCellCmd eCmd, size_t nCount = 0)
{
if (eCmd!=INS_NONE)
{
pTabViewShell->InsertCells( eCmd, true , false , nCount );
if ( ! rReq.IsAPI() )
{
OUString aParam;
switch ( eCmd )
{
case INS_CELLSDOWN: aParam = "V" ; break ;
case INS_CELLSRIGHT: aParam = ">" ; break ;
case INS_INSROWS_BEFORE: aParam = "R" ; break ;
case INS_INSCOLS_BEFORE: aParam = "C" ; break ;
default :
{
// added to avoid warnings
}
}
rReq.AppendItem( SfxStringItem( FID_INS_CELL, aParam ) );
rReq.Done();
}
}
}
void DeleteCells(ScTabViewShell* pTabViewShell, SfxRequest &rReq, DelCellCmd eCmd)
{
if (eCmd != DelCellCmd::NONE )
{
pTabViewShell->DeleteCells( eCmd );
if ( ! rReq.IsAPI() )
{
OUString aParam;
switch ( eCmd )
{
case DelCellCmd::CellsUp: aParam = "U" ; break ;
case DelCellCmd::CellsLeft: aParam = "L" ; break ;
case DelCellCmd::Rows: aParam = "R" ; break ;
case DelCellCmd::Cols: aParam = "C" ; break ;
default :
{
// added to avoid warnings
}
}
rReq.AppendItem( SfxStringItem( FID_DELETE_CELL, aParam ) );
rReq.Done();
}
}
}
}
void ScCellShell::ExecuteEdit( SfxRequest& rReq )
{
ScModule* pScMod = ScModule::get();
ScTabViewShell* pTabViewShell = GetViewData().GetViewShell();
SfxBindings& rBindings = pTabViewShell->GetViewFrame().GetBindings();
const SfxItemSet* pReqArgs = rReq.GetArgs();
sal_uInt16 nSlot = rReq.GetSlot();
pTabViewShell->HideListBox(); // Autofilter-DropDown-Listbox
// finish input
if ( GetViewData().HasEditView( GetViewData().GetActivePart() ) )
{
switch ( nSlot )
{
case FID_DEFINE_NAME:
case FID_ADD_NAME:
case FID_USE_NAME:
case FID_INSERT_NAME:
case SID_SPELL_DIALOG:
case SID_HANGUL_HANJA_CONVERSION:
case SID_OPENDLG_CONDFRMT:
case SID_OPENDLG_CURRENTCONDFRMT:
case SID_OPENDLG_COLORSCALE:
case SID_OPENDLG_DATABAR:
pScMod->InputEnterHandler();
pTabViewShell->UpdateInputHandler();
break ;
default :
break ;
}
}
switch ( nSlot )
{
// insert / delete cells / rows / columns
case FID_INS_ROW:
case FID_INS_ROWS_BEFORE:
pTabViewShell->InsertCells(INS_INSROWS_BEFORE);
rReq.Done();
break ;
case FID_INS_COLUMN:
case FID_INS_COLUMNS_BEFORE:
pTabViewShell->InsertCells(INS_INSCOLS_BEFORE);
rReq.Done();
break ;
case FID_INS_ROWS_AFTER:
pTabViewShell->InsertCells(INS_INSROWS_AFTER);
rReq.Done();
break ;
case FID_INS_COLUMNS_AFTER:
pTabViewShell->InsertCells(INS_INSCOLS_AFTER);
rReq.Done();
break ;
case FID_INS_CELLSDOWN:
pTabViewShell->InsertCells(INS_CELLSDOWN);
rReq.Done();
break ;
case FID_INS_CELLSRIGHT:
pTabViewShell->InsertCells(INS_CELLSRIGHT);
rReq.Done();
break ;
case SID_DEL_ROWS:
pTabViewShell->DeleteCells( DelCellCmd::Rows );
rReq.Done();
break ;
case SID_DEL_COLS:
pTabViewShell->DeleteCells( DelCellCmd::Cols );
rReq.Done();
break ;
case FID_INS_CELL:
{
InsCellCmd eCmd=INS_NONE;
if ( pReqArgs )
{
const SfxPoolItem* pItem;
OUString aFlags;
if ( pReqArgs->HasItem( FID_INS_CELL, &pItem ) )
aFlags = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( !aFlags.isEmpty() )
{
switch ( aFlags[0] )
{
case 'V' : eCmd = INS_CELLSDOWN ;break ;
case '>' : eCmd = INS_CELLSRIGHT ;break ;
case 'R' : eCmd = INS_INSROWS_BEFORE ;break ;
case 'C' : eCmd = INS_INSCOLS_BEFORE ;break ;
}
}
}
else
{
if ( GetViewData().SimpleColMarked() )
eCmd = INS_INSCOLS_BEFORE;
else if ( GetViewData().SimpleRowMarked() )
eCmd = INS_INSROWS_BEFORE;
else
{
ScDocument& rDoc = GetViewData().GetDocument();
bool bTheFlag=(rDoc.GetChangeTrack()!=nullptr);
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
VclPtr<AbstractScInsertCellDlg> pDlg(pFact->CreateScInsertCellDlg(pTabViewShell->GetFrameWeld(), GetViewData(), bTheFlag));
pDlg->StartExecuteAsync([pDlg, pTabViewShell](sal_Int32 nResult){
if (nResult == RET_OK)
{
SfxRequest aRequest(pTabViewShell->GetViewFrame(), FID_INS_CELL);
InsCellCmd eTmpCmd = pDlg->GetInsCellCmd();
size_t nInsCount = pDlg->GetCount();
InsertCells(pTabViewShell, aRequest, eTmpCmd, nInsCount);
}
pDlg->disposeOnce();
});
break ;
}
}
InsertCells(pTabViewShell, rReq, eCmd);
}
break ;
case FID_DELETE_CELL:
{
DelCellCmd eCmd = DelCellCmd::NONE;
if ( pReqArgs )
{
const SfxPoolItem* pItem;
OUString aFlags;
if ( pReqArgs->HasItem( FID_DELETE_CELL, &pItem ) )
aFlags = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( !aFlags.isEmpty() )
{
switch ( aFlags[0] )
{
case 'U' : eCmd = DelCellCmd::CellsUp ;break ;
case 'L' : eCmd = DelCellCmd::CellsLeft ;break ;
case 'R' : eCmd = DelCellCmd::Rows ;break ;
case 'C' : eCmd = DelCellCmd::Cols ;break ;
}
}
}
else
{
if ( GetViewData().SimpleColMarked() )
eCmd = DelCellCmd::Cols;
else if ( GetViewData().SimpleRowMarked() )
eCmd = DelCellCmd::Rows;
else
{
ScRange aRange;
ScDocument& rDoc = GetViewData().GetDocument();
bool bTheFlag=GetViewData().IsMultiMarked() ||
(GetViewData().GetSimpleArea(aRange) == SC_MARK_SIMPLE_FILTERED) ||
(rDoc.GetChangeTrack() != nullptr);
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
VclPtr<AbstractScDeleteCellDlg> pDlg(pFact->CreateScDeleteCellDlg( pTabViewShell->GetFrameWeld(), bTheFlag ));
pDlg->StartExecuteAsync([pDlg, pTabViewShell](sal_Int32 nResult){
if (nResult == RET_OK)
{
SfxRequest aRequest(pTabViewShell->GetViewFrame(), FID_INS_CELL);
DeleteCells(pTabViewShell, aRequest, pDlg->GetDelCellCmd());
}
pDlg->disposeOnce();
});
}
}
DeleteCells(pTabViewShell, rReq, eCmd);
}
break ;
// delete contents from cells
case SID_DELETE_CONTENTS:
pTabViewShell->DeleteContents( InsertDeleteFlags::CONTENTS );
rReq.Done();
break ;
case SID_DELETE:
{
InsertDeleteFlags nFlags = InsertDeleteFlags::NONE;
if ( pReqArgs!=nullptr && pTabViewShell->SelectionEditable() )
{
const SfxPoolItem* pItem;
OUString aFlags('A' );
if ( pReqArgs->HasItem( SID_DELETE, &pItem ) )
aFlags = static_cast <const SfxStringItem*>(pItem)->GetValue();
nFlags |= FlagsFromString(aFlags, InsertDeleteFlags::ALL);
}
else
{
ScEditableTester aTester( pTabViewShell );
if (aTester.IsEditable())
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScDeleteContentsDlg> pDlg(pFact->CreateScDeleteContentsDlg(pTabViewShell->GetFrameWeld()));
ScDocument& rDoc = GetViewData().GetDocument();
SCTAB nTab = GetViewData().GetTabNo();
if ( rDoc.IsTabProtected(nTab) )
pDlg->DisableObjects();
if (pDlg->Execute() == RET_OK)
{
nFlags = pDlg->GetDelContentsCmdBits();
}
}
else
pTabViewShell->ErrorMessage(aTester.GetMessageId());
}
if ( nFlags != InsertDeleteFlags::NONE )
{
pTabViewShell->DeleteContents( nFlags );
if ( ! rReq.IsAPI() )
{
OUString aFlags = FlagsToString( nFlags, InsertDeleteFlags::ALL );
rReq.AppendItem( SfxStringItem( SID_DELETE, aFlags ) );
rReq.Done();
}
}
}
break ;
// fill...
case FID_FILL_TO_BOTTOM:
pTabViewShell->FillSimple( FILL_TO_BOTTOM );
rReq.Done();
break ;
case FID_FILL_TO_RIGHT:
pTabViewShell->FillSimple( FILL_TO_RIGHT );
rReq.Done();
break ;
case FID_FILL_TO_TOP:
pTabViewShell->FillSimple( FILL_TO_TOP );
rReq.Done();
break ;
case FID_FILL_TO_LEFT:
pTabViewShell->FillSimple( FILL_TO_LEFT );
rReq.Done();
break ;
case FID_FILL_TAB:
{
InsertDeleteFlags nFlags = InsertDeleteFlags::NONE;
ScPasteFunc nFunction = ScPasteFunc::NONE;
bool bSkipEmpty = false ;
bool bAsLink = false ;
if ( pReqArgs!=nullptr && pTabViewShell->SelectionEditable() )
{
const SfxPoolItem* pItem;
OUString aFlags('A' );
if ( pReqArgs->HasItem( FID_FILL_TAB, &pItem ) )
aFlags = static_cast <const SfxStringItem*>(pItem)->GetValue();
nFlags |= FlagsFromString(aFlags);
}
else
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScInsertContentsDlg> pDlg(pFact->CreateScInsertContentsDlg(pTabViewShell->GetFrameWeld(),
new OUString(ScResId(STR_FILL_TAB))));
pDlg->SetFillMode(true );
if (pDlg->Execute() == RET_OK)
{
nFlags = pDlg->GetInsContentsCmdBits();
nFunction = pDlg->GetFormulaCmdBits();
bSkipEmpty = pDlg->IsSkipEmptyCells();
bAsLink = pDlg->IsLink();
// there is no MoveMode with fill tabs
}
}
if ( nFlags != InsertDeleteFlags::NONE )
{
pTabViewShell->FillTab( nFlags, nFunction, bSkipEmpty, bAsLink );
if ( ! rReq.IsAPI() )
{
OUString aFlags = FlagsToString( nFlags );
rReq.AppendItem( SfxStringItem( FID_FILL_TAB, aFlags ) );
rReq.Done();
}
}
}
break ;
case FID_FILL_SERIES:
{
if (GetViewData().SelectionForbidsCellFill())
// Slot should be already disabled, but in case it wasn't
// don't even attempt to do the evaluation and popup a
// dialog.
break ;
SCCOL nStartCol;
SCROW nStartRow;
SCTAB nStartTab;
SCCOL nEndCol;
SCROW nEndRow;
SCTAB nEndTab;
sal_uInt16 nPossDir = FDS_OPT_NONE;
FillDir eFillDir = FILL_TO_BOTTOM;
FillCmd eFillCmd = FILL_LINEAR;
FillDateCmd eFillDateCmd = FILL_DAY;
double fStartVal = MAXDOUBLE;
double fIncVal = 1;
double fMaxVal = MAXDOUBLE;
bool bDoIt = false ;
GetViewData().GetSimpleArea( nStartCol, nStartRow, nStartTab,
nEndCol, nEndRow, nEndTab );
if ( nStartCol!=nEndCol )
{
nPossDir |= FDS_OPT_HORZ;
eFillDir=FILL_TO_RIGHT;
}
if ( nStartRow!=nEndRow )
{
nPossDir |= FDS_OPT_VERT;
eFillDir=FILL_TO_BOTTOM;
}
ScDocument& rDoc = GetViewData().GetDocument();
SvNumberFormatter* pFormatter = rDoc.GetFormatTable();
if ( pReqArgs )
{
const SfxPoolItem* pItem;
OUString aFillDir, aFillCmd, aFillDateCmd;
OUString aFillStep, aFillStart, aFillMax;
sal_uInt32 nKey;
double fTmpVal;
if ( pReqArgs->HasItem( FID_FILL_SERIES, &pItem ) )
aFillDir = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( pReqArgs->HasItem( FN_PARAM_1, &pItem ) )
aFillCmd = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( pReqArgs->HasItem( FN_PARAM_2, &pItem ) )
aFillDateCmd = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( pReqArgs->HasItem( FN_PARAM_3, &pItem ) )
aFillStep = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( pReqArgs->HasItem( FN_PARAM_4, &pItem ) )
aFillStart = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( pReqArgs->HasItem( FN_PARAM_5, &pItem ) )
aFillMax = static_cast <const SfxStringItem*>(pItem)->GetValue();
if ( !aFillDir.isEmpty() )
switch ( aFillDir[0] )
{
case 'B' : case 'b' : eFillDir=FILL_TO_BOTTOM; break ;
case 'R' : case 'r' : eFillDir=FILL_TO_RIGHT; break ;
case 'T' : case 't' : eFillDir=FILL_TO_TOP; break ;
case 'L' : case 'l' : eFillDir=FILL_TO_LEFT; break ;
}
if ( !aFillCmd.isEmpty() )
switch ( aFillCmd[0] )
{
case 'S' : case 's' : eFillCmd=FILL_SIMPLE; break ;
case 'L' : case 'l' : eFillCmd=FILL_LINEAR; break ;
case 'G' : case 'g' : eFillCmd=FILL_GROWTH; break ;
case 'D' : case 'd' : eFillCmd=FILL_DATE; break ;
case 'A' : case 'a' : eFillCmd=FILL_AUTO; break ;
}
if ( !aFillDateCmd.isEmpty() )
switch ( aFillDateCmd[0] )
{
case 'D' : case 'd' : eFillDateCmd=FILL_DAY; break ;
case 'W' : case 'w' : eFillDateCmd=FILL_WEEKDAY; break ;
case 'M' : case 'm' : eFillDateCmd=FILL_MONTH; break ;
case 'Y' : case 'y' : eFillDateCmd=FILL_YEAR; break ;
}
nKey = 0;
if ( pFormatter->IsNumberFormat( aFillStart, nKey, fTmpVal ))
fStartVal = fTmpVal;
nKey = 0;
if ( pFormatter->IsNumberFormat( aFillStep, nKey, fTmpVal ))
fIncVal = fTmpVal;
nKey = 0;
if ( pFormatter->IsNumberFormat( aFillMax, nKey, fTmpVal ))
fMaxVal = fTmpVal;
bDoIt = true ;
}
else // (pReqArgs == nullptr) => raise Dialog
{
sal_uInt32 nPrivFormat = rDoc.GetNumberFormat( nStartCol, nStartRow, nStartTab );
CellType eCellType = rDoc.GetCellType( nStartCol, nStartRow, nStartTab );
const SvNumberformat* pPrivEntry = pFormatter->GetEntry( nPrivFormat );
const SCSIZE nSelectHeight = nEndRow - nStartRow + 1;
const SCSIZE nSelectWidth = nEndCol - nStartCol + 1;
if (!pPrivEntry)
{
OSL_FAIL("Numberformat not found !!!" );
}
else
{
SvNumFormatType nPrivType = pPrivEntry->GetType();
if (nPrivType & SvNumFormatType::DATE)
{
eFillCmd=FILL_DATE;
}
else if (eCellType==CELLTYPE_STRING)
{
eFillCmd=FILL_AUTO;
}
}
OUString aStartStr;
// suggest default Startvalue only, when just 1 row or column
if ( nStartCol == nEndCol || nStartRow == nEndRow )
{
double fInputEndVal = 0.0;
OUString aEndStr;
const bool forceSystemLocale = true ;
aStartStr = rDoc.GetInputString( nStartCol, nStartRow, nStartTab, forceSystemLocale );
fStartVal = rDoc.GetValue( nStartCol, nStartRow, nStartTab );
if (eFillDir==FILL_TO_BOTTOM && nStartRow < nEndRow )
{
aEndStr = rDoc.GetInputString( nStartCol, nStartRow+1, nStartTab, forceSystemLocale );
if (!aEndStr.isEmpty())
{
fInputEndVal = rDoc.GetValue( nStartCol, nStartRow+1, nStartTab );
fIncVal=fInputEndVal-fStartVal;
}
}
else
{
if (nStartCol < nEndCol)
{
aEndStr = rDoc.GetInputString( nStartCol+1, nStartRow, nStartTab, forceSystemLocale );
if (!aEndStr.isEmpty())
{
fInputEndVal = rDoc.GetValue( nStartCol+1, nStartRow, nStartTab );
fIncVal=fInputEndVal-fStartVal;
}
}
}
if (eFillCmd==FILL_DATE)
{
const Date& rNullDate = rDoc.GetFormatTable()->GetNullDate();
Date aStartDate = rNullDate;
aStartDate.AddDays(fStartVal);
Date aEndDate = rNullDate;
aEndDate.AddDays(fInputEndVal);
double fTempDate=0;
if (aStartDate.GetYear()!=aEndDate.GetYear())
{
eFillDateCmd = FILL_YEAR;
fTempDate=aEndDate.GetYear()-aStartDate.GetYear();
}
if (aStartDate.GetMonth()!=aEndDate.GetMonth())
{
eFillDateCmd = FILL_MONTH;
fTempDate=fTempDate*12+aEndDate.GetMonth()-aStartDate.GetMonth();
}
if (aStartDate.GetDay()==aEndDate.GetDay())
{
fIncVal=fTempDate;
}
}
}
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScFillSeriesDlg> pDlg(pFact->CreateScFillSeriesDlg( pTabViewShell->GetFrameWeld(),
rDoc,
eFillDir, eFillCmd, eFillDateCmd,
aStartStr, fIncVal, fMaxVal,
nSelectHeight, nSelectWidth, nPossDir));
if ( nStartCol != nEndCol && nStartRow != nEndRow )
{
pDlg->SetEdStartValEnabled(false );
}
if ( pDlg->Execute() == RET_OK )
{
eFillDir = pDlg->GetFillDir();
eFillCmd = pDlg->GetFillCmd();
eFillDateCmd = pDlg->GetFillDateCmd();
if (eFillCmd==FILL_AUTO)
{
OUString aStr = pDlg->GetStartStr();
if (!aStr.isEmpty())
pTabViewShell->EnterData( nStartCol, nStartRow, nStartTab, aStr );
}
fStartVal = pDlg->GetStart();
fIncVal = pDlg->GetStep();
fMaxVal = pDlg->GetMax();
bDoIt = true ;
}
}
if ( bDoIt )
{
//nScFillModeMouseModifier = 0; // no Ctrl/Copy
pTabViewShell->FillSeries( eFillDir, eFillCmd, eFillDateCmd, fStartVal, fIncVal, fMaxVal );
if ( ! rReq.IsAPI() )
{
OUString aPara;
const Color* pColor = nullptr;
switch ( eFillDir )
{
case FILL_TO_BOTTOM: aPara = "B" ; break ;
case FILL_TO_RIGHT: aPara = "R" ; break ;
case FILL_TO_TOP: aPara = "T" ; break ;
case FILL_TO_LEFT: aPara = "L" ; break ;
default : break ;
}
rReq.AppendItem( SfxStringItem( FID_FILL_SERIES, aPara ) );
switch ( eFillCmd )
{
case FILL_SIMPLE: aPara = "S" ; break ;
case FILL_LINEAR: aPara = "L" ; break ;
case FILL_GROWTH: aPara = "G" ; break ;
case FILL_DATE: aPara = "D" ; break ;
case FILL_AUTO: aPara = "A" ; break ;
default : break ;
}
rReq.AppendItem( SfxStringItem( FN_PARAM_1, aPara ) );
switch ( eFillDateCmd )
{
case FILL_DAY: aPara = "D" ; break ;
case FILL_WEEKDAY: aPara = "W" ; break ;
case FILL_MONTH: aPara = "M" ; break ;
case FILL_YEAR: aPara = "Y" ; break ;
default : break ;
}
rReq.AppendItem( SfxStringItem( FN_PARAM_2, aPara ) );
sal_uInt32 nFormatKey = pFormatter->GetStandardFormat(SvNumFormatType::NUMBER,
ScGlobal::eLnge );
pFormatter->GetOutputString( fIncVal, nFormatKey, aPara, &pColor );
rReq.AppendItem( SfxStringItem( FN_PARAM_3, aPara ) );
pFormatter->GetOutputString( fStartVal, nFormatKey, aPara, &pColor );
rReq.AppendItem( SfxStringItem( FN_PARAM_4, aPara ) );
pFormatter->GetOutputString( fMaxVal, nFormatKey, aPara, &pColor );
rReq.AppendItem( SfxStringItem( FN_PARAM_5, aPara ) );
rReq.Done();
}
}
}
break ;
case FID_FILL_AUTO:
{
SCCOL nStartCol;
SCROW nStartRow;
SCCOL nEndCol;
SCROW nEndRow;
GetViewData().GetFillData( nStartCol, nStartRow, nEndCol, nEndRow );
SCCOL nFillCol = GetViewData().GetRefEndX();
SCROW nFillRow = GetViewData().GetRefEndY();
ScDocument& rDoc = GetViewData().GetDocument();
sal_uInt16 nOrigScFillModeMouseModifier = nScFillModeMouseModifier;
bool bUseSelection = true ;
if ( pReqArgs != nullptr )
{
if ( const SfxStringItem* pItem = pReqArgs->GetItemIfSet( FID_FILL_AUTO ) )
{
ScAddress aScAddress;
OUString aArg = pItem->GetValue();
if ( aScAddress.Parse( aArg, rDoc, rDoc.GetAddressConvention() ) & ScRefFlags::VALID )
{
nFillRow = aScAddress.Row();
nFillCol = aScAddress.Col();
}
SCTAB nStartTab, nEndTab;
GetViewData().GetSimpleArea(nStartCol, nStartRow, nStartTab, nEndCol,
nEndRow, nEndTab);
bUseSelection = false ;
}
const SfxPoolItem* pItem;
if (pReqArgs->HasItem(FN_PARAM_1, &pItem))
{
/*
nScFillModeMouseModifier controls if we "Copy cells" or "Fill series"
- if nScFillModeMouseModifier is set to "KEY_MOD1", use "Copy cells"
- otherwise use "Fill series"
This is also the same with auto fill by dragging mouse
- dragging with Ctrl key will set nScFillModeMouseModifier to KEY_MOD1, use "Copy cells"
- only dragging will use "Fill series" (no Ctrl key)
*/
const bool bCopyCells = static_cast <const SfxBoolItem*>(pItem)->GetValue();
nScFillModeMouseModifier &= ~KEY_MOD1; // turn off, reset to 0
if (bCopyCells)
nScFillModeMouseModifier |= KEY_MOD1; // turn on
}
}
if (bUseSelection) // call via mouse or if FN_PARAM_1 exists
{
// not in a merged cell
if ( nStartCol == nEndCol && nStartRow == nEndRow )
{
SCCOL nMergeCol = nStartCol;
SCROW nMergeRow = nStartRow;
if ( GetViewData().GetDocument().ExtendMerge(
nStartCol, nStartRow, nMergeCol, nMergeRow,
GetViewData().GetTabNo() ) )
{
if ( nFillCol >= nStartCol && nFillCol <= nMergeCol && nFillRow == nStartRow )
nFillCol = nStartCol;
if ( nFillRow >= nStartRow && nFillRow <= nMergeRow && nFillCol == nStartCol )
nFillRow = nStartRow;
}
}
}
if ( nFillCol != nEndCol || nFillRow != nEndRow )
{
if ( nFillCol==nEndCol || nFillRow==nEndRow )
{
FillDir eDir = FILL_TO_BOTTOM;
SCCOLROW nCount = 0;
if ( nFillCol==nEndCol )
{
if ( nFillRow > nEndRow )
{
eDir = FILL_TO_BOTTOM;
nCount = nFillRow - nEndRow;
}
else if ( nFillRow < nStartRow )
{
eDir = FILL_TO_TOP;
nCount = nStartRow - nFillRow;
}
}
else
{
if ( nFillCol > nEndCol )
{
eDir = FILL_TO_RIGHT;
nCount = nFillCol - nEndCol;
}
else if ( nFillCol < nStartCol )
{
eDir = FILL_TO_LEFT;
nCount = nStartCol - nFillCol;
}
}
if ( nCount != 0)
{
pTabViewShell->FillAuto( eDir, nStartCol, nStartRow, nEndCol, nEndRow, nCount );
if ( ! rReq.IsAPI() )
{
ScAddress aAdr( nFillCol, nFillRow, 0 );
OUString aAdrStr(aAdr.Format(ScRefFlags::RANGE_ABS, &rDoc, rDoc.GetAddressConvention()));
rReq.AppendItem( SfxStringItem( FID_FILL_AUTO, aAdrStr ) );
rReq.Done();
}
}
}
else
{
OSL_FAIL( "Direction not unique for autofill" );
}
}
// reset nScFillModeMouseModifier to its original state
// otherwise, auto fill by dragging will not work as expected
nScFillModeMouseModifier = nOrigScFillModeMouseModifier;
}
break ;
case FID_FILL_SINGLE_EDIT:
ExecuteFillSingleEdit();
break ;
case SID_RANDOM_NUMBER_GENERATOR_DIALOG:
{
sal_uInt16 nId = ScRandomNumberGeneratorDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_SAMPLING_DIALOG:
{
sal_uInt16 nId = ScSamplingDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_DESCRIPTIVE_STATISTICS_DIALOG:
{
sal_uInt16 nId = ScDescriptiveStatisticsDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_ANALYSIS_OF_VARIANCE_DIALOG:
{
sal_uInt16 nId = ScAnalysisOfVarianceDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_CORRELATION_DIALOG:
{
sal_uInt16 nId = ScCorrelationDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_COVARIANCE_DIALOG:
{
sal_uInt16 nId = ScCovarianceDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_EXPONENTIAL_SMOOTHING_DIALOG:
{
sal_uInt16 nId = ScExponentialSmoothingDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_MOVING_AVERAGE_DIALOG:
{
sal_uInt16 nId = ScMovingAverageDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_REGRESSION_DIALOG:
{
sal_uInt16 nId = ScRegressionDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_TTEST_DIALOG:
{
sal_uInt16 nId = ScTTestDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_FTEST_DIALOG:
{
sal_uInt16 nId = ScFTestDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_ZTEST_DIALOG:
{
sal_uInt16 nId = ScZTestDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_CHI_SQUARE_TEST_DIALOG:
{
sal_uInt16 nId = ScChiSquareTestDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_FOURIER_ANALYSIS_DIALOG:
{
sal_uInt16 nId = ScFourierAnalysisDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
SfxChildWindow* pWnd = rViewFrm.GetChildWindow( nId );
pScMod->SetRefDialog( nId, pWnd == nullptr );
}
break ;
case SID_SEARCH_RESULTS_DIALOG:
{
const SfxPoolItem* pItem = nullptr;
if (pReqArgs && pReqArgs->HasItem(SID_SEARCH_RESULTS_DIALOG, &pItem))
{
bool bVisible = static_cast <const SfxBoolItem*>(pItem)->GetValue();
SfxViewFrame& rViewFrm = pTabViewShell->GetViewFrame();
// The window ID should equal the slot ID, but not a biggie if it wasn't.
sal_uInt16 nId = sc::SearchResultsDlgWrapper::GetChildWindowId();
rViewFrm.SetChildWindow(nId, bVisible, false );
}
rReq.Done();
}
break ;
case SID_INSERT_SPARKLINE:
case SID_EDIT_SPARKLINE_GROUP:
{
sal_uInt16 nId = sc::SparklineDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrame = pTabViewShell->GetViewFrame();
SfxChildWindow* pWindow = rViewFrame.GetChildWindow(nId);
pScMod->SetRefDialog(nId, pWindow == nullptr);
rReq.Done();
}
break ;
case SID_EDIT_SPARKLINE:
{
sal_uInt16 nId = sc::SparklineDataRangeDialogWrapper::GetChildWindowId();
SfxViewFrame& rViewFrame = pTabViewShell->GetViewFrame();
SfxChildWindow* pWindow = rViewFrame.GetChildWindow(nId);
pScMod->SetRefDialog(nId, pWindow == nullptr);
rReq.Done();
}
break ;
case SID_DELETE_SPARKLINE:
{
pTabViewShell->DeleteContents(InsertDeleteFlags::SPARKLINES);
rReq.Done();
}
break ;
case SID_DELETE_SPARKLINE_GROUP:
{
ScRange aMarkRange;
ScMarkType eMarkType = GetViewData().GetSimpleArea(aMarkRange);
if (eMarkType == SC_MARK_SIMPLE)
{
std::shared_ptr<sc::SparklineGroup> pSparklineGroup;
if (GetViewData().GetDocument().GetSparklineGroupInRange(aMarkRange, pSparklineGroup) && pSparklineGroup)
{
GetViewData().GetDocShell().GetDocFunc().DeleteSparklineGroup(pSparklineGroup, GetViewData().GetTabNo());
}
}
rReq.Done();
}
break ;
case SID_GROUP_SPARKLINES:
{
ScRange aRange;
if (GetViewData().GetSimpleArea(aRange) == SC_MARK_SIMPLE)
{
ScAddress aCursorAddress(GetViewData().GetCurX(), GetViewData().GetCurY(), GetViewData().GetTabNo());
auto pSparkline = GetViewData().GetDocument().GetSparkline(aCursorAddress);
if (pSparkline)
{
auto const & rpSparklineGroup = pSparkline->getSparklineGroup();
GetViewData().GetDocShell().GetDocFunc().GroupSparklines(aRange, rpSparklineGroup);
}
}
rReq.Done();
}
break ;
case SID_UNGROUP_SPARKLINES:
{
ScRange aRange;
if (GetViewData().GetSimpleArea(aRange) == SC_MARK_SIMPLE)
{
GetViewData().GetDocShell().GetDocFunc().UngroupSparklines(aRange);
}
rReq.Done();
}
break ;
// disposal (Outlines)
// SID_AUTO_OUTLINE, SID_OUTLINE_DELETEALL in Execute (in docsh.idl)
case SID_OUTLINE_HIDE:
if ( GetViewData().GetDocument().GetDPAtCursor( GetViewData().GetCurX(),
GetViewData().GetCurY(), GetViewData().GetTabNo() ) )
pTabViewShell->SetDataPilotDetails( false );
else
pTabViewShell->HideMarkedOutlines();
rReq.Done();
break ;
case SID_OUTLINE_SHOW:
{
ScDPObject* pDPObj = GetViewData().GetDocument().GetDPAtCursor( GetViewData().GetCurX(),
GetViewData().GetCurY(), GetViewData().GetTabNo() );
if ( pDPObj )
{
Sequence<sheet::DataPilotFieldFilter> aFilters;
css::sheet::DataPilotFieldOrientation nOrientation;
if ( pTabViewShell->HasSelectionForDrillDown( nOrientation ) )
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScDPShowDetailDlg> pDlg( pFact->CreateScDPShowDetailDlg(
pTabViewShell->GetFrameWeld(), *pDPObj, nOrientation ) );
if ( pDlg->Execute() == RET_OK )
{
OUString aNewDimName( pDlg->GetDimensionName() );
pTabViewShell->SetDataPilotDetails( true , &aNewDimName );
}
}
else if ( !pDPObj->IsServiceData() &&
pDPObj->GetDataFieldPositionData(
ScAddress( GetViewData().GetCurX(), GetViewData().GetCurY(), GetViewData().GetTabNo() ),
aFilters ) )
pTabViewShell->ShowDataPilotSourceData( *pDPObj, aFilters );
else
pTabViewShell->SetDataPilotDetails(true );
}
else
pTabViewShell->ShowMarkedOutlines();
rReq.Done();
}
break ;
case SID_OUTLINE_MAKE:
{
bool bColumns = false ;
bool bOk = true ;
if ( GetViewData().GetDocument().GetDPAtCursor( GetViewData().GetCurX(),
GetViewData().GetCurY(), GetViewData().GetTabNo() ) )
{
ScDPNumGroupInfo aNumInfo;
aNumInfo.mbEnable = true ;
aNumInfo.mbAutoStart = true ;
aNumInfo.mbAutoEnd = true ;
sal_Int32 nParts = 0;
if ( pTabViewShell->HasSelectionForDateGroup( aNumInfo, nParts ) )
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
const Date& rNullDate( GetViewData().GetDocument().GetFormatTable()->GetNullDate() );
ScopedVclPtr<AbstractScDPDateGroupDlg> pDlg( pFact->CreateScDPDateGroupDlg(
pTabViewShell->GetFrameWeld(),
aNumInfo, nParts, rNullDate ) );
if ( pDlg->Execute() == RET_OK )
{
aNumInfo = pDlg->GetGroupInfo();
pTabViewShell->DateGroupDataPilot( aNumInfo, pDlg->GetDatePart() );
}
}
else if ( pTabViewShell->HasSelectionForNumGroup( aNumInfo ) )
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScDPNumGroupDlg> pDlg( pFact->CreateScDPNumGroupDlg(
pTabViewShell->GetFrameWeld(), aNumInfo ) );
if ( pDlg->Execute() == RET_OK )
pTabViewShell->NumGroupDataPilot( pDlg->GetGroupInfo() );
}
else
pTabViewShell->GroupDataPilot();
bOk = false ;
}
else if ( pReqArgs != nullptr )
{
const SfxPoolItem* pItem;
bOk = false ;
if ( pReqArgs->HasItem( SID_OUTLINE_MAKE, &pItem ) )
{
OUString aCol = static_cast <const SfxStringItem*>(pItem)->GetValue();
aCol = aCol.toAsciiUpperCase();
switch ( aCol[0] )
{
case 'R' : bColumns=false ; bOk = true ;break ;
case 'C' : bColumns=true ; bOk = true ;break ;
}
}
}
else // Dialog, when not whole rows/columns are marked
{
if ( GetViewData().SimpleColMarked() && !GetViewData().SimpleRowMarked() )
bColumns = true ;
else if ( !GetViewData().SimpleColMarked() && GetViewData().SimpleRowMarked() )
bColumns = false ;
else
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
VclPtr<AbstractScGroupDlg> pDlg(pFact->CreateAbstractScGroupDlg(pTabViewShell->GetFrameWeld()));
pDlg->StartExecuteAsync(
[pDlg, pTabViewShell] (sal_Int32 nResult) {
if ( RET_OK == nResult )
{
bool bColumn = pDlg->GetColsChecked();
pTabViewShell->MakeOutline( bColumn );
}
pDlg->disposeOnce();
}
);
bOk = false ;
}
}
if (bOk)
{
pTabViewShell->MakeOutline( bColumns );
if ( ! rReq.IsAPI() )
{
OUString aCol = bColumns ? OUString('C' ) : OUString('R' );
rReq.AppendItem( SfxStringItem( SID_OUTLINE_MAKE, aCol ) );
rReq.Done();
}
}
}
break ;
case SID_OUTLINE_REMOVE:
{
bool bColumns = false ;
bool bOk = true ;
if ( GetViewData().GetDocument().GetDPAtCursor( GetViewData().GetCurX(),
GetViewData().GetCurY(), GetViewData().GetTabNo() ) )
{
pTabViewShell->UngroupDataPilot();
bOk = false ;
}
else if ( pReqArgs != nullptr )
{
const SfxPoolItem* pItem;
bOk = false ;
if ( pReqArgs->HasItem( SID_OUTLINE_REMOVE, &pItem ) )
{
OUString aCol = static_cast <const SfxStringItem*>(pItem)->GetValue();
aCol = aCol.toAsciiUpperCase();
switch (aCol[0])
{
case 'R' : bColumns=false ; bOk = true ;break ;
case 'C' : bColumns=true ; bOk = true ;break ;
}
}
}
else // Dialog only when removal for rows and columns is possible
{
bool bColPoss, bRowPoss;
pTabViewShell->TestRemoveOutline( bColPoss, bRowPoss );
// TODO: handle this case in LOK too
if ( bColPoss && bRowPoss && !comphelper::LibreOfficeKit::isActive() )
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
VclPtr<AbstractScGroupDlg> pDlg(pFact->CreateAbstractScGroupDlg(pTabViewShell->GetFrameWeld(), true ));
pDlg->StartExecuteAsync(
[pDlg, pTabViewShell] (sal_Int32 nResult) {
if ( RET_OK == nResult )
{
bool bColumn = pDlg->GetColsChecked();
pTabViewShell->RemoveOutline( bColumn );
}
pDlg->disposeOnce();
}
);
bOk = false ;
}
else if ( bColPoss )
bColumns = true ;
else if ( bRowPoss )
bColumns = false ;
else
bOk = false ;
}
if (bOk)
{
pTabViewShell->RemoveOutline( bColumns );
if ( ! rReq.IsAPI() )
{
OUString aCol = bColumns ? OUString('C' ) : OUString('R' );
rReq.AppendItem( SfxStringItem( SID_OUTLINE_REMOVE, aCol ) );
rReq.Done();
}
}
}
break ;
// Clipboard
case SID_COPY: // for graphs in DrawShell
{
weld::WaitObject aWait( GetViewData().GetDialogParent() );
pTabViewShell->CopyToClip( nullptr, false , false , true );
rReq.Done();
if (!comphelper::LibreOfficeKit::isActive() || !pTabViewShell->GetViewShell() || !pTabViewShell->GetViewShell()->IsLokReadOnlyView())
GetViewData().SetPasteMode( ScPasteFlags::Mode | ScPasteFlags::Border );
pTabViewShell->ShowCursor();
pTabViewShell->UpdateCopySourceOverlay();
}
break ;
case SID_CUT: // for graphs in DrawShell
{
weld::WaitObject aWait( GetViewData().GetDialogParent() );
pTabViewShell->CutToClip();
rReq.Done();
if (!comphelper::LibreOfficeKit::isActive() || !pTabViewShell->GetViewShell() || !pTabViewShell->GetViewShell()->IsLokReadOnlyView())
GetViewData().SetPasteMode( ScPasteFlags::Mode | ScPasteFlags::Border );
pTabViewShell->ShowCursor();
pTabViewShell->UpdateCopySourceOverlay();
}
break ;
case SID_COPYDELETE: // for graphs in DrawShell
{
weld::WaitObject aWait( GetViewData().GetDialogParent() );
pTabViewShell->CopyToClip( nullptr, true , false , true );
pTabViewShell->DeleteContents( InsertDeleteFlags::CONTENTS );
rReq.Done();
GetViewData().SetPasteMode( ScPasteFlags::Mode | ScPasteFlags::Border );
pTabViewShell->ShowCursor();
pTabViewShell->UpdateCopySourceOverlay();
}
break ;
case SID_PASTE:
{
ScClipUtil::PasteFromClipboard( GetViewData(), pTabViewShell, true );
rReq.Done();
}
break ;
case SID_CLIPBOARD_FORMAT_ITEMS:
{
weld::WaitObject aWait( GetViewData().GetDialogParent() );
SotClipboardFormatId nFormat = SotClipboardFormatId::NONE;
const SfxPoolItem* pItem;
if ( pReqArgs && pReqArgs->GetItemState(nSlot, true , &pItem) == SfxItemState::SET )
if (auto pIntItem = dynamic_cast <const SfxUInt32Item*>(pItem) )
nFormat = static_cast <SotClipboardFormatId>(pIntItem->GetValue());
if ( nFormat != SotClipboardFormatId::NONE )
{
css::uno::Reference<css::datatransfer::XTransferable2> xTransferable(ScTabViewShell::GetClipData(GetViewData().GetActiveWin()));
bool bCells = ( ScTransferObj::GetOwnClipboard(xTransferable) != nullptr );
bool bDraw = ( ScDrawTransferObj::GetOwnClipboard(xTransferable) != nullptr );
bool bOle = ( nFormat == SotClipboardFormatId::EMBED_SOURCE );
if ( bCells && bOle )
pTabViewShell->PasteFromSystem();
else if ( bDraw && bOle )
pTabViewShell->PasteDraw();
else
pTabViewShell->PasteFromSystem(nFormat);
}
//?else
//? pTabViewShell->PasteFromSystem();
rReq.Done();
}
pTabViewShell->CellContentChanged();
break ;
case FID_INS_CELL_CONTENTS:
{
ScDocument& rDoc = GetViewData().GetDocument();
bool bOtherDoc = !rDoc.IsClipboardSource();
// keep a reference in case the clipboard is changed during dialog or PasteFromClip
const ScTransferObj* pOwnClip = ScTransferObj::GetOwnClipboard(ScTabViewShell::GetClipData(GetViewData().GetActiveWin()));
if ( pOwnClip )
{
InsertDeleteFlags nFlags = InsertDeleteFlags::NONE;
ScPasteFunc nFunction = ScPasteFunc::NONE;
InsCellCmd eMoveMode = INS_NONE;
bool bSkipEmpty = false ;
bool bTranspose = false ;
bool bAsLink = false ;
if ( pReqArgs!=nullptr && pTabViewShell->SelectionEditable() )
{
const SfxPoolItem* pItem;
OUString aFlags('A' );
if ( pReqArgs->HasItem( FID_INS_CELL_CONTENTS, &pItem ) )
aFlags = static_cast <const SfxStringItem*>(pItem)->GetValue();
nFlags |= FlagsFromString(aFlags);
const SfxUInt16Item* pFuncItem = rReq.GetArg<SfxUInt16Item>(FN_PARAM_1);
const SfxBoolItem* pSkipItem = rReq.GetArg<SfxBoolItem>(FN_PARAM_2);
const SfxBoolItem* pTransposeItem = rReq.GetArg<SfxBoolItem>(FN_PARAM_3);
const SfxBoolItem* pLinkItem = rReq.GetArg<SfxBoolItem>(FN_PARAM_4);
const SfxInt16Item* pMoveItem = rReq.GetArg<SfxInt16Item>(FN_PARAM_5);
if ( pFuncItem )
nFunction = static_cast <ScPasteFunc>(pFuncItem->GetValue());
if ( pSkipItem )
bSkipEmpty = pSkipItem->GetValue();
if ( pTransposeItem )
bTranspose = pTransposeItem->GetValue();
if ( pLinkItem )
bAsLink = pLinkItem->GetValue();
if ( pMoveItem )
eMoveMode = static_cast <InsCellCmd>(pMoveItem->GetValue());
}
else
{
ScEditableTester aTester( pTabViewShell );
if (aTester.IsEditable())
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
ScopedVclPtr<AbstractScInsertContentsDlg> pDlg(pFact->CreateScInsertContentsDlg(pTabViewShell->GetFrameWeld()));
pDlg->SetOtherDoc( bOtherDoc );
// if ChangeTrack MoveMode disable
pDlg->SetChangeTrack( rDoc.GetChangeTrack() != nullptr );
// fdo#56098 disable shift if necessary
if (!bOtherDoc)
{
ScViewData& rData = GetViewData();
if ( rData.GetMarkData().GetTableSelect( rData.GetTabNo() ) )
{
SCCOL nStartX, nEndX, nClipStartX, nClipSizeX, nRangeSizeX;
SCROW nStartY, nEndY, nClipStartY, nClipSizeY, nRangeSizeY;
SCTAB nStartTab, nEndTab;
pOwnClip->GetDocument()->GetClipStart( nClipStartX, nClipStartY );
pOwnClip->GetDocument()->GetClipArea( nClipSizeX, nClipSizeY, true );
if ( rData.GetSimpleArea( nStartX, nStartY, nStartTab,
nEndX, nEndY, nEndTab ) != SC_MARK_SIMPLE ||
nStartTab != nEndTab )
{
// the destination is not a simple range,
--> --------------------
--> maximum size reached
--> --------------------
Messung V0.5 C=94 H=98 G=95
¤ Dauer der Verarbeitung: 0.23 Sekunden
¤
*© Formatika GbR, Deutschland