1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 #ifndef _I18N_NATIVENUMBERSUPPLIER_HXX_ 28 #define _I18N_NATIVENUMBERSUPPLIER_HXX_ 29 30 #include <com/sun/star/i18n/XNativeNumberSupplier.hpp> 31 #include <com/sun/star/i18n/NativeNumberMode.hpp> 32 #include <com/sun/star/i18n/NativeNumberXmlAttributes.hpp> 33 #include <cppuhelper/implbase2.hxx> // helper for implementations 34 #include <com/sun/star/lang/XServiceInfo.hpp> 35 36 namespace com { namespace sun { namespace star { namespace i18n { 37 38 // ---------------------------------------------------- 39 // class NativeNumberSupplier 40 // ---------------------------------------------------- 41 class NativeNumberSupplier : public cppu::WeakImplHelper2 42 < 43 com::sun::star::i18n::XNativeNumberSupplier, 44 com::sun::star::lang::XServiceInfo 45 > 46 { 47 public: 48 NativeNumberSupplier(sal_Bool _useOffset = sal_False) : useOffset(_useOffset) {} 49 50 // Methods 51 virtual ::rtl::OUString SAL_CALL getNativeNumberString( const ::rtl::OUString& aNumberString, 52 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) 53 throw (::com::sun::star::uno::RuntimeException); 54 55 virtual sal_Bool SAL_CALL isValidNatNum( const ::com::sun::star::lang::Locale& aLocale, 56 sal_Int16 nNativeNumberMode ) 57 throw (::com::sun::star::uno::RuntimeException); 58 59 virtual ::com::sun::star::i18n::NativeNumberXmlAttributes SAL_CALL convertToXmlAttributes( 60 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) 61 throw (::com::sun::star::uno::RuntimeException); 62 63 virtual sal_Int16 SAL_CALL convertFromXmlAttributes( 64 const ::com::sun::star::i18n::NativeNumberXmlAttributes& aAttr ) 65 throw (::com::sun::star::uno::RuntimeException); 66 67 //XServiceInfo 68 virtual rtl::OUString SAL_CALL getImplementationName() 69 throw( com::sun::star::uno::RuntimeException ); 70 virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName) 71 throw( com::sun::star::uno::RuntimeException ); 72 virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() 73 throw( com::sun::star::uno::RuntimeException ); 74 75 // following methods are not for XNativeNumberSupplier, they are for calling from transliterations 76 ::rtl::OUString SAL_CALL getNativeNumberString( const ::rtl::OUString& aNumberString, 77 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode, 78 com::sun::star::uno::Sequence< sal_Int32 >& offset ) 79 throw (::com::sun::star::uno::RuntimeException); 80 sal_Unicode SAL_CALL getNativeNumberChar( const sal_Unicode inChar, 81 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode ) 82 throw(com::sun::star::uno::RuntimeException) ; 83 84 private: 85 ::com::sun::star::lang::Locale aLocale; 86 sal_Bool useOffset; 87 }; 88 89 } } } } 90 91 #endif 92