gecko-dev/layout/mathml/nsMathMLmsqrtFrame.h

69 lines
2.0 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
#ifndef nsMathMLmsqrtFrame_h___
#define nsMathMLmsqrtFrame_h___
#include "mozilla/Attributes.h"
2009-05-29 11:08:35 +00:00
#include "nsMathMLmencloseFrame.h"
1999-11-17 01:40:04 +00:00
//
2009-05-29 11:08:35 +00:00
// <msqrt> -- form a radical
1999-11-17 01:40:04 +00:00
//
/*
The MathML REC describes:
The <msqrt> element is used to display square roots.
The syntax for <msqrt> is:
<msqrt> base </msqrt>
Attributes of <msqrt> and <mroot>:
None (except the attributes allowed for all MathML elements, listed in Section
2.3.4).
1999-11-17 01:40:04 +00:00
The <mroot> element increments scriptlevel by 2, and sets displaystyle to
"false", within index, but leaves both attributes unchanged within base. The
<msqrt> element leaves both attributes unchanged within all its arguments.
These attributes are inherited by every element from its rendering environment,
but can be set explicitly only on <mstyle>. (See Section 3.3.4.)
1999-11-17 01:40:04 +00:00
*/
2009-05-29 11:08:35 +00:00
class nsMathMLmsqrtFrame : public nsMathMLmencloseFrame {
1999-11-17 01:40:04 +00:00
public:
NS_DECL_FRAMEARENA_HELPERS(nsMathMLmsqrtFrame)
2009-05-29 11:08:35 +00:00
friend nsIFrame* NS_NewMathMLmsqrtFrame(nsIPresShell* aPresShell,
nsStyleContext* aContext);
2000-03-28 09:38:24 +00:00
virtual void
Init(nsIContent* aContent,
nsContainerFrame* aParent,
nsIFrame* aPrevInFlow) override;
1999-11-17 01:40:04 +00:00
NS_IMETHOD
InheritAutomaticData(nsIFrame* aParent) override;
virtual nsresult
AttributeChanged(int32_t aNameSpaceID,
nsAtom* aAttribute,
int32_t aModType) override;
virtual bool
IsMrowLike() override
{
return mFrames.FirstChild() != mFrames.LastChild() ||
!mFrames.FirstChild();
}
1999-11-17 01:40:04 +00:00
protected:
explicit nsMathMLmsqrtFrame(nsStyleContext* aContext);
1999-11-17 01:40:04 +00:00
virtual ~nsMathMLmsqrtFrame();
};
#endif /* nsMathMLmsqrtFrame_h___ */