2007-06-12 06:10:23 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2004-04-18 14:30:37 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
1999-09-21 02:12:01 +00:00
|
|
|
* The Original Code is Mozilla MathML Project.
|
2004-04-18 14:30:37 +00:00
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The University Of Queensland.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-09-21 02:12:01 +00:00
|
|
|
* Roger B. Sidje <rbs@maths.uq.edu.au>
|
|
|
|
* David J. Fiddes <D.J.Fiddes@hw.ac.uk>
|
2000-03-28 09:38:24 +00:00
|
|
|
* Shyjan Mahamud <mahamud@cs.cmu.edu>
|
2004-04-18 14:30:37 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
#ifndef nsMathMLmfracFrame_h___
|
|
|
|
#define nsMathMLmfracFrame_h___
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsMathMLContainerFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <mfrac> -- form a fraction from two subexpressions
|
|
|
|
//
|
|
|
|
|
|
|
|
/*
|
|
|
|
The MathML REC describes:
|
|
|
|
|
|
|
|
The <mfrac> element is used for fractions. It can also be used to mark up
|
|
|
|
fraction-like objects such as binomial coefficients and Legendre symbols.
|
|
|
|
The syntax for <mfrac> is:
|
|
|
|
<mfrac> numerator denominator </mfrac>
|
|
|
|
|
|
|
|
Attributes of <mfrac>:
|
|
|
|
Name values default
|
|
|
|
linethickness number [ v-unit ] | thin | medium | thick 1
|
|
|
|
|
|
|
|
E.g.,
|
|
|
|
linethickness=2 actually means that linethickness=2*DEFAULT_THICKNESS
|
|
|
|
(DEFAULT_THICKNESS is not specified by MathML, see below.)
|
|
|
|
|
|
|
|
The linethickness attribute indicates the thickness of the horizontal
|
|
|
|
"fraction bar", or "rule", typically used to render fractions. A fraction
|
|
|
|
with linethickness="0" renders without the bar, and might be used within
|
|
|
|
binomial coefficients. A linethickness greater than one might be used with
|
2000-01-26 06:49:38 +00:00
|
|
|
nested fractions.
|
1999-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
In general, the value of linethickness can be a number, as a multiplier
|
|
|
|
of the default thickness of the fraction bar (the default thickness is
|
|
|
|
not specified by MathML), or a number with a unit of vertical length (see
|
|
|
|
Section 2.3.3), or one of the keywords medium (same as 1), thin (thinner
|
|
|
|
than 1, otherwise up to the renderer), or thick (thicker than 1, otherwise
|
|
|
|
up to the renderer).
|
|
|
|
|
|
|
|
The <mfrac> element sets displaystyle to "false", or if it was already
|
|
|
|
false increments scriptlevel by 1, within numerator and denominator.
|
|
|
|
These attributes are inherited by every element from its rendering
|
|
|
|
environment, but can be set explicitly only on the <mstyle>
|
2000-01-26 06:49:38 +00:00
|
|
|
element.
|
1999-09-21 02:12:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class nsMathMLmfracFrame : public nsMathMLContainerFrame {
|
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewMathMLmfracFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2003-02-22 00:32:13 +00:00
|
|
|
virtual void
|
2002-01-05 01:15:04 +00:00
|
|
|
SetAdditionalStyleContext(PRInt32 aIndex,
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
virtual nsStyleContext*
|
|
|
|
GetAdditionalStyleContext(PRInt32 aIndex) const;
|
2002-01-05 01:15:04 +00:00
|
|
|
|
2006-08-15 04:49:43 +00:00
|
|
|
virtual eMathMLFrameType GetMathMLFrameType();
|
2005-09-06 23:47:01 +00:00
|
|
|
|
2002-01-05 01:15:04 +00:00
|
|
|
NS_IMETHOD
|
2005-09-07 16:49:21 +00:00
|
|
|
AttributeChanged(PRInt32 aNameSpaceID,
|
2002-01-05 01:15:04 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
2002-01-05 01:15:04 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
NS_IMETHOD
|
2006-03-09 18:55:21 +00:00
|
|
|
Init(nsIContent* aContent,
|
1999-09-21 02:12:01 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
2002-01-05 01:15:04 +00:00
|
|
|
NS_IMETHOD
|
2004-07-31 23:15:21 +00:00
|
|
|
Reflow(nsPresContext* aPresContext,
|
2002-01-05 01:15:04 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2008-03-14 05:02:49 +00:00
|
|
|
virtual nscoord
|
|
|
|
GetIntrinsicWidth(nsIRenderingContext* aRenderingContext);
|
|
|
|
|
2008-03-18 04:52:48 +00:00
|
|
|
virtual nsresult
|
2006-08-03 23:27:55 +00:00
|
|
|
Place(nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2002-02-01 15:10:50 +00:00
|
|
|
NS_IMETHOD
|
2005-02-07 01:57:50 +00:00
|
|
|
TransmitAutomaticData();
|
2002-02-01 15:10:50 +00:00
|
|
|
|
2002-01-10 04:42:55 +00:00
|
|
|
NS_IMETHOD
|
2005-02-07 01:57:50 +00:00
|
|
|
UpdatePresentationDataFromChildAt(PRInt32 aFirstIndex,
|
2002-01-10 04:42:55 +00:00
|
|
|
PRInt32 aLastIndex,
|
|
|
|
PRUint32 aFlagsValues,
|
|
|
|
PRUint32 aFlagsToUpdate);
|
|
|
|
|
2005-09-16 00:39:27 +00:00
|
|
|
// override the base method so that we can deal with the fraction line
|
|
|
|
virtual nscoord
|
|
|
|
FixInterFrameSpacing(nsHTMLReflowMetrics& aDesiredSize);
|
|
|
|
|
2000-03-28 09:38:24 +00:00
|
|
|
// helper to translate the thickness attribute into a usable form
|
|
|
|
static nscoord
|
2004-07-31 23:15:21 +00:00
|
|
|
CalcLineThickness(nsPresContext* aPresContext,
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* aStyleContext,
|
2000-03-28 09:38:24 +00:00
|
|
|
nsString& aThicknessAttribute,
|
|
|
|
nscoord onePixel,
|
|
|
|
nscoord aDefaultRuleThickness);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsMathMLmfracFrame(nsStyleContext* aContext) : nsMathMLContainerFrame(aContext) {}
|
1999-09-21 02:12:01 +00:00
|
|
|
virtual ~nsMathMLmfracFrame();
|
|
|
|
|
|
|
|
virtual PRIntn GetSkipSides() const { return 0; }
|
2002-01-05 01:15:04 +00:00
|
|
|
|
|
|
|
PRBool
|
2002-02-07 04:38:08 +00:00
|
|
|
IsBevelled();
|
2002-01-05 01:15:04 +00:00
|
|
|
|
2000-03-28 09:38:24 +00:00
|
|
|
nsRect mLineRect;
|
2002-01-05 01:15:04 +00:00
|
|
|
nsMathMLChar* mSlashChar;
|
1999-09-21 02:12:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLmfracFrame_h___ */
|