2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-09-28 04:44:47 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* 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/
|
1999-09-28 04:44:47 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-09-28 04:44:47 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
2000-02-03 01:24:56 +03:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of 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"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2002-11-17 18:37:56 +03:00
|
|
|
#include "nsXBLAtoms.h" // to addref/release table
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsCSSPseudoElements.h" // to addref/release table
|
|
|
|
#include "nsCSSPseudoClasses.h" // to addref/release table
|
|
|
|
#include "nsCSSAnonBoxes.h" // to addref/release table
|
2002-11-17 18:37:56 +03:00
|
|
|
#include "nsCSSKeywords.h" // to addref/release table
|
|
|
|
#include "nsCSSProps.h" // to addref/release table
|
|
|
|
#include "nsColorNames.h" // to addref/release table
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsContentCID.h"
|
|
|
|
#include "nsContentHTTPStartup.h"
|
|
|
|
#include "nsContentDLF.h"
|
|
|
|
#include "nsContentPolicyUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
2005-04-11 04:29:36 +04:00
|
|
|
#include "nsDataDocumentContentPolicy.h"
|
2004-03-09 22:59:09 +03:00
|
|
|
#include "nsLayoutStylesheetCache.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsDOMCID.h"
|
|
|
|
#include "nsCSSOMFactory.h"
|
|
|
|
#include "nsInspectorCSSUtils.h"
|
|
|
|
#include "nsEventListenerManager.h"
|
|
|
|
#include "nsGenericElement.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsHTMLContentSerializer.h"
|
2004-07-16 10:32:16 +04:00
|
|
|
#include "nsHTMLParts.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsICSSLoader.h"
|
|
|
|
#include "nsICSSParser.h"
|
2004-09-30 09:18:05 +04:00
|
|
|
#include "nsCSSScanner.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsICSSStyleSheet.h"
|
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIComputedDOMStyle.h"
|
|
|
|
#include "nsIContentIterator.h"
|
|
|
|
#include "nsIContentSerializer.h"
|
|
|
|
#include "nsIController.h"
|
|
|
|
#include "nsIControllers.h"
|
|
|
|
#include "nsIDOMDOMImplementation.h"
|
|
|
|
#include "nsIDOMEventGroup.h"
|
|
|
|
#include "nsIDOMRange.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDocumentEncoder.h"
|
|
|
|
#include "nsIDocumentViewer.h"
|
|
|
|
#include "nsIEventListenerManager.h"
|
|
|
|
#include "nsIFactory.h"
|
|
|
|
#include "nsIFrameSelection.h"
|
|
|
|
#include "nsIFrameUtil.h"
|
|
|
|
#include "nsIGenericFactory.h"
|
|
|
|
#include "nsIHTMLCSSStyleSheet.h"
|
2004-10-01 02:27:45 +04:00
|
|
|
#include "nsIFragmentContentSink.h"
|
2004-04-13 01:56:09 +04:00
|
|
|
#include "nsHTMLStyleSheet.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsIHTMLToTextSink.h"
|
|
|
|
#include "nsILayoutDebugger.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsINodeInfo.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIObserverService.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIPrivateDOMImplementation.h"
|
|
|
|
#include "nsIRangeUtils.h"
|
|
|
|
#include "nsIScriptNameSpaceManager.h"
|
|
|
|
#include "nsISelection.h"
|
|
|
|
#include "nsIXBLService.h"
|
2003-02-28 02:09:51 +03:00
|
|
|
#include "nsICaret.h"
|
2004-06-09 22:36:25 +04:00
|
|
|
#include "nsJSEnvironment.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsLayoutAtoms.h"
|
|
|
|
#include "nsPlainTextSerializer.h"
|
|
|
|
#include "mozSanitizingSerializer.h"
|
|
|
|
#include "nsRange.h"
|
|
|
|
#include "nsComputedDOMStyle.h"
|
|
|
|
#include "nsXMLContentSerializer.h"
|
|
|
|
#include "nsRuleNode.h"
|
|
|
|
#include "nsWyciwygProtocolHandler.h"
|
|
|
|
#include "nsContentAreaDragDrop.h"
|
|
|
|
#include "nsContentList.h"
|
|
|
|
#include "nsISyncLoadDOMService.h"
|
2001-08-24 00:07:10 +04:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsRepeatService.h"
|
|
|
|
#include "nsSprocketLayout.h"
|
|
|
|
#include "nsStackLayout.h"
|
|
|
|
#include "nsBox.h"
|
2001-09-11 04:55:05 +04:00
|
|
|
#include "nsSpaceManager.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
#include "nsTextTransformer.h"
|
|
|
|
#include "nsIFrameTraversal.h"
|
2002-09-11 07:03:49 +04:00
|
|
|
#include "nsISelectionImageService.h"
|
2003-02-22 22:36:32 +03:00
|
|
|
#include "nsCSSLoader.h"
|
2003-03-15 04:04:32 +03:00
|
|
|
#include "nsXULAtoms.h"
|
|
|
|
#include "nsLayoutCID.h"
|
2004-01-08 01:30:53 +03:00
|
|
|
#include "nsStyleSet.h"
|
2004-01-21 12:35:59 +03:00
|
|
|
#include "nsImageFrame.h"
|
2004-07-20 10:11:27 +04:00
|
|
|
#include "nsILanguageAtomService.h"
|
2004-09-08 01:21:48 +04:00
|
|
|
#include "nsTextControlFrame.h"
|
2005-01-15 03:10:19 +03:00
|
|
|
#include "nsStyleSheetService.h"
|
2003-03-15 04:04:32 +03:00
|
|
|
|
2005-11-02 22:03:06 +03:00
|
|
|
// Transformiix stuff
|
|
|
|
#include "nsIDOMXPathExpression.h"
|
|
|
|
#include "nsIDOMNSXPathExpression.h"
|
|
|
|
#include "nsIDOMXPathNSResolver.h"
|
|
|
|
#include "nsIDOMXPathResult.h"
|
|
|
|
#include "nsXPathEvaluator.h"
|
|
|
|
#include "nsXPathException.h"
|
|
|
|
#include "txAtoms.h"
|
|
|
|
#include "txMozillaXSLTProcessor.h"
|
|
|
|
#include "txLog.h"
|
|
|
|
#include "txURIUtils.h"
|
|
|
|
#include "txXSLTProcessor.h"
|
|
|
|
#include "nsXPath1Scheme.h"
|
|
|
|
#include "nsXFormsXPathEvaluator.h"
|
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
// view stuff
|
|
|
|
#include "nsViewsCID.h"
|
|
|
|
#include "nsViewManager.h"
|
2004-06-25 16:26:02 +04:00
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsFrame.h"
|
2004-09-10 11:17:31 +04:00
|
|
|
#include "nsXBLWindowKeyHandler.h"
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2004-02-24 06:22:35 +03:00
|
|
|
// DOM includes
|
|
|
|
#include "nsDOMException.h"
|
|
|
|
#include "nsGlobalWindowCommands.h"
|
|
|
|
#include "nsIControllerCommandTable.h"
|
|
|
|
#include "nsJSProtocolHandler.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsDOMClassInfo.h"
|
|
|
|
#include "nsScriptNameSpaceManager.h"
|
|
|
|
#include "nsIControllerContext.h"
|
|
|
|
#include "nsDOMScriptObjectFactory.h"
|
2005-02-01 02:47:26 +03:00
|
|
|
#include "nsAutoCopyListener.h"
|
2005-08-20 03:40:42 +04:00
|
|
|
#include "nsDOMAttribute.h"
|
2004-02-24 06:22:35 +03:00
|
|
|
|
2005-04-18 10:33:23 +04:00
|
|
|
#include "nsHTMLCanvasFrame.h"
|
|
|
|
|
2005-05-12 03:49:52 +04:00
|
|
|
#ifdef MOZ_ENABLE_CANVAS
|
2005-04-18 10:33:23 +04:00
|
|
|
#include "nsIDOMCanvasRenderingContext2D.h"
|
|
|
|
#endif
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
class nsIDocumentLoaderFactory;
|
|
|
|
|
|
|
|
#define PRODUCT_NAME "Gecko"
|
|
|
|
|
|
|
|
#define NS_HTMLIMGELEMENT_CONTRACTID \
|
|
|
|
"@mozilla.org/content/element/html;1?name=img"
|
2001-08-07 06:55:54 +04:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
#define NS_HTMLOPTIONELEMENT_CONTRACTID \
|
|
|
|
"@mozilla.org/content/element/html;1?name=option"
|
|
|
|
|
2003-03-22 06:20:23 +03:00
|
|
|
/* 0ddf4df8-4dbb-4133-8b79-9afb966514f5 */
|
|
|
|
#define NS_PLUGINDOCLOADERFACTORY_CID \
|
|
|
|
{ 0x0ddf4df8, 0x4dbb, 0x4133, { 0x8b, 0x79, 0x9a, 0xfb, 0x96, 0x65, 0x14, 0xf5 } }
|
|
|
|
|
2004-02-24 06:22:35 +03:00
|
|
|
#define NS_WINDOWCOMMANDTABLE_CID \
|
|
|
|
{ /* 0DE2FBFA-6B7F-11D7-BBBA-0003938A9D96 */ \
|
|
|
|
0x0DE2FBFA, 0x6B7F, 0x11D7, {0xBB, 0xBA, 0x00, 0x03, 0x93, 0x8A, 0x9D, 0x96} }
|
|
|
|
|
|
|
|
static NS_DEFINE_CID(kWindowCommandTableCID, NS_WINDOWCOMMANDTABLE_CID);
|
2003-01-14 10:08:59 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
#include "nsIXULDocument.h"
|
|
|
|
#include "nsIXULPopupListener.h"
|
|
|
|
#include "nsIXULPrototypeCache.h"
|
|
|
|
#include "nsIXULPrototypeDocument.h"
|
|
|
|
#include "nsIXULPrototypeDocument.h"
|
|
|
|
#include "nsIXULSortService.h"
|
|
|
|
#include "nsXULContentUtils.h"
|
|
|
|
#include "nsXULElement.h"
|
|
|
|
|
2003-03-05 18:08:41 +03:00
|
|
|
NS_IMETHODIMP
|
2003-01-14 10:08:59 +03:00
|
|
|
NS_NewXULContentBuilder(nsISupports* aOuter, REFNSIID aIID, void** aResult);
|
|
|
|
|
2003-03-05 18:08:41 +03:00
|
|
|
NS_IMETHODIMP
|
2003-01-14 10:08:59 +03:00
|
|
|
NS_NewXULTreeBuilder(nsISupports* aOuter, REFNSIID aIID, void** aResult);
|
1999-09-28 04:44:47 +04:00
|
|
|
#endif
|
2001-08-07 06:55:54 +04:00
|
|
|
|
2003-10-30 05:53:08 +03:00
|
|
|
PR_STATIC_CALLBACK(nsresult) Initialize(nsIModule* aSelf);
|
2004-04-30 03:17:54 +04:00
|
|
|
static void Shutdown();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
1999-10-02 15:01:41 +04:00
|
|
|
#ifdef MOZ_MATHML
|
|
|
|
#include "nsMathMLAtoms.h"
|
|
|
|
#include "nsMathMLOperators.h"
|
|
|
|
#endif
|
2001-06-21 00:21:49 +04:00
|
|
|
|
2004-10-08 00:59:53 +04:00
|
|
|
#ifdef MOZ_XTF
|
|
|
|
#include "nsIXTFService.h"
|
|
|
|
#include "nsIXMLContentBuilder.h"
|
|
|
|
#endif
|
|
|
|
|
2000-04-02 02:31:45 +04:00
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#include "nsSVGAtoms.h"
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#include "nsSVGTypeCIDs.h"
|
|
|
|
#include "nsISVGRenderer.h"
|
|
|
|
#include "nsSVGRect.h"
|
2005-09-06 00:41:57 +04:00
|
|
|
#include "nsSVGUtils.h"
|
2005-02-18 19:30:12 +03:00
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
void NS_InitSVGRendererLibartGlobals();
|
|
|
|
void NS_FreeSVGRendererLibartGlobals();
|
|
|
|
#endif
|
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
void NS_InitSVGRendererGDIPlusGlobals();
|
|
|
|
void NS_FreeSVGRendererGDIPlusGlobals();
|
|
|
|
#endif
|
2000-04-02 02:31:45 +04:00
|
|
|
#endif
|
|
|
|
|
2005-11-02 22:03:06 +03:00
|
|
|
// Transformiix
|
|
|
|
/* 1c1a3c01-14f6-11d6-a7f2-ea502af815dc */
|
|
|
|
#define TRANSFORMIIX_DOMCI_EXTENSION_CID \
|
|
|
|
{ 0x1c1a3c01, 0x14f6, 0x11d6, {0xa7, 0xf2, 0xea, 0x50, 0x2a, 0xf8, 0x15, 0xdc} }
|
|
|
|
|
|
|
|
/* {0C351177-0159-4500-86B0-A219DFDE4258} */
|
|
|
|
#define TRANSFORMIIX_XPATH1_SCHEME_CID \
|
|
|
|
{ 0xc351177, 0x159, 0x4500, { 0x86, 0xb0, 0xa2, 0x19, 0xdf, 0xde, 0x42, 0x58 } }
|
|
|
|
|
|
|
|
#define TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID \
|
|
|
|
"@mozilla.org/transformiix-domci-extender;1"
|
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsXPath1SchemeProcessor)
|
|
|
|
|
|
|
|
NS_DOMCI_EXTENSION(Transformiix)
|
|
|
|
static NS_DEFINE_CID(kXSLTProcessorCID, TRANSFORMIIX_XSLT_PROCESSOR_CID);
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XSLTProcessor)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIXSLTProcessor)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIXSLTProcessorObsolete) // XXX DEPRECATED
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XSLTProcessor, nsIXSLTProcessor, PR_TRUE,
|
|
|
|
&kXSLTProcessorCID)
|
|
|
|
|
|
|
|
static NS_DEFINE_CID(kXPathEvaluatorCID, TRANSFORMIIX_XPATH_EVALUATOR_CID);
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XPathEvaluator)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMXPathEvaluator)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XPathEvaluator, nsIDOMXPathEvaluator, PR_TRUE,
|
|
|
|
&kXPathEvaluatorCID)
|
|
|
|
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XPathException)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMXPathException)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIException)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XPathException, nsIDOMXPathException, PR_TRUE,
|
|
|
|
nsnull)
|
|
|
|
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XPathExpression)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMXPathExpression)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMNSXPathExpression)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XPathExpression, nsIDOMXPathExpression,
|
|
|
|
PR_TRUE, nsnull)
|
|
|
|
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XPathNSResolver)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMXPathNSResolver)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XPathNSResolver, nsIDOMXPathNSResolver,
|
|
|
|
PR_TRUE, nsnull)
|
|
|
|
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_BEGIN(XPathResult)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_INTERFACE(nsIDOMXPathResult)
|
|
|
|
NS_DOMCI_EXTENSION_ENTRY_END(XPathResult, nsIDOMXPathResult, PR_TRUE,
|
|
|
|
nsnull)
|
|
|
|
NS_DOMCI_EXTENSION_END
|
|
|
|
|
|
|
|
// Factory Constructor
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(txMozillaXSLTProcessor)
|
|
|
|
NS_GENERIC_AGGREGATED_CONSTRUCTOR_INIT(nsXPathEvaluator, Init)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsXFormsXPathEvaluator)
|
|
|
|
|
|
|
|
NS_DECL_DOM_CLASSINFO(XSLTProcessor)
|
|
|
|
NS_DECL_DOM_CLASSINFO(XPathEvaluator)
|
|
|
|
NS_DECL_DOM_CLASSINFO(XPathException)
|
|
|
|
NS_DECL_DOM_CLASSINFO(XPathExpression)
|
|
|
|
NS_DECL_DOM_CLASSINFO(XPathNSResolver)
|
|
|
|
NS_DECL_DOM_CLASSINFO(XPathResult)
|
|
|
|
|
|
|
|
static NS_METHOD
|
|
|
|
RegisterTransformiix(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
|
|
|
const char *registryLocation,
|
|
|
|
const char *componentType,
|
|
|
|
const nsModuleComponentInfo *info)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsICategoryManager> catman =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsXPIDLCString previous;
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XSLTProcessor",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XPathEvaluator",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XPathException",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XPathExpression",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XPathNSResolver",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_CLASS,
|
|
|
|
"XPathResult",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
char* iidString = NS_GET_IID(nsIXSLTProcessorObsolete).ToString();
|
|
|
|
if (!iidString)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_INTERFACE,
|
|
|
|
"nsIXSLTProcessorObsolete",
|
|
|
|
iidString,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_Free(iidString);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
iidString = NS_GET_IID(nsIXSLTProcessor).ToString();
|
|
|
|
if (!iidString)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
rv = catman->AddCategoryEntry(JAVASCRIPT_DOM_INTERFACE,
|
|
|
|
"nsIXSLTProcessor",
|
|
|
|
iidString,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_Free(iidString);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Per bug 209804, it is necessary to observe the "xpcom-shutdown" event and
|
|
|
|
// perform shutdown of the layout modules at that time instead of waiting for
|
|
|
|
// our module destructor to run. If we do not do this, then we risk holding
|
|
|
|
// references to objects in other component libraries that have already been
|
|
|
|
// shutdown (and possibly unloaded if 60709 is ever fixed).
|
|
|
|
|
|
|
|
class LayoutShutdownObserver : public nsIObserver
|
2003-01-14 10:08:59 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
};
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
NS_IMPL_ISUPPORTS1(LayoutShutdownObserver, nsIObserver)
|
2003-01-14 10:08:59 +03:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2004-04-30 03:17:54 +04:00
|
|
|
LayoutShutdownObserver::Observe(nsISupports *aSubject,
|
|
|
|
const char *aTopic,
|
|
|
|
const PRUnichar *someData)
|
2003-01-14 10:08:59 +03:00
|
|
|
{
|
2004-04-30 03:17:54 +04:00
|
|
|
if (!strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID))
|
|
|
|
Shutdown();
|
2003-01-14 10:08:59 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
static PRBool gInitialized = PR_FALSE;
|
2005-11-02 22:03:06 +03:00
|
|
|
static nsIExceptionProvider *gXPathExceptionProvider;
|
2000-03-21 13:34:56 +03:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
// Perform our one-time intialization for this module
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
// static
|
|
|
|
nsresult PR_CALLBACK
|
2003-01-14 10:08:59 +03:00
|
|
|
Initialize(nsIModule* aSelf)
|
2001-08-07 06:55:54 +04:00
|
|
|
{
|
2003-10-30 05:53:08 +03:00
|
|
|
NS_PRECONDITION(!gInitialized, "module already initialized");
|
|
|
|
if (gInitialized) {
|
1999-09-28 04:44:47 +04:00
|
|
|
return NS_OK;
|
2003-10-30 05:53:08 +03:00
|
|
|
}
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
gInitialized = PR_TRUE;
|
2004-06-09 22:36:25 +04:00
|
|
|
|
|
|
|
nsJSEnvironment::Startup();
|
2003-10-30 05:53:08 +03:00
|
|
|
nsresult rv = nsContentUtils::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize nsContentUtils");
|
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
Shutdown();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2005-01-25 03:02:58 +03:00
|
|
|
rv = nsAttrValue::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize nsAttrValue");
|
|
|
|
|
|
|
|
Shutdown();
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2003-01-14 10:08:59 +03:00
|
|
|
|
1999-09-28 04:44:47 +04:00
|
|
|
// Register all of our atoms once
|
2002-11-17 18:37:56 +03:00
|
|
|
nsCSSAnonBoxes::AddRefAtoms();
|
|
|
|
nsCSSPseudoClasses::AddRefAtoms();
|
|
|
|
nsCSSPseudoElements::AddRefAtoms();
|
1999-09-28 04:44:47 +04:00
|
|
|
nsCSSKeywords::AddRefTable();
|
|
|
|
nsCSSProps::AddRefTable();
|
|
|
|
nsColorNames::AddRefTable();
|
|
|
|
nsHTMLAtoms::AddRefAtoms();
|
2001-11-02 04:53:13 +03:00
|
|
|
nsXBLAtoms::AddRefAtoms();
|
1999-10-01 01:14:14 +04:00
|
|
|
nsLayoutAtoms::AddRefAtoms();
|
2003-03-15 04:04:32 +03:00
|
|
|
nsXULAtoms::AddRefAtoms();
|
2003-01-14 10:08:59 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_XUL
|
2003-10-30 05:53:08 +03:00
|
|
|
rv = nsXULContentUtils::Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize nsXULContentUtils");
|
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
Shutdown();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
1999-09-28 04:44:47 +04:00
|
|
|
#endif
|
2003-01-14 10:08:59 +03:00
|
|
|
|
1999-10-02 15:01:41 +04:00
|
|
|
#ifdef MOZ_MATHML
|
|
|
|
nsMathMLOperators::AddRefTable();
|
|
|
|
nsMathMLAtoms::AddRefAtoms();
|
|
|
|
#endif
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2000-04-02 02:31:45 +04:00
|
|
|
#ifdef MOZ_SVG
|
2005-09-06 00:41:57 +04:00
|
|
|
if (nsSVGUtils::SVGEnabled())
|
2005-02-21 21:11:18 +03:00
|
|
|
nsContentDLF::RegisterSVG();
|
2000-04-02 02:31:45 +04:00
|
|
|
nsSVGAtoms::AddRefAtoms();
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
NS_InitSVGRendererLibartGlobals();
|
|
|
|
#endif
|
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
NS_InitSVGRendererGDIPlusGlobals();
|
|
|
|
#endif
|
2000-04-02 02:31:45 +04:00
|
|
|
#endif
|
|
|
|
|
2003-03-22 18:09:17 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsFrame::DisplayReflowStartup();
|
|
|
|
#endif
|
2003-10-30 05:53:08 +03:00
|
|
|
rv = nsTextTransformer::Initialize();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_ERROR("Could not initialize nsTextTransformer");
|
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
Shutdown();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2005-08-20 03:40:42 +04:00
|
|
|
nsDOMAttribute::Initialize();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
2005-11-02 22:03:06 +03:00
|
|
|
gXPathExceptionProvider = new nsXPathExceptionProvider();
|
|
|
|
NS_IF_ADDREF(gXPathExceptionProvider);
|
|
|
|
if (!gXPathExceptionProvider || !txXSLTProcessor::init()) {
|
|
|
|
Shutdown();
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIExceptionService> xs =
|
|
|
|
do_GetService(NS_EXCEPTIONSERVICE_CONTRACTID);
|
|
|
|
if (xs)
|
|
|
|
xs->RegisterExceptionProvider(gXPathExceptionProvider,
|
|
|
|
NS_ERROR_MODULE_DOM_XPATH);
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
// Add our shutdown observer.
|
|
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
|
|
do_GetService("@mozilla.org/observer-service;1");
|
|
|
|
|
|
|
|
if (observerService) {
|
2004-04-30 03:17:54 +04:00
|
|
|
LayoutShutdownObserver* observer =
|
|
|
|
new LayoutShutdownObserver();
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2003-10-30 05:53:08 +03:00
|
|
|
if (!observer) {
|
2004-04-30 03:17:54 +04:00
|
|
|
Shutdown();
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
observerService->AddObserver(observer, NS_XPCOM_SHUTDOWN_OBSERVER_ID, PR_FALSE);
|
|
|
|
} else {
|
|
|
|
NS_WARNING("Could not get an observer service. We will leak on shutdown.");
|
2003-01-14 10:08:59 +03:00
|
|
|
}
|
2001-08-24 00:07:10 +04:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
return NS_OK;
|
1999-09-28 04:44:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shutdown this module, releasing all of the module resources
|
2003-10-30 05:53:08 +03:00
|
|
|
|
|
|
|
// static
|
2004-04-30 03:17:54 +04:00
|
|
|
void
|
|
|
|
Shutdown()
|
1999-09-28 04:44:47 +04:00
|
|
|
{
|
2001-08-07 06:55:54 +04:00
|
|
|
NS_PRECONDITION(gInitialized, "module not initialized");
|
2003-10-30 05:53:08 +03:00
|
|
|
if (!gInitialized)
|
2000-02-16 10:42:00 +03:00
|
|
|
return;
|
2001-08-07 06:55:54 +04:00
|
|
|
|
|
|
|
gInitialized = PR_FALSE;
|
2000-11-08 06:22:03 +03:00
|
|
|
|
2005-11-02 22:03:06 +03:00
|
|
|
nsCOMPtr<nsIExceptionService> xs =
|
|
|
|
do_GetService(NS_EXCEPTIONSERVICE_CONTRACTID);
|
|
|
|
if (xs && gXPathExceptionProvider) {
|
|
|
|
xs->UnregisterExceptionProvider(gXPathExceptionProvider,
|
|
|
|
NS_ERROR_MODULE_DOM_XPATH);
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(gXPathExceptionProvider);
|
|
|
|
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XSLTProcessor));
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XPathEvaluator));
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XPathException));
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XPathExpression));
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XPathNSResolver));
|
|
|
|
NS_IF_RELEASE(NS_CLASSINFO_NAME(XPathResult));
|
|
|
|
|
|
|
|
txXSLTProcessor::shutdown();
|
2005-08-20 03:40:42 +04:00
|
|
|
nsDOMAttribute::Shutdown();
|
2003-01-14 10:08:59 +03:00
|
|
|
nsRange::Shutdown();
|
|
|
|
nsGenericElement::Shutdown();
|
|
|
|
nsEventListenerManager::Shutdown();
|
|
|
|
nsContentList::Shutdown();
|
|
|
|
nsComputedDOMStyle::Shutdown();
|
2003-02-22 22:36:32 +03:00
|
|
|
CSSLoaderImpl::Shutdown();
|
2003-03-22 18:09:17 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsFrame::DisplayReflowShutdown();
|
|
|
|
#endif
|
2000-11-08 06:22:03 +03:00
|
|
|
|
1999-09-28 04:44:47 +04:00
|
|
|
// Release all of our atoms
|
|
|
|
nsColorNames::ReleaseTable();
|
|
|
|
nsCSSProps::ReleaseTable();
|
|
|
|
nsCSSKeywords::ReleaseTable();
|
2003-03-15 04:04:32 +03:00
|
|
|
nsRepeatService::Shutdown();
|
|
|
|
nsStackLayout::Shutdown();
|
|
|
|
nsBox::Shutdown();
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
#ifdef MOZ_XUL
|
|
|
|
nsXULContentUtils::Finish();
|
|
|
|
nsXULElement::ReleaseGlobals();
|
|
|
|
nsXULPrototypeElement::ReleaseGlobals();
|
|
|
|
nsXULPrototypeScript::ReleaseGlobals();
|
|
|
|
nsSprocketLayout::Shutdown();
|
|
|
|
#endif
|
2001-08-07 06:55:54 +04:00
|
|
|
|
1999-10-02 15:01:41 +04:00
|
|
|
#ifdef MOZ_MATHML
|
|
|
|
nsMathMLOperators::ReleaseTable();
|
2000-04-02 02:31:45 +04:00
|
|
|
#endif
|
1999-09-28 04:44:47 +04:00
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
NS_FreeSVGRendererLibartGlobals();
|
|
|
|
#endif
|
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
NS_FreeSVGRendererGDIPlusGlobals();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-08-24 00:07:10 +04:00
|
|
|
nsCSSFrameConstructor::ReleaseGlobals();
|
1999-10-20 03:01:23 +04:00
|
|
|
nsTextTransformer::Shutdown();
|
2001-09-11 04:55:05 +04:00
|
|
|
nsSpaceManager::Shutdown();
|
2004-01-21 12:35:59 +03:00
|
|
|
nsImageFrame::ReleaseGlobals();
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2004-09-30 09:18:05 +04:00
|
|
|
nsCSSScanner::ReleaseGlobals();
|
2004-09-20 23:38:11 +04:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
NS_IF_RELEASE(nsContentDLF::gUAStyleSheet);
|
|
|
|
NS_IF_RELEASE(nsRuleNode::gLangService);
|
|
|
|
nsGenericHTMLElement::Shutdown();
|
|
|
|
|
2005-01-25 03:02:58 +03:00
|
|
|
nsAttrValue::Shutdown();
|
2003-01-14 10:08:59 +03:00
|
|
|
nsContentUtils::Shutdown();
|
2004-03-09 22:59:09 +03:00
|
|
|
nsLayoutStylesheetCache::Shutdown();
|
2003-01-14 10:08:59 +03:00
|
|
|
NS_NameSpaceManagerShutdown();
|
2004-01-08 01:30:53 +03:00
|
|
|
nsStyleSet::FreeGlobals();
|
2004-02-24 06:22:35 +03:00
|
|
|
|
2004-12-10 22:48:22 +03:00
|
|
|
nsGlobalWindow::ShutDown();
|
2004-02-24 06:22:35 +03:00
|
|
|
nsDOMClassInfo::ShutDown();
|
2004-09-08 01:21:48 +04:00
|
|
|
nsTextControlFrame::ShutDown();
|
2004-09-10 11:17:31 +04:00
|
|
|
nsXBLWindowKeyHandler::ShutDown();
|
2005-02-01 02:47:26 +03:00
|
|
|
nsAutoCopyListener::Shutdown();
|
1999-09-28 04:44:47 +04:00
|
|
|
}
|
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
#ifdef NS_DEBUG
|
2003-03-05 18:08:41 +03:00
|
|
|
nsresult NS_NewFrameUtil(nsIFrameUtil** aResult);
|
|
|
|
nsresult NS_NewLayoutDebugger(nsILayoutDebugger** aResult);
|
2001-08-07 06:55:54 +04:00
|
|
|
#endif
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2003-04-11 04:56:27 +04:00
|
|
|
#ifdef MOZ_XUL
|
2003-03-05 18:08:41 +03:00
|
|
|
nsresult NS_NewBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewListBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewScrollBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewMenuBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewEditorBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewPopupBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewBrowserBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewIFrameBoxObject(nsIBoxObject** aResult);
|
|
|
|
nsresult NS_NewTreeBoxObject(nsIBoxObject** aResult);
|
2005-04-18 10:33:23 +04:00
|
|
|
#endif
|
|
|
|
|
2005-05-12 03:49:52 +04:00
|
|
|
#ifdef MOZ_ENABLE_CANVAS
|
2005-04-18 10:33:23 +04:00
|
|
|
nsresult NS_NewCanvasRenderingContext2D(nsIDOMCanvasRenderingContext2D** aResult);
|
2003-04-11 04:56:27 +04:00
|
|
|
#endif
|
|
|
|
|
2003-03-05 18:08:41 +03:00
|
|
|
nsresult NS_CreateFrameTraversal(nsIFrameTraversal** aResult);
|
|
|
|
nsresult NS_NewSelectionImageService(nsISelectionImageService** aResult);
|
|
|
|
|
|
|
|
nsresult NS_NewSelection(nsIFrameSelection** aResult);
|
|
|
|
nsresult NS_NewDomSelection(nsISelection** aResult);
|
|
|
|
nsresult NS_NewDocumentViewer(nsIDocumentViewer** aResult);
|
|
|
|
nsresult NS_NewRange(nsIDOMRange** aResult);
|
|
|
|
nsresult NS_NewRangeUtils(nsIRangeUtils** aResult);
|
|
|
|
nsresult NS_NewContentIterator(nsIContentIterator** aResult);
|
|
|
|
nsresult NS_NewPreContentIterator(nsIContentIterator** aResult);
|
|
|
|
nsresult NS_NewGenRegularIterator(nsIContentIterator** aResult);
|
|
|
|
nsresult NS_NewContentSubtreeIterator(nsIContentIterator** aResult);
|
|
|
|
nsresult NS_NewGenSubtreeIterator(nsIContentIterator** aInstancePtrResult);
|
|
|
|
nsresult NS_NewContentDocumentLoaderFactory(nsIDocumentLoaderFactory** aResult);
|
|
|
|
nsresult NS_NewHTMLCopyTextEncoder(nsIDocumentEncoder** aResult);
|
|
|
|
nsresult NS_NewTextEncoder(nsIDocumentEncoder** aResult);
|
|
|
|
nsresult NS_NewXBLService(nsIXBLService** aResult);
|
|
|
|
nsresult NS_NewContentPolicy(nsIContentPolicy** aResult);
|
|
|
|
nsresult NS_NewSyncLoadDOMService(nsISyncLoadDOMService** aResult);
|
|
|
|
nsresult NS_NewDOMEventGroup(nsIDOMEventGroup** aResult);
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2003-03-05 18:08:41 +03:00
|
|
|
NS_IMETHODIMP NS_NewXULControllers(nsISupports* aOuter, REFNSIID aIID, void** aResult);
|
2003-01-14 10:08:59 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_SVG
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
nsresult NS_NewSVGRendererGDIPlus(nsISVGRenderer** aResult);
|
|
|
|
#endif // MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
nsresult NS_NewSVGRendererLibart(nsISVGRenderer** aResult);
|
|
|
|
#endif // MOZ_SVG_RENDERER_LIBART
|
2005-04-22 23:03:41 +04:00
|
|
|
#ifdef MOZ_SVG_RENDERER_CAIRO
|
|
|
|
nsresult NS_NewSVGRendererCairo(nsISVGRenderer** aResult);
|
|
|
|
#endif // MOZ_SVG_RENDERER_CAIRO
|
2003-01-14 10:08:59 +03:00
|
|
|
#endif
|
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
#define MAKE_CTOR(ctor_, iface_, func_) \
|
|
|
|
static NS_IMETHODIMP \
|
|
|
|
ctor_(nsISupports* aOuter, REFNSIID aIID, void** aResult) \
|
|
|
|
{ \
|
|
|
|
*aResult = nsnull; \
|
|
|
|
if (aOuter) \
|
|
|
|
return NS_ERROR_NO_AGGREGATION; \
|
|
|
|
iface_* inst; \
|
|
|
|
nsresult rv = func_(&inst); \
|
|
|
|
if (NS_SUCCEEDED(rv)) { \
|
|
|
|
rv = inst->QueryInterface(aIID, aResult); \
|
|
|
|
NS_RELEASE(inst); \
|
|
|
|
} \
|
|
|
|
return rv; \
|
1999-09-28 04:44:47 +04:00
|
|
|
}
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
#ifdef DEBUG
|
2003-01-14 10:08:59 +03:00
|
|
|
MAKE_CTOR(CreateNewFrameUtil, nsIFrameUtil, NS_NewFrameUtil)
|
|
|
|
MAKE_CTOR(CreateNewLayoutDebugger, nsILayoutDebugger, NS_NewLayoutDebugger)
|
2001-08-07 06:55:54 +04:00
|
|
|
#endif
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
MAKE_CTOR(CreateNewFrameTraversal, nsIFrameTraversal, NS_CreateFrameTraversal)
|
|
|
|
MAKE_CTOR(CreateNewPresShell, nsIPresShell, NS_NewPresShell)
|
2003-03-15 04:04:32 +03:00
|
|
|
#ifdef MOZ_XUL
|
2001-08-07 06:55:54 +04:00
|
|
|
MAKE_CTOR(CreateNewBoxObject, nsIBoxObject, NS_NewBoxObject)
|
2002-01-24 07:26:28 +03:00
|
|
|
MAKE_CTOR(CreateNewListBoxObject, nsIBoxObject, NS_NewListBoxObject)
|
2001-08-07 06:55:54 +04:00
|
|
|
MAKE_CTOR(CreateNewMenuBoxObject, nsIBoxObject, NS_NewMenuBoxObject)
|
2001-08-18 05:04:47 +04:00
|
|
|
MAKE_CTOR(CreateNewPopupBoxObject, nsIBoxObject, NS_NewPopupBoxObject)
|
2001-08-07 06:55:54 +04:00
|
|
|
MAKE_CTOR(CreateNewBrowserBoxObject, nsIBoxObject, NS_NewBrowserBoxObject)
|
|
|
|
MAKE_CTOR(CreateNewEditorBoxObject, nsIBoxObject, NS_NewEditorBoxObject)
|
|
|
|
MAKE_CTOR(CreateNewIFrameBoxObject, nsIBoxObject, NS_NewIFrameBoxObject)
|
|
|
|
MAKE_CTOR(CreateNewScrollBoxObject, nsIBoxObject, NS_NewScrollBoxObject)
|
2002-03-29 05:46:01 +03:00
|
|
|
MAKE_CTOR(CreateNewTreeBoxObject, nsIBoxObject, NS_NewTreeBoxObject)
|
2003-03-15 04:04:32 +03:00
|
|
|
#endif
|
2002-09-11 07:03:49 +04:00
|
|
|
MAKE_CTOR(CreateSelectionImageService, nsISelectionImageService,NS_NewSelectionImageService)
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
MAKE_CTOR(CreateNewSVGRendererGDIPlus, nsISVGRenderer, NS_NewSVGRendererGDIPlus)
|
|
|
|
#endif // MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
MAKE_CTOR(CreateNewSVGRendererLibart, nsISVGRenderer, NS_NewSVGRendererLibart)
|
|
|
|
#endif // MOZ_SVG_RENDERER_LIBART
|
2005-04-22 23:03:41 +04:00
|
|
|
#ifdef MOZ_SVG_RENDERER_CAIRO
|
|
|
|
MAKE_CTOR(CreateNewSVGRendererCairo, nsISVGRenderer, NS_NewSVGRendererCairo)
|
|
|
|
#endif // MOZ_SVG_RENDERER_CAIRO
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#endif
|
2003-02-28 02:09:51 +03:00
|
|
|
MAKE_CTOR(CreateCaret, nsICaret, NS_NewCaret)
|
2000-01-19 07:11:23 +03:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
MAKE_CTOR(CreateNameSpaceManager, nsINameSpaceManager, NS_GetNameSpaceManager)
|
|
|
|
MAKE_CTOR(CreateEventListenerManager, nsIEventListenerManager, NS_NewEventListenerManager)
|
|
|
|
MAKE_CTOR(CreateDOMEventGroup, nsIDOMEventGroup, NS_NewDOMEventGroup)
|
|
|
|
MAKE_CTOR(CreateDocumentViewer, nsIDocumentViewer, NS_NewDocumentViewer)
|
|
|
|
MAKE_CTOR(CreateCSSStyleSheet, nsICSSStyleSheet, NS_NewCSSStyleSheet)
|
|
|
|
MAKE_CTOR(CreateHTMLDocument, nsIDocument, NS_NewHTMLDocument)
|
|
|
|
MAKE_CTOR(CreateHTMLCSSStyleSheet, nsIHTMLCSSStyleSheet, NS_NewHTMLCSSStyleSheet)
|
|
|
|
MAKE_CTOR(CreateDOMImplementation, nsIDOMDOMImplementation, NS_NewDOMImplementation)
|
|
|
|
MAKE_CTOR(CreateXMLDocument, nsIDocument, NS_NewXMLDocument)
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
MAKE_CTOR(CreateSVGDocument, nsIDocument, NS_NewSVGDocument)
|
|
|
|
#endif
|
|
|
|
MAKE_CTOR(CreateImageDocument, nsIDocument, NS_NewImageDocument)
|
|
|
|
MAKE_CTOR(CreateCSSParser, nsICSSParser, NS_NewCSSParser)
|
|
|
|
MAKE_CTOR(CreateCSSLoader, nsICSSLoader, NS_NewCSSLoader)
|
|
|
|
MAKE_CTOR(CreateDOMSelection, nsISelection, NS_NewDomSelection)
|
|
|
|
MAKE_CTOR(CreateSelection, nsIFrameSelection, NS_NewSelection)
|
|
|
|
MAKE_CTOR(CreateRange, nsIDOMRange, NS_NewRange)
|
|
|
|
MAKE_CTOR(CreateRangeUtils, nsIRangeUtils, NS_NewRangeUtils)
|
|
|
|
MAKE_CTOR(CreateContentIterator, nsIContentIterator, NS_NewContentIterator)
|
|
|
|
MAKE_CTOR(CreatePreContentIterator, nsIContentIterator, NS_NewPreContentIterator)
|
|
|
|
MAKE_CTOR(CreateGeneratedContentIterator, nsIContentIterator, NS_NewGenRegularIterator)
|
|
|
|
MAKE_CTOR(CreateGeneratedSubtreeIterator, nsIContentIterator, NS_NewGenSubtreeIterator)
|
|
|
|
MAKE_CTOR(CreateSubtreeIterator, nsIContentIterator, NS_NewContentSubtreeIterator)
|
|
|
|
// CreateHTMLImgElement, see below
|
|
|
|
// CreateHTMLOptionElement, see below
|
|
|
|
MAKE_CTOR(CreateTextEncoder, nsIDocumentEncoder, NS_NewTextEncoder)
|
|
|
|
MAKE_CTOR(CreateHTMLCopyTextEncoder, nsIDocumentEncoder, NS_NewHTMLCopyTextEncoder)
|
|
|
|
MAKE_CTOR(CreateXMLContentSerializer, nsIContentSerializer, NS_NewXMLContentSerializer)
|
|
|
|
MAKE_CTOR(CreateHTMLContentSerializer, nsIContentSerializer, NS_NewHTMLContentSerializer)
|
|
|
|
MAKE_CTOR(CreatePlainTextSerializer, nsIContentSerializer, NS_NewPlainTextSerializer)
|
2004-10-01 02:27:45 +04:00
|
|
|
MAKE_CTOR(CreateHTMLFragmentSink, nsIFragmentContentSink, NS_NewHTMLFragmentContentSink)
|
|
|
|
MAKE_CTOR(CreateHTMLFragmentSink2, nsIFragmentContentSink, NS_NewHTMLFragmentContentSink2)
|
|
|
|
MAKE_CTOR(CreateXMLFragmentSink, nsIFragmentContentSink, NS_NewXMLFragmentContentSink)
|
|
|
|
MAKE_CTOR(CreateXMLFragmentSink2, nsIFragmentContentSink, NS_NewXMLFragmentContentSink2)
|
2003-01-14 10:08:59 +03:00
|
|
|
MAKE_CTOR(CreateSanitizingHTMLSerializer, nsIContentSerializer, NS_NewSanitizingHTMLSerializer)
|
|
|
|
MAKE_CTOR(CreateXBLService, nsIXBLService, NS_NewXBLService)
|
|
|
|
MAKE_CTOR(CreateContentPolicy, nsIContentPolicy, NS_NewContentPolicy)
|
|
|
|
MAKE_CTOR(CreateComputedDOMStyle, nsIComputedDOMStyle, NS_NewComputedDOMStyle)
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
MAKE_CTOR(CreateXULSortService, nsIXULSortService, NS_NewXULSortService)
|
|
|
|
// NS_NewXULContentBuilder
|
|
|
|
// NS_NewXULTreeBuilder
|
|
|
|
MAKE_CTOR(CreateXULDocument, nsIXULDocument, NS_NewXULDocument)
|
|
|
|
MAKE_CTOR(CreateXULPopupListener, nsIXULPopupListener, NS_NewXULPopupListener)
|
|
|
|
// NS_NewXULControllers
|
|
|
|
// NS_NewXULPrototypeCache
|
|
|
|
#endif
|
2004-10-08 00:59:53 +04:00
|
|
|
#ifdef MOZ_XTF
|
|
|
|
MAKE_CTOR(CreateXTFService, nsIXTFService, NS_NewXTFService)
|
|
|
|
MAKE_CTOR(CreateXMLContentBuilder, nsIXMLContentBuilder, NS_NewXMLContentBuilder)
|
|
|
|
#endif
|
2003-01-14 10:08:59 +03:00
|
|
|
#ifdef MOZ_SVG
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
MAKE_CTOR(CreateSVGRect, nsIDOMSVGRect, NS_NewSVGRect)
|
2003-01-14 10:08:59 +03:00
|
|
|
#endif
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsContentHTTPStartup)
|
|
|
|
MAKE_CTOR(CreateContentDLF, nsIDocumentLoaderFactory, NS_NewContentDocumentLoaderFactory)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsCSSOMFactory)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsInspectorCSSUtils)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsWyciwygProtocolHandler)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsContentAreaDragDrop)
|
2005-04-11 04:29:36 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDataDocumentContentPolicy)
|
2003-01-14 10:08:59 +03:00
|
|
|
MAKE_CTOR(CreateSyncLoadDOMService, nsISyncLoadDOMService, NS_NewSyncLoadDOMService)
|
2003-03-22 06:20:23 +03:00
|
|
|
MAKE_CTOR(CreatePluginDocument, nsIDocument, NS_NewPluginDocument)
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2005-05-12 03:49:52 +04:00
|
|
|
#ifdef MOZ_ENABLE_CANVAS
|
2005-04-18 10:33:23 +04:00
|
|
|
MAKE_CTOR(CreateCanvasRenderingContext2D, nsIDOMCanvasRenderingContext2D, NS_NewCanvasRenderingContext2D)
|
|
|
|
#endif
|
|
|
|
|
2005-01-15 03:10:19 +03:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsStyleSheetService, Init)
|
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
// views are not refcounted, so this is the same as
|
|
|
|
// NS_GENERIC_FACTORY_CONSTRUCTOR without the NS_ADDREF/NS_RELEASE
|
|
|
|
#define NS_GENERIC_FACTORY_CONSTRUCTOR_NOREFS(_InstanceClass) \
|
|
|
|
static NS_IMETHODIMP \
|
|
|
|
_InstanceClass##Constructor(nsISupports *aOuter, REFNSIID aIID, \
|
|
|
|
void **aResult) \
|
|
|
|
{ \
|
|
|
|
nsresult rv; \
|
|
|
|
\
|
|
|
|
_InstanceClass * inst; \
|
|
|
|
\
|
|
|
|
*aResult = NULL; \
|
|
|
|
if (NULL != aOuter) { \
|
|
|
|
rv = NS_ERROR_NO_AGGREGATION; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
NS_NEWXPCOM(inst, _InstanceClass); \
|
|
|
|
if (NULL == inst) { \
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY; \
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
rv = inst->QueryInterface(aIID, aResult); \
|
|
|
|
\
|
|
|
|
return rv; \
|
|
|
|
} \
|
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsViewManager)
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
static NS_IMETHODIMP
|
|
|
|
CreateHTMLImgElement(nsISupports* aOuter, REFNSIID aIID, void** aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
if (aOuter)
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
// Note! NS_NewHTMLImageElement is special cased to handle a null nodeinfo
|
2005-01-12 22:45:38 +03:00
|
|
|
nsIContent* inst = NS_NewHTMLImageElement(nsnull);
|
2004-06-06 06:38:32 +04:00
|
|
|
nsresult rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
if (inst) {
|
|
|
|
NS_ADDREF(inst);
|
2003-01-14 10:08:59 +03:00
|
|
|
rv = inst->QueryInterface(aIID, aResult);
|
|
|
|
NS_RELEASE(inst);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
RegisterHTMLImgElement(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile* aPath,
|
|
|
|
const char* aRegistryLocation,
|
|
|
|
const char* aComponentType,
|
|
|
|
const nsModuleComponentInfo* aInfo)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsICategoryManager> catman =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID);
|
|
|
|
|
|
|
|
if (!catman)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsXPIDLCString previous;
|
|
|
|
nsresult rv = catman->AddCategoryEntry(JAVASCRIPT_GLOBAL_CONSTRUCTOR_CATEGORY,
|
|
|
|
"Image", NS_HTMLIMGELEMENT_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return catman->AddCategoryEntry(JAVASCRIPT_GLOBAL_CONSTRUCTOR_PROTO_ALIAS_CATEGORY,
|
|
|
|
"Image", "HTMLImageElement",
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
UnregisterHTMLImgElement(nsIComponentManager* aCompMgr,
|
|
|
|
nsIFile* aPath,
|
|
|
|
const char* aRegistryLocation,
|
|
|
|
const nsModuleComponentInfo* aInfo)
|
|
|
|
{
|
|
|
|
// XXX remove category entry
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
CreateHTMLOptionElement(nsISupports* aOuter, REFNSIID aIID, void** aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
if (aOuter)
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
// Note! NS_NewHTMLOptionElement is special cased to handle a null nodeinfo
|
2005-01-12 22:45:38 +03:00
|
|
|
nsIContent* inst = NS_NewHTMLOptionElement(nsnull);
|
2004-06-06 06:38:32 +04:00
|
|
|
nsresult rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
if (inst) {
|
|
|
|
NS_ADDREF(inst);
|
2003-01-14 10:08:59 +03:00
|
|
|
rv = inst->QueryInterface(aIID, aResult);
|
|
|
|
NS_RELEASE(inst);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
RegisterHTMLOptionElement(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile* aPath,
|
|
|
|
const char* aRegistryLocation,
|
|
|
|
const char* aComponentType,
|
|
|
|
const nsModuleComponentInfo* aInfo)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsICategoryManager> catman =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID);
|
|
|
|
|
|
|
|
if (!catman)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsXPIDLCString previous;
|
|
|
|
nsresult rv = catman->AddCategoryEntry(JAVASCRIPT_GLOBAL_CONSTRUCTOR_CATEGORY,
|
|
|
|
"Option", NS_HTMLOPTIONELEMENT_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return catman->AddCategoryEntry(JAVASCRIPT_GLOBAL_CONSTRUCTOR_PROTO_ALIAS_CATEGORY,
|
|
|
|
"Option", "HTMLOptionElement",
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
UnregisterHTMLOptionElement(nsIComponentManager* aCompMgr,
|
|
|
|
nsIFile* aPath,
|
|
|
|
const char* aRegistryLocation,
|
|
|
|
const nsModuleComponentInfo* aInfo)
|
|
|
|
{
|
|
|
|
// XXX remove category entry
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-04-11 04:29:36 +04:00
|
|
|
static NS_METHOD
|
|
|
|
RegisterDataDocumentContentPolicy(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile* aPath,
|
|
|
|
const char* aRegistryLocation,
|
|
|
|
const char* aComponentType,
|
|
|
|
const nsModuleComponentInfo* aInfo)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsICategoryManager> catman =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
nsXPIDLCString previous;
|
|
|
|
return catman->AddCategoryEntry("content-policy",
|
|
|
|
NS_DATADOCUMENTCONTENTPOLICY_CONTRACTID,
|
|
|
|
NS_DATADOCUMENTCONTENTPOLICY_CONTRACTID,
|
|
|
|
PR_TRUE, PR_TRUE, getter_Copies(previous));
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_METHOD
|
|
|
|
UnregisterDataDocumentContentPolicy(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
|
|
|
const char *registryLocation,
|
|
|
|
const nsModuleComponentInfo *info)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsICategoryManager> catman =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return catman->DeleteCategoryEntry("content-policy",
|
|
|
|
NS_DATADOCUMENTCONTENTPOLICY_CONTRACTID,
|
|
|
|
PR_TRUE);
|
|
|
|
}
|
|
|
|
|
2004-02-24 06:22:35 +03:00
|
|
|
static NS_METHOD
|
|
|
|
CreateWindowCommandTableConstructor(nsISupports *aOuter,
|
|
|
|
REFNSIID aIID, void **aResult)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIControllerCommandTable> commandTable =
|
|
|
|
do_CreateInstance(NS_CONTROLLERCOMMANDTABLE_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
rv = nsWindowCommandRegistration::RegisterWindowCommands(commandTable);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
return commandTable->QueryInterface(aIID, aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_METHOD
|
|
|
|
CreateWindowControllerWithSingletonCommandTable(nsISupports *aOuter,
|
|
|
|
REFNSIID aIID, void **aResult)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIController> controller =
|
|
|
|
do_CreateInstance("@mozilla.org/embedcomp/base-command-controller;1", &rv);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIControllerCommandTable> windowCommandTable = do_GetService(kWindowCommandTableCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
// this is a singleton; make it immutable
|
|
|
|
windowCommandTable->MakeImmutable();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIControllerContext> controllerContext = do_QueryInterface(controller, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
controllerContext->Init(windowCommandTable);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
return controller->QueryInterface(aIID, aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDOMScriptObjectFactory)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsBaseDOMException)
|
|
|
|
|
1999-09-28 04:44:47 +04:00
|
|
|
// The list of components we register
|
2002-01-31 00:14:20 +03:00
|
|
|
static const nsModuleComponentInfo gComponents[] = {
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#ifdef MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
{ "SVG GdiPlus Renderer",
|
|
|
|
NS_SVG_RENDERER_GDIPLUS_CID,
|
|
|
|
NS_SVG_RENDERER_GDIPLUS_CONTRACTID,
|
|
|
|
CreateNewSVGRendererGDIPlus },
|
|
|
|
#endif // MOZ_SVG_RENDERER_GDIPLUS
|
|
|
|
#ifdef MOZ_SVG_RENDERER_LIBART
|
|
|
|
{ "SVG Libart Renderer",
|
|
|
|
NS_SVG_RENDERER_LIBART_CID,
|
|
|
|
NS_SVG_RENDERER_LIBART_CONTRACTID,
|
|
|
|
CreateNewSVGRendererLibart },
|
|
|
|
#endif // MOZ_SVG_RENDERER_LIBART
|
2005-04-22 23:03:41 +04:00
|
|
|
#ifdef MOZ_SVG_RENDERER_CAIRO
|
|
|
|
{ "SVG Cairo Renderer",
|
|
|
|
NS_SVG_RENDERER_CAIRO_CID,
|
|
|
|
NS_SVG_RENDERER_CAIRO_CONTRACTID,
|
|
|
|
CreateNewSVGRendererCairo },
|
|
|
|
#endif // MOZ_SVG_RENDERER_CAIRO
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
#endif // MOZ_SVG
|
|
|
|
|
2000-10-29 02:17:53 +04:00
|
|
|
#ifdef DEBUG
|
2001-08-07 06:55:54 +04:00
|
|
|
{ "Frame utility",
|
|
|
|
NS_FRAME_UTIL_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateNewFrameUtil },
|
|
|
|
{ "Layout debugger",
|
|
|
|
NS_LAYOUT_DEBUGGER_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateNewLayoutDebugger },
|
2000-10-29 02:17:53 +04:00
|
|
|
#endif
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
{ "Frame Traversal",
|
|
|
|
NS_FRAMETRAVERSAL_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateNewFrameTraversal },
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2002-09-11 07:03:49 +04:00
|
|
|
{ "selection image storage",
|
|
|
|
NS_SELECTIONIMAGESERVICE_CID,
|
|
|
|
nsnull,
|
2003-02-28 02:09:51 +03:00
|
|
|
CreateSelectionImageService },
|
|
|
|
|
|
|
|
{ "caret",
|
|
|
|
NS_CARET_CID,
|
|
|
|
"@mozilla.org/layout/caret;1",
|
|
|
|
CreateCaret },
|
2002-09-11 07:03:49 +04:00
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
// XXX ick
|
|
|
|
{ "Presentation shell",
|
|
|
|
NS_PRESSHELL_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateNewPresShell },
|
|
|
|
|
|
|
|
// XXX end ick
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
#ifdef MOZ_XUL
|
2001-08-07 06:55:54 +04:00
|
|
|
{ "XUL Box Object",
|
|
|
|
NS_BOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject;1",
|
|
|
|
CreateNewBoxObject },
|
|
|
|
|
2002-01-24 07:26:28 +03:00
|
|
|
{ "XUL Listbox Box Object",
|
|
|
|
NS_LISTBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-listbox;1",
|
|
|
|
CreateNewListBoxObject },
|
|
|
|
|
2001-08-07 06:55:54 +04:00
|
|
|
{ "XUL Menu Box Object",
|
|
|
|
NS_MENUBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-menu;1",
|
|
|
|
CreateNewMenuBoxObject },
|
|
|
|
|
2001-08-18 05:04:47 +04:00
|
|
|
{ "XUL Popup Box Object",
|
|
|
|
NS_POPUPBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-popup;1",
|
|
|
|
CreateNewPopupBoxObject },
|
2001-08-07 06:55:54 +04:00
|
|
|
|
|
|
|
{ "XUL Browser Box Object",
|
|
|
|
NS_BROWSERBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-browser;1",
|
|
|
|
CreateNewBrowserBoxObject },
|
|
|
|
|
|
|
|
{ "XUL Editor Box Object",
|
|
|
|
NS_EDITORBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-editor;1",
|
|
|
|
CreateNewEditorBoxObject },
|
|
|
|
|
|
|
|
{ "XUL Iframe Object",
|
|
|
|
NS_IFRAMEBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-iframe;1",
|
|
|
|
CreateNewIFrameBoxObject },
|
|
|
|
|
|
|
|
{ "XUL ScrollBox Object",
|
|
|
|
NS_SCROLLBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-scrollbox;1",
|
|
|
|
CreateNewScrollBoxObject },
|
|
|
|
|
2002-03-29 05:46:01 +03:00
|
|
|
{ "XUL Tree Box Object",
|
|
|
|
NS_TREEBOXOBJECT_CID,
|
|
|
|
"@mozilla.org/layout/xul-boxobject-tree;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateNewTreeBoxObject },
|
2004-08-14 05:01:16 +04:00
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
#endif
|
2001-08-07 06:55:54 +04:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
{ "Namespace manager",
|
|
|
|
NS_NAMESPACEMANAGER_CID,
|
|
|
|
NS_NAMESPACEMANAGER_CONTRACTID,
|
|
|
|
CreateNameSpaceManager },
|
|
|
|
|
|
|
|
{ "Event listener manager",
|
|
|
|
NS_EVENTLISTENERMANAGER_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateEventListenerManager },
|
|
|
|
|
|
|
|
{ "DOM Event group",
|
|
|
|
NS_DOMEVENTGROUP_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateDOMEventGroup },
|
|
|
|
|
|
|
|
{ "Document Viewer",
|
|
|
|
NS_DOCUMENT_VIEWER_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateDocumentViewer },
|
|
|
|
|
|
|
|
{ "CSS Style Sheet",
|
|
|
|
NS_CSS_STYLESHEET_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateCSSStyleSheet },
|
|
|
|
|
|
|
|
{ "HTML document",
|
|
|
|
NS_HTMLDOCUMENT_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateHTMLDocument },
|
|
|
|
|
|
|
|
{ "HTML-CSS style sheet",
|
|
|
|
NS_HTML_CSS_STYLESHEET_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateHTMLCSSStyleSheet },
|
|
|
|
|
|
|
|
{ "DOM implementation",
|
|
|
|
NS_DOM_IMPLEMENTATION_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateDOMImplementation },
|
|
|
|
|
|
|
|
|
|
|
|
{ "XML document",
|
|
|
|
NS_XMLDOCUMENT_CID,
|
2004-10-08 00:59:53 +04:00
|
|
|
"@mozilla.org/xml/xml-document;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateXMLDocument },
|
|
|
|
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
{ "SVG document",
|
|
|
|
NS_SVGDOCUMENT_CID,
|
2004-10-08 00:59:53 +04:00
|
|
|
"@mozilla.org/svg/svg-document;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateSVGDocument },
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{ "Image document",
|
|
|
|
NS_IMAGEDOCUMENT_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateImageDocument },
|
|
|
|
|
|
|
|
{ "CSS parser",
|
|
|
|
NS_CSSPARSER_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/css-parser;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateCSSParser },
|
|
|
|
|
|
|
|
{ "CSS loader",
|
|
|
|
NS_CSS_LOADER_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateCSSLoader },
|
|
|
|
|
|
|
|
{ "Dom selection",
|
|
|
|
NS_DOMSELECTION_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/dom-selection;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateDOMSelection },
|
|
|
|
|
|
|
|
{ "Frame selection",
|
|
|
|
NS_FRAMESELECTION_CID,
|
|
|
|
nsnull,
|
|
|
|
CreateSelection },
|
|
|
|
|
|
|
|
{ "Range",
|
|
|
|
NS_RANGE_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/range;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateRange },
|
|
|
|
|
|
|
|
{ "Range Utils",
|
|
|
|
NS_RANGEUTILS_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/range-utils;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateRangeUtils },
|
|
|
|
|
|
|
|
{ "Content iterator",
|
|
|
|
NS_CONTENTITERATOR_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/post-content-iterator;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateContentIterator },
|
|
|
|
|
|
|
|
{ "Pre Content iterator",
|
|
|
|
NS_PRECONTENTITERATOR_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/pre-content-iterator;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreatePreContentIterator },
|
|
|
|
|
|
|
|
{ "Generated Content iterator",
|
|
|
|
NS_GENERATEDCONTENTITERATOR_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/generated-content-iterator;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateGeneratedContentIterator },
|
|
|
|
|
|
|
|
{ "Generated Subtree iterator",
|
|
|
|
NS_GENERATEDSUBTREEITERATOR_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/generated-subtree-content-iterator;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateGeneratedSubtreeIterator },
|
|
|
|
|
|
|
|
{ "Subtree iterator",
|
|
|
|
NS_SUBTREEITERATOR_CID,
|
2003-07-03 01:34:16 +04:00
|
|
|
"@mozilla.org/content/subtree-content-iterator;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateSubtreeIterator },
|
|
|
|
|
|
|
|
{ "CSS Object Model Factory",
|
|
|
|
NS_CSSOMFACTORY_CID,
|
|
|
|
nsnull,
|
|
|
|
nsCSSOMFactoryConstructor },
|
|
|
|
|
|
|
|
{ "Inspector CSS Utils",
|
|
|
|
NS_INSPECTORCSSUTILS_CID,
|
|
|
|
nsnull,
|
|
|
|
nsInspectorCSSUtilsConstructor },
|
|
|
|
|
|
|
|
// Needed to support "new Option;" and "new Image;" in JavaScript
|
|
|
|
{ "HTML img element",
|
|
|
|
NS_HTMLIMAGEELEMENT_CID,
|
|
|
|
NS_HTMLIMGELEMENT_CONTRACTID,
|
|
|
|
CreateHTMLImgElement,
|
|
|
|
RegisterHTMLImgElement,
|
|
|
|
UnregisterHTMLImgElement },
|
|
|
|
|
|
|
|
{ "HTML option element",
|
|
|
|
NS_HTMLOPTIONELEMENT_CID,
|
|
|
|
NS_HTMLOPTIONELEMENT_CONTRACTID,
|
|
|
|
CreateHTMLOptionElement,
|
|
|
|
RegisterHTMLOptionElement,
|
|
|
|
UnregisterHTMLOptionElement },
|
|
|
|
|
2005-05-12 03:49:52 +04:00
|
|
|
#ifdef MOZ_ENABLE_CANVAS
|
2005-04-18 10:33:23 +04:00
|
|
|
{ "Canvas 2D Rendering Context",
|
|
|
|
NS_CANVASRENDERINGCONTEXT2D_CID,
|
|
|
|
"@mozilla.org/content/canvas-rendering-context;1?id=2d",
|
|
|
|
CreateCanvasRenderingContext2D },
|
|
|
|
#endif
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
{ "XML document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "text/xml",
|
|
|
|
CreateTextEncoder },
|
|
|
|
|
|
|
|
{ "XML document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "application/xml",
|
|
|
|
CreateTextEncoder },
|
|
|
|
|
|
|
|
{ "XML document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "application/xhtml+xml",
|
|
|
|
CreateTextEncoder },
|
|
|
|
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
{ "SVG document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "image/svg+xml",
|
|
|
|
CreateTextEncoder },
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{ "HTML document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "text/html",
|
|
|
|
CreateTextEncoder },
|
|
|
|
|
|
|
|
{ "Plaintext document encoder",
|
|
|
|
NS_TEXT_ENCODER_CID,
|
|
|
|
NS_DOC_ENCODER_CONTRACTID_BASE "text/plain",
|
|
|
|
CreateTextEncoder },
|
|
|
|
|
|
|
|
{ "HTML copy encoder",
|
|
|
|
NS_HTMLCOPY_TEXT_ENCODER_CID,
|
|
|
|
NS_HTMLCOPY_ENCODER_CONTRACTID,
|
|
|
|
CreateHTMLCopyTextEncoder },
|
|
|
|
|
|
|
|
{ "XML content serializer",
|
|
|
|
NS_XMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "text/xml",
|
|
|
|
CreateXMLContentSerializer },
|
|
|
|
|
|
|
|
{ "XML content serializer",
|
|
|
|
NS_XMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "application/xml",
|
|
|
|
CreateXMLContentSerializer },
|
|
|
|
|
|
|
|
{ "XML content serializer",
|
|
|
|
NS_XMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "application/xhtml+xml",
|
|
|
|
CreateXMLContentSerializer },
|
|
|
|
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
{ "SVG content serializer",
|
|
|
|
NS_XMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "image/svg+xml",
|
|
|
|
CreateXMLContentSerializer },
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{ "HTML content serializer",
|
|
|
|
NS_HTMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "text/html",
|
|
|
|
CreateHTMLContentSerializer },
|
|
|
|
|
|
|
|
{ "XUL content serializer",
|
|
|
|
NS_XMLCONTENTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "application/vnd.mozilla.xul+xml",
|
|
|
|
CreateXMLContentSerializer },
|
|
|
|
|
|
|
|
{ "plaintext content serializer",
|
|
|
|
NS_PLAINTEXTSERIALIZER_CID,
|
|
|
|
NS_CONTENTSERIALIZER_CONTRACTID_PREFIX "text/plain",
|
|
|
|
CreatePlainTextSerializer },
|
|
|
|
|
|
|
|
{ "plaintext sink",
|
|
|
|
NS_PLAINTEXTSERIALIZER_CID,
|
|
|
|
NS_PLAINTEXTSINK_CONTRACTID,
|
|
|
|
CreatePlainTextSerializer },
|
|
|
|
|
|
|
|
{ "html fragment sink",
|
|
|
|
NS_HTMLFRAGMENTSINK_CID,
|
|
|
|
NS_HTMLFRAGMENTSINK_CONTRACTID,
|
|
|
|
CreateHTMLFragmentSink },
|
|
|
|
|
|
|
|
{ "html fragment sink 2",
|
|
|
|
NS_HTMLFRAGMENTSINK2_CID,
|
|
|
|
NS_HTMLFRAGMENTSINK2_CONTRACTID,
|
|
|
|
CreateHTMLFragmentSink2 },
|
|
|
|
|
|
|
|
{ "HTML sanitizing content serializer",
|
|
|
|
MOZ_SANITIZINGHTMLSERIALIZER_CID,
|
|
|
|
MOZ_SANITIZINGHTMLSERIALIZER_CONTRACTID,
|
|
|
|
CreateSanitizingHTMLSerializer },
|
|
|
|
|
2004-10-01 02:27:45 +04:00
|
|
|
{ "xml fragment sink",
|
|
|
|
NS_XMLFRAGMENTSINK_CID,
|
|
|
|
NS_XMLFRAGMENTSINK_CONTRACTID,
|
|
|
|
CreateXMLFragmentSink },
|
|
|
|
|
|
|
|
{ "xml fragment sink 2",
|
|
|
|
NS_XMLFRAGMENTSINK2_CID,
|
|
|
|
NS_XMLFRAGMENTSINK2_CONTRACTID,
|
|
|
|
CreateXMLFragmentSink2 },
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
{ "XBL Service",
|
|
|
|
NS_XBLSERVICE_CID,
|
|
|
|
"@mozilla.org/xbl;1",
|
|
|
|
CreateXBLService },
|
|
|
|
|
|
|
|
{ "Content policy service",
|
|
|
|
NS_CONTENTPOLICY_CID,
|
|
|
|
NS_CONTENTPOLICY_CONTRACTID,
|
|
|
|
CreateContentPolicy },
|
|
|
|
|
2005-04-11 04:29:36 +04:00
|
|
|
{ "Data document content policy",
|
|
|
|
NS_DATADOCUMENTCONTENTPOLICY_CID,
|
|
|
|
NS_DATADOCUMENTCONTENTPOLICY_CONTRACTID,
|
|
|
|
nsDataDocumentContentPolicyConstructor,
|
|
|
|
RegisterDataDocumentContentPolicy,
|
|
|
|
UnregisterDataDocumentContentPolicy },
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
{ "DOM CSS Computed Style Declaration",
|
|
|
|
NS_COMPUTEDDOMSTYLE_CID,
|
|
|
|
"@mozilla.org/DOM/Level2/CSS/computedStyleDeclaration;1",
|
|
|
|
CreateComputedDOMStyle },
|
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
{ "XUL Controllers",
|
|
|
|
NS_XULCONTROLLERS_CID,
|
|
|
|
"@mozilla.org/xul/xul-controllers;1",
|
|
|
|
NS_NewXULControllers },
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
#ifdef MOZ_XUL
|
|
|
|
{ "XUL Sort Service",
|
|
|
|
NS_XULSORTSERVICE_CID,
|
|
|
|
"@mozilla.org/xul/xul-sort-service;1",
|
|
|
|
CreateXULSortService },
|
|
|
|
|
|
|
|
{ "XUL Template Builder",
|
|
|
|
NS_XULTEMPLATEBUILDER_CID,
|
|
|
|
"@mozilla.org/xul/xul-template-builder;1",
|
|
|
|
NS_NewXULContentBuilder },
|
|
|
|
|
|
|
|
{ "XUL Tree Builder",
|
|
|
|
NS_XULTREEBUILDER_CID,
|
|
|
|
"@mozilla.org/xul/xul-tree-builder;1",
|
|
|
|
NS_NewXULTreeBuilder },
|
|
|
|
|
|
|
|
{ "XUL Document",
|
|
|
|
NS_XULDOCUMENT_CID,
|
|
|
|
"@mozilla.org/xul/xul-document;1",
|
|
|
|
CreateXULDocument },
|
|
|
|
|
|
|
|
{ "XUL PopupListener",
|
|
|
|
NS_XULPOPUPLISTENER_CID,
|
|
|
|
"@mozilla.org/xul/xul-popup-listener;1",
|
|
|
|
CreateXULPopupListener },
|
|
|
|
|
|
|
|
{ "XUL Prototype Cache",
|
|
|
|
NS_XULPROTOTYPECACHE_CID,
|
|
|
|
"@mozilla.org/xul/xul-prototype-cache;1",
|
|
|
|
NS_NewXULPrototypeCache },
|
|
|
|
|
|
|
|
{ NS_XULPROTOTYPEDOCUMENT_CLASSNAME,
|
|
|
|
NS_XULPROTOTYPEDOCUMENT_CID,
|
|
|
|
nsnull,
|
|
|
|
NS_NewXULPrototypeDocument },
|
|
|
|
#endif
|
|
|
|
|
2004-10-08 00:59:53 +04:00
|
|
|
#ifdef MOZ_XTF
|
|
|
|
{ "XTF Service",
|
|
|
|
NS_XTFSERVICE_CID,
|
|
|
|
NS_XTFSERVICE_CONTRACTID,
|
|
|
|
CreateXTFService },
|
|
|
|
|
|
|
|
{ "XML Content Builder",
|
|
|
|
NS_XMLCONTENTBUILDER_CID,
|
|
|
|
NS_XMLCONTENTBUILDER_CONTRACTID,
|
|
|
|
CreateXMLContentBuilder },
|
|
|
|
#endif
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
#ifdef MOZ_SVG
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
{ "SVG Rect",
|
|
|
|
NS_SVGRECT_CID,
|
|
|
|
NS_SVGRECT_CONTRACTID,
|
|
|
|
CreateSVGRect },
|
2003-01-14 10:08:59 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
{ "Content HTTP Startup Listener",
|
|
|
|
NS_CONTENTHTTPSTARTUP_CID,
|
|
|
|
NS_CONTENTHTTPSTARTUP_CONTRACTID,
|
|
|
|
nsContentHTTPStartupConstructor,
|
|
|
|
nsContentHTTPStartup::RegisterHTTPStartup,
|
|
|
|
nsContentHTTPStartup::UnregisterHTTPStartup },
|
|
|
|
|
|
|
|
{ "Document Loader Factory",
|
|
|
|
NS_CONTENT_DOCUMENT_LOADER_FACTORY_CID,
|
2003-02-27 16:51:55 +03:00
|
|
|
"@mozilla.org/content/document-loader-factory;1",
|
2003-01-14 10:08:59 +03:00
|
|
|
CreateContentDLF,
|
|
|
|
nsContentDLF::RegisterDocumentFactories,
|
|
|
|
nsContentDLF::UnregisterDocumentFactories },
|
|
|
|
|
|
|
|
{ "Wyciwyg Handler",
|
|
|
|
NS_WYCIWYGPROTOCOLHANDLER_CID,
|
|
|
|
NS_NETWORK_PROTOCOL_CONTRACTID_PREFIX "wyciwyg",
|
|
|
|
nsWyciwygProtocolHandlerConstructor },
|
|
|
|
|
|
|
|
{ "Content Area DragDrop",
|
|
|
|
NS_CONTENTAREADRAGDROP_CID,
|
|
|
|
NS_CONTENTAREADRAGDROP_CONTRACTID,
|
|
|
|
nsContentAreaDragDropConstructor },
|
|
|
|
|
|
|
|
{ "SyncLoad DOM Service",
|
|
|
|
NS_SYNCLOADDOMSERVICE_CID,
|
|
|
|
NS_SYNCLOADDOMSERVICE_CONTRACTID,
|
2003-03-15 04:04:32 +03:00
|
|
|
CreateSyncLoadDOMService },
|
|
|
|
|
2004-02-24 06:22:35 +03:00
|
|
|
// DOM objects
|
|
|
|
{ "Script Object Factory",
|
|
|
|
NS_DOM_SCRIPT_OBJECT_FACTORY_CID,
|
|
|
|
nsnull,
|
|
|
|
nsDOMScriptObjectFactoryConstructor
|
|
|
|
},
|
|
|
|
{ "Base DOM Exception",
|
|
|
|
NS_BASE_DOM_EXCEPTION_CID,
|
|
|
|
nsnull,
|
|
|
|
nsBaseDOMExceptionConstructor
|
|
|
|
},
|
|
|
|
{ "JavaScript Protocol Handler",
|
|
|
|
NS_JSPROTOCOLHANDLER_CID,
|
|
|
|
NS_JSPROTOCOLHANDLER_CONTRACTID,
|
|
|
|
nsJSProtocolHandler::Create },
|
|
|
|
{ "Window Command Table",
|
|
|
|
NS_WINDOWCOMMANDTABLE_CID,
|
|
|
|
"",
|
|
|
|
CreateWindowCommandTableConstructor
|
|
|
|
},
|
|
|
|
{ "Window Command Controller",
|
|
|
|
NS_WINDOWCONTROLLER_CID,
|
|
|
|
NS_WINDOWCONTROLLER_CONTRACTID,
|
|
|
|
CreateWindowControllerWithSingletonCommandTable
|
|
|
|
},
|
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
// view stuff
|
|
|
|
{ "View Manager", NS_VIEW_MANAGER_CID, "@mozilla.org/view-manager;1",
|
|
|
|
nsViewManagerConstructor },
|
2003-03-22 06:20:23 +03:00
|
|
|
|
|
|
|
{ "Plugin Document Loader Factory",
|
|
|
|
NS_PLUGINDOCLOADERFACTORY_CID,
|
|
|
|
"@mozilla.org/content/plugin/document-loader-factory;1",
|
|
|
|
CreateContentDLF },
|
|
|
|
|
|
|
|
{ "Plugin Document",
|
|
|
|
NS_PLUGINDOCUMENT_CID,
|
|
|
|
nsnull,
|
2005-01-15 03:10:19 +03:00
|
|
|
CreatePluginDocument },
|
|
|
|
|
|
|
|
{ "Style sheet service",
|
|
|
|
NS_STYLESHEETSERVICE_CID,
|
|
|
|
NS_STYLESHEETSERVICE_CONTRACTID,
|
2005-11-02 22:03:06 +03:00
|
|
|
nsStyleSheetServiceConstructor },
|
|
|
|
|
|
|
|
// transformiix
|
|
|
|
|
|
|
|
{ "XSLTProcessor",
|
|
|
|
TRANSFORMIIX_XSLT_PROCESSOR_CID,
|
|
|
|
TRANSFORMIIX_XSLT_PROCESSOR_CONTRACTID,
|
|
|
|
txMozillaXSLTProcessorConstructor,
|
|
|
|
RegisterTransformiix },
|
|
|
|
|
|
|
|
{ "XPathEvaluator",
|
|
|
|
TRANSFORMIIX_XPATH_EVALUATOR_CID,
|
|
|
|
NS_XPATH_EVALUATOR_CONTRACTID,
|
|
|
|
nsXPathEvaluatorConstructor },
|
|
|
|
|
|
|
|
{ "XFormsXPathEvaluator",
|
|
|
|
TRANSFORMIIX_XFORMS_XPATH_EVALUATOR_CID,
|
|
|
|
NS_XFORMS_XPATH_EVALUATOR_CONTRACTID,
|
|
|
|
nsXFormsXPathEvaluatorConstructor },
|
|
|
|
|
|
|
|
{ "Transformiix DOMCI Extender",
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CID,
|
|
|
|
TRANSFORMIIX_DOMCI_EXTENSION_CONTRACTID,
|
|
|
|
NS_DOMCI_EXTENSION_CONSTRUCTOR(Transformiix) },
|
|
|
|
|
|
|
|
{ "XPath1 XPointer Scheme Processor",
|
|
|
|
TRANSFORMIIX_XPATH1_SCHEME_CID,
|
|
|
|
NS_XPOINTER_SCHEME_PROCESSOR_BASE "xpath1",
|
|
|
|
nsXPath1SchemeProcessorConstructor }
|
2001-08-07 06:55:54 +04:00
|
|
|
};
|
1999-09-28 04:44:47 +04:00
|
|
|
|
2004-04-30 03:17:54 +04:00
|
|
|
NS_IMPL_NSGETMODULE_WITH_CTOR(nsLayoutModule, gComponents, Initialize)
|