Files
libreoffice/sc/source/core/tool/inputopt.cxx

246 lines
8.7 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by Herbert Duerr i#118735 prevent endless loop if vlookup/hlookup doesn't find anything http://svn.apache.org/viewvc?view=revision&revision=1239673 Patches contributed by Andre Fischer remove lp_solver http://svn.apache.org/viewvc?view=revision&revision=1199180 i#118160: Added external CoinMP library. http://svn.apache.org/viewvc?view=revision&revision=1233909 Patches contributed by Armin Le-Grand i#118485 - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 i#118524: apply patch, followup fixes to 118485 http://svn.apache.org/viewvc?view=revision&revision=1186077 Patches contributed by lihuiibm i#108860 - Fix range validation. http://svn.apache.org/viewvc?view=revision&revision=1242846 i#118954 Chart data will lost after copy to different file http://svn.apache.org/viewvc?view=revision&revision=1301345 Patches contributed by Ariel Constenla-Haile Fix Linux build breaker: extra qualification on member http://svn.apache.org/viewvc?view=revision&revision=1301591 i#118696 - i#118697 - Fix some Sheet Tab Color API issues http://svn.apache.org/viewvc?view=revision&revision=1225428 i#118697 - Fix uninitialized variable http://svn.apache.org/viewvc?view=revision&revision=1225859 i#118771 - ScUndoImportTab should preserve tab background color http://svn.apache.org/viewvc?view=revision&revision=1230356 i#118921 - Repaint linked sheet tab background color after updating link http://svn.apache.org/viewvc?view=revision&revision=1245177 i#118927 - Undo/Redo "Update Link" does not reset sheet tab color http://svn.apache.org/viewvc?view=revision&revision=1245241 i#118747 - Copy tab color when transferring sheets across documents http://svn.apache.org/viewvc?view=revision&revision=1230355 Patch contributed by Oliver Rainer-Wittman i#118012 - methods <ScBroadcastAreaSlot::AreaBroadcast(..)> and <ScBroadcastAreaSlot::AreaBroadcastInRange(..)> adapt stl-container iteration in order to avoid destroyed iterators during iteration. http://svn.apache.org/viewvc?view=revision&revision=1297916 Patches contributed by Mathias Bauer gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 Patch contributed by Daniel Rentz calc69: #i116936# fix VBA symbol Cells http://svn.apache.org/viewvc?view=revision&revision=1172135 Patches contributed by leiw: i#118546 CPU 100% on switched off AutoCalculate with Conditional Formatting on date values http://svn.apache.org/viewvc?view=revision&revision=1301380 Re-add new function documentation. Many various cleanups. Add missing calc66: #o11817313# also look at formula result number format, remove redundant binaries.
2012-11-30 12:23:25 +00:00
/*
* 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 .
*/
2000-09-18 23:16:46 +00:00
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include "cfgids.hxx"
#include "inputopt.hxx"
#include "rechead.hxx"
#include "scresid.hxx"
#include "global.hxx"
#include "sc.hrc"
#include "miscuno.hxx"
using namespace utl;
using namespace com::sun::star::uno;
// ScInputOptions - input options
2000-09-18 23:16:46 +00:00
ScInputOptions::ScInputOptions()
{
SetDefaults();
}
ScInputOptions::ScInputOptions( const ScInputOptions& rCpy )
{
*this = rCpy;
}
ScInputOptions::~ScInputOptions()
{
}
void ScInputOptions::SetDefaults()
{
nMoveDir = DIR_BOTTOM;
bMoveSelection = true;
bEnterEdit = false;
bExtendFormat = false;
bRangeFinder = true;
bExpandRefs = false;
mbSortRefUpdate = true;
bMarkHeader = true;
bUseTabCol = false;
bTextWysiwyg = false;
bReplCellsWarn = true;
bLegacyCellSelection = false;
2000-09-18 23:16:46 +00:00
}
ScInputOptions& ScInputOptions::operator=( const ScInputOptions& rCpy )
2000-09-18 23:16:46 +00:00
{
nMoveDir = rCpy.nMoveDir;
bMoveSelection = rCpy.bMoveSelection;
bEnterEdit = rCpy.bEnterEdit;
bExtendFormat = rCpy.bExtendFormat;
bRangeFinder = rCpy.bRangeFinder;
bExpandRefs = rCpy.bExpandRefs;
mbSortRefUpdate = rCpy.mbSortRefUpdate;
2000-09-18 23:16:46 +00:00
bMarkHeader = rCpy.bMarkHeader;
bUseTabCol = rCpy.bUseTabCol;
2001-05-11 15:20:22 +00:00
bTextWysiwyg = rCpy.bTextWysiwyg;
bReplCellsWarn = rCpy.bReplCellsWarn;
bLegacyCellSelection = rCpy.bLegacyCellSelection;
2000-09-18 23:16:46 +00:00
return *this;
}
// Config Item containing input options
#define CFGPATH_INPUT "Office.Calc/Input"
#define SCINPUTOPT_MOVEDIR 0
#define SCINPUTOPT_MOVESEL 1
#define SCINPUTOPT_EDTEREDIT 2
#define SCINPUTOPT_EXTENDFMT 3
#define SCINPUTOPT_RANGEFIND 4
#define SCINPUTOPT_EXPANDREFS 5
#define SCINPUTOPT_SORT_REF_UPDATE 6
#define SCINPUTOPT_MARKHEADER 7
#define SCINPUTOPT_USETABCOL 8
#define SCINPUTOPT_TEXTWYSIWYG 9
#define SCINPUTOPT_REPLCELLSWARN 10
#define SCINPUTOPT_LEGACY_CELL_SELECTION 11
2000-09-18 23:16:46 +00:00
Sequence<OUString> ScInputCfg::GetPropertyNames()
{
return {"MoveSelectionDirection", // SCINPUTOPT_MOVEDIR
"MoveSelection", // SCINPUTOPT_MOVESEL
"SwitchToEditMode", // SCINPUTOPT_EDTEREDIT
"ExpandFormatting", // SCINPUTOPT_EXTENDFMT
"ShowReference", // SCINPUTOPT_RANGEFIND
"ExpandReference", // SCINPUTOPT_EXPANDREFS
"UpdateReferenceOnSort", // SCINPUTOPT_SORT_REF_UPDATE
"HighlightSelection", // SCINPUTOPT_MARKHEADER
"UseTabCol", // SCINPUTOPT_USETABCOL
"UsePrinterMetrics", // SCINPUTOPT_TEXTWYSIWYG
"ReplaceCellsWarning", // SCINPUTOPT_REPLCELLSWARN
"LegacyCellSelection"}; // SCINPUTOPT_LEGACY_CELL_SELECTION
2000-09-18 23:16:46 +00:00
}
ScInputCfg::ScInputCfg() :
ConfigItem( OUString( CFGPATH_INPUT ) )
2000-09-18 23:16:46 +00:00
{
Sequence<OUString> aNames = GetPropertyNames();
Sequence<Any> aValues = GetProperties(aNames);
EnableNotification(aNames);
const Any* pValues = aValues.getConstArray();
OSL_ENSURE(aValues.getLength() == aNames.getLength(), "GetProperties failed");
2000-09-18 23:16:46 +00:00
if(aValues.getLength() == aNames.getLength())
{
for(int nProp = 0; nProp < aNames.getLength(); nProp++)
{
OSL_ENSURE(pValues[nProp].hasValue(), "property value missing");
2000-09-18 23:16:46 +00:00
if(pValues[nProp].hasValue())
{
sal_Int32 nIntVal = 0;
2000-09-18 23:16:46 +00:00
switch(nProp)
{
case SCINPUTOPT_MOVEDIR:
if ( pValues[nProp] >>= nIntVal )
SetMoveDir( (sal_uInt16)nIntVal );
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_MOVESEL:
SetMoveSelection( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_EDTEREDIT:
SetEnterEdit( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_EXTENDFMT:
SetExtendFormat( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_RANGEFIND:
SetRangeFinder( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_EXPANDREFS:
SetExpandRefs( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_SORT_REF_UPDATE:
SetSortRefUpdate(ScUnoHelpFunctions::GetBoolFromAny(pValues[nProp]));
break;
2000-09-18 23:16:46 +00:00
case SCINPUTOPT_MARKHEADER:
SetMarkHeader( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_USETABCOL:
SetUseTabCol( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_TEXTWYSIWYG:
SetTextWysiwyg( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_REPLCELLSWARN:
SetReplaceCellsWarn( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
case SCINPUTOPT_LEGACY_CELL_SELECTION:
SetLegacyCellSelection( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) );
break;
2000-09-18 23:16:46 +00:00
}
}
}
}
}
void ScInputCfg::ImplCommit()
2000-09-18 23:16:46 +00:00
{
Sequence<OUString> aNames = GetPropertyNames();
Sequence<Any> aValues(aNames.getLength());
Any* pValues = aValues.getArray();
for(int nProp = 0; nProp < aNames.getLength(); nProp++)
{
switch(nProp)
{
case SCINPUTOPT_MOVEDIR:
pValues[nProp] <<= (sal_Int32) GetMoveDir();
break;
case SCINPUTOPT_MOVESEL:
pValues[nProp] <<= GetMoveSelection();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_EDTEREDIT:
pValues[nProp] <<= GetEnterEdit();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_EXTENDFMT:
pValues[nProp] <<= GetExtendFormat();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_RANGEFIND:
pValues[nProp] <<= GetRangeFinder();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_EXPANDREFS:
pValues[nProp] <<= GetExpandRefs();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_SORT_REF_UPDATE:
pValues[nProp] <<= GetSortRefUpdate();
break;
2000-09-18 23:16:46 +00:00
case SCINPUTOPT_MARKHEADER:
pValues[nProp] <<= GetMarkHeader();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_USETABCOL:
pValues[nProp] <<= GetUseTabCol();
2000-09-18 23:16:46 +00:00
break;
case SCINPUTOPT_TEXTWYSIWYG:
pValues[nProp] <<= GetTextWysiwyg();
break;
case SCINPUTOPT_REPLCELLSWARN:
pValues[nProp] <<= GetReplaceCellsWarn();
break;
case SCINPUTOPT_LEGACY_CELL_SELECTION:
pValues[nProp] <<= GetLegacyCellSelection();
break;
2000-09-18 23:16:46 +00:00
}
}
PutProperties(aNames, aValues);
}
2011-02-24 15:22:42 +01:00
void ScInputCfg::Notify( const Sequence<OUString>& /* aPropertyNames */ )
2000-09-18 23:16:46 +00:00
{
2011-03-01 19:05:02 +01:00
OSL_FAIL("properties have been changed");
2000-09-18 23:16:46 +00:00
}
void ScInputCfg::SetOptions( const ScInputOptions& rNew )
{
*static_cast<ScInputOptions*>(this) = rNew;
2000-09-18 23:16:46 +00:00
SetModified();
}
void ScInputCfg::OptionsChanged()
{
SetModified();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */