|
| | TextGlyphRun () |
| | Creates a new TextGlyphRun object.
|
| |
| | TextGlyphRun (const TextGlyphRun &gr_) |
| | TextGlyphRun copy constructor.
|
| |
| virtual | ~TextGlyphRun () |
| | Destructs a TextGlyphRun object.
|
| |
| virtual TextGlyphRun & | operator= (const TextGlyphRun &rhs_) |
| | Overloaded assignment operator for TextGlyphRun objects.
|
| |
| virtual bool | operator== (const TextGlyphRun &rhs_) const |
| | Tests whether a given TextGlyphRun object is the same as another.
|
| |
| virtual bool | operator!= (const TextGlyphRun &rhs_) const |
| | Tests whether a given TextGlyphRun object is not the same as another.
|
| |
| virtual std::unique_ptr< ATE::IGlyphRun > | ateGlyphRun () const |
| | Gets the ATE glyph run ref around which the target object is wrapped.
|
| |
| virtual bool | isEmpty () const |
| | Gets whether the target TextGlyphRun object is empty.
|
| |
| virtual std::unique_ptr< TextLine > | textLine () const |
| | Retrieves the text-line parent of this glyph run.
|
| |
| virtual int32_t | glyphCount () const |
| | Retrieves the number of glyphs in this run.
|
| |
| virtual int32_t | charCount () const |
| | Retrieves the number of characters in this run.
|
| |
| virtual int32_t | originsCount () const |
| | Retrieves the count of origin points in this run.
|
| |
| virtual bool | origin (const int32_t index_, ArtboardPoint &pt__) const |
| | Retrieves an origin point for a glyph in this run.
|
| |
| virtual int32_t | glyphIDCount () const |
| | Retrieves the count of glyph identifiers in this run.
|
| |
| virtual bool | glyphID (const int32_t index_, int32_t &id__) const |
| | Retrieves a glyph identifier for a glyph in this run.
|
| |
| virtual std::unique_ptr< TextCharFeatures > | charFeatures () const |
| | Retrieves the character features of this run.
|
| |
| virtual GlyphOrientation | glyphOrientation () const |
| | Retrieves the glyph orientation of this run.
|
| |
| virtual double | ascent () const |
| | Retrieves the ascent of this run.
|
| |
| virtual double | descent () const |
| | Retrieves the descent of this run.
|
| |
| virtual double | tracking () const |
| | Retrieves the tracking (space between each character) of this run.
|
| |
| virtual double | spaceGlyphWidth () const |
| | Retrieves the width of the space glyph in the font for this run.
|
| |
| virtual double | distToBaseline () const |
| | Retrieves the distance to the baseline in the font for this run.
|
| |
| virtual double | underlinePosition () const |
| | Retrieves the underline position in the font for this run.
|
| |
| virtual double | underlineThickness () const |
| | Retrieves the underline thickness in the font for this run.
|
| |
| virtual double | minCapHeight () const |
| | Retrieves the minimum height for capital letters in the font for this run.
|
| |
| virtual double | maxCapHeight () const |
| | Retrieves the maximum height for capital letters in the font for this run.
|
| |
| virtual std::unique_ptr< Font > | flattenedFont () const |
| | Retrieves the component font for this run if the character-feature font is a composite font, otherwise retrieves the character-feature font.
|
| |
| virtual std::string | contents (const std::string &le_="\n") const |
| | Gets the value (contents) of the glyph run.
|
| |