forked from amazingfate/loongoffice
219 lines
8.1 KiB
C++
219 lines
8.1 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 <svl/itemprop.hxx>
|
|
|
|
#include <com/sun/star/util/Date.hpp>
|
|
|
|
#include "optuno.hxx"
|
|
#include "miscuno.hxx"
|
|
#include "unonames.hxx"
|
|
#include "docoptio.hxx"
|
|
|
|
using namespace com::sun::star;
|
|
|
|
const SfxItemPropertyMapEntry* ScDocOptionsHelper::GetPropertyMap()
|
|
{
|
|
static const SfxItemPropertyMapEntry aMap[] =
|
|
{
|
|
{OUString(SC_UNO_CALCASSHOWN), PROP_UNO_CALCASSHOWN , getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_DEFTABSTOP), PROP_UNO_DEFTABSTOP , cppu::UnoType<sal_Int16>::get(), 0, 0},
|
|
{OUString(SC_UNO_IGNORECASE), PROP_UNO_IGNORECASE , getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_ITERENABLED), PROP_UNO_ITERENABLED , getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_ITERCOUNT), PROP_UNO_ITERCOUNT , cppu::UnoType<sal_Int32>::get(), 0, 0},
|
|
{OUString(SC_UNO_ITEREPSILON), PROP_UNO_ITEREPSILON , cppu::UnoType<double>::get(), 0, 0},
|
|
{OUString(SC_UNO_LOOKUPLABELS), PROP_UNO_LOOKUPLABELS, getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_MATCHWHOLE), PROP_UNO_MATCHWHOLE , getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_NULLDATE), PROP_UNO_NULLDATE , cppu::UnoType<util::Date>::get(), 0, 0},
|
|
{OUString(SC_UNO_SPELLONLINE), PROP_UNO_SPELLONLINE , getBooleanCppuType(), 0, 0},
|
|
{OUString(SC_UNO_STANDARDDEC), PROP_UNO_STANDARDDEC , cppu::UnoType<sal_Int16>::get(), 0, 0},
|
|
{OUString(SC_UNO_REGEXENABLED), PROP_UNO_REGEXENABLED, getBooleanCppuType(), 0, 0},
|
|
{ OUString(), 0, css::uno::Type(), 0, 0 }
|
|
};
|
|
return aMap;
|
|
}
|
|
|
|
bool ScDocOptionsHelper::setPropertyValue( ScDocOptions& rOptions,
|
|
const SfxItemPropertyMap& rPropMap,
|
|
const OUString& aPropertyName, const uno::Any& aValue )
|
|
{
|
|
//! use map (with new identifiers)
|
|
|
|
const SfxItemPropertySimpleEntry* pEntry = rPropMap.getByName(aPropertyName );
|
|
if( !pEntry || !pEntry->nWID )
|
|
return false;
|
|
switch( pEntry->nWID )
|
|
{
|
|
case PROP_UNO_CALCASSHOWN :
|
|
rOptions.SetCalcAsShown( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_DEFTABSTOP :
|
|
{
|
|
sal_Int16 nIntVal = 0;
|
|
if ( aValue >>= nIntVal )
|
|
rOptions.SetTabDistance( nIntVal );
|
|
}
|
|
break;
|
|
case PROP_UNO_IGNORECASE :
|
|
rOptions.SetIgnoreCase( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_ITERENABLED:
|
|
rOptions.SetIter( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_ITERCOUNT :
|
|
{
|
|
sal_Int32 nIntVal = 0;
|
|
if ( aValue >>= nIntVal )
|
|
rOptions.SetIterCount( (sal_uInt16)nIntVal );
|
|
}
|
|
break;
|
|
case PROP_UNO_ITEREPSILON :
|
|
{
|
|
double fDoubleVal = 0;
|
|
if ( aValue >>= fDoubleVal )
|
|
rOptions.SetIterEps( fDoubleVal );
|
|
}
|
|
break;
|
|
case PROP_UNO_LOOKUPLABELS :
|
|
rOptions.SetLookUpColRowNames( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_MATCHWHOLE :
|
|
rOptions.SetMatchWholeCell( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_NULLDATE:
|
|
{
|
|
util::Date aDate;
|
|
if ( aValue >>= aDate )
|
|
rOptions.SetDate( aDate.Day, aDate.Month, aDate.Year );
|
|
}
|
|
break;
|
|
case PROP_UNO_SPELLONLINE:
|
|
rOptions.SetAutoSpell( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
case PROP_UNO_STANDARDDEC:
|
|
{
|
|
sal_Int16 nIntVal = 0;
|
|
if ( aValue >>= nIntVal )
|
|
rOptions.SetStdPrecision( nIntVal );
|
|
}
|
|
break;
|
|
case PROP_UNO_REGEXENABLED:
|
|
rOptions.SetFormulaRegexEnabled( ScUnoHelpFunctions::GetBoolFromAny( aValue ) );
|
|
break;
|
|
default:;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
uno::Any ScDocOptionsHelper::getPropertyValue(
|
|
const ScDocOptions& rOptions,
|
|
const SfxItemPropertyMap& rPropMap,
|
|
const OUString& aPropertyName )
|
|
{
|
|
uno::Any aRet;
|
|
const SfxItemPropertySimpleEntry* pEntry = rPropMap.getByName( aPropertyName );
|
|
if( !pEntry || !pEntry->nWID )
|
|
return aRet;
|
|
switch( pEntry->nWID )
|
|
{
|
|
case PROP_UNO_CALCASSHOWN :
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsCalcAsShown() );
|
|
break;
|
|
case PROP_UNO_DEFTABSTOP :
|
|
aRet <<= (sal_Int16)( rOptions.GetTabDistance() );
|
|
break;
|
|
case PROP_UNO_IGNORECASE :
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsIgnoreCase() );
|
|
break;
|
|
case PROP_UNO_ITERENABLED:
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsIter() );
|
|
break;
|
|
case PROP_UNO_ITERCOUNT:
|
|
aRet <<= (sal_Int32)( rOptions.GetIterCount() );
|
|
break;
|
|
case PROP_UNO_ITEREPSILON:
|
|
aRet <<= (double)( rOptions.GetIterEps() );
|
|
break;
|
|
case PROP_UNO_LOOKUPLABELS:
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsLookUpColRowNames() );
|
|
break;
|
|
case PROP_UNO_MATCHWHOLE:
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsMatchWholeCell() );
|
|
break;
|
|
case PROP_UNO_NULLDATE:
|
|
{
|
|
sal_uInt16 nD, nM, nY;
|
|
rOptions.GetDate( nD, nM, nY );
|
|
util::Date aDate( nD, nM, nY );
|
|
aRet <<= aDate;
|
|
}
|
|
break;
|
|
case PROP_UNO_SPELLONLINE:
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsAutoSpell() );
|
|
break;
|
|
case PROP_UNO_STANDARDDEC :
|
|
aRet <<= (sal_Int16)( rOptions.GetStdPrecision() );
|
|
break;
|
|
case PROP_UNO_REGEXENABLED:
|
|
ScUnoHelpFunctions::SetBoolInAny( aRet, rOptions.IsFormulaRegexEnabled() );
|
|
break;
|
|
default:;
|
|
}
|
|
return aRet;
|
|
}
|
|
|
|
ScDocOptionsObj::ScDocOptionsObj( const ScDocOptions& rOpt ) :
|
|
ScModelObj( NULL ),
|
|
aOptions( rOpt )
|
|
{
|
|
}
|
|
|
|
ScDocOptionsObj::~ScDocOptionsObj()
|
|
{
|
|
}
|
|
|
|
void SAL_CALL ScDocOptionsObj::setPropertyValue(
|
|
const OUString& aPropertyName, const uno::Any& aValue )
|
|
throw(beans::UnknownPropertyException, beans::PropertyVetoException,
|
|
lang::IllegalArgumentException, lang::WrappedTargetException,
|
|
uno::RuntimeException, std::exception)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
bool bDone = ScDocOptionsHelper::setPropertyValue( aOptions, GetPropertySet().getPropertyMap(), aPropertyName, aValue );
|
|
|
|
if (!bDone)
|
|
ScModelObj::setPropertyValue( aPropertyName, aValue );
|
|
}
|
|
|
|
uno::Any SAL_CALL ScDocOptionsObj::getPropertyValue( const OUString& aPropertyName )
|
|
throw(beans::UnknownPropertyException, lang::WrappedTargetException,
|
|
uno::RuntimeException, std::exception)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
uno::Any aRet(ScDocOptionsHelper::getPropertyValue( aOptions, GetPropertySet().getPropertyMap(), aPropertyName ));
|
|
if ( !aRet.hasValue() )
|
|
aRet = ScModelObj::getPropertyValue( aPropertyName );
|
|
|
|
return aRet;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|