/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: XDictionary.idl,v $ * $Revision: 1.12 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_linguistic2_XDictionary_idl__ #define __com_sun_star_linguistic2_XDictionary_idl__ #ifndef __com_sun_star_container_XNamed_idl__ #include #endif #ifndef __com_sun_star_lang_Locale_idl__ #include #endif #ifndef __com_sun_star_linguistic2_DictionaryType_idl__ #include #endif #ifndef __com_sun_star_linguistic2_XDictionaryEntry_idl__ #include #endif #ifndef __com_sun_star_linguistic2_XDictionaryEventListener_idl__ #include #endif //============================================================================= module com { module sun { module star { module linguistic2 { //============================================================================= /** This interfaces enables the object to access personal dictionaries.

Personal dictionaries are used to supply additional information for spellchecking and hyphenation (see XDictionaryEntry). Only active dictionaries with an appropriate language are used for that purpose. The entries of an active, positive dictionary are words that are required to be recognized as correct during the spellchecking process. Additionally, they will be used for hyphenation. Entries of a negative dictionary are required to be recognized as negative words, for example, words that should not be used, during spellcheck. An entry in a negative dictionary may supply a proposal for a word to be used instead of the one being used.

@see XDictionaryEvent @see XNamed */ published interface XDictionary : com::sun::star::container::XNamed { //------------------------------------------------------------------------- /** returns the type of the dictionary. @returns the type of the dictionary. @see DictionaryType */ com::sun::star::linguistic2::DictionaryType getDictionaryType(); //------------------------------------------------------------------------- /** specifies whether the dictionary should be used or not . @param bAcvtivate if the dictionary should be used, otherwise. */ void setActive( [in] boolean bActivate ); //------------------------------------------------------------------------- /** @returns if the dictionary is active, otherwise. */ boolean isActive(); //------------------------------------------------------------------------- /** @returns the number of entries in the dictionary. */ long getCount(); //------------------------------------------------------------------------- /** @returns the language of the dictionary. @see Locale */ com::sun::star::lang::Locale getLocale(); //------------------------------------------------------------------------- /** is used to set the language of the dictionary. @param aLocale the new language of the dictionary. @see Locale */ void setLocale( [in] com::sun::star::lang::Locale aLocale ); //------------------------------------------------------------------------- /** searches for an entry that matches the given word. @returns the reference to the entry found. If no entry was found, it is NULL. @param aWord the word to be looked for. @see XDictionaryEntry */ com::sun::star::linguistic2::XDictionaryEntry getEntry( [in] string aWord ); //------------------------------------------------------------------------- /** is used to add an entry to the dictionary.

If an entry already exists, the dictionary remains unchanged and will be returned.

In positive dictionaries only postive entries can be made, and in negative ones only negative entries.

@param xDicEntry the entry to be added. @returns if the entry was successfully added otherwise. @see XDictionaryEntry @see DictionaryType */ boolean addEntry( [in] com::sun::star::linguistic2::XDictionaryEntry xDicEntry ); //------------------------------------------------------------------------- /** is used to make an entry in the dictionary.

If an entry already exists, the dictionary remains unchanged and will be returned.

In positive dictionaries only postive entries can be made, and in negative ones only negative entries.

@param aWord the word to be added. @param bIsNegative specifies whether the entry will be a negative one or not. @param aRplcText in the case of a negative entry, this is the replacement text to be used when replacing aWord. Otherwise, it is undefined. @returns if the entry was successfully added, otherwise. @see DictionaryType */ boolean add( [in] string aWord, [in] boolean bIsNegative, [in] string aRplcText ); //------------------------------------------------------------------------- /** removes an entry from the dictionary. @param aWord the word matching the entry to be removed. @returns if the entry was successfully removed, otherwise (especially if the entry was not found). */ boolean remove( [in] string aWord ); //------------------------------------------------------------------------- /** @returns if the dictionary is full and no further entry can be made, otherwise. */ boolean isFull(); //------------------------------------------------------------------------- /**

This function should no longer be used since with the expansion of the maximum number of allowed entries the result may become unreasonable large!

@returns a sequence with all the entries of the dictionary. @see XDictionaryEntry @see XSearchableDictionary @deprecated */ sequence getEntries(); //------------------------------------------------------------------------- /** removes all entries from the dictionary. */ void clear(); //------------------------------------------------------------------------- /** adds an entry to the list of dictionary event listeners.

On dictionary events, each entry in the listener list will be notified via a call to XDictionaryEventListener::processDictionaryEvent.

@param xListener the entry to be made, that is, the object that wants notifications. @returns if the entry was successfully made, otherwise. If XEventListener::disposing was called before, it will always fail. @see XDictionary::removeDictionaryEventListener @see XDictionaryEventListener */ boolean addDictionaryEventListener( [in] com::sun::star::linguistic2::XDictionaryEventListener xListener ); //------------------------------------------------------------------------- /** removes an entry from the list of dictionary event listeners. @param xListener the reference to the listening object to be removed. @returns if the object to be removed was found and removed, if the object was not found in the list. @see XDictionary::addDictionaryEventListener @see XDictionaryEventListener */ boolean removeDictionaryEventListener( [in] com::sun::star::linguistic2::XDictionaryEventListener xListener ); }; //============================================================================= }; }; }; }; #endif