Details
struct PangoIncludedModule
struct PangoIncludedModule
{
void (*list) (PangoEngineInfo **engines, int *n_engines);
PangoEngine *(*load) (const char *id);
void (*unload) (PangoEngine *engine);
}; |
struct PangoMapEntry
struct PangoMapEntry
{
PangoEngineInfo *info;
gboolean is_exact;
}; |
pango_find_map ()
Locate a PangoMap for a particular engine type and render
type. The resulting map can be used to determine the engine
for each character.
pango_map_get_entry ()
Returns the entry in the map for a given codepoint. The entry
contains information about engine that should be used for
the codepoint and also whether the engine matches the language
tag for the map was created exactly or just approximately.
pango_map_get_engine ()
Returns the engine listed in the map for a given codepoint.
pango_module_register ()
Registers a statically linked module with Pango. The
PangoIncludedModule structure that is passed in contains the
functions that would otherwise be loaded from a dynamically loaded
module.