2007-06-12 10:10:23 +04:00
|
|
|
/* -*- 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"
|
2013-10-08 03:15:59 +04:00
|
|
|
#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
|
|
|
//
|
|
|
|
|
2005-11-11 05:36:29 +03:00
|
|
|
nsIFrame*
|
2006-03-27 01:30:36 +04:00
|
|
|
NS_NewMathMLmsqrtFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
1999-11-17 04:40:04 +03:00
|
|
|
{
|
2006-03-27 01:30:36 +04:00
|
|
|
return new (aPresShell) nsMathMLmsqrtFrame(aContext);
|
1999-11-17 04:40:04 +03:00
|
|
|
}
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsMathMLmsqrtFrame)
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
nsMathMLmsqrtFrame::nsMathMLmsqrtFrame(nsStyleContext* aContext) :
|
2009-05-29 15:08:35 +04:00
|
|
|
nsMathMLmencloseFrame(aContext)
|
1999-11-17 04:40:04 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMathMLmsqrtFrame::~nsMathMLmsqrtFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
nsMathMLmsqrtFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
1999-11-17 04:40:04 +03:00
|
|
|
{
|
2013-03-20 05:47:48 +04: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
|
|
|
}
|
|
|
|
|
2011-05-13 01:31:34 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsMathMLmsqrtFrame::InheritAutomaticData(nsIFrame* aParent)
|
|
|
|
{
|
|
|
|
nsMathMLContainerFrame::InheritAutomaticData(aParent);
|
|
|
|
|
|
|
|
mPresentationData.flags |= NS_MATHML_STRETCH_ALL_CHILDREN_VERTICALLY;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
nsMathMLmsqrtFrame::AttributeChanged(int32_t aNameSpaceID,
|
2009-05-29 15:08:35 +04:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
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
|
|
|
}
|