Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (inaki@blueleaf.cc) |
Safe Haskell | None |
Language | Haskell2010 |
The GlyphString
structure 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
- noGlyphString :: Maybe 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
- 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
BoxedObject GlyphString Source # | |
Defined in GI.Pango.Structs.GlyphString boxedType :: GlyphString -> IO GType # | |
tag ~ AttrSet => Constructible GlyphString tag Source # | |
Defined in GI.Pango.Structs.GlyphString new :: MonadIO m => (ManagedPtr GlyphString -> GlyphString) -> [AttrOp GlyphString tag] -> m GlyphString # |
newZeroGlyphString :: MonadIO m => m GlyphString Source #
Construct a GlyphString
struct initialized to zero.
noGlyphString :: Maybe GlyphString Source #
A convenience alias for Nothing
:: Maybe
GlyphString
.
Methods
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.
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 GlyphString
resulting from shape
and the corresponding
text, determine the screen 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 as 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. (X position is measured from the left edge of the run). Character positions are computed by dividing up each cluster into equal portions.
new
:: (HasCallStack, MonadIO m) | |
=> m GlyphString | Returns: the newly allocated |
Create a new GlyphString
.
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 the 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 ]