2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** 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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla MathML Project.
|
|
|
|
*
|
|
|
|
* 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):
|
|
|
|
* Roger B. Sidje <rbs@maths.uq.edu.au>
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsMathMLFrame.h"
|
|
|
|
#include "nsMathMLChar.h"
|
2009-12-10 23:37:40 -08:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// used to map attributes into CSS rules
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsStyleSet.h"
|
|
|
|
#include "nsIStyleSheet.h"
|
|
|
|
#include "nsIDOMCSSStyleSheet.h"
|
|
|
|
#include "nsICSSRule.h"
|
|
|
|
#include "nsICSSStyleRule.h"
|
|
|
|
#include "nsStyleChangeList.h"
|
|
|
|
#include "nsFrameManager.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsContentCID.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsStyleSet.h"
|
|
|
|
#include "nsStyleUtil.h"
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
#include "nsAttrName.h"
|
|
|
|
|
|
|
|
eMathMLFrameType
|
|
|
|
nsMathMLFrame::GetMathMLFrameType()
|
|
|
|
{
|
|
|
|
// see if it is an embellished operator (mapped to 'Op' in TeX)
|
|
|
|
if (mEmbellishData.coreFrame)
|
|
|
|
return GetMathMLFrameTypeFor(mEmbellishData.coreFrame);
|
|
|
|
|
|
|
|
// if it has a prescribed base, fetch the type from there
|
|
|
|
if (mPresentationData.baseFrame)
|
|
|
|
return GetMathMLFrameTypeFor(mPresentationData.baseFrame);
|
|
|
|
|
|
|
|
// everything else is treated as ordinary (mapped to 'Ord' in TeX)
|
|
|
|
return eMathMLFrameType_Ordinary;
|
|
|
|
}
|
|
|
|
|
|
|
|
// snippet of code used by <mstyle> and <mtable>, which are the only
|
|
|
|
// two tags where the displaystyle attribute is allowed by the spec.
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::FindAttrDisplaystyle(nsIContent* aContent,
|
|
|
|
nsPresentationData& aPresentationData)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent->Tag() == nsGkAtoms::mstyle_ ||
|
|
|
|
aContent->Tag() == nsGkAtoms::mtable_, "bad caller");
|
|
|
|
static nsIContent::AttrValuesArray strings[] =
|
|
|
|
{&nsGkAtoms::_false, &nsGkAtoms::_true, nsnull};
|
|
|
|
// see if the explicit displaystyle attribute is there
|
|
|
|
switch (aContent->FindAttrValueIn(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::displaystyle_, strings, eCaseMatters)) {
|
|
|
|
case 0:
|
|
|
|
aPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
|
|
|
aPresentationData.flags |= NS_MATHML_EXPLICIT_DISPLAYSTYLE;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
aPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
aPresentationData.flags |= NS_MATHML_EXPLICIT_DISPLAYSTYLE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// no reset if the attr isn't found. so be sure to call it on inherited flags
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLFrame::InheritAutomaticData(nsIFrame* aParent)
|
|
|
|
{
|
|
|
|
mEmbellishData.flags = 0;
|
|
|
|
mEmbellishData.coreFrame = nsnull;
|
|
|
|
mEmbellishData.direction = NS_STRETCH_DIRECTION_UNSUPPORTED;
|
|
|
|
mEmbellishData.leftSpace = 0;
|
|
|
|
mEmbellishData.rightSpace = 0;
|
|
|
|
|
|
|
|
mPresentationData.flags = 0;
|
|
|
|
mPresentationData.baseFrame = nsnull;
|
|
|
|
mPresentationData.mstyle = nsnull;
|
|
|
|
|
2008-01-09 01:38:28 -08:00
|
|
|
// by default, just inherit the display of our parent
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPresentationData parentData;
|
|
|
|
GetPresentationDataFrom(aParent, parentData);
|
|
|
|
mPresentationData.mstyle = parentData.mstyle;
|
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(parentData.flags)) {
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(NS_DEBUG) && defined(SHOW_BOUNDING_BOX)
|
|
|
|
mPresentationData.flags |= NS_MATHML_SHOW_BOUNDING_METRICS;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-01-09 01:38:28 -08:00
|
|
|
nsMathMLFrame::UpdatePresentationData(PRUint32 aFlagsValues,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 aWhichFlags)
|
|
|
|
{
|
|
|
|
// update flags that are relevant to this call
|
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aWhichFlags)) {
|
|
|
|
// updating the displaystyle flag is allowed
|
|
|
|
if (NS_MATHML_IS_DISPLAYSTYLE(aFlagsValues)) {
|
|
|
|
mPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mPresentationData.flags &= ~NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NS_MATHML_IS_COMPRESSED(aWhichFlags)) {
|
|
|
|
// updating the compression flag is allowed
|
|
|
|
if (NS_MATHML_IS_COMPRESSED(aFlagsValues)) {
|
|
|
|
// 'compressed' means 'prime' style in App. G, TeXbook
|
|
|
|
mPresentationData.flags |= NS_MATHML_COMPRESSED;
|
|
|
|
}
|
|
|
|
// no else. the flag is sticky. it retains its value once it is set
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper to give a style context suitable for doing the stretching of
|
|
|
|
// a MathMLChar. Frame classes that use this should ensure that the
|
|
|
|
// extra leaf style contexts given to the MathMLChars are accessible to
|
|
|
|
// the Style System via the Get/Set AdditionalStyleContext() APIs.
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::ResolveMathMLCharStyle(nsPresContext* aPresContext,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsStyleContext* aParentStyleContext,
|
|
|
|
nsMathMLChar* aMathMLChar,
|
|
|
|
PRBool aIsMutableChar)
|
|
|
|
{
|
2009-12-10 23:37:40 -08:00
|
|
|
nsCSSPseudoElements::Type pseudoType = (aIsMutableChar) ?
|
|
|
|
nsCSSPseudoElements::ePseudo_mozMathStretchy :
|
|
|
|
nsCSSPseudoElements::ePseudo_mozMathAnonymous; // savings
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRefPtr<nsStyleContext> newStyleContext;
|
|
|
|
newStyleContext = aPresContext->StyleSet()->
|
2010-04-30 06:12:06 -07:00
|
|
|
ResolvePseudoElementStyle(aContent->AsElement(), pseudoType,
|
|
|
|
aParentStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (newStyleContext)
|
|
|
|
aMathMLChar->SetStyleContext(newStyleContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::GetEmbellishDataFrom(nsIFrame* aFrame,
|
|
|
|
nsEmbellishData& aEmbellishData)
|
|
|
|
{
|
|
|
|
// initialize OUT params
|
|
|
|
aEmbellishData.flags = 0;
|
|
|
|
aEmbellishData.coreFrame = nsnull;
|
|
|
|
aEmbellishData.direction = NS_STRETCH_DIRECTION_UNSUPPORTED;
|
|
|
|
aEmbellishData.leftSpace = 0;
|
|
|
|
aEmbellishData.rightSpace = 0;
|
|
|
|
|
|
|
|
if (aFrame && aFrame->IsFrameOfType(nsIFrame::eMathML)) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIMathMLFrame* mathMLFrame = do_QueryFrame(aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mathMLFrame) {
|
|
|
|
mathMLFrame->GetEmbellishData(aEmbellishData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper to get the presentation data of a frame, by possibly walking up
|
|
|
|
// the frame hierarchy if we happen to be surrounded by non-MathML frames.
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::GetPresentationDataFrom(nsIFrame* aFrame,
|
|
|
|
nsPresentationData& aPresentationData,
|
|
|
|
PRBool aClimbTree)
|
|
|
|
{
|
|
|
|
// initialize OUT params
|
|
|
|
aPresentationData.flags = 0;
|
|
|
|
aPresentationData.baseFrame = nsnull;
|
|
|
|
aPresentationData.mstyle = nsnull;
|
|
|
|
|
|
|
|
nsIFrame* frame = aFrame;
|
|
|
|
while (frame) {
|
|
|
|
if (frame->IsFrameOfType(nsIFrame::eMathML)) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIMathMLFrame* mathMLFrame = do_QueryFrame(frame);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mathMLFrame) {
|
|
|
|
mathMLFrame->GetPresentationData(aPresentationData);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// stop if the caller doesn't want to lookup beyond the frame
|
|
|
|
if (!aClimbTree) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// stop if we reach the root <math> tag
|
|
|
|
nsIContent* content = frame->GetContent();
|
2008-01-15 21:07:09 -08:00
|
|
|
NS_ASSERTION(content || !frame->GetParent(), // no assert for the root
|
|
|
|
"dangling frame without a content node");
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!content)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (content->Tag() == nsGkAtoms::math) {
|
|
|
|
const nsStyleDisplay* display = frame->GetStyleDisplay();
|
|
|
|
if (display->mDisplay == NS_STYLE_DISPLAY_BLOCK) {
|
|
|
|
aPresentationData.flags |= NS_MATHML_DISPLAYSTYLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
frame = frame->GetParent();
|
|
|
|
}
|
2008-01-15 21:07:09 -08:00
|
|
|
NS_WARN_IF_FALSE(frame && frame->GetContent(),
|
|
|
|
"bad MathML markup - could not find the top <math> element");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper to get an attribute from the content or the surrounding <mstyle> hierarchy
|
|
|
|
/* static */ PRBool
|
|
|
|
nsMathMLFrame::GetAttribute(nsIContent* aContent,
|
|
|
|
nsIFrame* aMathMLmstyleFrame,
|
|
|
|
nsIAtom* aAttributeAtom,
|
|
|
|
nsString& aValue)
|
|
|
|
{
|
|
|
|
// see if we can get the attribute from the content
|
|
|
|
if (aContent && aContent->GetAttr(kNameSpaceID_None, aAttributeAtom,
|
|
|
|
aValue)) {
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if we can get the attribute from the mstyle frame
|
|
|
|
if (!aMathMLmstyleFrame) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* mstyleParent = aMathMLmstyleFrame->GetParent();
|
|
|
|
|
|
|
|
nsPresentationData mstyleParentData;
|
|
|
|
mstyleParentData.mstyle = nsnull;
|
|
|
|
|
|
|
|
if (mstyleParent) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIMathMLFrame* mathMLFrame = do_QueryFrame(mstyleParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mathMLFrame) {
|
|
|
|
mathMLFrame->GetPresentationData(mstyleParentData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// recurse all the way up into the <mstyle> hierarchy
|
|
|
|
return GetAttribute(aMathMLmstyleFrame->GetContent(),
|
|
|
|
mstyleParentData.mstyle, aAttributeAtom, aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::GetRuleThickness(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsIFontMetrics* aFontMetrics,
|
|
|
|
nscoord& aRuleThickness)
|
|
|
|
{
|
|
|
|
// get the bounding metrics of the overbar char, the rendering context
|
|
|
|
// is assumed to have been set with the font of the current style context
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsCOMPtr<nsIFontMetrics> currFontMetrics;
|
|
|
|
aRenderingContext.GetFontMetrics(*getter_AddRefs(currFontMetrics));
|
|
|
|
NS_ASSERTION(currFontMetrics->Font().Equals(aFontMetrics->Font()),
|
|
|
|
"unexpected state");
|
|
|
|
#endif
|
|
|
|
nscoord xHeight;
|
|
|
|
aFontMetrics->GetXHeight(xHeight);
|
|
|
|
PRUnichar overBar = 0x00AF;
|
|
|
|
nsBoundingMetrics bm;
|
|
|
|
nsresult rv = aRenderingContext.GetBoundingMetrics(&overBar, PRUint32(1), bm);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
aRuleThickness = bm.ascent + bm.descent;
|
|
|
|
}
|
|
|
|
if (NS_FAILED(rv) || aRuleThickness <= 0 || aRuleThickness >= xHeight) {
|
|
|
|
// fall-back to the other version
|
|
|
|
GetRuleThickness(aFontMetrics, aRuleThickness);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
nscoord oldRuleThickness;
|
|
|
|
GetRuleThickness(aFontMetrics, oldRuleThickness);
|
|
|
|
|
|
|
|
PRUnichar sqrt = 0xE063; // a sqrt glyph from TeX's CMEX font
|
|
|
|
rv = aRenderingContext.GetBoundingMetrics(&sqrt, PRUint32(1), bm);
|
|
|
|
nscoord sqrtrule = bm.ascent; // according to TeX, the ascent should be the rule
|
|
|
|
|
|
|
|
printf("xheight:%4d rule:%4d oldrule:%4d sqrtrule:%4d\n",
|
|
|
|
xHeight, aRuleThickness, oldRuleThickness, sqrtrule);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsMathMLFrame::GetAxisHeight(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsIFontMetrics* aFontMetrics,
|
|
|
|
nscoord& aAxisHeight)
|
|
|
|
{
|
|
|
|
// get the bounding metrics of the minus sign, the rendering context
|
|
|
|
// is assumed to have been set with the font of the current style context
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
nsCOMPtr<nsIFontMetrics> currFontMetrics;
|
|
|
|
aRenderingContext.GetFontMetrics(*getter_AddRefs(currFontMetrics));
|
|
|
|
NS_ASSERTION(currFontMetrics->Font().Equals(aFontMetrics->Font()),
|
|
|
|
"unexpected state");
|
|
|
|
#endif
|
|
|
|
nscoord xHeight;
|
|
|
|
aFontMetrics->GetXHeight(xHeight);
|
|
|
|
PRUnichar minus = 0x2212; // not '-', but official Unicode minus sign
|
|
|
|
nsBoundingMetrics bm;
|
|
|
|
nsresult rv = aRenderingContext.GetBoundingMetrics(&minus, PRUint32(1), bm);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
aAxisHeight = bm.ascent - (bm.ascent + bm.descent)/2;
|
|
|
|
}
|
|
|
|
if (NS_FAILED(rv) || aAxisHeight <= 0 || aAxisHeight >= xHeight) {
|
|
|
|
// fall-back to the other version
|
|
|
|
GetAxisHeight(aFontMetrics, aAxisHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ nscoord
|
|
|
|
nsMathMLFrame::CalcLength(nsPresContext* aPresContext,
|
|
|
|
nsStyleContext* aStyleContext,
|
|
|
|
const nsCSSValue& aCSSValue)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aCSSValue.IsLengthUnit(), "not a length unit");
|
|
|
|
|
|
|
|
if (aCSSValue.IsFixedLengthUnit()) {
|
2010-08-13 02:58:01 -07:00
|
|
|
return aCSSValue.GetFixedLength(aPresContext);
|
|
|
|
}
|
|
|
|
if (aCSSValue.IsPixelLengthUnit()) {
|
|
|
|
return aCSSValue.GetPixelLength();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSUnit unit = aCSSValue.GetUnit();
|
|
|
|
|
2010-08-13 02:58:01 -07:00
|
|
|
if (eCSSUnit_EM == unit) {
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsStyleFont* font = aStyleContext->GetStyleFont();
|
|
|
|
return NSToCoordRound(aCSSValue.GetFloatValue() * (float)font->mFont.size);
|
|
|
|
}
|
|
|
|
else if (eCSSUnit_XHeight == unit) {
|
|
|
|
nscoord xHeight;
|
|
|
|
const nsStyleFont* font = aStyleContext->GetStyleFont();
|
|
|
|
nsCOMPtr<nsIFontMetrics> fm = aPresContext->GetMetricsFor(font->mFont);
|
|
|
|
fm->GetXHeight(xHeight);
|
|
|
|
return NSToCoordRound(aCSSValue.GetFloatValue() * (float)xHeight);
|
|
|
|
}
|
|
|
|
|
2010-08-13 02:58:01 -07:00
|
|
|
// MathML doesn't specify other CSS units such as rem or ch
|
|
|
|
NS_ERROR("Unsupported unit");
|
2007-03-22 10:30:00 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ PRBool
|
|
|
|
nsMathMLFrame::ParseNamedSpaceValue(nsIFrame* aMathMLmstyleFrame,
|
|
|
|
nsString& aString,
|
|
|
|
nsCSSValue& aCSSValue)
|
|
|
|
{
|
|
|
|
aCSSValue.Reset();
|
|
|
|
aString.CompressWhitespace(); // aString is not a const in this code...
|
|
|
|
if (!aString.Length()) return PR_FALSE;
|
|
|
|
|
|
|
|
// See if it is one of the 'namedspace' (ranging 1/18em...7/18em)
|
|
|
|
PRInt32 i = 0;
|
|
|
|
nsIAtom* namedspaceAtom = nsnull;
|
|
|
|
if (aString.EqualsLiteral("veryverythinmathspace")) {
|
|
|
|
i = 1;
|
|
|
|
namedspaceAtom = nsGkAtoms::veryverythinmathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("verythinmathspace")) {
|
|
|
|
i = 2;
|
|
|
|
namedspaceAtom = nsGkAtoms::verythinmathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("thinmathspace")) {
|
|
|
|
i = 3;
|
|
|
|
namedspaceAtom = nsGkAtoms::thinmathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("mediummathspace")) {
|
|
|
|
i = 4;
|
|
|
|
namedspaceAtom = nsGkAtoms::mediummathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("thickmathspace")) {
|
|
|
|
i = 5;
|
|
|
|
namedspaceAtom = nsGkAtoms::thickmathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("verythickmathspace")) {
|
|
|
|
i = 6;
|
|
|
|
namedspaceAtom = nsGkAtoms::verythickmathspace_;
|
|
|
|
}
|
|
|
|
else if (aString.EqualsLiteral("veryverythickmathspace")) {
|
|
|
|
i = 7;
|
|
|
|
namedspaceAtom = nsGkAtoms::veryverythickmathspace_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != i) {
|
|
|
|
if (aMathMLmstyleFrame) {
|
|
|
|
// see if there is a <mstyle> that has overriden the default value
|
|
|
|
// GetAttribute() will recurse all the way up into the <mstyle> hierarchy
|
|
|
|
nsAutoString value;
|
|
|
|
GetAttribute(nsnull, aMathMLmstyleFrame, namedspaceAtom, value);
|
|
|
|
if (!value.IsEmpty()) {
|
|
|
|
if (ParseNumericValue(value, aCSSValue) &&
|
|
|
|
aCSSValue.IsLengthUnit()) {
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fall back to the default value
|
|
|
|
aCSSValue.SetFloatValue(float(i)/float(18), eCSSUnit_EM);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ================
|
|
|
|
// Utils to map attributes into CSS rules (work-around to bug 69409 which
|
|
|
|
// is not scheduled to be fixed anytime soon)
|
|
|
|
//
|
|
|
|
|
|
|
|
static const PRInt32 kMathMLversion1 = 1;
|
|
|
|
static const PRInt32 kMathMLversion2 = 2;
|
|
|
|
|
|
|
|
struct
|
|
|
|
nsCSSMapping {
|
|
|
|
PRInt32 compatibility;
|
|
|
|
const nsIAtom* attrAtom;
|
|
|
|
const char* cssProperty;
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(NS_DEBUG) && defined(SHOW_BOUNDING_BOX)
|
|
|
|
class nsDisplayMathMLBoundingMetrics : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayMathMLBoundingMetrics(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsRect& aRect)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame), mRect(aRect) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayMathMLBoundingMetrics);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayMathMLBoundingMetrics() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayMathMLBoundingMetrics);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx);
|
2010-07-15 14:07:49 -07:00
|
|
|
NS_DISPLAY_DECL_NAME("MathMLBoundingMetrics", TYPE_MATHML_BOUNDING_METRICS)
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
nsRect mRect;
|
|
|
|
};
|
|
|
|
|
|
|
|
void nsDisplayMathMLBoundingMetrics::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aCtx->SetColor(NS_RGB(0,0,255));
|
2010-08-13 03:01:58 -07:00
|
|
|
aCtx->DrawRect(mRect + ToReferenceFrame());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsMathMLFrame::DisplayBoundingMetrics(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsPoint& aPt,
|
|
|
|
const nsBoundingMetrics& aMetrics,
|
|
|
|
const nsDisplayListSet& aLists) {
|
|
|
|
if (!NS_MATHML_PAINT_BOUNDING_METRICS(mPresentationData.flags))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nscoord x = aPt.x + aMetrics.leftBearing;
|
|
|
|
nscoord y = aPt.y - aMetrics.ascent;
|
|
|
|
nscoord w = aMetrics.rightBearing - aMetrics.leftBearing;
|
|
|
|
nscoord h = aMetrics.ascent + aMetrics.descent;
|
|
|
|
|
|
|
|
return aLists.Content()->AppendNewToTop(new (aBuilder)
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayMathMLBoundingMetrics(aBuilder, this, nsRect(x,y,w,h)));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class nsDisplayMathMLBar : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayMathMLBar(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsRect& aRect)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame), mRect(aRect) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayMathMLBar);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayMathMLBar() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayMathMLBar);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIRenderingContext* aCtx);
|
2010-07-15 14:07:49 -07:00
|
|
|
NS_DISPLAY_DECL_NAME("MathMLBar", TYPE_MATHML_BAR)
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
nsRect mRect;
|
|
|
|
};
|
|
|
|
|
|
|
|
void nsDisplayMathMLBar::Paint(nsDisplayListBuilder* aBuilder,
|
2009-09-06 17:35:14 -07:00
|
|
|
nsIRenderingContext* aCtx)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// paint the bar with the current text color
|
|
|
|
aCtx->SetColor(mFrame->GetStyleColor()->mColor);
|
2010-08-13 03:01:58 -07:00
|
|
|
aCtx->FillRect(mRect + ToReferenceFrame());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsMathMLFrame::DisplayBar(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsRect& aRect,
|
|
|
|
const nsDisplayListSet& aLists) {
|
|
|
|
if (!aFrame->GetStyleVisibility()->IsVisible() || aRect.IsEmpty())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return aLists.Content()->AppendNewToTop(new (aBuilder)
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayMathMLBar(aBuilder, aFrame, aRect));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|