1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_INDEXENTRYSUPPLIER_DEFAULT_HXX
20 #define INCLUDED_I18NPOOL_INC_INDEXENTRYSUPPLIER_DEFAULT_HXX
22 #include <indexentrysupplier_common.hxx>
24 namespace com
{ namespace sun
{ namespace star
{ namespace i18n
{
29 // class IndexEntrySupplier_Unicode
31 class IndexEntrySupplier_Unicode
: public IndexEntrySupplier_Common
{
33 IndexEntrySupplier_Unicode( const css::uno::Reference
< css::uno::XComponentContext
>& rxContext
);
34 virtual ~IndexEntrySupplier_Unicode();
36 virtual sal_Bool SAL_CALL
loadAlgorithm(
37 const css::lang::Locale
& rLocale
,
38 const OUString
& SortAlgorithm
, sal_Int32 collatorOptions
)
39 throw (css::uno::RuntimeException
, std::exception
) override
;
41 virtual OUString SAL_CALL
getIndexKey( const OUString
& IndexEntry
,
42 const OUString
& PhoneticEntry
, const css::lang::Locale
& rLocale
)
43 throw (css::uno::RuntimeException
, std::exception
) override
;
45 virtual sal_Int16 SAL_CALL
compareIndexEntry( const OUString
& IndexEntry1
,
46 const OUString
& PhoneticEntry1
, const css::lang::Locale
& rLocale1
,
47 const OUString
& IndexEntry2
, const OUString
& PhoneticEntry2
,
48 const css::lang::Locale
& rLocale2
)
49 throw (css::uno::RuntimeException
, std::exception
) override
;
51 virtual OUString SAL_CALL
getIndexCharacter( const OUString
& rIndexEntry
,
52 const css::lang::Locale
& rLocale
, const OUString
& rSortAlgorithm
)
53 throw (css::uno::RuntimeException
, std::exception
) override
;
71 void init(sal_Unicode start_
, sal_Unicode end_
, IndexKey
* keys
, sal_Int16 key_count
, Index
*index
);
84 Index(const css::uno::Reference
< css::uno::XComponentContext
>& rxContext
);
87 void init(const css::lang::Locale
& rLocale
, const OUString
& algorithm
) throw (css::uno::RuntimeException
);
89 void makeIndexKeys(const css::lang::Locale
&rLocale
, const OUString
&algorithm
) throw (css::uno::RuntimeException
);
90 sal_Int16
getIndexWeight(const OUString
& rIndexEntry
);
91 OUString
getIndexDescription(const OUString
& rIndexEntry
);
93 IndexTable tables
[MAX_TABLES
];
94 sal_Int16 table_count
;
95 IndexKey keys
[MAX_KEYS
];
97 sal_Int16 mkeys
[MAX_KEYS
];
99 OUString skipping_chars
;
100 CollatorImpl
*collator
;
101 sal_Int16
compare(sal_Unicode c1
, sal_Unicode c2
);
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */