gi-pango-1.0.25: Pango bindings
CopyrightWill Thompson and Iñaki García Etxebarria
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Pango.Structs.GlyphVisAttr

Description

A PangoGlyphVisAttr structure communicates information between the shaping and rendering phases.

Currently, it contains cluster start and color information. More attributes may be added in the future.

Clusters are stored in visual order, within the cluster, glyphs are always ordered in logical order, since visual order is meaningless; that is, in Arabic text, accent glyphs follow the glyphs for the base character.

Synopsis

Exported types

newZeroGlyphVisAttr :: MonadIO m => m GlyphVisAttr Source #

Construct a GlyphVisAttr struct initialized to zero.

Methods

Properties

isClusterStart

set for the first logical glyph in each cluster.

getGlyphVisAttrIsClusterStart :: MonadIO m => GlyphVisAttr -> m Word32 Source #

Get the value of the “is_cluster_start” field. When overloading is enabled, this is equivalent to

get glyphVisAttr #isClusterStart

setGlyphVisAttrIsClusterStart :: MonadIO m => GlyphVisAttr -> Word32 -> m () Source #

Set the value of the “is_cluster_start” field. When overloading is enabled, this is equivalent to

set glyphVisAttr [ #isClusterStart := value ]

isColor

set if the the font will render this glyph with color. Since 1.50

getGlyphVisAttrIsColor :: MonadIO m => GlyphVisAttr -> m Word32 Source #

Get the value of the “is_color” field. When overloading is enabled, this is equivalent to

get glyphVisAttr #isColor

setGlyphVisAttrIsColor :: MonadIO m => GlyphVisAttr -> Word32 -> m () Source #

Set the value of the “is_color” field. When overloading is enabled, this is equivalent to

set glyphVisAttr [ #isColor := value ]