a11y: Simplify OCommonAccessibleComponent::getAccessibleIndexInParent
[LibreOffice.git] / i18npool / inc / indexentrysupplier_common.hxx
blobeaa752d4ffcb48810b88adac9db0b8678b223ffd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #pragma once
22 #include <com/sun/star/i18n/XExtendedIndexEntrySupplier.hpp>
23 #include <cppuhelper/implbase.hxx>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <rtl/ref.hxx>
27 namespace com::sun::star::uno { class XComponentContext; }
28 namespace i18npool { class CollatorImpl; }
30 namespace i18npool {
35 class IndexEntrySupplier_Common : public cppu::WeakImplHelper
37 css::i18n::XExtendedIndexEntrySupplier,
38 css::lang::XServiceInfo
41 public:
42 IndexEntrySupplier_Common( const css::uno::Reference < css::uno::XComponentContext >& rxContext );
43 virtual ~IndexEntrySupplier_Common() override;
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 usePhoneticEntry(
51 const css::lang::Locale& rLocale ) override;
53 virtual OUString SAL_CALL getPhoneticCandidate( const OUString& IndexEntry,
54 const css::lang::Locale& rLocale ) override;
56 virtual sal_Bool SAL_CALL loadAlgorithm(
57 const css::lang::Locale& rLocale,
58 const OUString& SortAlgorithm, sal_Int32 collatorOptions ) 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& rIndexEntry,
69 const css::lang::Locale& rLocale, const OUString& rSortAlgorithm ) override;
71 virtual OUString SAL_CALL getIndexFollowPageWord( sal_Bool MorePages,
72 const css::lang::Locale& rLocale ) override;
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;
79 protected:
80 const char * implementationName;
81 bool usePhonetic;
82 rtl::Reference<CollatorImpl>
83 collator;
84 css::lang::Locale aLocale;
85 OUString aAlgorithm;
87 /// @throws css::uno::RuntimeException
88 const OUString& getEntry( const OUString& IndexEntry,
89 const OUString& PhoneticEntry, const css::lang::Locale& rLocale ) const;
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */