Files
libreoffice/svx/source/unoedit/UnoForbiddenCharsTable.cxx
Rüdiger Timm 91d34ba942 INTEGRATION: CWS changefileheader (1.5.730); FILE MERGED
2008/04/01 15:51:57 thb 1.5.730.3: #i85898# Stripping all external header guards
2008/04/01 12:50:20 thb 1.5.730.2: #i85898# Stripping all external header guards
2008/03/31 14:24:16 rt 1.5.730.1: #i87441# Change license header to LPGL v3.
2008-04-11 03:04:28 +00:00

149 lines
4.5 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: UnoForbiddenCharsTable.cxx,v $
* $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_svx.hxx"
#include "UnoForbiddenCharsTable.hxx"
#include "forbiddencharacterstable.hxx"
#include <vos/mutex.hxx>
#include <vcl/svapp.hxx>
#include "unolingu.hxx"
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::i18n;
using namespace ::rtl;
using namespace ::vos;
using namespace ::cppu;
SvxUnoForbiddenCharsTable::SvxUnoForbiddenCharsTable(ORef<SvxForbiddenCharactersTable> xForbiddenChars) :
mxForbiddenChars( xForbiddenChars )
{
}
SvxUnoForbiddenCharsTable::~SvxUnoForbiddenCharsTable()
{
}
void SvxUnoForbiddenCharsTable::onChange()
{
}
ForbiddenCharacters SvxUnoForbiddenCharsTable::getForbiddenCharacters( const Locale& rLocale )
throw(NoSuchElementException, RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
if(!mxForbiddenChars.isValid())
throw RuntimeException();
const LanguageType eLang = SvxLocaleToLanguage( rLocale );
const ForbiddenCharacters* pForbidden = mxForbiddenChars->GetForbiddenCharacters( eLang, FALSE );
if(!pForbidden)
throw NoSuchElementException();
return *pForbidden;
}
sal_Bool SvxUnoForbiddenCharsTable::hasForbiddenCharacters( const Locale& rLocale )
throw(RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
if(!mxForbiddenChars.isValid())
return sal_False;
const LanguageType eLang = SvxLocaleToLanguage( rLocale );
const ForbiddenCharacters* pForbidden = mxForbiddenChars->GetForbiddenCharacters( eLang, FALSE );
return NULL != pForbidden;
}
void SvxUnoForbiddenCharsTable::setForbiddenCharacters(const Locale& rLocale, const ForbiddenCharacters& rForbiddenCharacters )
throw(RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
if(!mxForbiddenChars.isValid())
throw RuntimeException();
const LanguageType eLang = SvxLocaleToLanguage( rLocale );
mxForbiddenChars->SetForbiddenCharacters( eLang, rForbiddenCharacters );
onChange();
}
void SvxUnoForbiddenCharsTable::removeForbiddenCharacters( const Locale& rLocale )
throw(RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
if(!mxForbiddenChars.isValid())
throw RuntimeException();
const LanguageType eLang = SvxLocaleToLanguage( rLocale );
mxForbiddenChars->ClearForbiddenCharacters( eLang );
onChange();
}
// XSupportedLocales
Sequence< Locale > SAL_CALL SvxUnoForbiddenCharsTable::getLocales()
throw(RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
const sal_Int32 nCount = mxForbiddenChars.isValid() ? mxForbiddenChars->Count() : 0;
Sequence< Locale > aLocales( nCount );
if( nCount )
{
Locale* pLocales = aLocales.getArray();
for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ )
{
const ULONG nLanguage = mxForbiddenChars->GetObjectKey( nIndex );
SvxLanguageToLocale ( *pLocales++, static_cast < LanguageType > (nLanguage) );
}
}
return aLocales;
}
sal_Bool SAL_CALL SvxUnoForbiddenCharsTable::hasLocale( const Locale& aLocale )
throw(RuntimeException)
{
OGuard aGuard( Application::GetSolarMutex() );
return hasForbiddenCharacters( aLocale );
}