2007-06-12 06:10:23 +00:00
|
|
|
/* -*- 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-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
#ifndef nsMathMLChar_h___
|
|
|
|
#define nsMathMLChar_h___
|
|
|
|
|
2014-02-13 14:53:52 +00:00
|
|
|
#include "nsAutoPtr.h"
|
1999-09-21 02:12:01 +00:00
|
|
|
#include "nsMathMLOperators.h"
|
2013-08-30 21:37:12 +00:00
|
|
|
#include "nsPoint.h"
|
|
|
|
#include "nsRect.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsBoundingMetrics.h"
|
2014-02-13 14:53:52 +00:00
|
|
|
#include "gfxFont.h"
|
1999-09-21 02:12:01 +00:00
|
|
|
|
2000-03-28 09:38:24 +00:00
|
|
|
class nsGlyphTable;
|
2013-08-30 21:37:12 +00:00
|
|
|
class nsIFrame;
|
|
|
|
class nsDisplayListBuilder;
|
|
|
|
class nsDisplayListSet;
|
|
|
|
class nsPresContext;
|
|
|
|
class nsRenderingContext;
|
|
|
|
class nsBoundingMetrics;
|
|
|
|
class nsStyleContext;
|
|
|
|
class nsFont;
|
2000-03-28 09:38:24 +00:00
|
|
|
|
|
|
|
// Hints for Stretch() to indicate criteria for stretching
|
2008-03-14 04:05:43 +00:00
|
|
|
enum {
|
|
|
|
// Don't stretch
|
|
|
|
NS_STRETCH_NONE = 0x00,
|
|
|
|
// Variable size stretches
|
|
|
|
NS_STRETCH_VARIABLE_MASK = 0x0F,
|
|
|
|
NS_STRETCH_NORMAL = 0x01, // try to stretch to requested size
|
|
|
|
NS_STRETCH_NEARER = 0x02, // stretch very close to requested size
|
|
|
|
NS_STRETCH_SMALLER = 0x04, // don't stretch more than requested size
|
|
|
|
NS_STRETCH_LARGER = 0x08, // don't stretch less than requested size
|
|
|
|
// A largeop in displaystyle
|
|
|
|
NS_STRETCH_LARGEOP = 0x10,
|
2010-08-20 03:44:07 +00:00
|
|
|
NS_STRETCH_INTEGRAL = 0x20,
|
|
|
|
|
2008-03-14 04:05:43 +00:00
|
|
|
// Intended for internal use:
|
|
|
|
// Find the widest metrics that might be returned from a vertical stretch
|
2010-08-20 03:44:07 +00:00
|
|
|
NS_STRETCH_MAXWIDTH = 0x40
|
2008-03-14 04:05:43 +00:00
|
|
|
};
|
2000-01-07 14:49:46 +00:00
|
|
|
|
2014-02-13 14:53:52 +00:00
|
|
|
// A single glyph in our internal representation is either
|
|
|
|
// 1) a 'code@font' pair from the mathfontFONTFAMILY.properties table. The
|
|
|
|
// 'code' is interpreted as a Unicode point. The 'font' is a numeric
|
|
|
|
// identifier given to the font to which the glyph belongs, which is 0 for the
|
|
|
|
// FONTFAMILY and > 0 for 'external' fonts.
|
|
|
|
// 2) a glyph index from the Open Type MATH table. In that case, all the glyphs
|
|
|
|
// come from the font containing that table and 'font' is just set to -1.
|
2001-03-23 09:46:24 +00:00
|
|
|
struct nsGlyphCode {
|
2014-02-13 14:53:52 +00:00
|
|
|
union {
|
|
|
|
char16_t code[2];
|
|
|
|
uint32_t glyphID;
|
|
|
|
};
|
|
|
|
int8_t font;
|
2001-03-23 09:46:24 +00:00
|
|
|
|
2014-02-13 14:53:52 +00:00
|
|
|
bool IsGlyphID() const { return font == -1; }
|
|
|
|
|
|
|
|
int32_t Length() const {
|
|
|
|
return (IsGlyphID() || code[1] == PRUnichar('\0') ? 1 : 2);
|
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Exists() const
|
2007-11-15 21:44:49 +00:00
|
|
|
{
|
2014-02-13 14:53:52 +00:00
|
|
|
return IsGlyphID() ? glyphID != 0 : code[0] != 0;
|
2007-11-15 21:44:49 +00:00
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsGlyphCode& other) const
|
2007-11-15 21:44:49 +00:00
|
|
|
{
|
2014-02-13 14:53:52 +00:00
|
|
|
return (other.font == font &&
|
|
|
|
((IsGlyphID() && other.glyphID == glyphID) ||
|
|
|
|
(!IsGlyphID() && other.code[0] == code[0] &&
|
|
|
|
other.code[1] == code[1])));
|
2007-11-15 21:44:49 +00:00
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator!=(const nsGlyphCode& other) const
|
2007-11-15 21:44:49 +00:00
|
|
|
{
|
|
|
|
return ! operator==(other);
|
2001-03-23 09:46:24 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-08-10 15:29:59 +00:00
|
|
|
// Class used to handle stretchy symbols (accent, delimiter and boundary
|
|
|
|
// symbols).
|
1999-09-21 02:12:01 +00:00
|
|
|
class nsMathMLChar
|
|
|
|
{
|
|
|
|
public:
|
1999-11-17 00:49:37 +00:00
|
|
|
// constructor and destructor
|
2012-08-21 00:14:20 +00:00
|
|
|
nsMathMLChar() {
|
2001-02-02 09:40:53 +00:00
|
|
|
MOZ_COUNT_CTOR(nsMathMLChar);
|
2012-07-30 14:20:58 +00:00
|
|
|
mStyleContext = nullptr;
|
2010-08-20 03:44:07 +00:00
|
|
|
mUnscaledAscent = 0;
|
|
|
|
mScaleX = mScaleY = 1.0;
|
2014-02-13 14:53:52 +00:00
|
|
|
mDraw = DRAW_NORMAL;
|
2011-12-21 22:22:00 +00:00
|
|
|
mMirrored = false;
|
1999-11-17 00:49:37 +00:00
|
|
|
}
|
|
|
|
|
2012-08-10 15:29:59 +00:00
|
|
|
// not a virtual destructor: this class is not intended to be subclassed
|
2013-08-30 21:37:12 +00:00
|
|
|
~nsMathMLChar();
|
2001-02-02 09:40:53 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
void Display(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aForFrame,
|
|
|
|
const nsDisplayListSet& aLists,
|
|
|
|
uint32_t aIndex,
|
|
|
|
const nsRect* aSelectedRect = nullptr);
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
void PaintForeground(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2006-01-26 02:29:17 +00:00
|
|
|
nsPoint aPt,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsSelected);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
|
|
|
// This is the method called to ask the char to stretch itself.
|
2001-02-02 09:40:53 +00:00
|
|
|
// @param aContainerSize - IN - suggested size for the stretched char
|
|
|
|
// @param aDesiredStretchSize - OUT - the size that the char wants
|
2000-03-28 09:38:24 +00:00
|
|
|
nsresult
|
2008-03-14 04:05:43 +00:00
|
|
|
Stretch(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2008-03-14 04:05:43 +00:00
|
|
|
nsStretchDirection aStretchDirection,
|
|
|
|
const nsBoundingMetrics& aContainerSize,
|
|
|
|
nsBoundingMetrics& aDesiredStretchSize,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aStretchHint,
|
2011-12-21 22:22:00 +00:00
|
|
|
bool aRTL);
|
1999-12-10 13:02:23 +00:00
|
|
|
|
1999-11-21 22:10:45 +00:00
|
|
|
void
|
2004-07-31 23:15:21 +00:00
|
|
|
SetData(nsPresContext* aPresContext,
|
2000-03-28 09:38:24 +00:00
|
|
|
nsString& aData);
|
1999-09-21 02:12:01 +00:00
|
|
|
|
1999-12-10 13:02:23 +00:00
|
|
|
void
|
1999-11-21 22:10:45 +00:00
|
|
|
GetData(nsString& aData) {
|
1999-10-12 02:12:36 +00:00
|
|
|
aData = mData;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
1999-11-21 22:10:45 +00:00
|
|
|
Length() {
|
|
|
|
return mData.Length();
|
|
|
|
}
|
|
|
|
|
1999-12-10 13:02:23 +00:00
|
|
|
nsStretchDirection
|
|
|
|
GetStretchDirection() {
|
|
|
|
return mDirection;
|
|
|
|
}
|
|
|
|
|
1999-11-21 22:10:45 +00:00
|
|
|
// Sometimes we only want to pass the data to another routine,
|
|
|
|
// this function helps to avoid copying
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t*
|
2001-06-30 11:02:25 +00:00
|
|
|
get() {
|
|
|
|
return mData.get();
|
1999-11-21 22:10:45 +00:00
|
|
|
}
|
|
|
|
|
1999-11-17 00:49:37 +00:00
|
|
|
void
|
|
|
|
GetRect(nsRect& aRect) {
|
|
|
|
aRect = mRect;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
1999-11-17 00:49:37 +00:00
|
|
|
void
|
|
|
|
SetRect(const nsRect& aRect) {
|
|
|
|
mRect = aRect;
|
1999-09-21 02:12:01 +00:00
|
|
|
}
|
|
|
|
|
2008-03-14 04:05:43 +00:00
|
|
|
// Get the maximum width that the character might have after a vertical
|
|
|
|
// Stretch().
|
|
|
|
//
|
|
|
|
// @param aStretchHint can be the value that will be passed to Stretch().
|
|
|
|
// It is used to determine whether the operator is stretchy or a largeop.
|
|
|
|
// @param aMaxSize is the value of the "maxsize" attribute.
|
|
|
|
// @param aMaxSizeIsAbsolute indicates whether the aMaxSize is an absolute
|
2011-10-17 14:59:28 +00:00
|
|
|
// value in app units (true) or a multiplier of the base size (false).
|
2008-03-14 04:05:43 +00:00
|
|
|
nscoord
|
|
|
|
GetMaxWidth(nsPresContext* aPresContext,
|
2011-04-08 01:04:40 +00:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aStretchHint = NS_STRETCH_NORMAL,
|
2008-03-14 04:05:43 +00:00
|
|
|
float aMaxSize = NS_MATHML_OPERATOR_SIZE_INFINITY,
|
|
|
|
// Perhaps just nsOperatorFlags aFlags.
|
|
|
|
// But need DisplayStyle for largeOp,
|
|
|
|
// or remove the largeop bit from flags.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aMaxSizeIsAbsolute = false);
|
2008-03-14 04:05:43 +00:00
|
|
|
|
2001-02-02 09:40:53 +00:00
|
|
|
// Metrics that _exactly_ enclose the char. The char *must* have *already*
|
2000-03-28 09:38:24 +00:00
|
|
|
// being stretched before you can call the GetBoundingMetrics() method.
|
|
|
|
// IMPORTANT: since chars have their own style contexts, and may be rendered
|
|
|
|
// with glyphs that are not in the parent font, just calling the default
|
|
|
|
// aRenderingContext.GetBoundingMetrics(aChar) can give incorrect results.
|
2000-01-07 14:49:46 +00:00
|
|
|
void
|
2000-01-18 04:35:37 +00:00
|
|
|
GetBoundingMetrics(nsBoundingMetrics& aBoundingMetrics) {
|
2000-01-07 14:49:46 +00:00
|
|
|
aBoundingMetrics = mBoundingMetrics;
|
|
|
|
}
|
|
|
|
|
2002-01-05 01:15:04 +00:00
|
|
|
void
|
|
|
|
SetBoundingMetrics(nsBoundingMetrics& aBoundingMetrics) {
|
|
|
|
mBoundingMetrics = aBoundingMetrics;
|
|
|
|
}
|
|
|
|
|
2000-03-28 09:38:24 +00:00
|
|
|
// Hooks to access the extra leaf style contexts given to the MathMLChars.
|
2005-11-20 22:05:24 +00:00
|
|
|
// They provide an interface to make them accessible to the Style System via
|
2000-03-28 09:38:24 +00:00
|
|
|
// the Get/Set AdditionalStyleContext() APIs. Owners of MathMLChars
|
|
|
|
// should honor these APIs.
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* GetStyleContext() const;
|
2000-03-28 09:38:24 +00:00
|
|
|
|
2003-02-22 00:32:13 +00:00
|
|
|
void SetStyleContext(nsStyleContext* aStyleContext);
|
2000-03-28 09:38:24 +00:00
|
|
|
|
2001-02-02 09:40:53 +00:00
|
|
|
protected:
|
|
|
|
friend class nsGlyphTable;
|
1999-12-10 13:02:23 +00:00
|
|
|
nsString mData;
|
2001-02-02 09:40:53 +00:00
|
|
|
|
|
|
|
private:
|
2000-03-28 09:38:24 +00:00
|
|
|
nsRect mRect;
|
2001-02-02 09:40:53 +00:00
|
|
|
nsStretchDirection mDirection;
|
2000-01-07 14:49:46 +00:00
|
|
|
nsBoundingMetrics mBoundingMetrics;
|
2003-02-22 00:32:13 +00:00
|
|
|
nsStyleContext* mStyleContext;
|
2014-02-13 14:53:52 +00:00
|
|
|
// mGlyphs/mBmData are arrays describing the glyphs used to draw the operator.
|
|
|
|
// See the drawing methods below.
|
|
|
|
nsAutoPtr<gfxTextRun> mGlyphs[4];
|
|
|
|
nsBoundingMetrics mBmData[4];
|
2010-08-20 03:44:07 +00:00
|
|
|
// mUnscaledAscent is the actual ascent of the char.
|
|
|
|
nscoord mUnscaledAscent;
|
|
|
|
// mScaleX, mScaleY are the factors by which we scale the char.
|
|
|
|
float mScaleX, mScaleY;
|
2014-02-13 14:53:52 +00:00
|
|
|
|
|
|
|
// mDraw indicates how we draw the stretchy operator:
|
|
|
|
// - DRAW_NORMAL: we render the mData string normally.
|
|
|
|
// - DRAW_VARIANT: we draw a larger size variant given by mGlyphs[0].
|
|
|
|
// - DRAW_PARTS: we assemble several parts given by mGlyphs[0], ... mGlyphs[4]
|
|
|
|
// XXXfredw: the MATH table can have any numbers of parts and extenders.
|
|
|
|
enum DrawingMethod {
|
|
|
|
DRAW_NORMAL, DRAW_VARIANT, DRAW_PARTS
|
|
|
|
};
|
|
|
|
DrawingMethod mDraw;
|
|
|
|
|
2011-12-21 22:22:00 +00:00
|
|
|
// mMirrored indicates whether the character is mirrored.
|
|
|
|
bool mMirrored;
|
1999-11-17 00:49:37 +00:00
|
|
|
|
2008-03-14 04:05:43 +00:00
|
|
|
class StretchEnumContext;
|
|
|
|
friend class StretchEnumContext;
|
|
|
|
|
1999-11-17 00:49:37 +00:00
|
|
|
// helper methods
|
2014-02-13 14:53:52 +00:00
|
|
|
bool
|
|
|
|
SetFontFamily(nsPresContext* aPresContext,
|
|
|
|
const nsGlyphTable* aGlyphTable,
|
|
|
|
const nsGlyphCode& aGlyphCode,
|
|
|
|
const nsAString& aDefaultFamily,
|
|
|
|
nsFont& aFont,
|
|
|
|
nsRefPtr<gfxFontGroup>* aFontGroup);
|
|
|
|
|
2008-03-14 04:05:43 +00:00
|
|
|
nsresult
|
|
|
|
StretchInternal(nsPresContext* aPresContext,
|
2014-02-13 14:53:52 +00:00
|
|
|
gfxContext* aThebesContext,
|
2008-03-14 04:05:43 +00:00
|
|
|
nsStretchDirection& aStretchDirection,
|
|
|
|
const nsBoundingMetrics& aContainerSize,
|
|
|
|
nsBoundingMetrics& aDesiredStretchSize,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aStretchHint,
|
2008-03-14 04:05:43 +00:00
|
|
|
float aMaxSize = NS_MATHML_OPERATOR_SIZE_INFINITY,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aMaxSizeIsAbsolute = false);
|
2007-12-05 03:58:09 +00:00
|
|
|
|
|
|
|
nsresult
|
2014-02-13 14:53:52 +00:00
|
|
|
PaintVertically(nsPresContext* aPresContext,
|
|
|
|
gfxContext* aThebesContext,
|
|
|
|
nsRect& aRect);
|
1999-11-21 22:10:45 +00:00
|
|
|
|
2007-12-05 03:58:09 +00:00
|
|
|
nsresult
|
2014-02-13 14:53:52 +00:00
|
|
|
PaintHorizontally(nsPresContext* aPresContext,
|
|
|
|
gfxContext* aThebesContext,
|
|
|
|
nsRect& aRect);
|
2010-08-20 03:44:07 +00:00
|
|
|
|
|
|
|
void
|
2014-02-13 14:53:52 +00:00
|
|
|
ApplyTransforms(gfxContext* aThebesContext, int32_t aAppUnitsPerGfxUnit,
|
|
|
|
nsRect &r);
|
1999-09-21 02:12:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLChar_h___ */
|