LCOV - code coverage report
Current view: top level - i18npool/inc - nativenumbersupplier.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 2 2 100.0 %
Date: 2012-08-25 Functions: 2 3 66.7 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 1 2 50.0 %

           Branch data     Line data    Source code
       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                 :            : #ifndef _I18N_NATIVENUMBERSUPPLIER_HXX_
      20                 :            : #define _I18N_NATIVENUMBERSUPPLIER_HXX_
      21                 :            : 
      22                 :            : #include <com/sun/star/i18n/XNativeNumberSupplier.hpp>
      23                 :            : #include <com/sun/star/i18n/NativeNumberMode.hpp>
      24                 :            : #include <com/sun/star/i18n/NativeNumberXmlAttributes.hpp>
      25                 :            : #include <cppuhelper/implbase2.hxx> // helper for implementations
      26                 :            : #include <com/sun/star/lang/XServiceInfo.hpp>
      27                 :            : 
      28                 :            : namespace com { namespace sun { namespace star { namespace i18n {
      29                 :            : 
      30                 :            : //      ----------------------------------------------------
      31                 :            : //      class NativeNumberSupplier
      32                 :            : //      ----------------------------------------------------
      33         [ -  + ]:        161 : class NativeNumberSupplier : public cppu::WeakImplHelper2
      34                 :            : <
      35                 :            :         com::sun::star::i18n::XNativeNumberSupplier,
      36                 :            :         com::sun::star::lang::XServiceInfo
      37                 :            : >
      38                 :            : {
      39                 :            : public:
      40                 :        199 :         NativeNumberSupplier(sal_Bool _useOffset = sal_False) : useOffset(_useOffset) {}
      41                 :            : 
      42                 :            :         // Methods
      43                 :            :         virtual ::rtl::OUString SAL_CALL getNativeNumberString( const ::rtl::OUString& aNumberString,
      44                 :            :                 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode )
      45                 :            :                 throw (::com::sun::star::uno::RuntimeException);
      46                 :            : 
      47                 :            :         virtual sal_Bool SAL_CALL isValidNatNum( const ::com::sun::star::lang::Locale& aLocale,
      48                 :            :                 sal_Int16 nNativeNumberMode )
      49                 :            :                 throw (::com::sun::star::uno::RuntimeException);
      50                 :            : 
      51                 :            :         virtual ::com::sun::star::i18n::NativeNumberXmlAttributes SAL_CALL convertToXmlAttributes(
      52                 :            :                 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode )
      53                 :            :                 throw (::com::sun::star::uno::RuntimeException);
      54                 :            : 
      55                 :            :         virtual sal_Int16 SAL_CALL convertFromXmlAttributes(
      56                 :            :                 const ::com::sun::star::i18n::NativeNumberXmlAttributes& aAttr )
      57                 :            :                 throw (::com::sun::star::uno::RuntimeException);
      58                 :            : 
      59                 :            :         //XServiceInfo
      60                 :            :         virtual rtl::OUString SAL_CALL getImplementationName()
      61                 :            :                 throw( com::sun::star::uno::RuntimeException );
      62                 :            :         virtual sal_Bool SAL_CALL supportsService(const rtl::OUString& ServiceName)
      63                 :            :                 throw( com::sun::star::uno::RuntimeException );
      64                 :            :         virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames()
      65                 :            :                 throw( com::sun::star::uno::RuntimeException );
      66                 :            : 
      67                 :            :         // following methods are not for XNativeNumberSupplier, they are for calling from transliterations
      68                 :            :         ::rtl::OUString SAL_CALL getNativeNumberString( const ::rtl::OUString& aNumberString,
      69                 :            :                 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode,
      70                 :            :                 com::sun::star::uno::Sequence< sal_Int32 >& offset  )
      71                 :            :                 throw (::com::sun::star::uno::RuntimeException);
      72                 :            :         sal_Unicode SAL_CALL getNativeNumberChar( const sal_Unicode inChar,
      73                 :            :                 const ::com::sun::star::lang::Locale& aLocale, sal_Int16 nNativeNumberMode )
      74                 :            :                 throw(com::sun::star::uno::RuntimeException) ;
      75                 :            : 
      76                 :            : private:
      77                 :            :         ::com::sun::star::lang::Locale aLocale;
      78                 :            :         sal_Bool useOffset;
      79                 :            : };
      80                 :            : 
      81                 :            : } } } }
      82                 :            : 
      83                 :            : #endif
      84                 :            : 
      85                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10