Top | ![]() |
![]() |
![]() |
![]() |
gchar * | about | Read |
gboolean | can-load | Read |
gboolean | can-unload | Read |
gboolean | checked | Read |
gpointer | dependencies | Read |
gpointer | dependency-names | Read |
gpointer | dependents | Read |
gpointer | description | Read |
gchar * | icon-path | Read |
gchar * | id | Read |
gpointer | interfaces | Read |
gchar * | language | Read |
gchar * | name | Read |
gchar * | path | Read |
gboolean | resident | Read |
gint | resolve-pass | Read |
gboolean | user-activatable | Read |
Plugin handle is wrapper for installed plugins. For each installed plugin there will be one corresponding plugin handle. It is mainly used by plugin manager to keep track of loading and unloading of plugins.
AnjutaPluginHandle *
anjuta_plugin_handle_new (const gchar *plugin_desc_path
);
const char *
anjuta_plugin_handle_get_id (AnjutaPluginHandle *plugin_handle
);
const char *
anjuta_plugin_handle_get_name (AnjutaPluginHandle *plugin_handle
);
const char *
anjuta_plugin_handle_get_about (AnjutaPluginHandle *plugin_handle
);
const char *
anjuta_plugin_handle_get_icon_path (AnjutaPluginHandle *plugin_handle
);
const char *
anjuta_plugin_handle_get_path (AnjutaPluginHandle *plugin_handle
);
gboolean
anjuta_plugin_handle_get_user_activatable
(AnjutaPluginHandle *plugin_handle
);
gboolean
anjuta_plugin_handle_get_resident (AnjutaPluginHandle *plugin_handle
);
const char *
anjuta_plugin_handle_get_language (AnjutaPluginHandle *plugin_handle
);
AnjutaPluginDescription *
anjuta_plugin_handle_get_description (AnjutaPluginHandle *plugin_handle
);
GList *
anjuta_plugin_handle_get_dependency_names
(AnjutaPluginHandle *plugin_handle
);
GHashTable *
anjuta_plugin_handle_get_dependencies (AnjutaPluginHandle *plugin_handle
);
GHashTable *
anjuta_plugin_handle_get_dependents (AnjutaPluginHandle *plugin_handle
);
GList *
anjuta_plugin_handle_get_interfaces (AnjutaPluginHandle *plugin_handle
);
gboolean
anjuta_plugin_handle_get_can_load (AnjutaPluginHandle *plugin_handle
);
gboolean
anjuta_plugin_handle_get_can_unload (AnjutaPluginHandle *plugin_handle
);
gboolean
anjuta_plugin_handle_get_checked (AnjutaPluginHandle *plugin_handle
);
gint
anjuta_plugin_handle_get_resolve_pass (AnjutaPluginHandle *plugin_handle
);
void anjuta_plugin_handle_set_can_load (AnjutaPluginHandle *plugin_handle
,gboolean can_load
);
void anjuta_plugin_handle_set_can_unload (AnjutaPluginHandle *plugin_handle
,gboolean can_unload
);
void anjuta_plugin_handle_set_checked (AnjutaPluginHandle *plugin_handle
,gboolean checked
);
void anjuta_plugin_handle_set_resolve_pass (AnjutaPluginHandle *plugin_handle
,gboolean resolve_pass
);
void
anjuta_plugin_handle_unresolve_dependencies
(AnjutaPluginHandle *plugin_handle
);
“about”
property “about” gchar *
About description of the plugin.
Flags: Read
Default value: NULL
“can-load”
property “can-load” gboolean
If the plugin can be loaded.
Flags: Read
Default value: FALSE
“can-unload”
property “can-unload” gboolean
If the plugin can be unloaded.
Flags: Read
Default value: TRUE
“checked”
property “checked” gboolean
If the plugin is checked in UI.
Flags: Read
Default value: FALSE
“dependency-names”
property “dependency-names” gpointer
Plugin dependency names listed in oaf file.
Flags: Read
“icon-path”
property “icon-path” gchar *
Icon path of the plugin.
Flags: Read
Default value: NULL
“language”
property “language” gchar *
Language used to write the plugin.
Flags: Read
Default value: NULL
“resident”
property “resident” gboolean
If the plugin cannot be unloaded.
Flags: Read
Default value: FALSE
“resolve-pass”
property “resolve-pass” gint
Dependency resolution pass.
Flags: Read
Default value: 0