2007-06-12 06:10:23 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2010-11-05 10:57:39 +00:00
|
|
|
#ifndef nsMathMLmfencedFrame_h
|
|
|
|
#define nsMathMLmfencedFrame_h
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-09-21 02:12:01 +00:00
|
|
|
#include "nsMathMLContainerFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <mfenced> -- surround content with a pair of fences
|
|
|
|
//
|
|
|
|
|
|
|
|
class nsMathMLmfencedFrame : public nsMathMLContainerFrame {
|
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewMathMLmfencedFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2000-03-28 09:38:24 +00:00
|
|
|
|
2003-02-22 00:32:13 +00:00
|
|
|
virtual void
|
2012-08-22 15:56:38 +00:00
|
|
|
SetAdditionalStyleContext(int32_t aIndex,
|
2013-05-14 16:33:23 +00:00
|
|
|
nsStyleContext* aStyleContext) MOZ_OVERRIDE;
|
2003-02-22 00:32:13 +00:00
|
|
|
virtual nsStyleContext*
|
2013-05-14 16:33:23 +00:00
|
|
|
GetAdditionalStyleContext(int32_t aIndex) const MOZ_OVERRIDE;
|
2000-03-28 09:38:24 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
NS_IMETHOD
|
2012-09-14 16:10:08 +00:00
|
|
|
InheritAutomaticData(nsIFrame* aParent) MOZ_OVERRIDE;
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult
|
2011-08-24 20:54:30 +00:00
|
|
|
SetInitialChildList(ChildListID aListID,
|
2012-09-14 16:10:08 +00:00
|
|
|
nsFrameList& aChildList) MOZ_OVERRIDE;
|
1999-11-21 22:16:47 +00:00
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void
|
2004-07-31 23:15:21 +00:00
|
|
|
Reflow(nsPresContext* aPresContext,
|
1999-11-21 22:16:47 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2012-09-14 16:10:08 +00:00
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1999-11-21 22:16:47 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
1999-11-21 22:16:47 +00:00
|
|
|
|
2013-11-25 14:20:20 +00:00
|
|
|
virtual void
|
|
|
|
GetIntrinsicWidthMetrics(nsRenderingContext* aRenderingContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize) MOZ_OVERRIDE;
|
2008-03-14 05:02:49 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2002-02-07 04:38:08 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-09-14 16:10:08 +00:00
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2002-02-07 04:38:08 +00:00
|
|
|
|
2002-04-02 04:15:22 +00:00
|
|
|
// override the base method because we must keep separators in sync
|
|
|
|
virtual nsresult
|
2012-09-14 16:10:08 +00:00
|
|
|
ChildListChanged(int32_t aModType) MOZ_OVERRIDE;
|
2002-04-02 04:15:22 +00:00
|
|
|
|
2005-09-16 00:39:27 +00:00
|
|
|
// override the base method so that we can deal with fences and separators
|
|
|
|
virtual nscoord
|
2012-09-14 16:10:08 +00:00
|
|
|
FixInterFrameSpacing(nsHTMLReflowMetrics& aDesiredSize) MOZ_OVERRIDE;
|
2005-09-16 00:39:27 +00:00
|
|
|
|
2000-05-26 05:56:23 +00:00
|
|
|
// helper routines to format the MathMLChars involved here
|
1999-11-21 22:16:47 +00:00
|
|
|
static nsresult
|
2004-07-31 23:15:21 +00:00
|
|
|
ReflowChar(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aRenderingContext,
|
1999-11-21 22:16:47 +00:00
|
|
|
nsMathMLChar* aMathMLChar,
|
|
|
|
nsOperatorFlags aForm,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aScriptLevel,
|
2000-03-28 09:38:24 +00:00
|
|
|
nscoord axisHeight,
|
2002-02-27 01:35:27 +00:00
|
|
|
nscoord leading,
|
1999-11-21 22:16:47 +00:00
|
|
|
nscoord em,
|
2000-03-28 09:38:24 +00:00
|
|
|
nsBoundingMetrics& aContainerSize,
|
2007-01-23 04:06:56 +00:00
|
|
|
nscoord& aAscent,
|
2011-12-21 22:22:00 +00:00
|
|
|
nscoord& aDescent,
|
|
|
|
bool aRTL);
|
1999-11-21 22:16:47 +00:00
|
|
|
|
2000-05-26 05:56:23 +00:00
|
|
|
static void
|
|
|
|
PlaceChar(nsMathMLChar* aMathMLChar,
|
2002-01-05 01:15:04 +00:00
|
|
|
nscoord aDesiredSize,
|
2000-05-26 05:56:23 +00:00
|
|
|
nsBoundingMetrics& bm,
|
|
|
|
nscoord& dx);
|
|
|
|
|
2014-04-04 15:54:00 +00:00
|
|
|
virtual bool
|
|
|
|
IsMrowLike() MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
// Always treated as an mrow with > 1 child as
|
|
|
|
// <mfenced> <mo>%</mo> </mfenced>
|
|
|
|
// renders equivalently to
|
|
|
|
// <mrow> <mo> ( </mo> <mo>%</mo> <mo> ) </mo> </mrow>
|
|
|
|
// This also holds with multiple children. (MathML3 3.3.8.1)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-01-05 01:15:04 +00:00
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsMathMLmfencedFrame(nsStyleContext* aContext) : nsMathMLContainerFrame(aContext) {}
|
2002-01-05 01:15:04 +00:00
|
|
|
virtual ~nsMathMLmfencedFrame();
|
|
|
|
|
|
|
|
nsMathMLChar* mOpenChar;
|
|
|
|
nsMathMLChar* mCloseChar;
|
|
|
|
nsMathMLChar* mSeparatorsChar;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mSeparatorsCount;
|
2002-01-05 01:15:04 +00:00
|
|
|
|
1999-11-21 22:16:47 +00:00
|
|
|
// clean up
|
|
|
|
void
|
|
|
|
RemoveFencesAndSeparators();
|
|
|
|
|
|
|
|
// add fences and separators when all child frames are known
|
2010-11-05 10:57:39 +00:00
|
|
|
void
|
2004-07-31 23:15:21 +00:00
|
|
|
CreateFencesAndSeparators(nsPresContext* aPresContext);
|
1999-09-21 02:12:01 +00:00
|
|
|
};
|
|
|
|
|
2010-11-05 10:57:39 +00:00
|
|
|
#endif /* nsMathMLmfencedFrame_h */
|