123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- #ifndef __LEFONTINSTANCE_H
- #define __LEFONTINSTANCE_H
- #include "LETypes.h"
- U_NAMESPACE_BEGIN
- class LECharMapper /* not : public UObject because this is an interface/mixin class */
- {
- public:
-
- virtual ~LECharMapper();
-
- virtual LEUnicode32 mapChar(LEUnicode32 ch) const = 0;
- };
- class LEGlyphStorage;
- /**
- * This is a virtual base class that serves as the interface between a LayoutEngine
- * and the platform font environment. It allows a LayoutEngine to access font tables, do
- * character to glyph mapping, and obtain metrics information without knowing any platform
- * specific details. There are also a few utility methods for converting between points,
- * pixels and funits. (font design units)
- *
- * An instance of an <code>LEFontInstance</code> represents a font at a particular point
- * size. Each instance can represent either a single physical font, or a composite font.
- * A composite font is a collection of physical fonts, each of which contains a subset of
- * the characters contained in the composite font.
- *
- * Note: with the exception of <code>getSubFont</code>, the methods in this class only
- * make sense for a physical font. If you have an <code>LEFontInstance</code> which
- * represents a composite font you should only call the methods below which have
- * an <code>LEGlyphID</code>, an <code>LEUnicode</code> or an <code>LEUnicode32</code>
- * as one of the arguments because these can be used to select a particular subfont.
- *
- * Subclasses which implement composite fonts should supply an implementation of these
- * methods with some default behavior such as returning constant values, or using the
- * values from the first subfont.
- *
- * @deprecated ICU 54. See {@link icu::LayoutEngine}
- */
- class U_LAYOUT_API LEFontInstance : public UObject
- {
- public:
-
- virtual ~LEFontInstance();
-
- virtual const LEFontInstance *getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const;
-
-
-
-
- virtual const void* getFontTable(LETag tableTag, size_t &length) const = 0;
-
- virtual le_bool canDisplay(LEUnicode32 ch) const;
-
- virtual le_int32 getUnitsPerEM() const = 0;
-
- virtual void mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const;
-
- virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
-
- virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
-
- virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const = 0;
-
-
-
-
- virtual void getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const = 0;
-
- virtual le_bool getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const = 0;
-
- virtual float getXPixelsPerEm() const = 0;
-
- virtual float getYPixelsPerEm() const = 0;
-
- virtual float xUnitsToPoints(float xUnits) const;
-
- virtual float yUnitsToPoints(float yUnits) const;
-
- virtual void unitsToPoints(LEPoint &units, LEPoint &points) const;
-
- virtual float xPixelsToUnits(float xPixels) const;
-
- virtual float yPixelsToUnits(float yPixels) const;
-
- virtual void pixelsToUnits(LEPoint &pixels, LEPoint &units) const;
-
- virtual float getScaleFactorX() const = 0;
-
- virtual float getScaleFactorY() const = 0;
-
- virtual void transformFunits(float xFunits, float yFunits, LEPoint &pixels) const;
-
- static inline float fixedToFloat(le_int32 fixed);
-
- static inline le_int32 floatToFixed(float theFloat);
-
-
-
-
-
-
- virtual le_int32 getAscent() const = 0;
-
- virtual le_int32 getDescent() const = 0;
-
- virtual le_int32 getLeading() const = 0;
-
- virtual le_int32 getLineHeight() const;
-
- virtual UClassID getDynamicClassID() const;
-
- static UClassID getStaticClassID();
- };
- inline float LEFontInstance::fixedToFloat(le_int32 fixed)
- {
- return (float) (fixed / 65536.0);
- }
- inline le_int32 LEFontInstance::floatToFixed(float theFloat)
- {
- return (le_int32) (theFloat * 65536.0);
- }
- U_NAMESPACE_END
- #endif
|