2000-11-17 05:37:46 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: dlistimp.hxx,v $
|
|
|
|
*
|
2001-04-05 11:33:02 -05:00
|
|
|
* $Revision: 1.2 $
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
2001-04-05 11:33:02 -05:00
|
|
|
* last change: $Author: jp $ $Date: 2001-04-05 17:33:02 $
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* either of the following licenses
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
*
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
* =================================================
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
*
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
* obligations concerning the Software.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _LINGUISTIC_DLISTIMP_HXX_
|
|
|
|
#define _LINGUISTIC_DLISTIMP_HXX_
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_LINGUISTIC2_XSEARCHABLEDICTIONARYLIST_HPP_
|
|
|
|
#include <com/sun/star/linguistic2/XSearchableDictionaryList.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XCOMPONENT_HPP_
|
|
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <uno/lbnames.h> // CPPU_CURRENT_LANGUAGE_BINDING_NAME macro, which specify the environment type
|
|
|
|
#include <cppuhelper/implbase1.hxx> // helper for implementations
|
|
|
|
#include <cppuhelper/implbase3.hxx> // helper for implementations
|
|
|
|
#include <cppuhelper/interfacecontainer.h>
|
|
|
|
|
|
|
|
#ifndef _SVARRAY_HXX
|
|
|
|
#include <svtools/svarray.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX //autogen wg. DBG_ASSERT
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "misc.hxx"
|
|
|
|
#include "lngopt.hxx"
|
|
|
|
|
|
|
|
class DicEvtListenerHelper;
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class ActDic
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > xDic;
|
|
|
|
|
|
|
|
ActDic() {}
|
|
|
|
ActDic(const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > &rDic) : xDic(rDic) {}
|
|
|
|
};
|
2001-04-05 11:33:02 -05:00
|
|
|
SV_DECL_OBJARR( ActDicArray, ActDic, 16, 16 );
|
2000-11-17 05:37:46 -06:00
|
|
|
|
|
|
|
class DicList :
|
|
|
|
public cppu::WeakImplHelper3
|
|
|
|
<
|
|
|
|
::com::sun::star::linguistic2::XSearchableDictionaryList,
|
|
|
|
::com::sun::star::lang::XComponent,
|
|
|
|
::com::sun::star::lang::XServiceInfo
|
|
|
|
>
|
|
|
|
{
|
|
|
|
class MyAppExitListener : public linguistic::AppExitListener
|
|
|
|
{
|
|
|
|
DicList & rMyDicList;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MyAppExitListener( DicList &rDicList ) : rMyDicList( rDicList ) {}
|
|
|
|
virtual void AtExit();
|
|
|
|
};
|
|
|
|
|
|
|
|
LinguOptions aOpt;
|
|
|
|
|
2001-04-05 11:33:02 -05:00
|
|
|
::cppu::OInterfaceContainerHelper aEvtListeners;
|
|
|
|
ActDicArray* pDicList;
|
2000-11-17 05:37:46 -06:00
|
|
|
|
2001-04-05 11:33:02 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::linguistic2::
|
|
|
|
XDictionaryEventListener > xDicEvtLstnrHelper;
|
|
|
|
DicEvtListenerHelper *pDicEvtLstnrHelper;
|
2000-11-17 05:37:46 -06:00
|
|
|
|
2001-04-05 11:33:02 -05:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::frame::
|
|
|
|
XTerminateListener > xExitListener;
|
|
|
|
MyAppExitListener *pExitListener;
|
2000-11-17 05:37:46 -06:00
|
|
|
|
|
|
|
BOOL bDisposing;
|
|
|
|
|
|
|
|
// disallow copy-constructor and assignment-operator for now
|
2001-04-05 11:33:02 -05:00
|
|
|
DicList( const DicList & );
|
2000-11-17 05:37:46 -06:00
|
|
|
DicList & operator = (const DicList &);
|
|
|
|
|
2001-04-05 11:33:02 -05:00
|
|
|
void _CreateDicList();
|
|
|
|
ActDicArray& GetDicList()
|
|
|
|
{
|
|
|
|
if( !pDicList )
|
|
|
|
_CreateDicList();
|
|
|
|
return *pDicList;
|
|
|
|
}
|
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
void launchEvent(INT16 nEvent, com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > xDic);
|
|
|
|
void searchForDictionaries( ActDicArray &rDicList,
|
2001-04-05 11:33:02 -05:00
|
|
|
const String &rDicDir );
|
2000-11-17 05:37:46 -06:00
|
|
|
INT32 getDicPos(const com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > &xDic);
|
|
|
|
|
|
|
|
public:
|
|
|
|
DicList();
|
|
|
|
virtual ~DicList();
|
|
|
|
|
|
|
|
// XDictionaryList
|
|
|
|
virtual sal_Int16 SAL_CALL
|
|
|
|
getCount()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > > SAL_CALL
|
|
|
|
getDictionaries()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > SAL_CALL
|
|
|
|
getDictionaryByName( const ::rtl::OUString& aDictionaryName )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
addDictionary( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary >& xDictionary )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
removeDictionary( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary >& xDictionary )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
addDictionaryListEventListener( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionaryListEventListener >& xListener,
|
|
|
|
sal_Bool bReceiveVerbose )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
removeDictionaryListEventListener(
|
|
|
|
const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionaryListEventListener >& xListener )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Int16 SAL_CALL
|
|
|
|
beginCollectEvents()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Int16 SAL_CALL
|
|
|
|
endCollectEvents()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Int16 SAL_CALL
|
|
|
|
flushEvents()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionary > SAL_CALL
|
|
|
|
createDictionary( const ::rtl::OUString& aName,
|
|
|
|
const ::com::sun::star::lang::Locale& aLocale,
|
|
|
|
::com::sun::star::linguistic2::DictionaryType eDicType,
|
|
|
|
const ::rtl::OUString& aURL )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XSearchableDictionaryList
|
|
|
|
virtual ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::linguistic2::XDictionaryEntry > SAL_CALL
|
|
|
|
queryDictionaryEntry( const ::rtl::OUString& aWord,
|
|
|
|
const ::com::sun::star::lang::Locale& aLocale,
|
|
|
|
sal_Bool bSearchPosDics, sal_Bool bSpellEntry )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
// XComponent
|
|
|
|
virtual void SAL_CALL
|
|
|
|
dispose()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL
|
|
|
|
addEventListener( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::lang::XEventListener >& xListener )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL
|
|
|
|
removeEventListener( const ::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::lang::XEventListener >& aListener )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Service specific part
|
|
|
|
//
|
|
|
|
|
|
|
|
// XServiceInfo
|
|
|
|
virtual ::rtl::OUString SAL_CALL
|
|
|
|
getImplementationName()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
supportsService( const ::rtl::OUString& ServiceName )
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
|
|
|
getSupportedServiceNames()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
|
|
|
|
static inline ::rtl::OUString
|
|
|
|
getImplementationName_Static() throw();
|
|
|
|
static com::sun::star::uno::Sequence< ::rtl::OUString >
|
|
|
|
getSupportedServiceNames_Static() throw();
|
|
|
|
};
|
|
|
|
|
|
|
|
inline ::rtl::OUString DicList::getImplementationName_Static() throw()
|
|
|
|
{
|
|
|
|
return A2OU( "com.sun.star.lingu2.DicList" );
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|