9440998447
Change-Id: I4a1db5d06511221a656367e7b0457144335ae10c
177 lines
4.7 KiB
C++
177 lines
4.7 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 <linguistic/hyphdta.hxx>
|
|
#include <linguistic/lngprops.hxx>
|
|
#include <linguistic/misc.hxx>
|
|
#include <osl/mutex.hxx>
|
|
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
#include <tools/debug.hxx>
|
|
#include <svl/lngmisc.hxx>
|
|
#include <unotools/localedatawrapper.hxx>
|
|
|
|
using namespace osl;
|
|
using namespace com::sun::star;
|
|
using namespace com::sun::star::lang;
|
|
using namespace com::sun::star::uno;
|
|
using namespace com::sun::star::linguistic2;
|
|
|
|
|
|
namespace linguistic
|
|
{
|
|
|
|
|
|
HyphenatedWord::HyphenatedWord(const OUString &rWord, LanguageType nLang, sal_Int16 nHPos,
|
|
const OUString &rHyphWord, sal_Int16 nPos ) :
|
|
aWord (rWord),
|
|
aHyphenatedWord (rHyphWord),
|
|
nHyphPos (nPos),
|
|
nHyphenationPos (nHPos),
|
|
nLanguage (nLang)
|
|
{
|
|
OUString aSingleQuote( GetLocaleDataWrapper( nLanguage ).getQuotationMarkEnd() );
|
|
DBG_ASSERT( 1 == aSingleQuote.getLength(), "unexpectend length of quotation mark" );
|
|
if (!aSingleQuote.isEmpty())
|
|
{
|
|
// ignore typographical apostrophes (which got replaced in original
|
|
// word when being checked for hyphenation) in results.
|
|
OUString aTmpWord( rWord );
|
|
OUString aTmpHyphWord( rHyphWord );
|
|
aTmpWord = aTmpWord .replace( aSingleQuote[0], '\'' );
|
|
aTmpHyphWord = aTmpHyphWord.replace( aSingleQuote[0], '\'' );
|
|
bIsAltSpelling = aTmpWord != aTmpHyphWord;
|
|
}
|
|
else
|
|
bIsAltSpelling = rWord != rHyphWord;
|
|
}
|
|
|
|
|
|
HyphenatedWord::~HyphenatedWord()
|
|
{
|
|
}
|
|
|
|
|
|
OUString SAL_CALL HyphenatedWord::getWord()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return aWord;
|
|
}
|
|
|
|
|
|
Locale SAL_CALL HyphenatedWord::getLocale()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
|
|
return LanguageTag::convertToLocale( nLanguage );
|
|
}
|
|
|
|
|
|
sal_Int16 SAL_CALL HyphenatedWord::getHyphenationPos()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return nHyphenationPos;
|
|
}
|
|
|
|
|
|
OUString SAL_CALL HyphenatedWord::getHyphenatedWord()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return aHyphenatedWord;
|
|
}
|
|
|
|
|
|
sal_Int16 SAL_CALL HyphenatedWord::getHyphenPos()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return nHyphPos;
|
|
}
|
|
|
|
|
|
sal_Bool SAL_CALL HyphenatedWord::isAlternativeSpelling()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return bIsAltSpelling;
|
|
}
|
|
|
|
|
|
PossibleHyphens::PossibleHyphens(const OUString &rWord, LanguageType nLang,
|
|
const OUString &rHyphWord,
|
|
const Sequence< sal_Int16 > &rPositions) :
|
|
aWord (rWord),
|
|
aWordWithHyphens(rHyphWord),
|
|
aOrigHyphenPos (rPositions),
|
|
nLanguage (nLang)
|
|
{
|
|
}
|
|
|
|
|
|
PossibleHyphens::~PossibleHyphens()
|
|
{
|
|
}
|
|
|
|
|
|
OUString SAL_CALL PossibleHyphens::getWord()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return aWord;
|
|
}
|
|
|
|
|
|
Locale SAL_CALL PossibleHyphens::getLocale()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return LanguageTag::convertToLocale( nLanguage );
|
|
}
|
|
|
|
|
|
OUString SAL_CALL PossibleHyphens::getPossibleHyphens()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return aWordWithHyphens;
|
|
}
|
|
|
|
|
|
Sequence< sal_Int16 > SAL_CALL PossibleHyphens::getHyphenationPositions()
|
|
{
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
return aOrigHyphenPos;
|
|
}
|
|
|
|
css::uno::Reference <css::linguistic2::XHyphenatedWord> HyphenatedWord::CreateHyphenatedWord(
|
|
const OUString &rWord, LanguageType nLang, sal_Int16 nHyphenationPos,
|
|
const OUString &rHyphenatedWord, sal_Int16 nHyphenPos )
|
|
{
|
|
return new HyphenatedWord( rWord, nLang, nHyphenationPos, rHyphenatedWord, nHyphenPos );
|
|
}
|
|
|
|
css::uno::Reference < css::linguistic2::XPossibleHyphens > PossibleHyphens::CreatePossibleHyphens
|
|
(const OUString &rWord, LanguageType nLang,
|
|
const OUString &rHyphWord,
|
|
const css::uno::Sequence< sal_Int16 > &rPositions)
|
|
{
|
|
return new PossibleHyphens( rWord, nLang, rHyphWord, rPositions );
|
|
}
|
|
|
|
|
|
} // namespace linguistic
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|