michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: #include "mozISpellI18NUtil.idl" michael@0: michael@0: [scriptable, uuid(AEB8936F-219C-4D3C-8385-D9382DAA551A)] michael@0: michael@0: /** michael@0: * This interface contains various I18N related code used in various places michael@0: * by the spell checker. michael@0: */ michael@0: michael@0: interface mozISpellI18NManager : nsISupports { michael@0: /** michael@0: * Get a mozISpellI18NUtil interface that best matches the given language. michael@0: */ michael@0: mozISpellI18NUtil getUtil(in wstring language); michael@0: };