Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A PangoGlyphString
is used to store strings of glyphs with geometry
and visual attribute information.
The storage for the glyph information is owned by the structure which simplifies memory management.
Synopsis
- newtype GlyphString = GlyphString (ManagedPtr GlyphString)
- newZeroGlyphString :: MonadIO m => m GlyphString
- glyphStringCopy :: (HasCallStack, MonadIO m) => GlyphString -> m (Maybe GlyphString)
- glyphStringExtents :: (HasCallStack, MonadIO m, IsFont a) => GlyphString -> a -> m (Rectangle, Rectangle)
- glyphStringExtentsRange :: (HasCallStack, MonadIO m, IsFont a) => GlyphString -> Int32 -> Int32 -> a -> m (Rectangle, Rectangle)
- glyphStringFree :: (HasCallStack, MonadIO m) => GlyphString -> m ()
- glyphStringGetLogicalWidths :: (HasCallStack, MonadIO m) => GlyphString -> Text -> Int32 -> Int32 -> [Int32] -> m ()
- glyphStringGetWidth :: (HasCallStack, MonadIO m) => GlyphString -> m Int32
- glyphStringIndexToX :: (HasCallStack, MonadIO m) => GlyphString -> Text -> Int32 -> Analysis -> Int32 -> Bool -> m Int32
- glyphStringIndexToXFull :: (HasCallStack, MonadIO m) => GlyphString -> Text -> Int32 -> Analysis -> Maybe LogAttr -> Int32 -> Bool -> m Int32
- glyphStringNew :: (HasCallStack, MonadIO m) => m GlyphString
- glyphStringSetSize :: (HasCallStack, MonadIO m) => GlyphString -> Int32 -> m ()
- glyphStringXToIndex :: (HasCallStack, MonadIO m) => GlyphString -> Text -> Int32 -> Analysis -> Int32 -> m (Int32, Int32)
- getGlyphStringLogClusters :: MonadIO m => GlyphString -> m Int32
- setGlyphStringLogClusters :: MonadIO m => GlyphString -> Int32 -> m ()
- getGlyphStringNumGlyphs :: MonadIO m => GlyphString -> m Int32
- setGlyphStringNumGlyphs :: MonadIO m => GlyphString -> Int32 -> m ()
Exported types
newtype GlyphString Source #
Memory-managed wrapper type.
Instances
newZeroGlyphString :: MonadIO m => m GlyphString Source #
Construct a GlyphString
struct initialized to zero.
Methods
Click to display all available methods, including inherited ones
copy
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> m (Maybe GlyphString) | Returns: the newly allocated |
Copy a glyph string and associated storage.
extents
:: (HasCallStack, MonadIO m, IsFont a) | |
=> GlyphString |
|
-> a |
|
-> m (Rectangle, Rectangle) |
Compute the logical and ink extents of a glyph string.
See the documentation for fontGetGlyphExtents
for details
about the interpretation of the rectangles.
Examples of logical (red) and ink (green) rects:
extentsRange
glyphStringExtentsRange Source #
:: (HasCallStack, MonadIO m, IsFont a) | |
=> GlyphString |
|
-> Int32 |
|
-> Int32 |
|
-> a |
|
-> m (Rectangle, Rectangle) |
Computes the extents of a sub-portion of a glyph string.
The extents are relative to the start of the glyph string range (the origin of their coordinate system is at the start of the range, not at the start of the entire glyph string).
free
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> m () |
Free a glyph string and associated storage.
getLogicalWidths
glyphStringGetLogicalWidths Source #
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> Text |
|
-> Int32 |
|
-> Int32 |
|
-> [Int32] |
|
-> m () |
Given a PangoGlyphString
and corresponding text, determine the width
corresponding to each character.
When multiple characters compose a single cluster, the width of the entire cluster is divided equally among the characters.
See also glyphItemGetLogicalWidths
.
getWidth
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> m Int32 | Returns: the logical width of the glyph string. |
Computes the logical width of the glyph string.
This can also be computed using glyphStringExtents
.
However, since this only computes the width, it's much faster. This
is in fact only a convenience function that computes the sum of
geometry
.width for each glyph in the glyphs
.
Since: 1.14
indexToX
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> Text |
|
-> Int32 |
|
-> Analysis |
|
-> Int32 |
|
-> Bool |
|
-> m Int32 |
Converts from character position to x position.
The X position is measured from the left edge of the run. Character positions are obtained using font metrics for ligatures where available, and computed by dividing up each cluster into equal portions, otherwise.
<picture> <source srcset="glyphstring-positions-dark.png" media="(prefers-color-scheme: dark)"> <img alt="Glyph positions" src="glyphstring-positions-light.png"> </picture>
indexToXFull
glyphStringIndexToXFull Source #
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> Text |
|
-> Int32 |
|
-> Analysis |
|
-> Maybe LogAttr |
|
-> Int32 |
|
-> Bool |
|
-> m Int32 |
Converts from character position to x position.
This variant of glyphStringIndexToX
additionally
accepts a PangoLogAttr
array. The grapheme boundary information
in it can be used to disambiguate positioning inside some complex
clusters.
Since: 1.50
new
:: (HasCallStack, MonadIO m) | |
=> m GlyphString | Returns: the newly allocated |
Create a new PangoGlyphString
.
setSize
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> Int32 |
|
-> m () |
Resize a glyph string to the given length.
xToIndex
:: (HasCallStack, MonadIO m) | |
=> GlyphString |
|
-> Text |
|
-> Int32 |
|
-> Analysis |
|
-> Int32 |
|
-> m (Int32, Int32) |
Convert from x offset to character position.
Character positions are computed by dividing up each cluster into equal portions. In scripts where positioning within a cluster is not allowed (such as Thai), the returned value may not be a valid cursor position; the caller must combine the result with the logical attributes for the text to compute the valid cursor position.
Properties
logClusters
logical cluster info, indexed by the byte index within the text corresponding to the glyph string
getGlyphStringLogClusters :: MonadIO m => GlyphString -> m Int32 Source #
Get the value of the “log_clusters
” field.
When overloading is enabled, this is equivalent to
get
glyphString #logClusters
setGlyphStringLogClusters :: MonadIO m => GlyphString -> Int32 -> m () Source #
Set the value of the “log_clusters
” field.
When overloading is enabled, this is equivalent to
set
glyphString [ #logClusters:=
value ]
numGlyphs
number of glyphs in this glyph string
getGlyphStringNumGlyphs :: MonadIO m => GlyphString -> m Int32 Source #
Get the value of the “num_glyphs
” field.
When overloading is enabled, this is equivalent to
get
glyphString #numGlyphs
setGlyphStringNumGlyphs :: MonadIO m => GlyphString -> Int32 -> m () Source #
Set the value of the “num_glyphs
” field.
When overloading is enabled, this is equivalent to
set
glyphString [ #numGlyphs:=
value ]