1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: convdiclist.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _LINGUISTIC_CONVDICLIST_HXX_
32 #define _LINGUISTIC_CONVDICLIST_HXX_
34 #include <com/sun/star/linguistic2/XConversionDictionaryList.hpp>
35 #include <com/sun/star/lang/XComponent.hpp>
36 #include <com/sun/star/lang/XServiceInfo.hpp>
37 #include <cppuhelper/implbase3.hxx>
38 #include <cppuhelper/interfacecontainer.h>
39 #include <svtools/svarray.hxx>
40 #include <tools/debug.hxx>
46 class ConvDicNameContainer
;
48 ///////////////////////////////////////////////////////////////////////////
51 public cppu::WeakImplHelper3
53 ::com::sun::star::linguistic2::XConversionDictionaryList
,
54 ::com::sun::star::lang::XComponent
,
55 ::com::sun::star::lang::XServiceInfo
59 class MyAppExitListener
: public linguistic::AppExitListener
61 ConvDicList
& rMyDicList
;
64 MyAppExitListener( ConvDicList
&rDicList
) : rMyDicList( rDicList
) {}
65 virtual void AtExit();
69 ::cppu::OInterfaceContainerHelper aEvtListeners
;
71 ConvDicNameContainer
*pNameContainer
;
72 ::com::sun::star::uno::Reference
<
73 ::com::sun::star::container::XNameContainer
> xNameContainer
;
75 MyAppExitListener
*pExitListener
;
76 ::com::sun::star::uno::Reference
< ::com::sun::star::frame::
77 XTerminateListener
> xExitListener
;
81 // disallow copy-constructor and assignment-operator for now
82 ConvDicList( const ConvDicList
& );
83 ConvDicList
& operator = (const ConvDicList
&);
85 ConvDicNameContainer
& GetNameContainer();
89 virtual ~ConvDicList();
91 // XConversionDictionaryList
92 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameContainer
> SAL_CALL
getDictionaryContainer( ) throw (::com::sun::star::uno::RuntimeException
);
93 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::linguistic2::XConversionDictionary
> SAL_CALL
addNewDictionary( const ::rtl::OUString
& aName
, const ::com::sun::star::lang::Locale
& aLocale
, sal_Int16 nConversionDictionaryType
) throw (::com::sun::star::lang::NoSupportException
, ::com::sun::star::container::ElementExistException
, ::com::sun::star::uno::RuntimeException
);
94 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
queryConversions( const ::rtl::OUString
& aText
, sal_Int32 nStartPos
, sal_Int32 nLength
, const ::com::sun::star::lang::Locale
& aLocale
, sal_Int16 nConversionDictionaryType
, ::com::sun::star::linguistic2::ConversionDirection eDirection
, sal_Int32 nTextConversionOptions
) throw (::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::lang::NoSupportException
, ::com::sun::star::uno::RuntimeException
);
95 virtual sal_Int16 SAL_CALL
queryMaxCharCount( const ::com::sun::star::lang::Locale
& aLocale
, sal_Int16 nConversionDictionaryType
, ::com::sun::star::linguistic2::ConversionDirection eDirection
) throw (::com::sun::star::uno::RuntimeException
);
98 virtual void SAL_CALL
dispose( ) throw (::com::sun::star::uno::RuntimeException
);
99 virtual void SAL_CALL
addEventListener( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XEventListener
>& xListener
) throw (::com::sun::star::uno::RuntimeException
);
100 virtual void SAL_CALL
removeEventListener( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XEventListener
>& aListener
) throw (::com::sun::star::uno::RuntimeException
);
103 virtual ::rtl::OUString SAL_CALL
getImplementationName( ) throw (::com::sun::star::uno::RuntimeException
);
104 virtual sal_Bool SAL_CALL
supportsService( const ::rtl::OUString
& ServiceName
) throw (::com::sun::star::uno::RuntimeException
);
105 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException
);
108 static inline ::rtl::OUString
109 getImplementationName_Static() throw();
110 static com::sun::star::uno::Sequence
< ::rtl::OUString
>
111 getSupportedServiceNames_Static() throw();
117 inline ::rtl::OUString
ConvDicList::getImplementationName_Static() throw()
119 return A2OU( "com.sun.star.lingu2.ConvDicList" );
122 ///////////////////////////////////////////////////////////////////////////