mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
5d33ad118a
--HG-- rename : accessible/src/atk/nsAccessibleWrap.cpp => accessible/src/atk/AccessibleWrap.cpp rename : accessible/src/atk/nsAccessibleWrap.h => accessible/src/atk/AccessibleWrap.h rename : accessible/src/base/nsAccessible.cpp => accessible/src/generic/Accessible.cpp rename : accessible/src/base/nsAccessible.h => accessible/src/generic/Accessible.h rename : accessible/src/mac/nsAccessibleWrap.h => accessible/src/mac/AccessibleWrap.h rename : accessible/src/mac/nsAccessibleWrap.mm => accessible/src/mac/AccessibleWrap.mm rename : accessible/src/msaa/nsAccessibleWrap.cpp => accessible/src/msaa/AccessibleWrap.cpp rename : accessible/src/msaa/nsAccessibleWrap.h => accessible/src/msaa/AccessibleWrap.h rename : accessible/src/other/nsAccessibleWrap.cpp => accessible/src/other/AccessibleWrap.cpp rename : accessible/src/other/nsAccessibleWrap.h => accessible/src/other/AccessibleWrap.h
233 lines
8.5 KiB
C++
233 lines
8.5 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
#ifndef nsTableOuterFrame_h__
|
|
#define nsTableOuterFrame_h__
|
|
|
|
#include "nscore.h"
|
|
#include "nsContainerFrame.h"
|
|
#include "nsBlockFrame.h"
|
|
#include "nsITableLayout.h"
|
|
#include "nsTableFrame.h"
|
|
|
|
class nsTableCaptionFrame : public nsBlockFrame
|
|
{
|
|
public:
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
// nsISupports
|
|
virtual nsIAtom* GetType() const;
|
|
friend nsIFrame* NS_NewTableCaptionFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
virtual nsSize ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
nsSize aMargin, nsSize aBorder,
|
|
nsSize aPadding, bool aShrinkWrap);
|
|
|
|
virtual nsIFrame* GetParentStyleContextFrame() const;
|
|
|
|
#ifdef ACCESSIBILITY
|
|
virtual already_AddRefed<Accessible> CreateAccessible();
|
|
#endif
|
|
|
|
#ifdef NS_DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
#endif
|
|
|
|
protected:
|
|
nsTableCaptionFrame(nsStyleContext* aContext);
|
|
virtual ~nsTableCaptionFrame();
|
|
};
|
|
|
|
|
|
/* TODO
|
|
1. decide if we'll allow subclassing. If so, decide which methods really need to be virtual.
|
|
*/
|
|
|
|
/**
|
|
* main frame for an nsTable content object,
|
|
* the nsTableOuterFrame contains 0 or one caption frame, and a nsTableFrame
|
|
* pseudo-frame (referred to as the "inner frame').
|
|
*/
|
|
class nsTableOuterFrame : public nsContainerFrame, public nsITableLayout
|
|
{
|
|
public:
|
|
NS_DECL_QUERYFRAME
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
|
* @param aPresShell the pres shell for this frame
|
|
*
|
|
* @return the frame that was created
|
|
*/
|
|
friend nsIFrame* NS_NewTableOuterFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
// nsIFrame overrides - see there for a description
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
|
|
|
NS_IMETHOD SetInitialChildList(ChildListID aListID,
|
|
nsFrameList& aChildList);
|
|
|
|
virtual const nsFrameList& GetChildList(ChildListID aListID) const;
|
|
virtual void GetChildLists(nsTArray<ChildList>* aLists) const;
|
|
|
|
NS_IMETHOD AppendFrames(ChildListID aListID,
|
|
nsFrameList& aFrameList);
|
|
|
|
NS_IMETHOD InsertFrames(ChildListID aListID,
|
|
nsIFrame* aPrevFrame,
|
|
nsFrameList& aFrameList);
|
|
|
|
NS_IMETHOD RemoveFrame(ChildListID aListID,
|
|
nsIFrame* aOldFrame);
|
|
|
|
virtual nsIFrame* GetContentInsertionFrame() {
|
|
return GetFirstPrincipalChild()->GetContentInsertionFrame();
|
|
}
|
|
|
|
#ifdef ACCESSIBILITY
|
|
virtual already_AddRefed<Accessible> CreateAccessible();
|
|
#endif
|
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
const nsRect& aDirtyRect,
|
|
const nsDisplayListSet& aLists);
|
|
|
|
nsresult BuildDisplayListForInnerTable(nsDisplayListBuilder* aBuilder,
|
|
const nsRect& aDirtyRect,
|
|
const nsDisplayListSet& aLists);
|
|
|
|
virtual nscoord GetBaseline() const;
|
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
|
virtual nsSize ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
nsSize aMargin, nsSize aBorder,
|
|
nsSize aPadding, bool aShrinkWrap);
|
|
|
|
/** process a reflow command for the table.
|
|
* This involves reflowing the caption and the inner table.
|
|
* @see nsIFrame::Reflow */
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
const nsHTMLReflowState& aReflowState,
|
|
nsReflowStatus& aStatus);
|
|
|
|
/**
|
|
* Get the "type" of the frame
|
|
*
|
|
* @see nsGkAtoms::tableOuterFrame
|
|
*/
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
#ifdef DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
#endif
|
|
|
|
virtual nsIFrame* GetParentStyleContextFrame() const;
|
|
|
|
/*---------------- nsITableLayout methods ------------------------*/
|
|
|
|
/** @see nsITableFrame::GetCellDataAt */
|
|
NS_IMETHOD GetCellDataAt(PRInt32 aRowIndex, PRInt32 aColIndex,
|
|
nsIDOMElement* &aCell, //out params
|
|
PRInt32& aStartRowIndex, PRInt32& aStartColIndex,
|
|
PRInt32& aRowSpan, PRInt32& aColSpan,
|
|
PRInt32& aActualRowSpan, PRInt32& aActualColSpan,
|
|
bool& aIsSelected);
|
|
|
|
/** @see nsITableFrame::GetTableSize */
|
|
NS_IMETHOD GetTableSize(PRInt32& aRowCount, PRInt32& aColCount);
|
|
|
|
NS_IMETHOD GetIndexByRowAndColumn(PRInt32 aRow, PRInt32 aColumn, PRInt32 *aIndex);
|
|
NS_IMETHOD GetRowAndColumnByIndex(PRInt32 aIndex, PRInt32 *aRow, PRInt32 *aColumn);
|
|
|
|
protected:
|
|
|
|
|
|
nsTableOuterFrame(nsStyleContext* aContext);
|
|
virtual ~nsTableOuterFrame();
|
|
|
|
void InitChildReflowState(nsPresContext& aPresContext,
|
|
nsHTMLReflowState& aReflowState);
|
|
|
|
/** Always returns 0, since the outer table frame has no border of its own
|
|
* The inner table frame can answer this question in a meaningful way.
|
|
* @see nsContainerFrame::GetSkipSides */
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
PRUint8 GetCaptionSide(); // NS_STYLE_CAPTION_SIDE_* or NO_SIDE
|
|
|
|
bool HasSideCaption() {
|
|
PRUint8 captionSide = GetCaptionSide();
|
|
return captionSide == NS_STYLE_CAPTION_SIDE_LEFT ||
|
|
captionSide == NS_STYLE_CAPTION_SIDE_RIGHT;
|
|
}
|
|
|
|
PRUint8 GetCaptionVerticalAlign();
|
|
|
|
void SetDesiredSize(PRUint8 aCaptionSide,
|
|
const nsMargin& aInnerMargin,
|
|
const nsMargin& aCaptionMargin,
|
|
nscoord& aWidth,
|
|
nscoord& aHeight);
|
|
|
|
nsresult GetCaptionOrigin(PRUint32 aCaptionSide,
|
|
const nsSize& aContainBlockSize,
|
|
const nsSize& aInnerSize,
|
|
const nsMargin& aInnerMargin,
|
|
const nsSize& aCaptionSize,
|
|
nsMargin& aCaptionMargin,
|
|
nsPoint& aOrigin);
|
|
|
|
nsresult GetInnerOrigin(PRUint32 aCaptionSide,
|
|
const nsSize& aContainBlockSize,
|
|
const nsSize& aCaptionSize,
|
|
const nsMargin& aCaptionMargin,
|
|
const nsSize& aInnerSize,
|
|
nsMargin& aInnerMargin,
|
|
nsPoint& aOrigin);
|
|
|
|
// reflow the child (caption or innertable frame)
|
|
void OuterBeginReflowChild(nsPresContext* aPresContext,
|
|
nsIFrame* aChildFrame,
|
|
const nsHTMLReflowState& aOuterRS,
|
|
void* aChildRSSpace,
|
|
nscoord aAvailWidth);
|
|
|
|
nsresult OuterDoReflowChild(nsPresContext* aPresContext,
|
|
nsIFrame* aChildFrame,
|
|
const nsHTMLReflowState& aChildRS,
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
nsReflowStatus& aStatus);
|
|
|
|
// Set the reflow metrics
|
|
void UpdateReflowMetrics(PRUint8 aCaptionSide,
|
|
nsHTMLReflowMetrics& aMet,
|
|
const nsMargin& aInnerMargin,
|
|
const nsMargin& aCaptionMargin);
|
|
|
|
// Get the margin. aMarginNoAuto is aMargin, but with auto
|
|
// margins set to 0
|
|
void GetChildMargin(nsPresContext* aPresContext,
|
|
const nsHTMLReflowState& aOuterRS,
|
|
nsIFrame* aChildFrame,
|
|
nscoord aAvailableWidth,
|
|
nsMargin& aMargin);
|
|
|
|
nsTableFrame* InnerTableFrame() const {
|
|
return static_cast<nsTableFrame*>(mFrames.FirstChild());
|
|
}
|
|
|
|
private:
|
|
nsFrameList mCaptionFrames;
|
|
};
|
|
|
|
inline PRIntn nsTableOuterFrame::GetSkipSides() const
|
|
{ return 0; }
|
|
|
|
#endif
|