2007-06-11 23:10:23 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsMathMLmsqrtFrame.h"
|
2013-10-07 16:15:59 -07:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//
|
2009-05-29 04:08:35 -07:00
|
|
|
// <msqrt> -- form a radical - implementation
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
//NOTE:
|
|
|
|
// The code assumes that TeX fonts are picked.
|
|
|
|
// There is no fall-back to draw the branches of the sqrt explicitly
|
|
|
|
// in the case where TeX fonts are not there. In general, there are no
|
|
|
|
// fall-back(s) in MathML when some (freely-downloadable) fonts are missing.
|
|
|
|
// Otherwise, this will add much work and unnecessary complexity to the core
|
|
|
|
// MathML engine. Assuming that authors have the free fonts is part of the
|
|
|
|
// deal. We are not responsible for cases of misconfigurations out there.
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewMathMLmsqrtFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsMathMLmsqrtFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsMathMLmsqrtFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMathMLmsqrtFrame::nsMathMLmsqrtFrame(nsStyleContext* aContext) :
|
2009-05-29 04:08:35 -07:00
|
|
|
nsMathMLmencloseFrame(aContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMathMLmsqrtFrame::~nsMathMLmsqrtFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-19 18:47:48 -07:00
|
|
|
void
|
2014-05-24 15:20:40 -07:00
|
|
|
nsMathMLmsqrtFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-03-19 18:47:48 -07:00
|
|
|
nsMathMLContainerFrame::Init(aContent, aParent, aPrevInFlow);
|
2009-05-29 04:08:35 -07:00
|
|
|
AllocateMathMLChar(NOTATION_RADICAL);
|
|
|
|
mNotationsToDraw |= NOTATION_RADICAL;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-05-12 14:31:34 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLmsqrtFrame::InheritAutomaticData(nsIFrame* aParent)
|
|
|
|
{
|
|
|
|
nsMathMLContainerFrame::InheritAutomaticData(aParent);
|
|
|
|
|
|
|
|
mPresentationData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
nsresult
|
2012-08-22 08:56:38 -07:00
|
|
|
nsMathMLmsqrtFrame::AttributeChanged(int32_t aNameSpaceID,
|
2009-05-29 04:08:35 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-05-29 04:08:35 -07:00
|
|
|
return nsMathMLContainerFrame::
|
|
|
|
AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|