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 _I18N_COLLATOR_UNICODE_HXX_
20 : #define _I18N_COLLATOR_UNICODE_HXX_
21 :
22 : #include <com/sun/star/uno/Reference.h>
23 : #include <com/sun/star/i18n/XCollator.hpp>
24 : #include <com/sun/star/lang/XServiceInfo.hpp>
25 : #include <cppuhelper/implbase2.hxx>
26 : #include <osl/module.h>
27 :
28 : #include <unicode/tblcoll.h>
29 :
30 : // ----------------------------------------------------
31 : // class Collator_Unicode
32 : // ----------------------------------------------------
33 :
34 : namespace com { namespace sun { namespace star { namespace i18n {
35 :
36 : class Collator_Unicode : public cppu::WeakImplHelper2 < XCollator, com::sun::star::lang::XServiceInfo >
37 : {
38 : public:
39 : // Constructors
40 : Collator_Unicode();
41 : // Destructor
42 : virtual ~Collator_Unicode();
43 :
44 : sal_Int32 SAL_CALL compareSubstring( const OUString& s1, sal_Int32 off1, sal_Int32 len1,
45 : const OUString& s2, sal_Int32 off2, sal_Int32 len2) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
46 :
47 : sal_Int32 SAL_CALL compareString( const OUString& s1, const OUString& s2)
48 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
49 :
50 : sal_Int32 SAL_CALL loadCollatorAlgorithm( const OUString& impl, const lang::Locale& rLocale,
51 : sal_Int32 collatorOptions) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
52 :
53 :
54 : // following 4 methods are implemented in collatorImpl.
55 0 : sal_Int32 SAL_CALL loadDefaultCollator( const lang::Locale&, sal_Int32)
56 0 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE {throw com::sun::star::uno::RuntimeException();}
57 0 : void SAL_CALL loadCollatorAlgorithmWithEndUserOption( const OUString&, const lang::Locale&,
58 0 : const com::sun::star::uno::Sequence< sal_Int32 >&) throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE {throw com::sun::star::uno::RuntimeException();}
59 0 : com::sun::star::uno::Sequence< OUString > SAL_CALL listCollatorAlgorithms( const lang::Locale&)
60 0 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE {throw com::sun::star::uno::RuntimeException();}
61 0 : com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL listCollatorOptions( const OUString& )
62 0 : throw(com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE {throw com::sun::star::uno::RuntimeException();}
63 :
64 : //XServiceInfo
65 : virtual OUString SAL_CALL getImplementationName() throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
66 : virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
67 : virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
68 :
69 : protected:
70 : const sal_Char *implementationName;
71 : private:
72 : RuleBasedCollator *uca_base, *collator;
73 : #ifndef DISABLE_DYNLOADING
74 : oslModule hModule;
75 : #endif
76 : };
77 :
78 : } } } }
79 :
80 : #endif
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|