2007-06-12 10:10:23 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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 06:12:01 +04:00
|
|
|
|
|
|
|
#ifndef nsMathMLmfracFrame_h___
|
|
|
|
#define nsMathMLmfracFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-09-21 06:12:01 +04:00
|
|
|
#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 09:49:38 +03:00
|
|
|
nested fractions.
|
1999-09-21 06:12:01 +04: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 09:49:38 +03:00
|
|
|
element.
|
1999-09-21 06:12:01 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
class nsMathMLmfracFrame : public nsMathMLContainerFrame {
|
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewMathMLmfracFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-09-21 06:12:01 +04:00
|
|
|
|
2006-08-15 08:49:43 +04:00
|
|
|
virtual eMathMLFrameType GetMathMLFrameType();
|
2005-09-07 03:47:01 +04:00
|
|
|
|
2009-10-07 13:31:45 +04:00
|
|
|
virtual nsresult
|
2011-04-08 05:04:40 +04:00
|
|
|
MeasureForWidth(nsRenderingContext& aRenderingContext,
|
2009-10-07 13:31:45 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
2008-03-14 08:02:49 +03:00
|
|
|
|
2008-03-18 07:52:48 +03:00
|
|
|
virtual nsresult
|
2011-04-08 05:04:40 +04:00
|
|
|
Place(nsRenderingContext& aRenderingContext,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPlaceOrigin,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize) MOZ_OVERRIDE;
|
1999-09-21 06:12:01 +04:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2012-09-14 20:10:08 +04:00
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
1999-09-21 06:12:01 +04:00
|
|
|
|
2002-02-01 18:10:50 +03:00
|
|
|
NS_IMETHOD
|
2012-09-14 20:10:08 +04:00
|
|
|
TransmitAutomaticData() MOZ_OVERRIDE;
|
2002-02-01 18:10:50 +03:00
|
|
|
|
2002-01-10 07:42:55 +03:00
|
|
|
NS_IMETHOD
|
2012-08-22 19:56:38 +04:00
|
|
|
UpdatePresentationDataFromChildAt(int32_t aFirstIndex,
|
|
|
|
int32_t aLastIndex,
|
|
|
|
uint32_t aFlagsValues,
|
2012-09-14 20:10:08 +04:00
|
|
|
uint32_t aFlagsToUpdate) MOZ_OVERRIDE;
|
2002-01-10 07:42:55 +03:00
|
|
|
|
2005-09-16 04:39:27 +04:00
|
|
|
// override the base method so that we can deal with the fraction line
|
|
|
|
virtual nscoord
|
2012-09-14 20:10:08 +04:00
|
|
|
FixInterFrameSpacing(nsHTMLReflowMetrics& aDesiredSize) MOZ_OVERRIDE;
|
2005-09-16 04:39:27 +04:00
|
|
|
|
2000-03-28 13:38:24 +04:00
|
|
|
// helper to translate the thickness attribute into a usable form
|
|
|
|
static nscoord
|
2004-08-01 03:15:21 +04:00
|
|
|
CalcLineThickness(nsPresContext* aPresContext,
|
2003-02-22 03:32:13 +03:00
|
|
|
nsStyleContext* aStyleContext,
|
2000-03-28 13:38:24 +04:00
|
|
|
nsString& aThicknessAttribute,
|
|
|
|
nscoord onePixel,
|
|
|
|
nscoord aDefaultRuleThickness);
|
1999-09-21 06:12:01 +04:00
|
|
|
|
|
|
|
protected:
|
2006-03-27 01:30:36 +04:00
|
|
|
nsMathMLmfracFrame(nsStyleContext* aContext) : nsMathMLContainerFrame(aContext) {}
|
1999-09-21 06:12:01 +04:00
|
|
|
virtual ~nsMathMLmfracFrame();
|
|
|
|
|
2011-04-08 05:04:40 +04:00
|
|
|
nsresult PlaceInternal(nsRenderingContext& aRenderingContext,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPlaceOrigin,
|
2009-10-07 13:31:45 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aWidthOnly);
|
2009-10-07 13:31:45 +04:00
|
|
|
|
|
|
|
// Display a slash
|
|
|
|
nsresult DisplaySlash(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsRect& aRect,
|
|
|
|
nscoord aThickness,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
|
|
|
nsRect mLineRect;
|
2002-01-05 04:15:04 +03:00
|
|
|
nsMathMLChar* mSlashChar;
|
2009-10-07 13:31:45 +04:00
|
|
|
nscoord mLineThickness;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsBevelled;
|
1999-09-21 06:12:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLmfracFrame_h___ */
|