Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef INCLUDED_I18NPOOL_INC_TRANSLITERATION_BODY_HXX
20 : #define INCLUDED_I18NPOOL_INC_TRANSLITERATION_BODY_HXX
21 :
22 : #include <transliteration_commonclass.hxx>
23 : #include <i18nutil/casefolding.hxx>
24 :
25 : namespace com { namespace sun { namespace star { namespace i18n {
26 :
27 39621 : class Transliteration_body : public transliteration_commonclass
28 : {
29 : public:
30 : Transliteration_body();
31 :
32 : // Methods which are shared.
33 : sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
34 :
35 : OUString SAL_CALL transliterate(const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
36 : com::sun::star::uno::Sequence< sal_Int32 >& offset) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
37 :
38 : OUString SAL_CALL
39 : transliterateChar2String( sal_Unicode inChar)
40 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
41 :
42 : virtual sal_Unicode SAL_CALL
43 : transliterateChar2Char( sal_Unicode inChar)
44 : throw(com::sun::star::uno::RuntimeException,
45 : com::sun::star::i18n::MultipleCharsOutputException, std::exception) SAL_OVERRIDE;
46 :
47 : OUString SAL_CALL folding(const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount,
48 : com::sun::star::uno::Sequence< sal_Int32 >& offset) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
49 :
50 : sal_Bool SAL_CALL equals(
51 : const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
52 : const OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2 )
53 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
54 :
55 : com::sun::star::uno::Sequence< OUString > SAL_CALL transliterateRange( const OUString& str1,
56 : const OUString& str2 ) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
57 :
58 : protected:
59 : sal_uInt8 nMappingType;
60 : };
61 :
62 4 : class Transliteration_u2l : public Transliteration_body
63 : {
64 : public:
65 : Transliteration_u2l();
66 : };
67 :
68 6 : class Transliteration_l2u : public Transliteration_body
69 : {
70 : public:
71 : Transliteration_l2u();
72 : };
73 :
74 78978 : class Transliteration_casemapping : public Transliteration_body
75 : {
76 : public:
77 : Transliteration_casemapping();
78 : void SAL_CALL setMappingType(const sal_uInt8 rMappingType, const com::sun::star::lang::Locale& rLocale );
79 : };
80 :
81 2 : class Transliteration_togglecase : public Transliteration_body
82 : {
83 : public:
84 : Transliteration_togglecase();
85 : };
86 :
87 2 : class Transliteration_titlecase : public Transliteration_body
88 : {
89 : public:
90 : Transliteration_titlecase();
91 :
92 : virtual OUString SAL_CALL transliterate( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 >& offset ) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
93 : };
94 :
95 2 : class Transliteration_sentencecase : public Transliteration_body
96 : {
97 : public:
98 : Transliteration_sentencecase();
99 :
100 : virtual OUString SAL_CALL transliterate( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 >& offset ) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
101 : };
102 :
103 : } } } }
104 :
105 : #endif
106 :
107 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|