gecko-dev/layout/mathml/nsMathMLmsqrtFrame.h

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

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
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
#ifndef nsMathMLmsqrtFrame_h___
#define nsMathMLmsqrtFrame_h___
#include "mozilla/Attributes.h"
2009-05-29 15:08:35 +04:00
#include "nsMathMLmencloseFrame.h"
1999-11-17 04:40:04 +03:00
//
2009-05-29 15:08:35 +04:00
// <msqrt> -- form a radical
1999-11-17 04:40:04 +03: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 04:40:04 +03: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 04:40:04 +03:00
*/
2009-05-29 15:08:35 +04:00
class nsMathMLmsqrtFrame : public nsMathMLmencloseFrame {
1999-11-17 04:40:04 +03:00
public:
NS_DECL_FRAMEARENA_HELPERS(nsMathMLmsqrtFrame)
2009-05-29 15:08:35 +04:00
friend nsIFrame* NS_NewMathMLmsqrtFrame(nsIPresShell* aPresShell,
nsStyleContext* aContext);
2000-03-28 13:38:24 +04:00
virtual void
Init(nsIContent* aContent,
nsContainerFrame* aParent,
nsIFrame* aPrevInFlow) override;
1999-11-17 04:40:04 +03: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 04:40:04 +03:00
protected:
explicit nsMathMLmsqrtFrame(nsStyleContext* aContext);
1999-11-17 04:40:04 +03:00
virtual ~nsMathMLmsqrtFrame();
};
#endif /* nsMathMLmsqrtFrame_h___ */