gecko-dev/layout/mathml/nsMathMLmsqrtFrame.cpp

67 строки
2.0 KiB
C++
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04: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/. */
1999-11-17 04:40:04 +03:00
#include "nsMathMLmsqrtFrame.h"
#include "mozilla/gfx/2D.h"
1999-11-17 04:40:04 +03:00
//
2009-05-29 15:08:35 +04:00
// <msqrt> -- form a radical - implementation
1999-11-17 04:40:04 +03: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.
2000-03-28 13:38:24 +04:00
nsIFrame*
NS_NewMathMLmsqrtFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
1999-11-17 04:40:04 +03:00
{
return new (aPresShell) nsMathMLmsqrtFrame(aContext);
1999-11-17 04:40:04 +03:00
}
NS_IMPL_FRAMEARENA_HELPERS(nsMathMLmsqrtFrame)
nsMathMLmsqrtFrame::nsMathMLmsqrtFrame(nsStyleContext* aContext) :
2009-05-29 15:08:35 +04:00
nsMathMLmencloseFrame(aContext)
1999-11-17 04:40:04 +03:00
{
}
nsMathMLmsqrtFrame::~nsMathMLmsqrtFrame()
{
}
void
nsMathMLmsqrtFrame::Init(nsIContent* aContent,
1999-11-17 04:40:04 +03:00
nsIFrame* aParent,
nsIFrame* aPrevInFlow)
{
nsMathMLContainerFrame::Init(aContent, aParent, aPrevInFlow);
2009-05-29 15:08:35 +04:00
AllocateMathMLChar(NOTATION_RADICAL);
mNotationsToDraw |= NOTATION_RADICAL;
1999-11-17 04:40:04 +03:00
}
NS_IMETHODIMP
nsMathMLmsqrtFrame::InheritAutomaticData(nsIFrame* aParent)
{
nsMathMLContainerFrame::InheritAutomaticData(aParent);
mPresentationData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY;
return NS_OK;
}
nsresult
nsMathMLmsqrtFrame::AttributeChanged(int32_t aNameSpaceID,
2009-05-29 15:08:35 +04:00
nsIAtom* aAttribute,
int32_t aModType)
2000-03-28 13:38:24 +04:00
{
2009-05-29 15:08:35 +04:00
return nsMathMLContainerFrame::
AttributeChanged(aNameSpaceID, aAttribute, aModType);
2000-03-28 13:38:24 +04:00
}