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 .
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
; }
31 // ----------------------------------------------------
32 // class NativeNumberSupplierService
33 // ----------------------------------------------------
34 class NativeNumberSupplierService
: public cppu::WeakImplHelper
36 css::i18n::XNativeNumberSupplier2
,
37 css::lang::XServiceInfo
41 NativeNumberSupplierService(bool _useOffset
= false) : useOffset(_useOffset
) {}
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
;
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
) ;
78 css::lang::Locale aLocale
;
80 mutable css::uno::Reference
< css::i18n::XCharacterClassification
> xCharClass
;
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */