haskell-gi-0.26.5: Generate Haskell bindings for GObject Introspection capable libraries
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.GI.CodeGen.LibGIRepository

Description

A minimal wrapper for libgirepository.

Synopsis

Documentation

girRequire :: Text -> Text -> IO Typelib Source #

Ensure that the given version of the namespace is loaded. If that is not possible we error out.

data Typelib Source #

Wrapper for GITypelib, remembering the originating namespace and version.

Instances

Instances details
Show Typelib Source # 
Instance details

Defined in Data.GI.CodeGen.LibGIRepository

setupTypelibSearchPath :: [FilePath] -> IO () Source #

A convenience function for setting up the typelib search path from the environment. Note that for efficiency reasons this should only be called once per program run. If the list of paths passed in is empty, the environment variable HASKELL_GI_TYPELIB_SEARCH_PATH will be checked. In either case the system directories will be searched after the passed in directories.

data FieldInfo Source #

Extra info about a field in a struct or union which is not easily determined from the GIR file. (And which we determine by using libgirepository.)

Constructors

FieldInfo 

Fields

girStructFieldInfo :: Text -> Text -> IO (Int, Map Text FieldInfo) Source #

Find out the size of a struct, and the map from field names to offsets inside the struct.

girUnionFieldInfo :: Text -> Text -> IO (Int, Map Text FieldInfo) Source #

Find out the size of a union, and the map from field names to offsets inside the union.

girLoadGType :: Typelib -> Text -> IO GType Source #

Load a GType given the Typelib where it lives and the type init function.

girIsSymbolResolvable :: Typelib -> Text -> IO Bool Source #

Check whether a symbol is present in the dynamical liberary.