gecko-dev/layout/mathml/nsMathMLmsqrtFrame.cpp

58 строки
1.6 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
//
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,
nsContainerFrame* aParent,
nsIFrame* aPrevInFlow)
1999-11-17 04:40:04 +03:00
{
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
}