gecko-dev/layout/mathml/nsMathMLmsqrtFrame.cpp

58 lines
1.6 KiB
C++
Raw Normal View History

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