merged tag ooo/OOO330_m14
[LibreOffice.git] / i18npool / inc / textToPronounce_zh.hxx
blobe1452606d28fbe3a80e2b6f00aa60f2c2f9693b7
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_
28 #define _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_
30 #include <transliteration_Ignore.hxx>
31 #include <indexentrysupplier_asian.hxx>
33 namespace com { namespace sun { namespace star { namespace i18n {
35 class TextToPronounce_zh : public transliteration_Ignore
37 protected:
38 oslModule hModule;
39 sal_uInt16 **idx;
40 const sal_Unicode* SAL_CALL getPronounce(const sal_Unicode ch);
42 public:
43 TextToPronounce_zh(const sal_Char* func_name);
44 ~TextToPronounce_zh();
46 rtl::OUString SAL_CALL
47 folding(const rtl::OUString & inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 > & offset)
48 throw (com::sun::star::uno::RuntimeException);
50 sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException);
52 sal_Bool SAL_CALL
53 equals( const rtl::OUString & str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32 & nMatch1, const rtl::OUString & str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32 & nMatch2)
54 throw (com::sun::star::uno::RuntimeException);
56 rtl::OUString SAL_CALL
57 transliterateChar2String( sal_Unicode inChar)
58 throw(com::sun::star::uno::RuntimeException);
60 sal_Unicode SAL_CALL
61 transliterateChar2Char( sal_Unicode inChar)
62 throw(com::sun::star::uno::RuntimeException,
63 com::sun::star::i18n::MultipleCharsOutputException);
66 #define TRANSLITERATION_TextToPronounce_zh( name ) \
67 class name : public TextToPronounce_zh \
68 { \
69 public: \
70 name (); \
73 #ifdef TRANSLITERATION_ALL
74 TRANSLITERATION_TextToPronounce_zh( TextToPinyin_zh_CN)
75 TRANSLITERATION_TextToPronounce_zh( TextToChuyin_zh_TW)
76 #endif
77 #undef TRANSLITERATION_TextToPronounce_zh
79 } } } }
81 #endif