/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla 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/MPL/ * * 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 Spellchecker Component. * * The Initial Developer of the Original Code is David Einstein. * Portions created by the Initial Developer are Copyright (C) 2001 * the Initial Developer. All Rights Reserved. * * Contributor(s): David Einstein * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsIGenericFactory.h" #ifdef MOZ_MACBROWSER #include "mozOSXSpell.h" #else #include "mozHunspell.h" #ifdef MOZ_XUL_APP #include "mozHunspellDirProvider.h" #endif #endif #include "mozSpellChecker.h" #include "mozInlineSpellChecker.h" #include "nsTextServicesCID.h" #include "mozPersonalDictionary.h" #include "mozSpellI18NManager.h" #define NS_SPELLCHECKER_CID \ { /* 8227f019-afc7-461e-b030-9f185d7a0e29 */ \ 0x8227F019, 0xAFC7, 0x461e, \ { 0xB0, 0x30, 0x9F, 0x18, 0x5D, 0x7A, 0x0E, 0x29} } #define MOZ_INLINESPELLCHECKER_CID \ { /* 9FE5D975-09BD-44aa-A01A-66402EA28657 */ \ 0x9fe5d975, 0x9bd, 0x44aa, \ { 0xa0, 0x1a, 0x66, 0x40, 0x2e, 0xa2, 0x86, 0x57} } //////////////////////////////////////////////////////////////////////// // Define the constructor function for the objects // // NOTE: This creates an instance of objects by using the default constructor // #ifdef MOZ_MACBROWSER NS_GENERIC_FACTORY_CONSTRUCTOR(mozOSXSpell) #else NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(mozHunspell, Init) #ifdef MOZ_XUL_APP NS_GENERIC_FACTORY_CONSTRUCTOR(mozHunspellDirProvider) #endif #endif NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(mozSpellChecker, Init) NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(mozPersonalDictionary, Init) NS_GENERIC_FACTORY_CONSTRUCTOR(mozSpellI18NManager) // This special constructor for the inline spell checker asks the inline // spell checker if we can create spell checking objects at all (ie, if there // are any dictionaries loaded) before trying to create one. The static // CanEnableInlineSpellChecking caches the value so this will be faster (we // have to run this code for every edit box we create, as well as for every // right click in those edit boxes). static NS_IMETHODIMP mozInlineSpellCheckerConstructor(nsISupports *aOuter, REFNSIID aIID, void **aResult) { if (! mozInlineSpellChecker::CanEnableInlineSpellChecking()) return NS_ERROR_FAILURE; nsresult rv; mozInlineSpellChecker* inst; *aResult = NULL; if (NULL != aOuter) { rv = NS_ERROR_NO_AGGREGATION; return rv; } NS_NEWXPCOM(inst, mozInlineSpellChecker); if (NULL == inst) { rv = NS_ERROR_OUT_OF_MEMORY; return rv; } NS_ADDREF(inst); rv = inst->QueryInterface(aIID, aResult); NS_RELEASE(inst); return rv; } //////////////////////////////////////////////////////////////////////// // Define a table of CIDs implemented by this module along with other // information like the function to create an instance, contractid, and // class name. // static nsModuleComponentInfo components[] = { #ifdef MOZ_MACBROWSER { "OSX Spell check service", MOZ_OSXSPELL_CID, MOZ_OSXSPELL_CONTRACTID, mozOSXSpellConstructor }, #else { "mozHunspell", MOZ_HUNSPELL_CID, MOZ_HUNSPELL_CONTRACTID, mozHunspellConstructor }, #ifdef MOZ_XUL_APP { "mozHunspellDirProvider", HUNSPELLDIRPROVIDER_CID, mozHunspellDirProvider::kContractID, mozHunspellDirProviderConstructor, mozHunspellDirProvider::Register, mozHunspellDirProvider::Unregister }, #endif // MOZ_XUL_APP #endif // MOZ_MACBROWSER { NULL, NS_SPELLCHECKER_CID, NS_SPELLCHECKER_CONTRACTID, mozSpellCheckerConstructor }, { NULL, MOZ_PERSONALDICTIONARY_CID, MOZ_PERSONALDICTIONARY_CONTRACTID, mozPersonalDictionaryConstructor }, { NULL, MOZ_SPELLI18NMANAGER_CID, MOZ_SPELLI18NMANAGER_CONTRACTID, mozSpellI18NManagerConstructor }, { NULL, MOZ_INLINESPELLCHECKER_CID, MOZ_INLINESPELLCHECKER_CONTRACTID, mozInlineSpellCheckerConstructor } }; //////////////////////////////////////////////////////////////////////// // Implement the NSGetModule() exported function for your module // and the entire implementation of the module object. // NS_IMPL_NSGETMODULE(mozSpellCheckerModule, components)