| Top |
Functions
Properties
| 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 |
Description
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.
Functions
anjuta_plugin_handle_new ()
AnjutaPluginHandle *
anjuta_plugin_handle_new (const gchar *plugin_desc_path);
anjuta_plugin_handle_get_id ()
const char *
anjuta_plugin_handle_get_id (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_name ()
const char *
anjuta_plugin_handle_get_name (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_about ()
const char *
anjuta_plugin_handle_get_about (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_icon_path ()
const char *
anjuta_plugin_handle_get_icon_path (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_path ()
const char *
anjuta_plugin_handle_get_path (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_user_activatable ()
gboolean
anjuta_plugin_handle_get_user_activatable
(AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_resident ()
gboolean
anjuta_plugin_handle_get_resident (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_language ()
const char *
anjuta_plugin_handle_get_language (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_description ()
AnjutaPluginDescription *
anjuta_plugin_handle_get_description (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_dependency_names ()
GList *
anjuta_plugin_handle_get_dependency_names
(AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_dependencies ()
GHashTable *
anjuta_plugin_handle_get_dependencies (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_dependents ()
GHashTable *
anjuta_plugin_handle_get_dependents (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_interfaces ()
GList *
anjuta_plugin_handle_get_interfaces (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_can_load ()
gboolean
anjuta_plugin_handle_get_can_load (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_can_unload ()
gboolean
anjuta_plugin_handle_get_can_unload (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_checked ()
gboolean
anjuta_plugin_handle_get_checked (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_get_resolve_pass ()
gint
anjuta_plugin_handle_get_resolve_pass (AnjutaPluginHandle *plugin_handle);
anjuta_plugin_handle_set_can_load ()
void anjuta_plugin_handle_set_can_load (AnjutaPluginHandle *plugin_handle,gboolean can_load);
anjuta_plugin_handle_set_can_unload ()
void anjuta_plugin_handle_set_can_unload (AnjutaPluginHandle *plugin_handle,gboolean can_unload);
anjuta_plugin_handle_set_checked ()
void anjuta_plugin_handle_set_checked (AnjutaPluginHandle *plugin_handle,gboolean checked);
anjuta_plugin_handle_set_resolve_pass ()
void anjuta_plugin_handle_set_resolve_pass (AnjutaPluginHandle *plugin_handle,gboolean resolve_pass);
anjuta_plugin_handle_unresolve_dependencies ()
void
anjuta_plugin_handle_unresolve_dependencies
(AnjutaPluginHandle *plugin_handle);
Property Details
The “about” property
“about” gchar *
About description of the plugin.
Flags: Read
Default value: NULL
The “can-load” property
“can-load” gboolean
If the plugin can be loaded.
Flags: Read
Default value: FALSE
The “can-unload” property
“can-unload” gboolean
If the plugin can be unloaded.
Flags: Read
Default value: TRUE
The “checked” property
“checked” gboolean
If the plugin is checked in UI.
Flags: Read
Default value: FALSE
The “dependency-names” property
“dependency-names” gpointer
Plugin dependency names listed in oaf file.
Flags: Read
The “icon-path” property
“icon-path” gchar *
Icon path of the plugin.
Flags: Read
Default value: NULL
The “language” property
“language” gchar *
Language used to write the plugin.
Flags: Read
Default value: NULL
The “resident” property
“resident” gboolean
If the plugin cannot be unloaded.
Flags: Read
Default value: FALSE
The “resolve-pass” property
“resolve-pass” gint
Dependency resolution pass.
Flags: Read
Default value: 0
