Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. contextSetFontMap :: (HasCallStack, MonadIO m, IsContext a, IsFontMap b) => a -> Maybe b -> m ()

    gi-pango GI.Pango.Objects.Context

    Sets the font map to be searched when fonts are looked-up in this context. This is only for internal use by Pango backends, a PangoContext obtained via one of the recommended methods should already have a suitable font map.

  2. fontGetFontMap :: (HasCallStack, MonadIO m, IsFont a) => Maybe a -> m (Maybe FontMap)

    gi-pango GI.Pango.Objects.Font

    Gets the font map for which the font was created. Note that the font maintains a *weak* reference to the font map, so if all references to font map are dropped, the font map will be finalized even if there are fonts created with the font map that are still alive. In that case this function will return Nothing. It is the responsibility of the user to ensure that the font map is kept alive. In most uses this is not an issue as a PangoContext holds a reference to the font map. Since: 1.10

  3. module GI.Pango.Objects.FontMap

    A PangoFontMap represents the set of fonts available for a particular rendering system. This is a virtual object with implementations being specific to particular rendering systems.

  4. newtype FontMap

    gi-pango GI.Pango.Objects.FontMap

    Memory-managed wrapper type.

  5. FontMap :: ManagedPtr FontMap -> FontMap

    gi-pango GI.Pango.Objects.FontMap

    No documentation available.

  6. class (GObject o, IsDescendantOf FontMap o) => IsFontMap o

    gi-pango GI.Pango.Objects.FontMap

    Type class for types which can be safely cast to FontMap, for instance with toFontMap.

  7. fontMapChanged :: (HasCallStack, MonadIO m, IsFontMap a) => a -> m ()

    gi-pango GI.Pango.Objects.FontMap

    Forces a change in the context, which will cause any PangoContext using this fontmap to change. This function is only useful when implementing a new backend for Pango, something applications won't do. Backends should call this function if they have attached extra data to the context and such data is changed. Since: 1.34

  8. fontMapCreateContext :: (HasCallStack, MonadIO m, IsFontMap a) => a -> m Context

    gi-pango GI.Pango.Objects.FontMap

    Creates a PangoContext connected to fontmap. This is equivalent to contextNew followed by contextSetFontMap. If you are using Pango as part of a higher-level system, that system may have it's own way of create a PangoContext. For instance, the GTK toolkit has, among others, gtk_widget_get_pango_context(). Use those instead. Since: 1.22

  9. fontMapGetFamily :: (HasCallStack, MonadIO m, IsFontMap a) => a -> Text -> m FontFamily

    gi-pango GI.Pango.Objects.FontMap

    Gets a font family by name. Since: 1.46

  10. fontMapGetSerial :: (HasCallStack, MonadIO m, IsFontMap a) => a -> m Word32

    gi-pango GI.Pango.Objects.FontMap

    Returns the current serial number of fontmap. The serial number is initialized to an small number larger than zero when a new fontmap is created and is increased whenever the fontmap is changed. It may wrap, but will never have the value 0. Since it can wrap, never compare it with "less than", always use "not equals". The fontmap can only be changed using backend-specific API, like changing fontmap resolution. This can be used to automatically detect changes to a PangoFontMap, like in PangoContext. Since: 1.32.4

Page 566 of many | Previous | Next