/* -*- 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.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ #ifndef nsHTMLParts_h___ #define nsHTMLParts_h___ #include "nscore.h" #include "nsISupports.h" #include "nsIReflowCommand.h" class nsIArena; class nsIAtom; class nsIContent; class nsIDocument; class nsIHTMLContent; class nsIHTMLContentSink; class nsIHTMLFragmentContentSink; class nsITextContent; class nsIURI; class nsString; class nsIWebShell; class nsIAttributeContent; // Factory methods for creating html content objects // XXX argument order is wrong (out parameter should be last) extern nsresult NS_NewHTMLAnchorElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLAppletElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLAreaElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLBRElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLBaseElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLBaseFontElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLBodyElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLButtonElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLDListElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLDelElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLDirectoryElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLDivElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLEmbedElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLFieldSetElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLFontElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLFormElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLFrameElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLFrameSetElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLHRElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLHeadElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLHeadingElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLHtmlElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLIFrameElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLImageElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLInputElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLInsElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLIsIndexElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLLIElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLLabelElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLLayerElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLLegendElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLLinkElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLMapElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLMenuElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLMetaElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLModElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLOListElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLObjectElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLOptGroupElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLOptionElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLParagraphElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLParamElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLPreElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLQuoteElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLScriptElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLSelectElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLSpacerElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLSpanElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLStyleElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableCaptionElement(nsIHTMLContent** aResult,nsIAtom* aTag); extern nsresult NS_NewHTMLTableCellElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableColElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableColGroupElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableRowElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTableSectionElement(nsIHTMLContent** aResult,nsIAtom* aTag); extern nsresult NS_NewHTMLTbodyElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTextAreaElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTfootElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTheadElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLTitleElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLUListElement(nsIHTMLContent** aResult, nsIAtom* aTag); extern nsresult NS_NewHTMLWBRElement(nsIHTMLContent** aResult, nsIAtom* aTag); /** * Create a new content object for the given tag. * Returns NS_ERROR_NOT_AVAILABLE for an unknown/unhandled tag. * Returns some other error on error. * Returns NS_OK on success */ PR_EXTERN(nsresult) NS_CreateHTMLElement(nsIHTMLContent** aResult, const nsString& aTag); // Factory methods for creating html layout objects // These are variations on AreaFrame with slightly different layout // policies. // Flags for block/area frames #define NS_BLOCK_SHRINK_WRAP 0x1 #define NS_BLOCK_NO_AUTO_MARGINS 0x2 #define NS_BLOCK_MARGIN_ROOT 0x4 #define NS_BLOCK_DOCUMENT_ROOT 0x8 #define NS_AREA_NO_SPACE_MGR 0x10 #define NS_AREA_WRAP_SIZE 0x20 // Special Generated Content Frame extern nsresult NS_NewAttributeContent(nsIContent ** aResult); // Create a basic area frame but the GetFrameForPoint is overridden to always // return the option frame // By default, area frames will extend // their height to cover any children that "stick out". extern nsresult NS_NewSelectsAreaFrame(nsIFrame** aNewFrame, PRUint32 aFlags = NS_AREA_WRAP_SIZE); // Create a basic area frame. By default, area frames will extend // their height to cover any children that "stick out". extern nsresult NS_NewAreaFrame(nsIFrame** aNewFrame, PRUint32 aFlags = NS_AREA_WRAP_SIZE); // These AreaFrame's shrink wrap around their contents inline nsresult NS_NewTableCellInnerFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_AREA_WRAP_SIZE); } inline nsresult NS_NewTableCaptionFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_AREA_WRAP_SIZE); } // This type of AreaFrame is the document root and is a margin root for // margin collapsing. inline nsresult NS_NewDocumentElementFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_BLOCK_DOCUMENT_ROOT|NS_BLOCK_MARGIN_ROOT); } // This type of AreaFrame is a margin root, but does not shrink wrap inline nsresult NS_NewAbsoluteItemWrapperFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_BLOCK_MARGIN_ROOT); } // This type of AreaFrame shrink wraps inline nsresult NS_NewFloatingItemWrapperFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_BLOCK_SHRINK_WRAP); } // This type of AreaFrame doesn't use its own space manager and // doesn't shrink wrap. inline nsresult NS_NewRelativeItemWrapperFrame(nsIFrame** aNewFrame) { return NS_NewAreaFrame(aNewFrame, NS_AREA_NO_SPACE_MGR); } extern nsresult NS_NewBRFrame(nsIFrame** aNewFrame); // Create a frame that supports "display: block" layout behavior extern nsresult NS_NewBlockFrame(nsIFrame** aNewFrame); extern nsresult NS_NewCommentFrame(nsIFrame** aFrameResult); extern nsresult NS_NewHRFrame(nsIFrame** aNewFrame); // and