Mozilla/mozilla/layout/mathml/base/src/nsMathMLmrootFrame.cpp
rbs%maths.uq.edu.au 4eb2ebeca7 [MATHML] Finally, here goes Shyjan Mahamud's TeX alignment rules. Part I: for superscript/subscript schematta
git-svn-id: svn://10.0.0.236/trunk@58076 18797224-902f-48f8-a5cc-f745e15eee43
2000-01-18 04:35:37 +00:00

277 lines
9.4 KiB
C++

/*
* 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>
* Vilya Harvey <vilya@nag.co.uk>
*/
#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 "nsMathMLmrootFrame.h"
//
// <msqrt> and <mroot> -- form a radical
//
nsresult
NS_NewMathMLmrootFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
{
NS_PRECONDITION(aNewFrame, "null OUT ptr");
if (nsnull == aNewFrame) {
return NS_ERROR_NULL_POINTER;
}
nsMathMLmrootFrame* it = new (aPresShell) nsMathMLmrootFrame;
if (nsnull == it) {
return NS_ERROR_OUT_OF_MEMORY;
}
*aNewFrame = it;
return NS_OK;
}
nsMathMLmrootFrame::nsMathMLmrootFrame() :
mSqrChar(),
mBarChar()
{
mSqrChar.SetEnum(eMathMLChar_Sqrt);
mBarChar.SetEnum(eMathMLChar_OverBar);
}
nsMathMLmrootFrame::~nsMathMLmrootFrame()
{
}
NS_IMETHODIMP
nsMathMLmrootFrame::Init(nsIPresContext* aPresContext,
nsIContent* aContent,
nsIFrame* aParent,
nsIStyleContext* aContext,
nsIFrame* aPrevInFlow)
{
nsresult rv = nsMathMLContainerFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
// XXX Attributes?
return rv;
}
NS_IMETHODIMP
nsMathMLmrootFrame::Paint(nsIPresContext* aPresContext,
nsIRenderingContext& aRenderingContext,
const nsRect& aDirtyRect,
nsFramePaintLayer aWhichLayer)
{
/////////////
// paint the base and the index
nsresult rv = nsMathMLContainerFrame::Paint(aPresContext, aRenderingContext,
aDirtyRect, aWhichLayer);
if (NS_SUCCEEDED(rv) && NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) {
// paint the sqrt symbol
rv = mSqrChar.Paint(aPresContext, aRenderingContext, mStyleContext);
// paint the overline bar
rv = mBarChar.Paint(aPresContext, aRenderingContext, mStyleContext);
}
return rv;
}
NS_IMETHODIMP
nsMathMLmrootFrame::Reflow(nsIPresContext* aPresContext,
nsHTMLReflowMetrics& aDesiredSize,
const nsHTMLReflowState& aReflowState,
nsReflowStatus& aStatus)
{
nsresult rv = NS_OK;
nsReflowStatus childStatus;
// ask our children to compute their bounding metrics
nsHTMLReflowMetrics childDesiredSize(aDesiredSize.maxElementSize,
aDesiredSize.mFlags | NS_REFLOW_CALC_BOUNDING_METRICS);
nsSize availSize(aReflowState.mComputedWidth, aReflowState.mComputedHeight);
//////////////////
// Reflow Children
PRInt32 count = 0;
nsIFrame* child[2];
nsRect rect[4];
aDesiredSize.width = aDesiredSize.height = aDesiredSize.ascent = aDesiredSize.descent = 0;
nsIFrame* childFrame = mFrames.FirstChild();
while (childFrame)
{
//////////////
// WHITESPACE: don't forget that whitespace doesn't count in MathML!
if (IsOnlyWhitespace(childFrame)) {
ReflowEmptyChild(aPresContext, childFrame);
}
else if (2 > count) {
nsHTMLReflowState childReflowState(aPresContext, aReflowState,
childFrame, availSize);
rv = ReflowChild(childFrame, aPresContext,
childDesiredSize, childReflowState, childStatus);
NS_ASSERTION(NS_FRAME_IS_COMPLETE(childStatus), "bad status");
if (NS_FAILED(rv)) {
return rv;
}
if (0 == count) {
aDesiredSize.descent = childDesiredSize.descent;
aDesiredSize.ascent = childDesiredSize.ascent;
aDesiredSize.width = childDesiredSize.width;
}
// At this stage, the origin points of the children have no use, so we
// will use the origins as placeholders to store the child's ascent and
// descent. Before return, we should set the origins so as to overwrite
// what we are storing there now.
child[count] = childFrame;
rect[count] = nsRect(childDesiredSize.descent, childDesiredSize.ascent,
childDesiredSize.width, childDesiredSize.height);
count++;
}
// else { invalid markup... }
rv = childFrame->GetNextSibling(&childFrame);
NS_ASSERTION(NS_SUCCEEDED(rv),"failed to get next child");
}
aDesiredSize.height = aDesiredSize.ascent + aDesiredSize.descent;
////////////
// Prepare the radical symbol and the overline bar
nsIRenderingContext& renderingContext = *aReflowState.rendContext;
nsStyleFont font;
mStyleContext->GetStyle(eStyleStruct_Font, font);
renderingContext.SetFont(font.mFont);
// grab some metrics to help adjusting the placements
nsCOMPtr<nsIFontMetrics> fm;
nscoord fontAscent, fontDescent;
renderingContext.GetFontMetrics(*getter_AddRefs(fm));
fm->GetMaxAscent(fontAscent);
fm->GetMaxDescent(fontDescent);
nsBoundingMetrics bmSqr, bmBar;
nscoord dx, dy;
// radical symbol
renderingContext.GetBoundingMetrics(mSqrChar.GetUnicode(), PRUint32(1), bmSqr);
nscoord widthSqr = bmSqr.width; // width of the radical symbol
// overline bar
renderingContext.GetBoundingMetrics(mBarChar.GetUnicode(), PRUint32(1), bmBar);
nscoord heightBar = bmBar.ascent - bmBar.descent; // height of the overline bar
// Stretch the sqrt symbol to the appropriate height if it is not big enough.
nsStretchMetrics contSize(aDesiredSize);
nsStretchMetrics desSize(fontDescent, fontAscent, widthSqr, fontAscent + fontDescent);
mSqrChar.Stretch(aPresContext, renderingContext, mStyleContext,
NS_STRETCH_DIRECTION_VERTICAL, contSize, desSize);
widthSqr = desSize.width;
if (aDesiredSize.ascent < desSize.ascent) {
aDesiredSize.ascent = desSize.ascent;
}
if (aDesiredSize.descent < desSize.descent) {
aDesiredSize.descent = desSize.descent;
}
aDesiredSize.height = aDesiredSize.ascent + aDesiredSize.descent;
dx = 0;
dy = bmSqr.ascent - fontAscent;
rect[2] = nsRect(dx, dy, desSize.width, aDesiredSize.height);
dx = bmSqr.rightBearing;
// Stretch the overline bar to the appropriate width if it is not big enough.
contSize = nsStretchMetrics(aDesiredSize);
desSize = nsStretchMetrics(fontDescent, fontAscent, bmBar.rightBearing-bmBar.leftBearing, fontAscent + fontDescent);
nsStretchMetrics oldSize = desSize;
mBarChar.Stretch(aPresContext, renderingContext, mStyleContext,
NS_STRETCH_DIRECTION_HORIZONTAL, contSize, desSize);
dy = bmBar.ascent - fontAscent;
if (oldSize == desSize) { // hasn't changed size! Char will be painted as a normal char
dx -= bmBar.leftBearing; // adjust so that it coincides with the sqrt char
}
rect[3] = nsRect(dx, dy, desSize.width, heightBar);
//////////////////
// Place Children now by setting the origin of each child.
nscoord thickspace = bmBar.ascent-bmBar.descent; // height of the bar
aDesiredSize.ascent += thickspace;
rect[0].y = aDesiredSize.ascent - rect[0].y; // y-origin of base
dy = thickspace + (bmSqr.ascent-bmSqr.descent)/3 - rect[1].height;
rect[1].y = dy;
if (0 > dy) {
dy = -dy;
aDesiredSize.ascent += dy;
rect[0].y += dy;
rect[1].y = 0;
rect[2].y += dy; // y-origin of bar
rect[3].y += dy; // y-origin of sqrt char
}
aDesiredSize.height = aDesiredSize.ascent + aDesiredSize.descent;
rect[1].x = 0; // x-origin of index
rect[0].x = widthSqr;
aDesiredSize.width = widthSqr + rect[0].width;
if (0 < rect[1].width) {
dx = rect[1].width - (bmSqr.rightBearing - bmSqr.leftBearing)/2;
aDesiredSize.width += dx;
rect[0].x += dx; // x-origin of base
rect[2].x += dx; // x-origin of sqrt char
rect[3].x += dx; // x-origin of bar
}
// child[0]->SetRect(aPresContext, rect[0]);
// child[1]->SetRect(aPresContext, rect[1]);
nsHTMLReflowMetrics childSize(nsnull);
for (PRInt32 i=0; i<count; i++) {
childSize.width = rect[i].width;
childSize.height = rect[i].height;
FinishReflowChild(child[i], aPresContext, childSize, rect[i].x, rect[i].y, 0);
}
mSqrChar.SetRect(rect[2]);
mBarChar.SetRect(rect[3]);
if (nsnull != aDesiredSize.maxElementSize) {
aDesiredSize.maxElementSize->width = aDesiredSize.width;
aDesiredSize.maxElementSize->height = aDesiredSize.height;
}
aStatus = NS_FRAME_COMPLETE;
// XXX Fix me!
mBoundingMetrics.ascent = aDesiredSize.ascent;
mBoundingMetrics.descent = aDesiredSize.descent;
mBoundingMetrics.width = aDesiredSize.width;
return NS_OK;
}