/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
class gfxContext; class nsGlyphTable; class nsIFrame; class nsPresContext; struct nsBoundingMetrics; struct nsFont;
namespace mozilla { class nsDisplayListBuilder; class nsDisplayListSet; class ComputedStyle;
} // namespace mozilla
// Hints for Stretch() to indicate criteria for stretching 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,
// Intended for internal use: // Find the widest metrics that might be returned from a vertical stretch
NS_STRETCH_MAXWIDTH = 0x20
};
// 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. struct nsGlyphCode { union {
char16_t code[2];
uint32_t glyphID;
};
int8_t font;
// Class used to handle stretchy symbols (accent, delimiter and boundary // symbols). class nsMathMLChar { public: typedef gfxTextRun::Range Range; typedef mozilla::gfx::DrawTarget DrawTarget;
// This is the method called to ask the char to stretch itself. // @param aContainerSize - IN - suggested size for the stretched char // @param aDesiredStretchSize - OUT - the size that the char wants
nsresult Stretch(nsIFrame* aForFrame, DrawTarget* aDrawTarget, float aFontSizeInflation,
nsStretchDirection aStretchDirection, const nsBoundingMetrics& aContainerSize,
nsBoundingMetrics& aDesiredStretchSize,
uint32_t aStretchHint, bool aRTL);
// 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.
nscoord GetMaxWidth(nsIFrame* aForFrame, DrawTarget* aDrawTarget, float aFontSizeInflation,
uint32_t aStretchHint = NS_STRETCH_NORMAL);
// Metrics that _exactly_ enclose the char. The char *must* have *already* // being stretched before you can call the GetBoundingMetrics() method. // IMPORTANT: since chars have their own ComputedStyles, and may be rendered // with glyphs that are not in the parent font, just calling the default // aRenderingContext.GetBoundingMetrics(aChar) can give incorrect results. void GetBoundingMetrics(nsBoundingMetrics& aBoundingMetrics) {
aBoundingMetrics = mBoundingMetrics;
}
// Hooks to access the extra leaf ComputedStyles given to the MathMLChars. // They provide an interface to make them accessible to the Style System via // the Get/Set AdditionalComputedStyle() APIs. Owners of MathMLChars // should honor these APIs.
mozilla::ComputedStyle* GetComputedStyle() const;
private:
nsRect mRect;
nsStretchDirection mDirection;
nsBoundingMetrics mBoundingMetrics;
RefPtr<mozilla::ComputedStyle> mComputedStyle; // mGlyphs/mBmData are arrays describing the glyphs used to draw the operator. // See the drawing methods below.
RefPtr<gfxTextRun> mGlyphs[4];
nsBoundingMetrics mBmData[4]; // mUnscaledAscent is the actual ascent of the char.
nscoord mUnscaledAscent; // mScaleX, mScaleY are the factors by which we scale the char. float mScaleX, mScaleY;
// 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;
// mMirrored indicates whether the character is mirrored. bool mMirrored;
class StretchEnumContext; friendclass StretchEnumContext;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.