1998-04-13 20:24:54 +00:00
|
|
|
/* -*- 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 nsTableRowFrame_h__
|
|
|
|
#define nsTableRowFrame_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
struct RowReflowState;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
1998-04-14 21:45:28 +00:00
|
|
|
* nsTableRowFrame is the frame that maps table rows
|
|
|
|
* (HTML tag TR). This class cannot be reused
|
|
|
|
* outside of an nsTableRowGroupFrame. It assumes that its parent is an nsTableRowGroupFrame,
|
|
|
|
* and its children are nsTableCellFrames.
|
|
|
|
*
|
|
|
|
* @see nsTableFrame
|
|
|
|
* @see nsTableRowGroupFrame
|
|
|
|
* @see nsTableCellFrame
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
|
|
|
* @author sclark
|
|
|
|
*/
|
|
|
|
class nsTableRowFrame : public nsContainerFrame
|
|
|
|
{
|
|
|
|
public:
|
1998-04-14 21:45:28 +00:00
|
|
|
|
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
|
|
|
* @param aInstancePtrResult the new object is returned in this out-param
|
|
|
|
* @param aContent the table object to map
|
|
|
|
* @param aParent the parent of the new frame
|
|
|
|
*
|
|
|
|
* @return NS_OK if the frame was properly allocated, otherwise an error code
|
|
|
|
*/
|
1998-04-13 20:24:54 +00:00
|
|
|
static nsresult NewFrame(nsIFrame** aInstancePtrResult,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent);
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** @see nsIFrame::Paint */
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
|
|
|
|
/** ask all children to paint themselves, without clipping (for cells with rowspan>1)
|
|
|
|
* @see nsIFrame::Paint
|
|
|
|
*/
|
1998-04-13 20:24:54 +00:00
|
|
|
virtual void PaintChildren(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** calls ResizeReflow for all of its child cells.
|
|
|
|
* Cells with rowspan=1 are all set to the same height and stacked horizontally.
|
|
|
|
* <P> Cells are not split unless absolutely necessary.
|
|
|
|
* <P> Cells are resized in nsTableFrame::BalanceColumnWidths
|
|
|
|
* and nsTableFrame::ShrinkWrapChildren
|
|
|
|
*
|
|
|
|
* @param aDesiredSize width set to width of the sum of the cells, height set to
|
|
|
|
* height of cells with rowspan=1.
|
|
|
|
*
|
|
|
|
* @see nsIFrame::ResizeReflow
|
|
|
|
* @see nsTableFrame::BalanceColumnWidths
|
|
|
|
* @see nsTableFrame::ShrinkWrapChildren
|
|
|
|
*/
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD ResizeReflow(nsIPresContext* aPresContext,
|
|
|
|
nsReflowMetrics& aDesiredSize,
|
|
|
|
const nsSize& aMaxSize,
|
|
|
|
nsSize* aMaxElementSize,
|
1998-05-12 04:17:56 +00:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** @see nsIFrame::IncrementalReflow */
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD IncrementalReflow(nsIPresContext* aPresContext,
|
|
|
|
nsReflowMetrics& aDesiredSize,
|
|
|
|
const nsSize& aMaxSize,
|
|
|
|
nsReflowCommand& aReflowCommand,
|
1998-05-12 04:17:56 +00:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** @see nsContainerFrame::CreateContinuingFrame */
|
1998-05-07 00:08:20 +00:00
|
|
|
NS_IMETHOD CreateContinuingFrame(nsIPresContext* aPresContext,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame);
|
1998-04-14 21:45:28 +00:00
|
|
|
|
|
|
|
/** set mTallestCell to 0 in anticipation of recalculating it */
|
1998-04-13 20:24:54 +00:00
|
|
|
void ResetMaxChildHeight();
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** set mTallestCell to max(mTallestCell, aChildHeight) */
|
1998-04-13 20:24:54 +00:00
|
|
|
void SetMaxChildHeight(PRInt32 aChildHeight);
|
|
|
|
|
|
|
|
/** returns the tallest child in this row (ignoring any cell with rowspans) */
|
|
|
|
PRInt32 GetTallestChild() const;
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** protected constructor.
|
|
|
|
* @see NewFrame
|
|
|
|
*/
|
1998-05-05 23:56:50 +00:00
|
|
|
nsTableRowFrame(nsIContent* aContent, nsIFrame* aParentFrame);
|
1998-04-23 17:29:07 +00:00
|
|
|
|
|
|
|
/** destructor */
|
|
|
|
virtual ~nsTableRowFrame();
|
|
|
|
|
|
|
|
nscoord GetTopMarginFor(nsIPresContext* aCX,
|
|
|
|
RowReflowState& aState,
|
1998-05-12 22:28:01 +00:00
|
|
|
const nsMargin& aKidMargin);
|
1998-04-23 17:29:07 +00:00
|
|
|
|
|
|
|
void PlaceChild( nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
const nsRect& aKidRect,
|
|
|
|
nsSize* aMaxElementSize,
|
|
|
|
nsSize& aKidMaxElementSize);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reflow the frames we've already created
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
|
|
|
* @param aState current inline state
|
|
|
|
* @return true if we successfully reflowed all the mapped children and false
|
|
|
|
* otherwise, e.g. we pushed children to the next in flow
|
|
|
|
*/
|
|
|
|
PRBool ReflowMappedChildren(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsSize* aMaxElementSize);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try and pull-up frames from our next-in-flow
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
|
|
|
* @param aState current inline state
|
|
|
|
* @return true if we successfully pulled-up all the children and false
|
|
|
|
* otherwise, e.g. child didn't fit
|
|
|
|
*/
|
|
|
|
PRBool PullUpChildren(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsSize* aMaxElementSize);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create new frames for content we haven't yet mapped
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
|
|
|
* @param aState current inline state
|
|
|
|
* @return frComplete if all content has been mapped and frNotComplete
|
|
|
|
* if we should be continued
|
|
|
|
*/
|
1998-05-12 04:17:56 +00:00
|
|
|
nsReflowStatus ReflowUnmappedChildren(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsSize* aMaxElementSize);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRInt32 mTallestCell; // not my height, but the height of my tallest child
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|