Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UTIL_XNUMBERFORMATS_HDL
2 : #define INCLUDED_COM_SUN_STAR_UTIL_XNUMBERFORMATS_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } }
7 : #include "com/sun/star/lang/Locale.hdl"
8 : #include "com/sun/star/uno/RuntimeException.hdl"
9 : #include "com/sun/star/uno/XInterface.hdl"
10 : #include "com/sun/star/util/MalformedNumberFormatException.hdl"
11 : #include "com/sun/star/uno/Reference.h"
12 : #include "com/sun/star/uno/Sequence.h"
13 : #include "cppu/macros.hxx"
14 : #include "rtl/ustring.hxx"
15 : #include "sal/types.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
18 :
19 : namespace com { namespace sun { namespace star { namespace util {
20 :
21 8183 : class SAL_NO_VTABLE XNumberFormats : public css::uno::XInterface
22 : {
23 : public:
24 :
25 : // Methods
26 : virtual ::com::sun::star::uno::Reference< css::beans::XPropertySet > SAL_CALL getByKey( ::sal_Int32 nKey ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::com::sun::star::uno::Sequence< ::sal_Int32 > SAL_CALL queryKeys( ::sal_Int16 nType, const css::lang::Locale& nLocale, ::sal_Bool bCreate ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::sal_Int32 SAL_CALL queryKey( const ::rtl::OUString& aFormat, const css::lang::Locale& nLocale, ::sal_Bool bScan ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Int32 SAL_CALL addNew( const ::rtl::OUString& aFormat, const css::lang::Locale& nLocale ) /* throw (css::util::MalformedNumberFormatException, ::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::sal_Int32 SAL_CALL addNewConverted( const ::rtl::OUString& aFormat, const css::lang::Locale& nLocale, const css::lang::Locale& nNewLocale ) /* throw (css::util::MalformedNumberFormatException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL removeByKey( ::sal_Int32 nKey ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual ::rtl::OUString SAL_CALL generateFormat( ::sal_Int32 nBaseKey, const css::lang::Locale& nLocale, ::sal_Bool bThousands, ::sal_Bool bRed, ::sal_Int16 nDecimals, ::sal_Int16 nLeading ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 :
34 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
35 :
36 : protected:
37 8183 : ~XNumberFormats() throw () {} // avoid warnings about virtual members and non-virtual dtor
38 : };
39 :
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::util::XNumberFormats const *);
42 : } } } }
43 :
44 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::util::XNumberFormats > *) SAL_THROW(());
45 :
46 : #endif
|