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
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#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
|
2000-03-28 09:38:24 +00:00
|
|
|
SetAdditionalStyleContext(PRInt32 aIndex,
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
virtual nsStyleContext*
|
|
|
|
GetAdditionalStyleContext(PRInt32 aIndex) const;
|
2000-03-28 09:38:24 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
NS_IMETHOD
|
2005-02-07 01:57:50 +00:00
|
|
|
InheritAutomaticData(nsIFrame* aParent);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
1999-11-21 22:16:47 +00:00
|
|
|
NS_IMETHOD
|
2011-08-24 20:54:30 +00:00
|
|
|
SetInitialChildList(ChildListID aListID,
|
2009-07-28 12:53:20 +00:00
|
|
|
nsFrameList& aChildList);
|
1999-11-21 22:16:47 +00:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2004-07-31 23:15:21 +00:00
|
|
|
Reflow(nsPresContext* aPresContext,
|
1999-11-21 22:16:47 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
1999-11-21 22:16:47 +00:00
|
|
|
|
2008-03-14 05:02:49 +00:00
|
|
|
virtual nscoord
|
2011-04-08 01:04:40 +00:00
|
|
|
GetIntrinsicWidth(nsRenderingContext* aRenderingContext);
|
2008-03-14 05:02:49 +00:00
|
|
|
|
2002-02-07 04:38:08 +00:00
|
|
|
NS_IMETHOD
|
2005-09-07 16:49:21 +00:00
|
|
|
AttributeChanged(PRInt32 aNameSpaceID,
|
2002-02-07 04:38:08 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
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
|
2005-02-07 01:57:50 +00:00
|
|
|
ChildListChanged(PRInt32 aModType);
|
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
|
|
|
|
FixInterFrameSpacing(nsHTMLReflowMetrics& aDesiredSize);
|
|
|
|
|
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,
|
|
|
|
PRInt32 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);
|
|
|
|
|
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();
|
|
|
|
|
2012-08-09 07:09:40 +00:00
|
|
|
virtual int GetSkipSides() const { return 0; }
|
2002-01-05 01:15:04 +00:00
|
|
|
|
|
|
|
nsMathMLChar* mOpenChar;
|
|
|
|
nsMathMLChar* mCloseChar;
|
|
|
|
nsMathMLChar* mSeparatorsChar;
|
|
|
|
PRInt32 mSeparatorsCount;
|
|
|
|
|
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 */
|