merge the formfield patch from ooo-build
[ooovba.git] / i18npool / inc / transliteration_Numeric.hxx
blob748b7094d57c0c461b6c1606e1b28e9407b03629
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: transliteration_Numeric.hxx,v $
10 * $Revision: 1.6 $
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_TRANSLITERATION_NUMERIC_H_
31 #define _I18N_TRANSLITERATION_TRANSLITERATION_NUMERIC_H_
33 #include <transliteration_commonclass.hxx>
35 namespace com { namespace sun { namespace star { namespace i18n {
37 class transliteration_Numeric : public transliteration_commonclass {
38 public:
39 virtual ::rtl::OUString SAL_CALL
40 transliterate( const ::rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
41 throw(::com::sun::star::uno::RuntimeException);
43 virtual sal_Unicode SAL_CALL
44 transliterateChar2Char( sal_Unicode inChar)
45 throw(com::sun::star::i18n::MultipleCharsOutputException,
46 com::sun::star::uno::RuntimeException);
48 // Methods which are shared.
49 virtual sal_Int16 SAL_CALL getType( ) throw(::com::sun::star::uno::RuntimeException);
51 virtual ::rtl::OUString SAL_CALL
52 folding( const ::rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, ::com::sun::star::uno::Sequence< sal_Int32 >& offset )
53 throw(::com::sun::star::uno::RuntimeException);
55 virtual 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 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
60 transliterateRange( const ::rtl::OUString& str1, const ::rtl::OUString& str2 )
61 throw(::com::sun::star::uno::RuntimeException);
62 protected:
63 sal_Int16 nNativeNumberMode;
64 sal_Int16 tableSize;
65 sal_Unicode* table;
66 sal_Bool recycleSymbol;
67 private:
68 rtl::OUString SAL_CALL
69 transliterateBullet( const rtl::OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
70 com::sun::star::uno::Sequence< sal_Int32 >& offset )
71 throw(com::sun::star::uno::RuntimeException);
74 } } } }
76 #endif // _I18N_TRANSLITERATION_TRANSLITERATION_NUMERIC_H_