1999-09-21 02:12:01 +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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla MathML Project.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is The University Of
|
|
|
|
* Queensland. Portions created by The University Of Queensland are
|
|
|
|
* Copyright (C) 1999 The University Of Queensland. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* 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)
|
1999-09-21 02:12:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsIHTMLContent.h"
|
|
|
|
#include "nsFrame.h"
|
|
|
|
#include "nsLineLayout.h"
|
|
|
|
#include "nsHTMLIIDs.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsUnitConversion.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
#include "nsStyleUtil.h"
|
|
|
|
|
|
|
|
#include "nsMathMLmsubFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <msub> -- attach a subscript to a base - implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
nsresult
|
1999-12-10 13:02:23 +00:00
|
|
|
NS_NewMathMLmsubFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1999-12-10 13:02:23 +00:00
|
|
|
nsMathMLmsubFrame* it = new (aPresShell) nsMathMLmsubFrame;
|
1999-09-21 02:12:01 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
*aNewFrame = it;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMathMLmsubFrame::nsMathMLmsubFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMathMLmsubFrame::~nsMathMLmsubFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-02-02 09:37:14 +00:00
|
|
|
nsMathMLmsubFrame::Place (nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize)
|
|
|
|
{
|
2001-02-23 16:10:51 +00:00
|
|
|
// extra spacing between base and sup/subscript
|
|
|
|
nscoord scriptSpace = NSFloatPointsToTwips(0.5f); // 0.5pt as in plain TeX
|
|
|
|
|
|
|
|
// check if the subscriptshift attribute is there
|
|
|
|
nscoord subScriptShift = 0;
|
|
|
|
nsAutoString value;
|
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == GetAttribute(mContent, mPresentationData.mstyle,
|
|
|
|
nsMathMLAtoms::subscriptshift_, value)) {
|
|
|
|
nsCSSValue cssValue;
|
|
|
|
if (ParseNumericValue(value, cssValue) && cssValue.IsLengthUnit()) {
|
|
|
|
subScriptShift = CalcLength(aPresContext, mStyleContext, cssValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-02 09:37:14 +00:00
|
|
|
return nsMathMLmsubFrame::PlaceSubScript(aPresContext,
|
|
|
|
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
|
|
|
|
nsMathMLmsubFrame::PlaceSubScript (nsIPresContext* aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
PRBool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
nscoord aUserSubScriptShift,
|
|
|
|
nscoord aScriptSpace)
|
1999-09-21 02:12:01 +00:00
|
|
|
{
|
2000-01-07 14:49:46 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2001-02-02 09:37:14 +00:00
|
|
|
// the caller better be a mathml frame
|
|
|
|
nsIMathMLFrame* mathMLFrame = nsnull;
|
|
|
|
rv = aFrame->QueryInterface (NS_GET_IID(nsIMathMLFrame),
|
|
|
|
(void**)&mathMLFrame);
|
|
|
|
if (NS_FAILED(rv) || !mathMLFrame) return rv;
|
|
|
|
|
|
|
|
// force the scriptSpace to be atleast 1 pixel
|
|
|
|
float p2t;
|
|
|
|
aPresContext->GetScaledPixelsToTwips(&p2t);
|
|
|
|
aScriptSpace = PR_MAX(NSIntPixelsToTwips(1, p2t), aScriptSpace);
|
|
|
|
|
2000-01-07 14:49:46 +00:00
|
|
|
////////////////////////////////////
|
|
|
|
// Get the children's desired sizes
|
|
|
|
|
|
|
|
PRInt32 count = 0;
|
|
|
|
nsHTMLReflowMetrics baseSize (nsnull);
|
|
|
|
nsHTMLReflowMetrics subScriptSize (nsnull);
|
2000-03-29 08:39:50 +00:00
|
|
|
nsIFrame* baseFrame = nsnull;
|
|
|
|
nsIFrame* subScriptFrame = nsnull;
|
2000-01-07 14:49:46 +00:00
|
|
|
// parameter v, Rule 18a, Appendix G of the TeXbook
|
|
|
|
nscoord minSubScriptShift = 0;
|
|
|
|
|
2000-01-18 04:35:37 +00:00
|
|
|
nsBoundingMetrics bmBase, bmSubScript;
|
2000-01-07 14:49:46 +00:00
|
|
|
|
2001-02-23 16:10:51 +00:00
|
|
|
nsIFrame* childFrame = nsnull;
|
|
|
|
aFrame->FirstChild(aPresContext, nsnull, &childFrame);
|
|
|
|
while (childFrame) {
|
|
|
|
if (0 == count) {
|
|
|
|
// base
|
|
|
|
baseFrame = childFrame;
|
|
|
|
GetReflowAndBoundingMetricsFor(baseFrame, baseSize, bmBase);
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2001-02-23 16:10:51 +00:00
|
|
|
else if (1 == count) {
|
|
|
|
// subscript
|
|
|
|
subScriptFrame = childFrame;
|
|
|
|
GetReflowAndBoundingMetricsFor(subScriptFrame, subScriptSize, bmSubScript);
|
|
|
|
// get the subdrop from the subscript font
|
|
|
|
nscoord subDrop;
|
|
|
|
GetSubDropFromChild (aPresContext, subScriptFrame, subDrop);
|
|
|
|
// parameter v, Rule 18a, App. G, TeXbook
|
|
|
|
minSubScriptShift = bmBase.descent + subDrop;
|
|
|
|
}
|
|
|
|
count++;
|
|
|
|
childFrame->GetNextSibling(&childFrame);
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
2001-02-23 16:10:51 +00:00
|
|
|
if (2 != count) {
|
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");
|
2001-02-02 09:37:14 +00:00
|
|
|
return NS_STATIC_CAST(nsMathMLContainerFrame*,
|
|
|
|
aFrame)->ReflowError(aPresContext,
|
|
|
|
aRenderingContext,
|
|
|
|
aDesiredSize);
|
2000-03-28 09:38:24 +00:00
|
|
|
}
|
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;
|
1999-09-21 02:12:01 +00:00
|
|
|
nsCOMPtr<nsIFontMetrics> fm;
|
2000-01-18 04:35:37 +00:00
|
|
|
|
|
|
|
// const nsStyleFont* aFont =
|
|
|
|
// (const nsStyleFont*) mStyleContext->GetStyleData (eStyleStruct_Font);
|
|
|
|
|
2001-02-23 16:10:51 +00:00
|
|
|
const nsStyleFont* font;
|
|
|
|
baseFrame->GetStyleData(eStyleStruct_Font, (const nsStyleStruct *&)font);
|
2000-01-18 04:35:37 +00:00
|
|
|
|
2001-02-23 16:10:51 +00:00
|
|
|
aPresContext->GetMetricsFor (font->mFont, getter_AddRefs(fm));
|
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);
|
2001-02-02 09:37:14 +00:00
|
|
|
// add aScriptSpace between base and supscript
|
|
|
|
boundingMetrics.width =
|
|
|
|
bmBase.width
|
|
|
|
+ aScriptSpace
|
|
|
|
+ bmSubScript.width;
|
|
|
|
boundingMetrics.leftBearing = bmBase.leftBearing;
|
|
|
|
boundingMetrics.rightBearing =
|
|
|
|
bmBase.width
|
|
|
|
+ aScriptSpace
|
|
|
|
+ bmSubScript.rightBearing;
|
|
|
|
mathMLFrame->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);
|
|
|
|
aDesiredSize.descent =
|
|
|
|
PR_MAX(baseSize.descent, subScriptSize.descent + actualSubScriptShift);
|
2000-01-18 04:35:37 +00:00
|
|
|
aDesiredSize.height = aDesiredSize.ascent + aDesiredSize.descent;
|
2001-02-02 09:37:14 +00:00
|
|
|
aDesiredSize.width = bmBase.width + aScriptSpace + subScriptSize.width;
|
2001-02-02 21:29:21 +00:00
|
|
|
aDesiredSize.mBoundingMetrics = boundingMetrics;
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2001-02-02 09:37:14 +00:00
|
|
|
mathMLFrame->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
|
2001-02-02 09:37:14 +00:00
|
|
|
// XXX adding mScriptSpace seems to add more space than i like
|
|
|
|
// may want to remove later.
|
|
|
|
dx = bmBase.width + aScriptSpace;
|
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;
|
|
|
|
}
|