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
|
1999-09-21 02:12:01 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* 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.
|
1999-09-21 02:12:01 +00:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Roger B. Sidje <rbs@maths.uq.edu.au>
|
|
|
|
* David J. Fiddes <D.J.Fiddes@hw.ac.uk>
|
2000-01-07 14:49:46 +00:00
|
|
|
* Shyjan Mahamud <mahamud@cs.cmu.edu> (added TeX rendering rules)
|
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
|
|
|
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsFrame.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
1999-09-21 02:12:01 +00:00
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
|
|
|
|
#include "nsMathMLmsubFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <msub> -- attach a subscript to a base - implementation
|
|
|
|
//
|
|
|
|
|
2005-11-11 02:36:29 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewMathMLmsubFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsMathMLmsubFrame(aContext);
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsMathMLmsubFrame::~nsMathMLmsubFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-02-07 04:38:08 +00:00
|
|
|
NS_IMETHODIMP
|
2005-02-07 01:57:50 +00:00
|
|
|
nsMathMLmsubFrame::TransmitAutomaticData()
|
2002-02-07 04:38:08 +00:00
|
|
|
{
|
|
|
|
// if our base is an embellished operator, let its state bubble to us
|
2005-09-06 23:47:01 +00:00
|
|
|
mPresentationData.baseFrame = mFrames.FirstChild();
|
|
|
|
GetEmbellishDataFrom(mPresentationData.baseFrame, mEmbellishData);
|
2002-02-07 04:38:08 +00:00
|
|
|
|
|
|
|
// 1. The REC says:
|
|
|
|
// The <msub> element increments scriptlevel by 1, and sets displaystyle to
|
|
|
|
// "false", within subscript, but leaves both attributes unchanged within base.
|
|
|
|
// 2. The TeXbook (Ch 17. p.141) says the subscript is compressed
|
2008-01-09 09:38:28 +00:00
|
|
|
UpdatePresentationDataFromChildAt(1, -1,
|
2002-02-07 04:38:08 +00:00
|
|
|
~NS_MATHML_DISPLAYSTYLE | NS_MATHML_COMPRESSED,
|
|
|
|
NS_MATHML_DISPLAYSTYLE | NS_MATHML_COMPRESSED);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-03-18 04:52:48 +00:00
|
|
|
/* virtual */ nsresult
|
2006-08-03 23:27:55 +00:00
|
|
|
nsMathMLmsubFrame::Place (nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize)
|
2001-02-02 09:37:14 +00:00
|
|
|
{
|
2005-09-06 23:47:01 +00:00
|
|
|
// extra spacing after sup/subscript
|
2007-03-30 21:11:41 +00:00
|
|
|
nscoord scriptSpace = PresContext()->PointsToAppUnits(0.5f); // 0.5pt as in plain TeX
|
2001-02-23 16:10:51 +00:00
|
|
|
|
|
|
|
// check if the subscriptshift attribute is there
|
|
|
|
nscoord subScriptShift = 0;
|
|
|
|
nsAutoString value;
|
2005-10-28 11:25:24 +00:00
|
|
|
GetAttribute(mContent, mPresentationData.mstyle,
|
2006-12-26 17:47:52 +00:00
|
|
|
nsGkAtoms::subscriptshift_, value);
|
2005-10-28 11:25:24 +00:00
|
|
|
if (!value.IsEmpty()) {
|
2001-02-23 16:10:51 +00:00
|
|
|
nsCSSValue cssValue;
|
|
|
|
if (ParseNumericValue(value, cssValue) && cssValue.IsLengthUnit()) {
|
2007-03-30 21:11:41 +00:00
|
|
|
subScriptShift = CalcLength(PresContext(), mStyleContext, cssValue);
|
2001-02-23 16:10:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-30 21:11:41 +00:00
|
|
|
return nsMathMLmsubFrame::PlaceSubScript(PresContext(),
|
2001-02-02 09:37:14 +00:00
|
|
|
aRenderingContext,
|
|
|
|
aPlaceOrigin,
|
|
|
|
aDesiredSize,
|
|
|
|
this,
|
2001-02-23 16:10:51 +00:00
|
|
|
subScriptShift,
|
|
|
|
scriptSpace);
|
2001-02-02 09:37:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// exported routine that both munder and msub share.
|
|
|
|
// munder uses this when movablelimits is set.
|
|
|
|
nsresult
|
2006-08-03 23:27:55 +00:00
|
|
|
nsMathMLmsubFrame::PlaceSubScript (nsPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
2007-03-02 10:55:55 +00:00
|
|
|
nsMathMLContainerFrame* aFrame,
|
2006-08-03 23:27:55 +00:00
|
|
|
nscoord aUserSubScriptShift,
|
|
|
|
nscoord aScriptSpace)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
2001-02-02 09:37:14 +00:00
|
|
|
// force the scriptSpace to be atleast 1 pixel
|
2007-02-07 07:46:44 +00:00
|
|
|
aScriptSpace = PR_MAX(nsPresContext::CSSPixelsToAppUnits(1), aScriptSpace);
|
2001-02-02 09:37:14 +00:00
|
|
|
|
2000-01-07 14:49:46 +00:00
|
|
|
////////////////////////////////////
|
|
|
|
// Get the children's desired sizes
|
|
|
|
|
2000-01-18 04:35:37 +00:00
|
|
|
nsBoundingMetrics bmBase, bmSubScript;
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsHTMLReflowMetrics baseSize;
|
|
|
|
nsHTMLReflowMetrics subScriptSize;
|
2004-01-09 14:20:53 +00:00
|
|
|
nsIFrame* baseFrame = aFrame->GetFirstChild(nsnull);
|
2002-02-07 04:38:08 +00:00
|
|
|
nsIFrame* subScriptFrame = nsnull;
|
|
|
|
if (baseFrame)
|
2003-07-08 11:00:00 +00:00
|
|
|
subScriptFrame = baseFrame->GetNextSibling();
|
|
|
|
if (!baseFrame || !subScriptFrame || subScriptFrame->GetNextSibling()) {
|
2000-03-28 09:38:24 +00:00
|
|
|
// report an error, encourage people to get their markups in order
|
2001-02-23 16:10:51 +00:00
|
|
|
NS_WARNING("invalid markup");
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsMathMLContainerFrame*>(aFrame)->ReflowError(aRenderingContext,
|
2006-08-03 23:27:55 +00:00
|
|
|
aDesiredSize);
|
2000-03-28 09:38:24 +00:00
|
|
|
}
|
2002-02-07 04:38:08 +00:00
|
|
|
GetReflowAndBoundingMetricsFor(baseFrame, baseSize, bmBase);
|
|
|
|
GetReflowAndBoundingMetricsFor(subScriptFrame, subScriptSize, bmSubScript);
|
|
|
|
|
|
|
|
// get the subdrop from the subscript font
|
|
|
|
nscoord subDrop;
|
2005-02-07 01:57:50 +00:00
|
|
|
GetSubDropFromChild(subScriptFrame, subDrop);
|
2002-02-07 04:38:08 +00:00
|
|
|
// parameter v, Rule 18a, App. G, TeXbook
|
|
|
|
nscoord minSubScriptShift = bmBase.descent + subDrop;
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2000-01-07 14:49:46 +00:00
|
|
|
//////////////////
|
|
|
|
// Place Children
|
|
|
|
|
|
|
|
// get min subscript shift limit from x-height
|
|
|
|
// = h(x) - 4/5 * sigma_5, Rule 18b, App. G, TeXbook
|
|
|
|
nscoord xHeight = 0;
|
2004-07-29 19:41:39 +00:00
|
|
|
nsCOMPtr<nsIFontMetrics> fm =
|
|
|
|
aPresContext->GetMetricsFor(baseFrame->GetStyleFont()->mFont);
|
2000-01-18 04:35:37 +00:00
|
|
|
|
2000-01-07 14:49:46 +00:00
|
|
|
fm->GetXHeight (xHeight);
|
|
|
|
nscoord minShiftFromXHeight = (nscoord)
|
2000-01-18 04:35:37 +00:00
|
|
|
(bmSubScript.ascent - (4.0f/5.0f) * xHeight);
|
2000-01-07 14:49:46 +00:00
|
|
|
|
2001-02-23 16:10:51 +00:00
|
|
|
// subScriptShift
|
2000-01-07 14:49:46 +00:00
|
|
|
// = minimum amount to shift the subscript down set by user or from the font
|
|
|
|
// = sub1 in TeX
|
|
|
|
// = subscriptshift attribute * x-height
|
2001-02-23 16:10:51 +00:00
|
|
|
nscoord subScriptShift, dummy;
|
|
|
|
// get subScriptShift default from font
|
|
|
|
GetSubScriptShifts (fm, subScriptShift, dummy);
|
2000-01-26 06:49:38 +00:00
|
|
|
|
2001-02-23 16:10:51 +00:00
|
|
|
subScriptShift =
|
|
|
|
PR_MAX(subScriptShift, aUserSubScriptShift);
|
2000-01-07 14:49:46 +00:00
|
|
|
|
|
|
|
// get actual subscriptshift to be used
|
|
|
|
// Rule 18b, App. G, TeXbook
|
|
|
|
nscoord actualSubScriptShift =
|
2001-02-23 16:10:51 +00:00
|
|
|
PR_MAX(minSubScriptShift,PR_MAX(subScriptShift,minShiftFromXHeight));
|
2000-01-07 14:49:46 +00:00
|
|
|
// get bounding box for base + subscript
|
2001-02-02 09:37:14 +00:00
|
|
|
nsBoundingMetrics boundingMetrics;
|
|
|
|
boundingMetrics.ascent =
|
2000-01-18 04:35:37 +00:00
|
|
|
PR_MAX(bmBase.ascent, bmSubScript.ascent - actualSubScriptShift);
|
2001-02-02 09:37:14 +00:00
|
|
|
boundingMetrics.descent =
|
2000-01-19 22:36:23 +00:00
|
|
|
PR_MAX(bmBase.descent, bmSubScript.descent + actualSubScriptShift);
|
2005-09-06 23:47:01 +00:00
|
|
|
|
|
|
|
// add aScriptSpace to the subscript's width
|
|
|
|
boundingMetrics.width = bmBase.width + bmSubScript.width + aScriptSpace;
|
2001-02-02 09:37:14 +00:00
|
|
|
boundingMetrics.leftBearing = bmBase.leftBearing;
|
2005-09-06 23:47:01 +00:00
|
|
|
boundingMetrics.rightBearing = PR_MAX(bmBase.rightBearing, bmBase.width +
|
|
|
|
PR_MAX(bmSubScript.width + aScriptSpace, bmSubScript.rightBearing));
|
2007-03-02 10:55:55 +00:00
|
|
|
aFrame->SetBoundingMetrics (boundingMetrics);
|
2000-01-07 14:49:46 +00:00
|
|
|
|
2000-01-19 22:36:23 +00:00
|
|
|
// reflow metrics
|
|
|
|
aDesiredSize.ascent =
|
|
|
|
PR_MAX(baseSize.ascent, subScriptSize.ascent - actualSubScriptShift);
|
2007-01-23 04:06:56 +00:00
|
|
|
aDesiredSize.height = aDesiredSize.ascent +
|
|
|
|
PR_MAX(baseSize.height - baseSize.ascent,
|
|
|
|
subScriptSize.height - subScriptSize.ascent + actualSubScriptShift);
|
2005-09-06 23:47:01 +00:00
|
|
|
aDesiredSize.width = boundingMetrics.width;
|
2001-02-02 21:29:21 +00:00
|
|
|
aDesiredSize.mBoundingMetrics = boundingMetrics;
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2007-03-02 10:55:55 +00:00
|
|
|
aFrame->SetReference(nsPoint(0, aDesiredSize.ascent));
|
2000-01-18 04:35:37 +00:00
|
|
|
|
1999-12-10 13:02:23 +00:00
|
|
|
if (aPlaceOrigin) {
|
2000-01-07 14:49:46 +00:00
|
|
|
nscoord dx, dy;
|
|
|
|
// now place the base ...
|
2000-01-19 22:36:23 +00:00
|
|
|
dx = 0; dy = aDesiredSize.ascent - baseSize.ascent;
|
2001-12-07 14:51:12 +00:00
|
|
|
FinishReflowChild (baseFrame, aPresContext, nsnull, baseSize, dx, dy, 0);
|
2000-01-07 14:49:46 +00:00
|
|
|
// ... and subscript
|
2005-09-06 23:47:01 +00:00
|
|
|
dx = bmBase.width;
|
2000-01-19 22:36:23 +00:00
|
|
|
dy = aDesiredSize.ascent - (subScriptSize.ascent - actualSubScriptShift);
|
2001-12-07 14:51:12 +00:00
|
|
|
FinishReflowChild (subScriptFrame, aPresContext, nsnull, subScriptSize, dx, dy, 0);
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2000-01-07 14:49:46 +00:00
|
|
|
|
1999-09-21 02:12:01 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|