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 .
21 #include <sal/config.h>
23 #include <string_view>
25 #include <com/sun/star/i18n/XExtendedIndexEntrySupplier.hpp>
26 #include <cppuhelper/implbase.hxx>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
29 namespace com::sun::star::uno
{ class XComponentContext
; }
35 class IndexEntrySupplier final
: public cppu::WeakImplHelper
37 css::i18n::XExtendedIndexEntrySupplier
,
38 css::lang::XServiceInfo
42 IndexEntrySupplier( const css::uno::Reference
< css::uno::XComponentContext
>& rxContext
);
45 virtual css::uno::Sequence
< css::lang::Locale
> SAL_CALL
getLocaleList() override
;
47 virtual css::uno::Sequence
< OUString
> SAL_CALL
getAlgorithmList(
48 const css::lang::Locale
& rLocale
) override
;
50 virtual sal_Bool SAL_CALL
loadAlgorithm(
51 const css::lang::Locale
& rLocale
,
52 const OUString
& SortAlgorithm
, sal_Int32 collatorOptions
) override
;
54 virtual sal_Bool SAL_CALL
usePhoneticEntry(
55 const css::lang::Locale
& rLocale
) override
;
57 virtual OUString SAL_CALL
getPhoneticCandidate( const OUString
& IndexEntry
,
58 const css::lang::Locale
& rLocale
) override
;
60 virtual OUString SAL_CALL
getIndexKey( const OUString
& IndexEntry
,
61 const OUString
& PhoneticEntry
, const css::lang::Locale
& rLocale
) override
;
63 virtual sal_Int16 SAL_CALL
compareIndexEntry( const OUString
& IndexEntry1
,
64 const OUString
& PhoneticEntry1
, const css::lang::Locale
& rLocale1
,
65 const OUString
& IndexEntry2
, const OUString
& PhoneticEntry2
,
66 const css::lang::Locale
& rLocale2
) override
;
68 virtual OUString SAL_CALL
getIndexCharacter( const OUString
& IndexEntry
,
69 const css::lang::Locale
& rLocale
, const OUString
& SortAlgorithm
) override
;
71 virtual OUString SAL_CALL
getIndexFollowPageWord( sal_Bool MorePages
,
72 const css::lang::Locale
& rLocale
) override
;
75 virtual OUString SAL_CALL
getImplementationName() override
;
76 virtual sal_Bool SAL_CALL
supportsService(const OUString
& ServiceName
) override
;
77 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
80 css::uno::Reference
< css::i18n::XExtendedIndexEntrySupplier
> xIES
;
81 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
82 /// @throws css::uno::RuntimeException
83 bool createLocaleSpecificIndexEntrySupplier(std::u16string_view name
);
84 /// @throws css::uno::RuntimeException
85 css::uno::Reference
< css::i18n::XExtendedIndexEntrySupplier
> const & getLocaleSpecificIndexEntrySupplier(
86 const css::lang::Locale
& rLocale
, const OUString
& rSortAlgorithm
);
88 css::lang::Locale aLocale
;
89 OUString aSortAlgorithm
;
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */