2017-10-27 20:33:53 +03:00
|
|
|
/* -*- 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/. */
|
2009-05-29 15:08:35 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef nsMathMLmencloseFrame_h___
|
|
|
|
#define nsMathMLmencloseFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-08-10 14:26:42 +03:00
|
|
|
#include "mozilla/EnumSet.h"
|
2009-05-29 15:08:35 +04:00
|
|
|
#include "nsMathMLContainerFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <menclose> -- enclose content with a stretching symbol such
|
|
|
|
// as a long division sign.
|
|
|
|
//
|
|
|
|
|
|
|
|
/*
|
|
|
|
The MathML REC describes:
|
|
|
|
|
|
|
|
The menclose element renders its content inside the enclosing notation
|
|
|
|
specified by its notation attribute. menclose accepts any number of arguments;
|
|
|
|
if this number is not 1, its contents are treated as a single "inferred mrow"
|
2017-07-06 15:00:35 +03:00
|
|
|
containing its arguments, as described in Section 3.1.3 Required Arguments.
|
2009-05-29 15:08:35 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
enum nsMencloseNotation
|
|
|
|
{
|
2017-08-10 14:26:42 +03:00
|
|
|
NOTATION_LONGDIV,
|
|
|
|
NOTATION_RADICAL,
|
|
|
|
NOTATION_ROUNDEDBOX,
|
|
|
|
NOTATION_CIRCLE,
|
|
|
|
NOTATION_LEFT,
|
|
|
|
NOTATION_RIGHT,
|
|
|
|
NOTATION_TOP,
|
|
|
|
NOTATION_BOTTOM,
|
|
|
|
NOTATION_UPDIAGONALSTRIKE,
|
|
|
|
NOTATION_DOWNDIAGONALSTRIKE,
|
|
|
|
NOTATION_VERTICALSTRIKE,
|
|
|
|
NOTATION_HORIZONTALSTRIKE,
|
|
|
|
NOTATION_UPDIAGONALARROW,
|
|
|
|
NOTATION_PHASORANGLE
|
2009-05-29 15:08:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsMathMLmencloseFrame : public nsMathMLContainerFrame {
|
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsMathMLmencloseFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
friend nsIFrame* NS_NewMathMLmencloseFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
virtual nsresult
|
2015-12-16 00:56:41 +03:00
|
|
|
Place(DrawTarget* aDrawTarget,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPlaceOrigin,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize) override;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
virtual nsresult
|
2015-12-16 00:56:41 +03:00
|
|
|
MeasureForWidth(DrawTarget* aDrawTarget,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize) override;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
virtual void
|
2017-07-06 15:00:35 +03:00
|
|
|
SetAdditionalStyleContext(int32_t aIndex,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsStyleContext* aStyleContext) override;
|
2009-05-29 15:08:35 +04:00
|
|
|
virtual nsStyleContext*
|
2015-03-21 19:28:04 +03:00
|
|
|
GetAdditionalStyleContext(int32_t aIndex) const override;
|
2009-05-29 15:08:35 +04:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
2009-05-29 15:08:35 +04:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2015-03-21 19:28:04 +03:00
|
|
|
InheritAutomaticData(nsIFrame* aParent) override;
|
2009-05-29 15:08:35 +04:00
|
|
|
|
|
|
|
NS_IMETHOD
|
2015-03-21 19:28:04 +03:00
|
|
|
TransmitAutomaticData() override;
|
2009-05-29 15:08:35 +04:00
|
|
|
|
|
|
|
virtual nscoord
|
2016-07-21 13:36:38 +03:00
|
|
|
FixInterFrameSpacing(ReflowOutput& aDesiredSize) override;
|
2009-05-29 15:08:35 +04:00
|
|
|
|
2014-04-04 19:54:00 +04:00
|
|
|
bool
|
2015-03-21 19:28:04 +03:00
|
|
|
IsMrowLike() override {
|
2014-04-04 19:54:00 +04:00
|
|
|
return mFrames.FirstChild() != mFrames.LastChild() ||
|
|
|
|
!mFrames.FirstChild();
|
|
|
|
}
|
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
protected:
|
2017-05-26 13:11:11 +03:00
|
|
|
explicit nsMathMLmencloseFrame(nsStyleContext* aContext, ClassID aID = kClassID);
|
2009-05-29 15:08:35 +04:00
|
|
|
virtual ~nsMathMLmencloseFrame();
|
|
|
|
|
2015-12-16 00:56:41 +03:00
|
|
|
nsresult PlaceInternal(DrawTarget* aDrawTarget,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aPlaceOrigin,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aWidthOnly);
|
2015-12-16 00:56:41 +03:00
|
|
|
|
2009-05-29 15:08:35 +04:00
|
|
|
// functions to parse the "notation" attribute.
|
|
|
|
nsresult AddNotation(const nsAString& aNotation);
|
|
|
|
void InitNotations();
|
|
|
|
|
|
|
|
// Description of the notations to draw
|
2017-08-10 14:26:42 +03:00
|
|
|
mozilla::EnumSet<nsMencloseNotation> mNotationsToDraw;
|
|
|
|
bool IsToDraw(nsMencloseNotation notation)
|
2009-05-29 15:08:35 +04:00
|
|
|
{
|
2017-08-10 14:26:42 +03:00
|
|
|
return mNotationsToDraw.contains(notation);
|
2009-05-29 15:08:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nscoord mRuleThickness;
|
2014-06-17 10:40:00 +04:00
|
|
|
nscoord mRadicalRuleThickness;
|
2009-05-29 15:08:35 +04:00
|
|
|
nsTArray<nsMathMLChar> mMathMLChar;
|
2012-08-22 19:56:38 +04:00
|
|
|
int8_t mLongDivCharIndex, mRadicalCharIndex;
|
2009-05-29 15:08:35 +04:00
|
|
|
nscoord mContentWidth;
|
|
|
|
nsresult AllocateMathMLChar(nsMencloseNotation mask);
|
|
|
|
|
|
|
|
// Display a frame of the specified type.
|
|
|
|
// @param aType Type of frame to display
|
2013-02-14 15:12:27 +04:00
|
|
|
void DisplayNotation(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame, const nsRect& aRect,
|
|
|
|
const nsDisplayListSet& aLists,
|
|
|
|
nscoord aThickness, nsMencloseNotation aType);
|
2009-05-29 15:08:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLmencloseFrame_h___ */
|