LibreOffice Module i18npool (master) 1
indexentrysupplier.hxx
Go to the documentation of this file.
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#pragma once
20
21#include <sal/config.h>
22
23#include <string_view>
24
25#include <com/sun/star/i18n/XExtendedIndexEntrySupplier.hpp>
27#include <com/sun/star/lang/XServiceInfo.hpp>
28
29namespace com::sun::star::uno { class XComponentContext; }
30
31namespace i18npool {
32
33
34
35class IndexEntrySupplier final : public cppu::WeakImplHelper
36<
37 css::i18n::XExtendedIndexEntrySupplier,
38 css::lang::XServiceInfo
39>
40{
41public:
42 IndexEntrySupplier( const css::uno::Reference < css::uno::XComponentContext >& rxContext );
43
44 // Methods
45 virtual css::uno::Sequence < css::lang::Locale > SAL_CALL getLocaleList() override;
46
47 virtual css::uno::Sequence < OUString > SAL_CALL getAlgorithmList(
48 const css::lang::Locale& rLocale ) override;
49
50 virtual sal_Bool SAL_CALL loadAlgorithm(
51 const css::lang::Locale& rLocale,
52 const OUString& SortAlgorithm, sal_Int32 collatorOptions ) override;
53
54 virtual sal_Bool SAL_CALL usePhoneticEntry(
55 const css::lang::Locale& rLocale ) override;
56
57 virtual OUString SAL_CALL getPhoneticCandidate( const OUString& IndexEntry,
58 const css::lang::Locale& rLocale ) override;
59
60 virtual OUString SAL_CALL getIndexKey( const OUString& IndexEntry,
61 const OUString& PhoneticEntry, const css::lang::Locale& rLocale ) override;
62
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;
67
68 virtual OUString SAL_CALL getIndexCharacter( const OUString& IndexEntry,
69 const css::lang::Locale& rLocale, const OUString& SortAlgorithm ) override;
70
71 virtual OUString SAL_CALL getIndexFollowPageWord( sal_Bool MorePages,
72 const css::lang::Locale& rLocale ) override;
73
74 //XServiceInfo
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;
78
79private:
80 css::uno::Reference < css::i18n::XExtendedIndexEntrySupplier > xIES;
81 css::uno::Reference < css::uno::XComponentContext > m_xContext;
83 bool createLocaleSpecificIndexEntrySupplier(std::u16string_view name);
85 css::uno::Reference < css::i18n::XExtendedIndexEntrySupplier > const & getLocaleSpecificIndexEntrySupplier(
86 const css::lang::Locale& rLocale, const OUString& rSortAlgorithm);
87
88 css::lang::Locale aLocale;
90};
91
92}
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
virtual sal_Int16 SAL_CALL compareIndexEntry(const OUString &IndexEntry1, const OUString &PhoneticEntry1, const css::lang::Locale &rLocale1, const OUString &IndexEntry2, const OUString &PhoneticEntry2, const css::lang::Locale &rLocale2) override
virtual OUString SAL_CALL getImplementationName() override
virtual sal_Bool SAL_CALL usePhoneticEntry(const css::lang::Locale &rLocale) override
virtual css::uno::Sequence< css::lang::Locale > SAL_CALL getLocaleList() override
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
css::uno::Reference< css::uno::XComponentContext > m_xContext
virtual OUString SAL_CALL getIndexCharacter(const OUString &IndexEntry, const css::lang::Locale &rLocale, const OUString &SortAlgorithm) override
virtual OUString SAL_CALL getIndexKey(const OUString &IndexEntry, const OUString &PhoneticEntry, const css::lang::Locale &rLocale) override
css::uno::Reference< css::i18n::XExtendedIndexEntrySupplier > const & getLocaleSpecificIndexEntrySupplier(const css::lang::Locale &rLocale, const OUString &rSortAlgorithm)
virtual OUString SAL_CALL getPhoneticCandidate(const OUString &IndexEntry, const css::lang::Locale &rLocale) override
virtual OUString SAL_CALL getIndexFollowPageWord(sal_Bool MorePages, const css::lang::Locale &rLocale) override
IndexEntrySupplier(const css::uno::Reference< css::uno::XComponentContext > &rxContext)
virtual css::uno::Sequence< OUString > SAL_CALL getAlgorithmList(const css::lang::Locale &rLocale) override
bool createLocaleSpecificIndexEntrySupplier(std::u16string_view name)
css::uno::Reference< css::i18n::XExtendedIndexEntrySupplier > xIES
virtual sal_Bool SAL_CALL loadAlgorithm(const css::lang::Locale &rLocale, const OUString &SortAlgorithm, sal_Int32 collatorOptions) override
Constant values shared between i18npool and, for example, the number formatter.
unsigned char sal_Bool