Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_LINGUISTIC2_XLINGUSERVICEMANAGER_HDL
2 : #define INCLUDED_COM_SUN_STAR_LINGUISTIC2_XLINGUSERVICEMANAGER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/lang/Locale.hdl"
7 : namespace com { namespace sun { namespace star { namespace lang { class XEventListener; } } } }
8 : namespace com { namespace sun { namespace star { namespace linguistic2 { class XHyphenator; } } } }
9 : namespace com { namespace sun { namespace star { namespace linguistic2 { class XSpellChecker; } } } }
10 : namespace com { namespace sun { namespace star { namespace linguistic2 { class XThesaurus; } } } }
11 : #include "com/sun/star/uno/RuntimeException.hdl"
12 : #include "com/sun/star/uno/XInterface.hdl"
13 : #include "com/sun/star/uno/Reference.h"
14 : #include "com/sun/star/uno/Sequence.h"
15 : #include "cppu/macros.hxx"
16 : #include "rtl/ustring.hxx"
17 : #include "sal/types.h"
18 :
19 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
20 :
21 : namespace com { namespace sun { namespace star { namespace linguistic2 {
22 :
23 40 : class SAL_NO_VTABLE XLinguServiceManager : public css::uno::XInterface
24 : {
25 : public:
26 :
27 : // Methods
28 : virtual ::com::sun::star::uno::Reference< css::linguistic2::XSpellChecker > SAL_CALL getSpellChecker() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::com::sun::star::uno::Reference< css::linguistic2::XHyphenator > SAL_CALL getHyphenator() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::com::sun::star::uno::Reference< css::linguistic2::XThesaurus > SAL_CALL getThesaurus() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::sal_Bool SAL_CALL addLinguServiceManagerListener( const ::com::sun::star::uno::Reference< css::lang::XEventListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual ::sal_Bool SAL_CALL removeLinguServiceManagerListener( const ::com::sun::star::uno::Reference< css::lang::XEventListener >& xListener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getAvailableServices( const ::rtl::OUString& aServiceName, const css::lang::Locale& aLocale ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL setConfiguredServices( const ::rtl::OUString& aServiceName, const css::lang::Locale& aLocale, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aServiceImplNames ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getConfiguredServices( const ::rtl::OUString& aServiceName, const css::lang::Locale& aLocale ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 :
37 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
38 :
39 : protected:
40 38 : ~XLinguServiceManager() throw () {} // avoid warnings about virtual members and non-virtual dtor
41 : };
42 :
43 :
44 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::linguistic2::XLinguServiceManager const *);
45 : } } } }
46 :
47 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::linguistic2::XLinguServiceManager > *) SAL_THROW(());
48 :
49 : #endif
|