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>
|
2008-03-15 19:10:47 -07:00
|
|
|
* Karl Tomlinson <karlt+@karlt.net>, Mozilla Corporation
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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 "nsCOMPtr.h"
|
|
|
|
#include "nsFrame.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
#include "nsContentUtils.h"
|
2007-04-08 20:43:44 -07:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsMathMLTokenFrame.h"
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewMathMLTokenFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsMathMLTokenFrame(aContext);
|
|
|
|
}
|
2009-09-12 09:49:24 -07:00
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsMathMLTokenFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMathMLTokenFrame::~nsMathMLTokenFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
eMathMLFrameType
|
|
|
|
nsMathMLTokenFrame::GetMathMLFrameType()
|
|
|
|
{
|
|
|
|
// treat everything other than <mi> as ordinary...
|
|
|
|
if (mContent->Tag() != nsGkAtoms::mi_) {
|
|
|
|
return eMathMLFrameType_Ordinary;
|
|
|
|
}
|
|
|
|
|
|
|
|
// for <mi>, distinguish between italic and upright...
|
2008-03-15 19:10:47 -07:00
|
|
|
// Don't use nsMathMLFrame::GetAttribute for mathvariant or fontstyle as
|
|
|
|
// default values are not inherited.
|
|
|
|
nsAutoString style;
|
|
|
|
// mathvariant overrides fontstyle
|
|
|
|
// http://www.w3.org/TR/2003/REC-MathML2-20031021/chapter3.html#presm.deprecatt
|
2010-03-10 04:49:33 -08:00
|
|
|
mContent->GetAttr(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::_moz_math_fontstyle_, style) ||
|
2008-03-15 19:10:47 -07:00
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::mathvariant_, style) ||
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::fontstyle_, style);
|
|
|
|
|
|
|
|
if (style.EqualsLiteral("italic") || style.EqualsLiteral("bold-italic") ||
|
|
|
|
style.EqualsLiteral("script") || style.EqualsLiteral("bold-script") ||
|
|
|
|
style.EqualsLiteral("sans-serif-italic") ||
|
|
|
|
style.EqualsLiteral("sans-serif-bold-italic")) {
|
|
|
|
return eMathMLFrameType_ItalicIdentifier;
|
|
|
|
}
|
|
|
|
else if(style.EqualsLiteral("invariant")) {
|
|
|
|
nsAutoString data;
|
|
|
|
nsContentUtils::GetNodeTextContent(mContent, PR_FALSE, data);
|
|
|
|
eMATHVARIANT variant = nsMathMLOperators::LookupInvariantChar(data);
|
|
|
|
|
|
|
|
switch (variant) {
|
|
|
|
case eMATHVARIANT_italic:
|
|
|
|
case eMATHVARIANT_bold_italic:
|
|
|
|
case eMATHVARIANT_script:
|
|
|
|
case eMATHVARIANT_bold_script:
|
|
|
|
case eMATHVARIANT_sans_serif_italic:
|
|
|
|
case eMATHVARIANT_sans_serif_bold_italic:
|
|
|
|
return eMathMLFrameType_ItalicIdentifier;
|
|
|
|
default:
|
|
|
|
; // fall through to upright
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return eMathMLFrameType_UprightIdentifier;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
CompressWhitespace(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
PRUint32 numKids = aContent->GetChildCount();
|
|
|
|
for (PRUint32 kid = 0; kid < numKids; kid++) {
|
|
|
|
nsIContent* cont = aContent->GetChildAt(kid);
|
|
|
|
if (cont && cont->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
nsAutoString text;
|
|
|
|
cont->AppendTextTo(text);
|
|
|
|
text.CompressWhitespace();
|
|
|
|
cont->SetText(text, PR_FALSE); // not meant to be used if notify is needed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLTokenFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
// leading and trailing whitespace doesn't count -- bug 15402
|
|
|
|
// brute force removal for people who do <mi> a </mi> instead of <mi>a</mi>
|
|
|
|
// XXX the best fix is to skip these in nsTextFrame
|
|
|
|
CompressWhitespace(aContent);
|
|
|
|
|
|
|
|
// let the base class do its Init()
|
|
|
|
return nsMathMLContainerFrame::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLTokenFrame::SetInitialChildList(nsIAtom* aListName,
|
2009-07-28 05:53:20 -07:00
|
|
|
nsFrameList& aChildList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// First, let the base class do its work
|
|
|
|
nsresult rv = nsMathMLContainerFrame::SetInitialChildList(aListName, aChildList);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2009-10-06 21:28:41 -07:00
|
|
|
SetQuotes(PR_FALSE);
|
2008-01-26 18:49:47 -08:00
|
|
|
ProcessTextData();
|
2007-03-22 10:30:00 -07:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsMathMLTokenFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// initializations needed for empty markup like <mtag></mtag>
|
|
|
|
aDesiredSize.width = aDesiredSize.height = 0;
|
|
|
|
aDesiredSize.ascent = 0;
|
|
|
|
aDesiredSize.mBoundingMetrics.Clear();
|
|
|
|
|
2008-01-14 17:13:21 -08:00
|
|
|
nsSize availSize(aReflowState.ComputedWidth(), NS_UNCONSTRAINEDSIZE);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* childFrame = GetFirstChild(nsnull);
|
|
|
|
while (childFrame) {
|
2007-12-02 16:54:23 -08:00
|
|
|
// ask our children to compute their bounding metrics
|
|
|
|
nsHTMLReflowMetrics childDesiredSize(aDesiredSize.mFlags
|
|
|
|
| NS_REFLOW_CALC_BOUNDING_METRICS);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLReflowState childReflowState(aPresContext, aReflowState,
|
|
|
|
childFrame, availSize);
|
|
|
|
rv = ReflowChild(childFrame, aPresContext, childDesiredSize,
|
|
|
|
childReflowState, aStatus);
|
|
|
|
//NS_ASSERTION(NS_FRAME_IS_COMPLETE(aStatus), "bad status");
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Call DidReflow() for the child frames we successfully did reflow.
|
|
|
|
DidReflowChildren(GetFirstChild(nsnull), childFrame);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2008-02-25 20:19:36 -08:00
|
|
|
SaveReflowAndBoundingMetricsFor(childFrame, childDesiredSize,
|
|
|
|
childDesiredSize.mBoundingMetrics);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
childFrame = childFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// place and size children
|
|
|
|
FinalizeReflow(*aReflowState.rendContext, aDesiredSize);
|
|
|
|
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For token elements, mBoundingMetrics is computed at the ReflowToken
|
|
|
|
// pass, it is not computed here because our children may be text frames
|
|
|
|
// that do not implement the GetBoundingMetrics() interface.
|
2008-03-17 21:52:48 -07:00
|
|
|
/* virtual */ nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMathMLTokenFrame::Place(nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize)
|
|
|
|
{
|
2008-02-27 02:45:36 -08:00
|
|
|
mBoundingMetrics.Clear();
|
2009-02-19 09:48:37 -08:00
|
|
|
for (nsIFrame* childFrame = GetFirstChild(nsnull); childFrame;
|
|
|
|
childFrame = childFrame->GetNextSibling()) {
|
2008-02-27 02:45:36 -08:00
|
|
|
nsHTMLReflowMetrics childSize;
|
|
|
|
GetReflowAndBoundingMetricsFor(childFrame, childSize,
|
|
|
|
childSize.mBoundingMetrics, nsnull);
|
|
|
|
// compute and cache the bounding metrics
|
|
|
|
mBoundingMetrics += childSize.mBoundingMetrics;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIFontMetrics> fm =
|
2007-03-30 14:11:41 -07:00
|
|
|
PresContext()->GetMetricsFor(GetStyleFont()->mFont);
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord ascent, descent;
|
|
|
|
fm->GetMaxAscent(ascent);
|
|
|
|
fm->GetMaxDescent(descent);
|
|
|
|
|
|
|
|
aDesiredSize.mBoundingMetrics = mBoundingMetrics;
|
|
|
|
aDesiredSize.width = mBoundingMetrics.width;
|
2009-09-16 08:01:36 -07:00
|
|
|
aDesiredSize.ascent = NS_MAX(mBoundingMetrics.ascent, ascent);
|
2007-03-22 10:30:00 -07:00
|
|
|
aDesiredSize.height = aDesiredSize.ascent +
|
2009-09-16 08:01:36 -07:00
|
|
|
NS_MAX(mBoundingMetrics.descent, descent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aPlaceOrigin) {
|
|
|
|
nscoord dy, dx = 0;
|
2009-02-19 09:48:37 -08:00
|
|
|
for (nsIFrame* childFrame = GetFirstChild(nsnull); childFrame;
|
|
|
|
childFrame = childFrame->GetNextSibling()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLReflowMetrics childSize;
|
2008-02-25 20:19:36 -08:00
|
|
|
GetReflowAndBoundingMetricsFor(childFrame, childSize,
|
|
|
|
childSize.mBoundingMetrics);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// place and size the child; (dx,0) makes the caret happy - bug 188146
|
2008-02-25 20:19:36 -08:00
|
|
|
dy = childSize.height == 0 ? 0 : aDesiredSize.ascent - childSize.ascent;
|
2007-03-30 14:11:41 -07:00
|
|
|
FinishReflowChild(childFrame, PresContext(), nsnull, childSize, dx, dy, 0);
|
2008-02-25 20:19:36 -08:00
|
|
|
dx += childSize.width;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetReference(nsPoint(0, aDesiredSize.ascent));
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
nsMathMLTokenFrame::MarkIntrinsicWidthsDirty()
|
|
|
|
{
|
|
|
|
// this could be called due to changes in the nsTextFrame beneath us
|
|
|
|
// when something changed in the text content. So re-process our text
|
2008-01-26 18:49:47 -08:00
|
|
|
ProcessTextData();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsMathMLContainerFrame::MarkIntrinsicWidthsDirty();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLTokenFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
|
|
|
if (nsGkAtoms::lquote_ == aAttribute ||
|
|
|
|
nsGkAtoms::rquote_ == aAttribute) {
|
2009-10-06 21:28:41 -07:00
|
|
|
SetQuotes(PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsMathMLContainerFrame::
|
|
|
|
AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-26 18:49:47 -08:00
|
|
|
nsMathMLTokenFrame::ProcessTextData()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// see if the style changes from normal to italic or vice-versa
|
|
|
|
if (!SetTextStyle())
|
|
|
|
return;
|
|
|
|
|
2007-04-08 20:43:44 -07:00
|
|
|
// explicitly request a re-resolve to pick up the change of style
|
2007-04-08 20:54:09 -07:00
|
|
|
PresContext()->PresShell()->FrameConstructor()->
|
2010-06-18 09:23:05 -07:00
|
|
|
PostRestyleEvent(mContent->AsElement(), eRestyle_Subtree, NS_STYLE_HINT_NONE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// For <mi>, if the content is not a single character, turn the font to
|
|
|
|
// normal (this function will also query attributes from the mstyle hierarchy)
|
2008-03-15 19:10:47 -07:00
|
|
|
// Returns PR_TRUE if there is a style change.
|
|
|
|
//
|
|
|
|
// http://www.w3.org/TR/2003/REC-MathML2-20031021/chapter3.html#presm.commatt
|
|
|
|
//
|
|
|
|
// "It is important to note that only certain combinations of
|
|
|
|
// character data and mathvariant attribute values make sense.
|
|
|
|
// ...
|
|
|
|
// By design, the only cases that have an unambiguous
|
|
|
|
// interpretation are exactly the ones that correspond to SMP Math
|
|
|
|
// Alphanumeric Symbol characters, which are enumerated in Section
|
|
|
|
// 6.2.3 Mathematical Alphanumeric Symbols Characters. In all other
|
|
|
|
// cases, it is suggested that renderers ignore the value of the
|
|
|
|
// mathvariant attribute if it is present."
|
|
|
|
//
|
|
|
|
// There are no corresponding characters for mathvariant=normal, suggesting
|
|
|
|
// that this value should be ignored, but this (from the same section of
|
|
|
|
// Chapter 3) implies that font-style should not be inherited, but set to
|
|
|
|
// normal for mathvariant=normal:
|
|
|
|
//
|
|
|
|
// "In particular, inheritance of the mathvariant attribute does not follow
|
|
|
|
// the CSS model. The default value for this attribute is "normal"
|
|
|
|
// (non-slanted) for all tokens except mi. ... (The deprecated fontslant
|
|
|
|
// attribute also behaves this way.)"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsMathMLTokenFrame::SetTextStyle()
|
|
|
|
{
|
|
|
|
if (mContent->Tag() != nsGkAtoms::mi_)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (!mFrames.FirstChild())
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
// Get the text content that we enclose and its length
|
|
|
|
nsAutoString data;
|
|
|
|
nsContentUtils::GetNodeTextContent(mContent, PR_FALSE, data);
|
|
|
|
PRInt32 length = data.Length();
|
|
|
|
if (!length)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsAutoString fontstyle;
|
2008-03-15 19:10:47 -07:00
|
|
|
PRBool isSingleCharacter =
|
|
|
|
length == 1 ||
|
|
|
|
(length == 2 && NS_IS_HIGH_SURROGATE(data[0]));
|
|
|
|
if (isSingleCharacter &&
|
|
|
|
nsMathMLOperators::LookupInvariantChar(data) != eMATHVARIANT_NONE) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// bug 65951 - a non-stylable character has its own intrinsic appearance
|
|
|
|
fontstyle.AssignLiteral("invariant");
|
|
|
|
}
|
2008-03-15 19:10:47 -07:00
|
|
|
else {
|
|
|
|
// Attributes override the default behavior.
|
|
|
|
if (!(mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::mathvariant_) ||
|
|
|
|
mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::fontstyle_))) {
|
|
|
|
if (!isSingleCharacter) {
|
|
|
|
fontstyle.AssignLiteral("normal");
|
|
|
|
}
|
|
|
|
else if (length == 1 && // BMP
|
|
|
|
!nsMathMLOperators::
|
|
|
|
TransformVariantChar(data[0], eMATHVARIANT_italic).
|
|
|
|
Equals(data)) {
|
|
|
|
// Transformation exists. Try to make the BMP character look like the
|
|
|
|
// styled character using the style system until bug 114365 is resolved.
|
|
|
|
fontstyle.AssignLiteral("italic");
|
|
|
|
}
|
|
|
|
// else single character but there is no corresponding Math Alphanumeric
|
|
|
|
// Symbol character: "ignore the value of the [default] mathvariant
|
|
|
|
// attribute".
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-10 04:49:33 -08:00
|
|
|
// set the _moz-math-font-style attribute without notifying that we want a reflow
|
2008-03-15 19:10:47 -07:00
|
|
|
if (fontstyle.IsEmpty()) {
|
2010-03-10 04:49:33 -08:00
|
|
|
if (mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::_moz_math_fontstyle_)) {
|
|
|
|
mContent->UnsetAttr(kNameSpaceID_None, nsGkAtoms::_moz_math_fontstyle_,
|
|
|
|
PR_FALSE);
|
2008-03-15 19:10:47 -07:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2010-03-10 04:49:33 -08:00
|
|
|
else if (!mContent->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::_moz_math_fontstyle_,
|
2008-03-15 19:10:47 -07:00
|
|
|
fontstyle, eCaseMatters)) {
|
2010-03-10 04:49:33 -08:00
|
|
|
mContent->SetAttr(kNameSpaceID_None, nsGkAtoms::_moz_math_fontstyle_,
|
2008-03-15 19:10:47 -07:00
|
|
|
fontstyle, PR_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// For <ms>, it is assumed that the mathml.css file contains two rules:
|
|
|
|
// ms:before { content: open-quote; }
|
|
|
|
// ms:after { content: close-quote; }
|
|
|
|
// With these two rules, the frame construction code will
|
|
|
|
// create inline frames that contain text frames which themselves
|
|
|
|
// contain the text content of the quotes.
|
|
|
|
// So the main idea in this code is to see if there are lquote and
|
|
|
|
// rquote attributes. If these are there, we ovewrite the default
|
|
|
|
// quotes in the text frames.
|
2009-10-06 21:28:41 -07:00
|
|
|
// XXX this is somewhat bogus, we probably should map lquote and rquote
|
|
|
|
// to 'content' style rules
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
// But what if the mathml.css file wasn't loaded?
|
|
|
|
// We also check that we are not relying on null pointers...
|
|
|
|
|
|
|
|
static void
|
2009-10-06 21:28:41 -07:00
|
|
|
SetQuote(nsIFrame* aFrame, nsString& aValue, PRBool aNotify)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-10-06 21:28:41 -07:00
|
|
|
if (!aFrame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIFrame* textFrame = aFrame->GetFirstChild(nsnull);
|
|
|
|
if (!textFrame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIContent* quoteContent = textFrame->GetContent();
|
|
|
|
if (!quoteContent->IsNodeOfType(nsINode::eTEXT))
|
|
|
|
return;
|
|
|
|
|
|
|
|
quoteContent->SetText(aValue, aNotify);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-10-06 21:28:41 -07:00
|
|
|
nsMathMLTokenFrame::SetQuotes(PRBool aNotify)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mContent->Tag() != nsGkAtoms::ms_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsAutoString value;
|
|
|
|
// lquote
|
|
|
|
if (GetAttribute(mContent, mPresentationData.mstyle,
|
|
|
|
nsGkAtoms::lquote_, value)) {
|
2009-10-06 21:28:41 -07:00
|
|
|
SetQuote(nsLayoutUtils::GetBeforeFrame(this), value, aNotify);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// rquote
|
|
|
|
if (GetAttribute(mContent, mPresentationData.mstyle,
|
|
|
|
nsGkAtoms::rquote_, value)) {
|
2009-10-06 21:28:41 -07:00
|
|
|
SetQuote(nsLayoutUtils::GetAfterFrame(this), value, aNotify);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|