update dev300-m58
[ooovba.git] / i18npool / inc / textToPronounce_zh.hxx
blobdaa460f67addaecbf5647cb5f852b2d4412dfc41
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: textToPronounce_zh.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_
31 #define _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_
33 #include <transliteration_Ignore.hxx>
34 #include <indexentrysupplier_asian.hxx>
36 namespace com { namespace sun { namespace star { namespace i18n {
38 class TextToPronounce_zh : public transliteration_Ignore
40 protected:
41 oslModule hModule;
42 sal_uInt16 **idx;
43 const sal_Unicode* SAL_CALL getPronounce(const sal_Unicode ch);
45 public:
46 TextToPronounce_zh(const sal_Char* func_name);
47 ~TextToPronounce_zh();
49 rtl::OUString SAL_CALL
50 folding(const rtl::OUString & inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 > & offset)
51 throw (com::sun::star::uno::RuntimeException);
53 sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException);
55 sal_Bool SAL_CALL
56 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)
57 throw (com::sun::star::uno::RuntimeException);
59 rtl::OUString SAL_CALL
60 transliterateChar2String( sal_Unicode inChar)
61 throw(com::sun::star::uno::RuntimeException);
63 sal_Unicode SAL_CALL
64 transliterateChar2Char( sal_Unicode inChar)
65 throw(com::sun::star::uno::RuntimeException,
66 com::sun::star::i18n::MultipleCharsOutputException);
69 #define TRANSLITERATION_TextToPronounce_zh( name ) \
70 class name : public TextToPronounce_zh \
71 { \
72 public: \
73 name (); \
76 #ifdef TRANSLITERATION_ALL
77 TRANSLITERATION_TextToPronounce_zh( TextToPinyin_zh_CN)
78 TRANSLITERATION_TextToPronounce_zh( TextToChuyin_zh_TW)
79 #endif
80 #undef TRANSLITERATION_TextToPronounce_zh
82 } } } }
84 #endif