2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 09:51:50 +01: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 .
|
|
|
|
*/
|
2001-06-18 08:32:41 +00:00
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
2001-06-18 08:32:41 +00:00
|
|
|
#include <rtl/ustrbuf.hxx>
|
2004-06-25 16:25:24 +00:00
|
|
|
#include <rtl/instance.hxx>
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <rtl/logfile.hxx>
|
|
|
|
#include <i18npool/mslangid.hxx>
|
|
|
|
#include <tools/string.hxx>
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#include <unotools/syslocaleoptions.hxx>
|
2001-06-18 08:32:41 +00:00
|
|
|
#include <unotools/configmgr.hxx>
|
|
|
|
#include <unotools/configitem.hxx>
|
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
2005-04-13 09:50:11 +00:00
|
|
|
|
2009-10-12 11:49:13 +02:00
|
|
|
#include "itemholder1.hxx"
|
2004-11-15 16:23:45 +00:00
|
|
|
|
2003-03-27 13:40:07 +00:00
|
|
|
#define CFG_READONLY_DEFAULT sal_False
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
using namespace osl;
|
|
|
|
using namespace utl;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
|
2011-02-27 18:47:31 +01:00
|
|
|
using ::rtl::OUString;
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
SvtSysLocaleOptions_Impl* SvtSysLocaleOptions::pOptions = NULL;
|
|
|
|
sal_Int32 SvtSysLocaleOptions::nRefCount = 0;
|
2004-06-25 16:25:24 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
struct CurrencyChangeLink
|
|
|
|
: public rtl::Static<Link, CurrencyChangeLink> {};
|
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
|
2009-10-26 15:10:09 +01:00
|
|
|
com::sun::star::lang::Locale lcl_str_to_locale( const ::rtl::OUString rStr )
|
|
|
|
{
|
|
|
|
com::sun::star::lang::Locale aRet;
|
2012-01-19 16:01:33 -02:00
|
|
|
if ( !rStr.isEmpty() )
|
2009-10-26 15:10:09 +01:00
|
|
|
{
|
|
|
|
aRet = com::sun::star::lang::Locale();
|
|
|
|
sal_Int32 nSep = rStr.indexOf('-');
|
|
|
|
if (nSep < 0)
|
|
|
|
aRet.Language = rStr;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aRet.Language = rStr.copy(0, nSep);
|
|
|
|
if (nSep < rStr.getLength())
|
|
|
|
aRet.Country = rStr.copy(nSep+1, rStr.getLength() - (nSep+1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
class SvtSysLocaleOptions_Impl : public utl::ConfigItem
|
|
|
|
{
|
2009-10-26 15:10:09 +01:00
|
|
|
Locale m_aRealLocale;
|
|
|
|
Locale m_aRealUILocale;
|
|
|
|
LanguageType m_eRealLanguage;
|
|
|
|
LanguageType m_eRealUILanguage;
|
2001-06-21 16:58:16 +00:00
|
|
|
OUString m_aLocaleString; // en-US or de-DE or empty for SYSTEM
|
2009-10-16 00:05:16 +02:00
|
|
|
OUString m_aUILocaleString; // en-US or de-DE or empty for SYSTEM
|
2001-06-18 08:32:41 +00:00
|
|
|
OUString m_aCurrencyString; // USD-en-US or EUR-de-DE
|
2004-03-17 09:12:23 +00:00
|
|
|
sal_Bool m_bDecimalSeparator; //use decimal separator same as locale
|
|
|
|
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Bool m_bROLocale;
|
2009-10-16 00:05:16 +02:00
|
|
|
sal_Bool m_bROUILocale;
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Bool m_bROCurrency;
|
2004-03-17 09:12:23 +00:00
|
|
|
sal_Bool m_bRODecimalSeparator;
|
2003-03-27 13:40:07 +00:00
|
|
|
|
2009-10-26 15:10:09 +01:00
|
|
|
static const Sequence< /* const */ OUString > GetPropertyNames();
|
|
|
|
void MakeRealLocale();
|
|
|
|
void MakeRealUILocale();
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SvtSysLocaleOptions_Impl();
|
|
|
|
virtual ~SvtSysLocaleOptions_Impl();
|
|
|
|
|
|
|
|
virtual void Notify( const com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames );
|
|
|
|
virtual void Commit();
|
|
|
|
|
|
|
|
const OUString& GetLocaleString() const
|
|
|
|
{ return m_aLocaleString; }
|
|
|
|
void SetLocaleString( const OUString& rStr );
|
2009-10-16 00:05:16 +02:00
|
|
|
|
|
|
|
const OUString& GetUILocaleString() const
|
|
|
|
{ return m_aUILocaleString; }
|
|
|
|
void SetUILocaleString( const OUString& rStr );
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
const OUString& GetCurrencyString() const
|
|
|
|
{ return m_aCurrencyString; }
|
|
|
|
void SetCurrencyString( const OUString& rStr );
|
|
|
|
|
2004-03-17 09:12:23 +00:00
|
|
|
sal_Bool IsDecimalSeparatorAsLocale() const { return m_bDecimalSeparator;}
|
|
|
|
void SetDecimalSeparatorAsLocale( sal_Bool bSet);
|
|
|
|
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Bool IsReadOnly( SvtSysLocaleOptions::EOption eOption ) const;
|
2009-10-26 15:10:09 +01:00
|
|
|
const Locale& GetRealLocale() { return m_aRealLocale; }
|
|
|
|
const Locale& GetRealUILocale() { return m_aRealUILocale; }
|
|
|
|
LanguageType GetRealLanguage() { return m_eRealLanguage; }
|
|
|
|
LanguageType GetRealUILanguage() { return m_eRealUILanguage; }
|
2001-06-18 08:32:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#define ROOTNODE_SYSLOCALE OUString(RTL_CONSTASCII_USTRINGPARAM("Setup/L10N"))
|
2001-06-22 07:24:50 +00:00
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#define PROPERTYNAME_LOCALE OUString(RTL_CONSTASCII_USTRINGPARAM("ooSetupSystemLocale"))
|
|
|
|
#define PROPERTYNAME_UILOCALE OUString(RTL_CONSTASCII_USTRINGPARAM("ooLocale"))
|
|
|
|
#define PROPERTYNAME_CURRENCY OUString(RTL_CONSTASCII_USTRINGPARAM("ooSetupCurrency"))
|
|
|
|
#define PROPERTYNAME_DECIMALSEPARATOR OUString(RTL_CONSTASCII_USTRINGPARAM("DecimalSeparatorAsLocale"))
|
2001-06-18 08:32:41 +00:00
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#define PROPERTYHANDLE_LOCALE 0
|
|
|
|
#define PROPERTYHANDLE_UILOCALE 1
|
|
|
|
#define PROPERTYHANDLE_CURRENCY 2
|
|
|
|
#define PROPERTYHANDLE_DECIMALSEPARATOR 3
|
2001-06-18 08:32:41 +00:00
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
#define PROPERTYCOUNT 4
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
const Sequence< OUString > SvtSysLocaleOptions_Impl::GetPropertyNames()
|
|
|
|
{
|
2011-06-01 09:23:41 +01:00
|
|
|
const OUString pProperties[] =
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
|
|
|
PROPERTYNAME_LOCALE,
|
2009-10-16 00:05:16 +02:00
|
|
|
PROPERTYNAME_UILOCALE,
|
2004-03-17 09:12:23 +00:00
|
|
|
PROPERTYNAME_CURRENCY,
|
|
|
|
PROPERTYNAME_DECIMALSEPARATOR
|
2001-06-18 08:32:41 +00:00
|
|
|
};
|
2011-06-01 09:23:41 +01:00
|
|
|
const Sequence< OUString > seqPropertyNames( pProperties, PROPERTYCOUNT );
|
2001-06-18 08:32:41 +00:00
|
|
|
return seqPropertyNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvtSysLocaleOptions_Impl::SvtSysLocaleOptions_Impl()
|
|
|
|
: ConfigItem( ROOTNODE_SYSLOCALE )
|
2006-06-19 19:49:04 +00:00
|
|
|
, m_bDecimalSeparator( sal_True )
|
2003-03-27 13:40:07 +00:00
|
|
|
, m_bROLocale(CFG_READONLY_DEFAULT)
|
2009-10-16 00:05:16 +02:00
|
|
|
, m_bROUILocale(CFG_READONLY_DEFAULT)
|
2003-03-27 13:40:07 +00:00
|
|
|
, m_bROCurrency(CFG_READONLY_DEFAULT)
|
2004-03-17 09:12:23 +00:00
|
|
|
, m_bRODecimalSeparator(sal_False)
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2009-10-16 00:05:16 +02:00
|
|
|
if ( IsValidConfigMgr() )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2002-09-23 12:44:43 +00:00
|
|
|
const Sequence< OUString > aNames = GetPropertyNames();
|
|
|
|
Sequence< Any > aValues = GetProperties( aNames );
|
2003-03-27 13:40:07 +00:00
|
|
|
Sequence< sal_Bool > aROStates = GetReadOnlyStates( aNames );
|
2002-09-23 12:44:43 +00:00
|
|
|
const Any* pValues = aValues.getConstArray();
|
2003-03-27 13:40:07 +00:00
|
|
|
const sal_Bool* pROStates = aROStates.getConstArray();
|
2002-09-23 12:44:43 +00:00
|
|
|
DBG_ASSERT( aValues.getLength() == aNames.getLength(), "GetProperties failed" );
|
2003-03-27 13:40:07 +00:00
|
|
|
DBG_ASSERT( aROStates.getLength() == aNames.getLength(), "GetReadOnlyStates failed" );
|
|
|
|
if ( aValues.getLength() == aNames.getLength() && aROStates.getLength() == aNames.getLength() )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2002-09-23 12:44:43 +00:00
|
|
|
for ( sal_Int32 nProp = 0; nProp < aNames.getLength(); nProp++ )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2002-09-23 12:44:43 +00:00
|
|
|
if ( pValues[nProp].hasValue() )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2002-09-23 12:44:43 +00:00
|
|
|
switch ( nProp )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
2002-09-23 12:44:43 +00:00
|
|
|
case PROPERTYHANDLE_LOCALE :
|
|
|
|
{
|
|
|
|
OUString aStr;
|
|
|
|
if ( pValues[nProp] >>= aStr )
|
|
|
|
m_aLocaleString = aStr;
|
|
|
|
else
|
2008-10-28 15:03:16 +00:00
|
|
|
{
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "Wrong property type!" );
|
2008-10-28 15:03:16 +00:00
|
|
|
}
|
2003-03-27 13:40:07 +00:00
|
|
|
m_bROLocale = pROStates[nProp];
|
2002-09-23 12:44:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2009-10-16 00:05:16 +02:00
|
|
|
case PROPERTYHANDLE_UILOCALE :
|
|
|
|
{
|
|
|
|
OUString aStr;
|
|
|
|
if ( pValues[nProp] >>= aStr )
|
|
|
|
m_aUILocaleString = aStr;
|
|
|
|
else
|
|
|
|
{
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "Wrong property type!" );
|
2009-10-16 00:05:16 +02:00
|
|
|
}
|
|
|
|
m_bROUILocale = pROStates[nProp];
|
|
|
|
}
|
|
|
|
break;
|
2002-09-23 12:44:43 +00:00
|
|
|
case PROPERTYHANDLE_CURRENCY :
|
|
|
|
{
|
|
|
|
OUString aStr;
|
|
|
|
if ( pValues[nProp] >>= aStr )
|
|
|
|
m_aCurrencyString = aStr;
|
|
|
|
else
|
2008-10-28 15:03:16 +00:00
|
|
|
{
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "Wrong property type!" );
|
2008-10-28 15:03:16 +00:00
|
|
|
}
|
2003-03-27 13:40:07 +00:00
|
|
|
m_bROCurrency = pROStates[nProp];
|
2002-09-23 12:44:43 +00:00
|
|
|
}
|
2004-03-17 09:12:23 +00:00
|
|
|
break;
|
|
|
|
case PROPERTYHANDLE_DECIMALSEPARATOR:
|
|
|
|
{
|
2006-08-29 10:11:55 +00:00
|
|
|
sal_Bool bValue = sal_Bool();
|
2004-03-17 09:12:23 +00:00
|
|
|
if ( pValues[nProp] >>= bValue )
|
|
|
|
m_bDecimalSeparator = bValue;
|
|
|
|
else
|
2008-10-28 15:03:16 +00:00
|
|
|
{
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "Wrong property type!" );
|
2008-10-28 15:03:16 +00:00
|
|
|
}
|
2004-03-17 09:12:23 +00:00
|
|
|
m_bRODecimalSeparator = pROStates[nProp];
|
|
|
|
}
|
|
|
|
break;
|
2002-09-23 12:44:43 +00:00
|
|
|
default:
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "Wrong property type!" );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-23 12:44:43 +00:00
|
|
|
EnableNotification( aNames );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
2009-10-26 15:10:09 +01:00
|
|
|
|
|
|
|
MakeRealLocale();
|
|
|
|
MakeRealUILocale();
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SvtSysLocaleOptions_Impl::~SvtSysLocaleOptions_Impl()
|
|
|
|
{
|
|
|
|
if ( IsModified() )
|
|
|
|
Commit();
|
|
|
|
}
|
|
|
|
|
2009-10-26 15:10:09 +01:00
|
|
|
void SvtSysLocaleOptions_Impl::MakeRealLocale()
|
|
|
|
{
|
|
|
|
m_aRealLocale = lcl_str_to_locale( m_aLocaleString );
|
2012-01-19 16:01:33 -02:00
|
|
|
if ( !m_aRealLocale.Language.isEmpty() )
|
2009-10-26 15:10:09 +01:00
|
|
|
{
|
|
|
|
m_eRealLanguage = MsLangId::convertLocaleToLanguage( m_aRealLocale );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_eRealLanguage = MsLangId::getSystemLanguage();
|
|
|
|
MsLangId::convertLanguageToLocale( m_eRealLanguage, m_aRealLocale );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions_Impl::MakeRealUILocale()
|
|
|
|
{
|
2011-05-06 18:19:22 +02:00
|
|
|
// as we can't switch UILocale at runtime, we only store changes in the configuration
|
|
|
|
m_aRealUILocale = lcl_str_to_locale( m_aUILocaleString );
|
2012-01-19 16:01:33 -02:00
|
|
|
if ( !m_aRealUILocale.Language.isEmpty() )
|
2009-10-26 15:10:09 +01:00
|
|
|
{
|
2011-05-06 18:19:22 +02:00
|
|
|
m_eRealUILanguage = MsLangId::convertLocaleToLanguage( m_aRealUILocale );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_eRealUILanguage = MsLangId::getSystemUILanguage();
|
|
|
|
MsLangId::convertLanguageToLocale( m_eRealUILanguage, m_aRealUILocale );
|
2009-10-26 15:10:09 +01:00
|
|
|
}
|
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Bool SvtSysLocaleOptions_Impl::IsReadOnly( SvtSysLocaleOptions::EOption eOption ) const
|
|
|
|
{
|
|
|
|
sal_Bool bReadOnly = CFG_READONLY_DEFAULT;
|
|
|
|
switch(eOption)
|
|
|
|
{
|
|
|
|
case SvtSysLocaleOptions::E_LOCALE :
|
|
|
|
{
|
|
|
|
bReadOnly = m_bROLocale;
|
|
|
|
break;
|
|
|
|
}
|
2009-10-16 00:05:16 +02:00
|
|
|
case SvtSysLocaleOptions::E_UILOCALE :
|
|
|
|
{
|
|
|
|
bReadOnly = m_bROUILocale;
|
|
|
|
break;
|
|
|
|
}
|
2003-03-27 13:40:07 +00:00
|
|
|
case SvtSysLocaleOptions::E_CURRENCY :
|
|
|
|
{
|
|
|
|
bReadOnly = m_bROCurrency;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bReadOnly;
|
|
|
|
}
|
|
|
|
|
2001-06-26 11:36:41 +00:00
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
void SvtSysLocaleOptions_Impl::Commit()
|
|
|
|
{
|
2003-03-27 13:40:07 +00:00
|
|
|
const Sequence< OUString > aOrgNames = GetPropertyNames();
|
|
|
|
sal_Int32 nOrgCount = aOrgNames.getLength();
|
|
|
|
|
|
|
|
Sequence< OUString > aNames( nOrgCount );
|
|
|
|
Sequence< Any > aValues( nOrgCount );
|
|
|
|
|
|
|
|
OUString* pNames = aNames.getArray();
|
2001-06-18 08:32:41 +00:00
|
|
|
Any* pValues = aValues.getArray();
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Int32 nRealCount = 0;
|
|
|
|
|
|
|
|
for ( sal_Int32 nProp = 0; nProp < nOrgCount; nProp++ )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
|
|
|
switch ( nProp )
|
|
|
|
{
|
|
|
|
case PROPERTYHANDLE_LOCALE :
|
2003-03-27 13:40:07 +00:00
|
|
|
{
|
|
|
|
if (!m_bROLocale)
|
|
|
|
{
|
|
|
|
pNames[nRealCount] = aOrgNames[nProp];
|
|
|
|
pValues[nRealCount] <<= m_aLocaleString;
|
|
|
|
++nRealCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2009-10-16 00:05:16 +02:00
|
|
|
case PROPERTYHANDLE_UILOCALE :
|
|
|
|
{
|
|
|
|
if (!m_bROUILocale)
|
|
|
|
{
|
|
|
|
pNames[nRealCount] = aOrgNames[nProp];
|
|
|
|
pValues[nRealCount] <<= m_aUILocaleString;
|
|
|
|
++nRealCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2001-06-18 08:32:41 +00:00
|
|
|
case PROPERTYHANDLE_CURRENCY :
|
2003-03-27 13:40:07 +00:00
|
|
|
{
|
2009-10-16 00:05:16 +02:00
|
|
|
if (!m_bROCurrency)
|
2003-03-27 13:40:07 +00:00
|
|
|
{
|
|
|
|
pNames[nRealCount] = aOrgNames[nProp];
|
|
|
|
pValues[nRealCount] <<= m_aCurrencyString;
|
|
|
|
++nRealCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-03-17 09:12:23 +00:00
|
|
|
case PROPERTYHANDLE_DECIMALSEPARATOR:
|
|
|
|
if( !m_bRODecimalSeparator )
|
|
|
|
{
|
|
|
|
pNames[nRealCount] = aOrgNames[nProp];
|
|
|
|
pValues[nRealCount] <<= m_bDecimalSeparator;
|
|
|
|
++nRealCount;
|
|
|
|
}
|
|
|
|
break;
|
2001-06-18 08:32:41 +00:00
|
|
|
default:
|
2012-01-16 18:03:17 +01:00
|
|
|
SAL_WARN( "unotools.config", "invalid index to save a path" );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
2003-03-27 13:40:07 +00:00
|
|
|
aNames.realloc(nRealCount);
|
|
|
|
aValues.realloc(nRealCount);
|
2001-06-18 08:32:41 +00:00
|
|
|
PutProperties( aNames, aValues );
|
|
|
|
ClearModified();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions_Impl::SetLocaleString( const OUString& rStr )
|
|
|
|
{
|
2003-03-27 13:40:07 +00:00
|
|
|
if (!m_bROLocale && rStr != m_aLocaleString )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
|
|
|
m_aLocaleString = rStr;
|
2009-10-26 15:10:09 +01:00
|
|
|
MakeRealLocale();
|
|
|
|
MsLangId::setConfiguredSystemLanguage( m_eRealLanguage );
|
2001-06-18 08:32:41 +00:00
|
|
|
SetModified();
|
2011-01-12 16:24:50 +01:00
|
|
|
sal_uLong nHint = SYSLOCALEOPTIONS_HINT_LOCALE;
|
2012-01-19 16:01:33 -02:00
|
|
|
if ( m_aCurrencyString.isEmpty() )
|
2009-10-16 00:05:16 +02:00
|
|
|
nHint |= SYSLOCALEOPTIONS_HINT_CURRENCY;
|
|
|
|
NotifyListeners( nHint );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
void SvtSysLocaleOptions_Impl::SetUILocaleString( const OUString& rStr )
|
2001-06-21 16:58:16 +00:00
|
|
|
{
|
2009-10-16 00:05:16 +02:00
|
|
|
if (!m_bROUILocale && rStr != m_aUILocaleString )
|
|
|
|
{
|
|
|
|
m_aUILocaleString = rStr;
|
2011-05-06 18:19:22 +02:00
|
|
|
|
2009-10-26 15:10:09 +01:00
|
|
|
// as we can't switch UILocale at runtime, we only store changes in the configuration
|
|
|
|
MakeRealUILocale();
|
|
|
|
MsLangId::setConfiguredSystemLanguage( m_eRealUILanguage );
|
2009-10-16 00:05:16 +02:00
|
|
|
SetModified();
|
|
|
|
NotifyListeners( SYSLOCALEOPTIONS_HINT_UILOCALE );
|
|
|
|
}
|
2001-06-21 16:58:16 +00:00
|
|
|
}
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
void SvtSysLocaleOptions_Impl::SetCurrencyString( const OUString& rStr )
|
|
|
|
{
|
2003-03-27 13:40:07 +00:00
|
|
|
if (!m_bROCurrency && rStr != m_aCurrencyString )
|
2001-06-18 08:32:41 +00:00
|
|
|
{
|
|
|
|
m_aCurrencyString = rStr;
|
|
|
|
SetModified();
|
2009-10-16 00:05:16 +02:00
|
|
|
NotifyListeners( SYSLOCALEOPTIONS_HINT_CURRENCY );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-17 09:12:23 +00:00
|
|
|
void SvtSysLocaleOptions_Impl::SetDecimalSeparatorAsLocale( sal_Bool bSet)
|
|
|
|
{
|
|
|
|
if(bSet != m_bDecimalSeparator)
|
|
|
|
{
|
|
|
|
m_bDecimalSeparator = bSet;
|
|
|
|
SetModified();
|
2009-10-16 00:05:16 +02:00
|
|
|
NotifyListeners( SYSLOCALEOPTIONS_HINT_DECSEP );
|
2004-03-17 09:12:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
void SvtSysLocaleOptions_Impl::Notify( const Sequence< rtl::OUString >& seqPropertyNames )
|
|
|
|
{
|
2011-01-12 16:24:50 +01:00
|
|
|
sal_uLong nHint = 0;
|
2001-06-18 08:32:41 +00:00
|
|
|
Sequence< Any > seqValues = GetProperties( seqPropertyNames );
|
2003-03-27 13:40:07 +00:00
|
|
|
Sequence< sal_Bool > seqROStates = GetReadOnlyStates( seqPropertyNames );
|
2001-06-18 08:32:41 +00:00
|
|
|
sal_Int32 nCount = seqPropertyNames.getLength();
|
|
|
|
for( sal_Int32 nProp = 0; nProp < nCount; ++nProp )
|
|
|
|
{
|
|
|
|
if( seqPropertyNames[nProp] == PROPERTYNAME_LOCALE )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( seqValues[nProp].getValueTypeClass() == TypeClass_STRING, "Locale property type" );
|
|
|
|
seqValues[nProp] >>= m_aLocaleString;
|
2003-03-27 13:40:07 +00:00
|
|
|
m_bROLocale = seqROStates[nProp];
|
2001-06-18 08:32:41 +00:00
|
|
|
nHint |= SYSLOCALEOPTIONS_HINT_LOCALE;
|
2012-01-19 16:01:33 -02:00
|
|
|
if ( m_aCurrencyString.isEmpty() )
|
2009-10-16 00:05:16 +02:00
|
|
|
nHint |= SYSLOCALEOPTIONS_HINT_CURRENCY;
|
2009-10-26 15:10:09 +01:00
|
|
|
MakeRealLocale();
|
2009-10-16 00:05:16 +02:00
|
|
|
}
|
|
|
|
if( seqPropertyNames[nProp] == PROPERTYNAME_UILOCALE )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( seqValues[nProp].getValueTypeClass() == TypeClass_STRING, "Locale property type" );
|
|
|
|
seqValues[nProp] >>= m_aUILocaleString;
|
|
|
|
m_bROUILocale = seqROStates[nProp];
|
|
|
|
nHint |= SYSLOCALEOPTIONS_HINT_UILOCALE;
|
2009-10-26 15:10:09 +01:00
|
|
|
MakeRealUILocale();
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
else if( seqPropertyNames[nProp] == PROPERTYNAME_CURRENCY )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( seqValues[nProp].getValueTypeClass() == TypeClass_STRING, "Currency property type" );
|
|
|
|
seqValues[nProp] >>= m_aCurrencyString;
|
2003-03-27 13:40:07 +00:00
|
|
|
m_bROCurrency = seqROStates[nProp];
|
2001-06-18 08:32:41 +00:00
|
|
|
nHint |= SYSLOCALEOPTIONS_HINT_CURRENCY;
|
|
|
|
}
|
2004-03-17 09:12:23 +00:00
|
|
|
else if( seqPropertyNames[nProp] == PROPERTYNAME_DECIMALSEPARATOR )
|
|
|
|
{
|
|
|
|
seqValues[nProp] >>= m_bDecimalSeparator;
|
|
|
|
m_bRODecimalSeparator = seqROStates[nProp];
|
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
if ( nHint )
|
2009-10-16 00:05:16 +02:00
|
|
|
NotifyListeners( nHint );
|
2004-03-17 09:12:23 +00:00
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
// ====================================================================
|
|
|
|
|
|
|
|
SvtSysLocaleOptions::SvtSysLocaleOptions()
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
if ( !pOptions )
|
2004-11-15 16:23:45 +00:00
|
|
|
{
|
2009-10-08 16:59:48 +02:00
|
|
|
RTL_LOGFILE_CONTEXT(aLog, "svl ( ??? ) ::SvtSysLocaleOptions_Impl::ctor()");
|
2001-06-18 08:32:41 +00:00
|
|
|
pOptions = new SvtSysLocaleOptions_Impl;
|
2004-11-15 16:23:45 +00:00
|
|
|
|
2009-10-12 11:49:13 +02:00
|
|
|
ItemHolder1::holdConfigItem(E_SYSLOCALEOPTIONS);
|
2004-11-15 16:23:45 +00:00
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
++nRefCount;
|
2009-10-16 00:05:16 +02:00
|
|
|
pOptions->AddListener(this);
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SvtSysLocaleOptions::~SvtSysLocaleOptions()
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
2009-10-16 00:05:16 +02:00
|
|
|
pOptions->RemoveListener(this);
|
2001-06-18 08:32:41 +00:00
|
|
|
if ( !--nRefCount )
|
|
|
|
{
|
|
|
|
delete pOptions;
|
|
|
|
pOptions = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
Mutex& SvtSysLocaleOptions::GetMutex()
|
|
|
|
{
|
|
|
|
static Mutex* pMutex = NULL;
|
|
|
|
if( !pMutex )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( Mutex::getGlobalMutex() );
|
|
|
|
if( !pMutex )
|
|
|
|
{
|
2007-08-01 09:55:53 +00:00
|
|
|
// #i77768# Due to a static reference in the toolkit lib
|
2009-10-08 16:59:48 +02:00
|
|
|
// we need a mutex that lives longer than the svl library.
|
2007-08-01 09:55:53 +00:00
|
|
|
// Otherwise the dtor would use a destructed mutex!!
|
|
|
|
pMutex = new Mutex;
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return *pMutex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sal_Bool SvtSysLocaleOptions::IsModified()
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
return pOptions->IsModified();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions::Commit()
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->Commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-03 18:41:58 +01:00
|
|
|
void SvtSysLocaleOptions::BlockBroadcasts( bool bBlock )
|
2001-06-26 11:36:41 +00:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->BlockBroadcasts( bBlock );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
const OUString& SvtSysLocaleOptions::GetLocaleConfigString() const
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
return pOptions->GetLocaleString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions::SetLocaleConfigString( const OUString& rStr )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->SetLocaleString( rStr );
|
|
|
|
}
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
void SvtSysLocaleOptions::SetUILocaleConfigString( const OUString& rStr )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->SetUILocaleString( rStr );
|
|
|
|
}
|
2001-06-18 08:32:41 +00:00
|
|
|
|
|
|
|
const OUString& SvtSysLocaleOptions::GetCurrencyConfigString() const
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
return pOptions->GetCurrencyString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions::SetCurrencyConfigString( const OUString& rStr )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->SetCurrencyString( rStr );
|
|
|
|
}
|
|
|
|
|
2004-03-17 09:12:23 +00:00
|
|
|
sal_Bool SvtSysLocaleOptions::IsDecimalSeparatorAsLocale() const
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
return pOptions->IsDecimalSeparatorAsLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvtSysLocaleOptions::SetDecimalSeparatorAsLocale( sal_Bool bSet)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
pOptions->SetDecimalSeparatorAsLocale(bSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-27 13:40:07 +00:00
|
|
|
sal_Bool SvtSysLocaleOptions::IsReadOnly( EOption eOption ) const
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
|
|
|
return pOptions->IsReadOnly( eOption );
|
|
|
|
}
|
2001-06-21 16:58:16 +00:00
|
|
|
|
2001-06-18 08:32:41 +00:00
|
|
|
// static
|
|
|
|
void SvtSysLocaleOptions::GetCurrencyAbbrevAndLanguage( String& rAbbrev,
|
|
|
|
LanguageType& eLang, const ::rtl::OUString& rConfigString )
|
|
|
|
{
|
|
|
|
sal_Int32 nDelim = rConfigString.indexOf( '-' );
|
|
|
|
if ( nDelim >= 0 )
|
|
|
|
{
|
|
|
|
rAbbrev = rConfigString.copy( 0, nDelim );
|
|
|
|
String aIsoStr( rConfigString.copy( nDelim+1 ) );
|
2006-04-07 14:57:36 +00:00
|
|
|
eLang = MsLangId::convertIsoStringToLanguage( aIsoStr );
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rAbbrev = rConfigString;
|
2001-06-26 11:36:41 +00:00
|
|
|
eLang = (rAbbrev.Len() ? LANGUAGE_NONE : LANGUAGE_SYSTEM);
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
::rtl::OUString SvtSysLocaleOptions::CreateCurrencyConfigString(
|
|
|
|
const String& rAbbrev, LanguageType eLang )
|
|
|
|
{
|
2006-04-07 14:57:36 +00:00
|
|
|
String aIsoStr( MsLangId::convertLanguageToIsoString( eLang ) );
|
2001-06-18 08:32:41 +00:00
|
|
|
if ( aIsoStr.Len() )
|
|
|
|
{
|
|
|
|
::rtl::OUStringBuffer aStr( rAbbrev.Len() + 1 + aIsoStr.Len() );
|
2012-06-24 21:46:31 +01:00
|
|
|
aStr.append( rAbbrev );
|
2001-06-18 08:32:41 +00:00
|
|
|
aStr.append( sal_Unicode('-') );
|
2012-06-24 21:46:31 +01:00
|
|
|
aStr.append( aIsoStr );
|
2001-06-18 08:32:41 +00:00
|
|
|
return aStr.makeStringAndClear();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return rAbbrev;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
void SvtSysLocaleOptions::SetCurrencyChangeLink( const Link& rLink )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
2004-06-25 16:25:24 +00:00
|
|
|
DBG_ASSERT( !CurrencyChangeLink::get().IsSet(), "SvtSysLocaleOptions::SetCurrencyChangeLink: already set" );
|
|
|
|
CurrencyChangeLink::get() = rLink;
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
const Link& SvtSysLocaleOptions::GetCurrencyChangeLink()
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetMutex() );
|
2004-06-25 16:25:24 +00:00
|
|
|
return CurrencyChangeLink::get();
|
2001-06-18 08:32:41 +00:00
|
|
|
}
|
|
|
|
|
2009-10-16 00:05:16 +02:00
|
|
|
|
|
|
|
void SvtSysLocaleOptions::ConfigurationChanged( utl::ConfigurationBroadcaster* p, sal_uInt32 nHint )
|
|
|
|
{
|
|
|
|
if ( nHint & SYSLOCALEOPTIONS_HINT_CURRENCY )
|
|
|
|
{
|
|
|
|
const Link& rLink = GetCurrencyChangeLink();
|
|
|
|
if ( rLink.IsSet() )
|
|
|
|
rLink.Call( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
::utl::detail::Options::ConfigurationChanged( p, nHint );
|
|
|
|
}
|
|
|
|
|
|
|
|
com::sun::star::lang::Locale SvtSysLocaleOptions::GetLocale() const
|
|
|
|
{
|
|
|
|
return lcl_str_to_locale( GetLocaleConfigString() );
|
|
|
|
}
|
|
|
|
|
2009-10-26 15:10:09 +01:00
|
|
|
com::sun::star::lang::Locale SvtSysLocaleOptions::GetRealLocale() const
|
|
|
|
{
|
|
|
|
return pOptions->GetRealLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
com::sun::star::lang::Locale SvtSysLocaleOptions::GetRealUILocale() const
|
|
|
|
{
|
|
|
|
return pOptions->GetRealUILocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
LanguageType SvtSysLocaleOptions::GetRealLanguage() const
|
|
|
|
{
|
|
|
|
return pOptions->GetRealLanguage();
|
|
|
|
}
|
|
|
|
|
|
|
|
LanguageType SvtSysLocaleOptions::GetRealUILanguage() const
|
|
|
|
{
|
|
|
|
return pOptions->GetRealUILanguage();
|
2009-11-03 18:41:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|