From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- layout/generic/nsHTMLParts.h | 201 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 layout/generic/nsHTMLParts.h (limited to 'layout/generic/nsHTMLParts.h') diff --git a/layout/generic/nsHTMLParts.h b/layout/generic/nsHTMLParts.h new file mode 100644 index 0000000000..c8dbe0e75b --- /dev/null +++ b/layout/generic/nsHTMLParts.h @@ -0,0 +1,201 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* factory functions for rendering object classes */ + +#ifndef nsHTMLParts_h___ +#define nsHTMLParts_h___ + +#include "nscore.h" +#include "nsFrameState.h" +#include "nsISupports.h" + +class nsContainerFrame; +class nsComboboxControlFrame; +class nsCheckboxRadioFrame; +class nsAtom; +class nsNodeInfoManager; +class nsIContent; + +class nsIFrame; +class nsIHTMLContentSink; +class nsIFragmentContentSink; +class nsIURI; +class nsIChannel; +class nsTableColFrame; +namespace mozilla { +class ComputedStyle; +class PresShell; +class PrintedSheetFrame; +class ViewportFrame; + +namespace dom { +class Document; +} +} // namespace mozilla + +// Factory methods for creating html layout objects + +// Create a frame that supports "display: block" layout behavior +class nsBlockFrame; +nsBlockFrame* NS_NewBlockFrame(mozilla::PresShell* aPresShell, + mozilla::ComputedStyle* aStyle); + +// Special Generated Content Node. It contains text taken from an +// attribute of its *grandparent* content node. +nsresult NS_NewAttributeContent(nsNodeInfoManager* aNodeInfoManager, + int32_t aNameSpaceID, nsAtom* aAttrName, + 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". +nsContainerFrame* NS_NewSelectsAreaFrame(mozilla::PresShell* aPresShell, + mozilla::ComputedStyle* aStyle, + nsFrameState aFlags); + +// Create a block formatting context blockframe +nsBlockFrame* NS_NewBlockFormattingContext(mozilla::PresShell* aPresShell, + mozilla::ComputedStyle* aStyle); + +nsIFrame* NS_NewBRFrame(mozilla::PresShell* aPresShell, + mozilla::ComputedStyle* aStyle); + +nsIFrame* NS_NewCommentFrame(mozilla::PresShell* aPresShell, + mozilla::ComputedStyle* aStyle); + +// and