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 TRANSLITERATION_CASE_IGNORE_H
20 : #define TRANSLITERATION_CASE_IGNORE_H
21 :
22 : #define TRANSLITERATION_UPPER_LOWER
23 : #include "transliteration_body.hxx"
24 :
25 : namespace com { namespace sun { namespace star { namespace i18n {
26 :
27 0 : class Transliteration_caseignore: public Transliteration_body
28 : {
29 : public:
30 : Transliteration_caseignore();
31 :
32 : // Methods which are shared.
33 : sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
34 :
35 : void SAL_CALL loadModule( TransliterationModules modName, const com::sun::star::lang::Locale& rLocale )
36 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
37 :
38 : com::sun::star::uno::Sequence< OUString > SAL_CALL transliterateRange(
39 : const OUString& str1, const OUString& str2 )
40 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
41 :
42 : sal_Bool SAL_CALL equals(
43 : const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
44 : const OUString& src2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2)
45 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
46 :
47 : sal_Int32 SAL_CALL compareSubstring(
48 : const OUString& s1, sal_Int32 off1, sal_Int32 len1,
49 : const OUString& s2, sal_Int32 off2, sal_Int32 len2)
50 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
51 :
52 : sal_Int32 SAL_CALL compareString(
53 : const OUString& s1,
54 : const OUString& s2)
55 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
56 :
57 : protected:
58 : TransliterationModules moduleLoaded;
59 : private:
60 : sal_Int32 SAL_CALL compare(
61 : const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
62 : const OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2)
63 : throw(com::sun::star::uno::RuntimeException);
64 : };
65 :
66 : } } } }
67 :
68 : #endif
69 :
70 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|