1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 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. 14 * 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). 20 * 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. 25 * 26 ************************************************************************/ 27 #ifndef _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_ 28 #define _I18N_TRANSLITERATION_TEXTTOPRONOUNCE_ZH_HXX_ 29 30 #include <transliteration_Ignore.hxx> 31 #include <indexentrysupplier_asian.hxx> 32 33 namespace com { namespace sun { namespace star { namespace i18n { 34 35 class TextToPronounce_zh : public transliteration_Ignore 36 { 37 protected: 38 oslModule hModule; 39 sal_uInt16 **idx; 40 const sal_Unicode* SAL_CALL getPronounce(const sal_Unicode ch); 41 42 public: 43 TextToPronounce_zh(const sal_Char* func_name); 44 ~TextToPronounce_zh(); 45 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); 49 50 sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException); 51 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); 55 56 rtl::OUString SAL_CALL 57 transliterateChar2String( sal_Unicode inChar) 58 throw(com::sun::star::uno::RuntimeException); 59 60 sal_Unicode SAL_CALL 61 transliterateChar2Char( sal_Unicode inChar) 62 throw(com::sun::star::uno::RuntimeException, 63 com::sun::star::i18n::MultipleCharsOutputException); 64 }; 65 66 #define TRANSLITERATION_TextToPronounce_zh( name ) \ 67 class name : public TextToPronounce_zh \ 68 { \ 69 public: \ 70 name (); \ 71 }; 72 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 78 79 } } } } 80 81 #endif 82