/src/libreoffice/i18npool/inc/nativenumbersupplier.hxx
Line | Count | Source |
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 <com/sun/star/i18n/XNativeNumberSupplier2.hpp> |
22 | | #include <com/sun/star/i18n/NativeNumberXmlAttributes.hpp> |
23 | | #include <cppuhelper/implbase.hxx> |
24 | | #include <com/sun/star/lang/XServiceInfo.hpp> |
25 | | |
26 | | namespace com::sun::star::i18n { class XCharacterClassification; } |
27 | | |
28 | | namespace i18npool { |
29 | | |
30 | | // ---------------------------------------------------- |
31 | | // class NativeNumberSupplierService |
32 | | // ---------------------------------------------------- |
33 | | class NativeNumberSupplierService final : public cppu::WeakImplHelper |
34 | | < |
35 | | css::i18n::XNativeNumberSupplier2, |
36 | | css::lang::XServiceInfo |
37 | | > |
38 | | { |
39 | | public: |
40 | 211k | NativeNumberSupplierService() {} |
41 | | |
42 | | // Methods |
43 | | virtual OUString SAL_CALL getNativeNumberString( const OUString& aNumberString, |
44 | | const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) override; |
45 | | |
46 | | virtual sal_Bool SAL_CALL isValidNatNum( const css::lang::Locale& rLocale, |
47 | 0 | sal_Int16 nNativeNumberMode ) override { return isValidNatNumImpl(rLocale, nNativeNumberMode); } |
48 | | |
49 | | virtual css::i18n::NativeNumberXmlAttributes SAL_CALL convertToXmlAttributes( |
50 | | const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) override; |
51 | | |
52 | | virtual sal_Int16 SAL_CALL convertFromXmlAttributes( |
53 | | const css::i18n::NativeNumberXmlAttributes& aAttr ) override; |
54 | | |
55 | | // XNativeNumberSupplier2 |
56 | | virtual OUString SAL_CALL getNativeNumberStringParams( |
57 | | const OUString& rNumberString, const css::lang::Locale& rLocale, |
58 | | sal_Int16 nNativeNumberMode, const OUString& rNativeNumberParams) override; |
59 | | |
60 | | //XServiceInfo |
61 | | virtual OUString SAL_CALL getImplementationName() override; |
62 | | virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; |
63 | | virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; |
64 | | |
65 | | // following methods are not for XNativeNumberSupplier, they are for calling from transliterations |
66 | | /// @throws css::uno::RuntimeException |
67 | | OUString getNativeNumberString(const OUString& rNumberString, |
68 | | const css::lang::Locale& rLocale, |
69 | | sal_Int16 nNativeNumberMode, |
70 | | css::uno::Sequence<sal_Int32>* pOffset, |
71 | | std::u16string_view rNativeNumberParams = std::u16string_view()); |
72 | | /// @throws css::uno::RuntimeException |
73 | | static sal_Unicode getNativeNumberChar( const sal_Unicode inChar, |
74 | | const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) ; |
75 | | |
76 | | private: |
77 | | static bool isValidNatNumImpl( const css::lang::Locale& aLocale, |
78 | | sal_Int16 nNativeNumberMode ); |
79 | | css::lang::Locale aLocale; |
80 | | mutable css::uno::Reference< css::i18n::XCharacterClassification > xCharClass; |
81 | | }; |
82 | | |
83 | | } |
84 | | |
85 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |