Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / i18npool / inc / nativenumbersupplier.hxx
blob9bd37854bd70607b2fb97d2694499c1d0c8e482b
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 .
19 #ifndef INCLUDED_I18NPOOL_INC_NATIVENUMBERSUPPLIER_HXX
20 #define INCLUDED_I18NPOOL_INC_NATIVENUMBERSUPPLIER_HXX
22 #include <com/sun/star/i18n/XNativeNumberSupplier2.hpp>
23 #include <com/sun/star/i18n/NativeNumberXmlAttributes.hpp>
24 #include <cppuhelper/implbase.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
27 namespace com::sun::star::i18n { class XCharacterClassification; }
29 namespace i18npool {
31 // ----------------------------------------------------
32 // class NativeNumberSupplierService
33 // ----------------------------------------------------
34 class NativeNumberSupplierService : public cppu::WeakImplHelper
36 css::i18n::XNativeNumberSupplier2,
37 css::lang::XServiceInfo
40 public:
41 NativeNumberSupplierService(bool _useOffset = false) : useOffset(_useOffset) {}
43 // Methods
44 virtual OUString SAL_CALL getNativeNumberString( const OUString& aNumberString,
45 const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) override;
47 virtual sal_Bool SAL_CALL isValidNatNum( const css::lang::Locale& aLocale,
48 sal_Int16 nNativeNumberMode ) override;
50 virtual css::i18n::NativeNumberXmlAttributes SAL_CALL convertToXmlAttributes(
51 const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) override;
53 virtual sal_Int16 SAL_CALL convertFromXmlAttributes(
54 const css::i18n::NativeNumberXmlAttributes& aAttr ) override;
56 // XNativeNumberSupplier2
57 virtual OUString SAL_CALL getNativeNumberStringParams(
58 const OUString& rNumberString, const css::lang::Locale& rLocale,
59 sal_Int16 nNativeNumberMode, const OUString& rNativeNumberParams) override;
61 //XServiceInfo
62 virtual OUString SAL_CALL getImplementationName() override;
63 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
64 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
66 // following methods are not for XNativeNumberSupplier, they are for calling from transliterations
67 /// @throws css::uno::RuntimeException
68 OUString getNativeNumberString(const OUString& rNumberString,
69 const css::lang::Locale& rLocale,
70 sal_Int16 nNativeNumberMode,
71 css::uno::Sequence<sal_Int32>& offset,
72 const OUString& rNativeNumberParams = OUString());
73 /// @throws css::uno::RuntimeException
74 sal_Unicode getNativeNumberChar( const sal_Unicode inChar,
75 const css::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) ;
77 private:
78 css::lang::Locale aLocale;
79 bool useOffset;
80 mutable css::uno::Reference< css::i18n::XCharacterClassification > xCharClass;
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */