mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
c4f863915d
mozilla/editor/base/nsEditorShell.cpp mozilla/editor/idl/nsIEditorSpellCheck.idl - Modified StartSpellChecking() so that it no longer calls NextMisspelledWord(). - Renamed Start/CloseSpellChecking() to Init/UninitSpellChecker(). - Changed prototype of GetCurrentDictionary() in the idl file. - Replaced all references of NS_SPELLCHECKER_CID with NS_SPELLCHECKER_PROGID. mozilla/editor/txtsvc/public/nsISpellChecker.h - Added NS_SPELLCHECKER_PROGID. mozilla/editor/txtsvc/public/nsTextServicesCID.h - Removed NS_SPELLCHECKER_CID. mozilla/editor/ui/composer/content/ComposerCommands.js - Replaced all calls to Start/CloseSpellChecking() with Init/UninitSpellChecker(). - We now call GetNextMisspelledWord() after initing the spellchecker. mozilla/editor/ui/dialogs/content/EdSpellCheck.js - Dialog now assumes the spellchecker language has been set before the dialog is invoked. - Fixed Recheck() so that it now sets the language.
45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* 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.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
[scriptable, uuid(87ce8b81-1cf2-11d3-9ce4-c60a16061e7c)]
|
|
interface nsIEditorSpellCheck : nsISupports
|
|
{
|
|
|
|
void InitSpellChecker();
|
|
wstring GetNextMisspelledWord();
|
|
wstring GetSuggestedWord();
|
|
boolean CheckCurrentWord(in wstring suggestedWord);
|
|
void ReplaceWord(in wstring misspelledWord, in wstring replaceWord, in boolean allOccurrences);
|
|
void IgnoreWordAllOccurrences(in wstring word);
|
|
void GetPersonalDictionary();
|
|
wstring GetPersonalDictionaryWord();
|
|
void AddWordToDictionary(in wstring word);
|
|
void RemoveWordFromDictionary(in wstring word);
|
|
void GetDictionaryList([array, size_is(count)] out wstring dictionaryList, out PRUint32 count);
|
|
wstring GetCurrentDictionary();
|
|
void SetCurrentDictionary(in wstring dictionary);
|
|
void UninitSpellChecker();
|
|
|
|
};
|