2007-06-11 23:10:23 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsMathMLmtableFrame_h___
|
|
|
|
#define nsMathMLmtableFrame_h___
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsMathMLContainerFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <mtable> -- table or matrix
|
|
|
|
//
|
|
|
|
|
|
|
|
class nsMathMLmtableOuterFrame : public nsTableOuterFrame,
|
|
|
|
public nsMathMLFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend nsIFrame* NS_NewMathMLmtableOuterFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Overloaded nsIMathMLFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-09-14 09:10:08 -07:00
|
|
|
InheritAutomaticData(nsIFrame* aParent) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
UpdatePresentationData(uint32_t aFlagsValues,
|
|
|
|
uint32_t aWhichFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
UpdatePresentationDataFromChildAt(int32_t aFirstIndex,
|
|
|
|
int32_t aLastIndex,
|
|
|
|
uint32_t aFlagsValues,
|
2012-09-14 09:10:08 -07:00
|
|
|
uint32_t aWhichFlags) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// overloaded nsTableOuterFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2012-09-14 09:10:08 -07:00
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-04-08 09:56:16 -07:00
|
|
|
return nsTableOuterFrame::IsFrameOfType(aFlags & ~(nsIFrame::eMathML));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsMathMLmtableOuterFrame(nsStyleContext* aContext) : nsTableOuterFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmtableOuterFrame();
|
|
|
|
|
|
|
|
// helper to find the row frame at a given index, positive or negative, e.g.,
|
|
|
|
// 1..n means the first row down to the last row, -1..-n means the last row
|
|
|
|
// up to the first row. Used for alignments that are relative to a given row
|
|
|
|
nsIFrame*
|
|
|
|
GetRowFrameAt(nsPresContext* aPresContext,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aRowIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
}; // class nsMathMLmtableOuterFrame
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
class nsMathMLmtableFrame : public nsTableFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewMathMLmtableFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
// Overloaded nsTableFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
SetInitialChildList(ChildListID aListID,
|
2009-07-28 05:53:20 -07:00
|
|
|
nsFrameList& aChildList);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
AppendFrames(ChildListID aListID,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableFrame::AppendFrames(aListID, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
InsertFrames(ChildListID aListID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableFrame::InsertFrames(aListID, aPrevFrame, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
RemoveFrame(ChildListID aListID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aOldFrame)
|
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableFrame::RemoveFrame(aListID, aOldFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-04-08 09:56:16 -07:00
|
|
|
return nsTableFrame::IsFrameOfType(aFlags & ~(nsIFrame::eMathML));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper to restyle and reflow the table when a row is changed -- since MathML
|
|
|
|
// attributes are inter-dependent and row/colspan can affect the table, it is
|
|
|
|
// safer (albeit grossly suboptimal) to just relayout the whole thing.
|
|
|
|
void RestyleTable();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsMathMLmtableFrame(nsStyleContext* aContext) : nsTableFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmtableFrame();
|
|
|
|
}; // class nsMathMLmtableFrame
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
class nsMathMLmtrFrame : public nsTableRowFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewMathMLmtrFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
// overloaded nsTableRowFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
AppendFrames(ChildListID aListID,
|
2012-09-14 09:10:08 -07:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableRowFrame::AppendFrames(aListID, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
InsertFrames(ChildListID aListID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aPrevFrame,
|
2012-09-14 09:10:08 -07:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableRowFrame::InsertFrames(aListID, aPrevFrame, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2011-08-24 13:54:30 -07:00
|
|
|
RemoveFrame(ChildListID aListID,
|
2012-09-14 09:10:08 -07:00
|
|
|
nsIFrame* aOldFrame) MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsresult rv = nsTableRowFrame::RemoveFrame(aListID, aOldFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
RestyleTable();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-04-08 09:56:16 -07:00
|
|
|
return nsTableRowFrame::IsFrameOfType(aFlags & ~(nsIFrame::eMathML));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper to restyle and reflow the table -- @see nsMathMLmtableFrame.
|
|
|
|
void RestyleTable()
|
|
|
|
{
|
|
|
|
nsTableFrame* tableFrame = nsTableFrame::GetTableFrame(this);
|
|
|
|
if (tableFrame && tableFrame->IsFrameOfType(nsIFrame::eMathML)) {
|
|
|
|
// relayout the table
|
|
|
|
((nsMathMLmtableFrame*)tableFrame)->RestyleTable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsMathMLmtrFrame(nsStyleContext* aContext) : nsTableRowFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmtrFrame();
|
|
|
|
}; // class nsMathMLmtrFrame
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
class nsMathMLmtdFrame : public nsTableCellFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewMathMLmtdFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
// overloaded nsTableCellFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual int32_t GetRowSpan() MOZ_OVERRIDE;
|
|
|
|
virtual int32_t GetColSpan() MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-04-08 09:56:16 -07:00
|
|
|
return nsTableCellFrame::IsFrameOfType(aFlags & ~(nsIFrame::eMathML));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsMathMLmtdFrame(nsStyleContext* aContext) : nsTableCellFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmtdFrame();
|
|
|
|
}; // class nsMathMLmtdFrame
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
class nsMathMLmtdInnerFrame : public nsBlockFrame,
|
|
|
|
public nsMathMLFrame {
|
|
|
|
public:
|
|
|
|
friend nsIFrame* NS_NewMathMLmtdInnerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Overloaded nsIMathMLFrame methods
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2012-08-22 08:56:38 -07:00
|
|
|
UpdatePresentationDataFromChildAt(int32_t aFirstIndex,
|
|
|
|
int32_t aLastIndex,
|
|
|
|
uint32_t aFlagsValues,
|
2012-09-14 09:10:08 -07:00
|
|
|
uint32_t aFlagsToUpdate) MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsMathMLContainerFrame::PropagatePresentationDataFromChildAt(this,
|
2008-01-09 01:38:28 -08:00
|
|
|
aFirstIndex, aLastIndex, aFlagsValues, aFlagsToUpdate);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-07-13 15:41:18 -07:00
|
|
|
return nsBlockFrame::IsFrameOfType(aFlags &
|
|
|
|
~(nsIFrame::eMathML | nsIFrame::eExcludesIgnorableWhitespace));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsMathMLmtdInnerFrame(nsStyleContext* aContext) : nsBlockFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmtdInnerFrame();
|
|
|
|
}; // class nsMathMLmtdInnerFrame
|
|
|
|
|
|
|
|
#endif /* nsMathMLmtableFrame_h___ */
|