| gedit Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Properties | ||||
Synopsis
GeditPlugin; void gedit_plugin_activate (GeditPlugin *plugin,GeditWindow *window); void gedit_plugin_deactivate (GeditPlugin *plugin,GeditWindow *window); void gedit_plugin_update_ui (GeditPlugin *plugin,GeditWindow *window); gboolean gedit_plugin_is_configurable (GeditPlugin *plugin); GtkWidget * gedit_plugin_create_configure_dialog (GeditPlugin *plugin); #define GEDIT_PLUGIN_REGISTER_TYPE (PluginName, plugin_name)
Properties
"data-dir" gchar* : Read "data-dir-name" gchar* : Write / Construct Only "install-dir" gchar* : Read / Write / Construct Only
Details
gedit_plugin_activate ()
void gedit_plugin_activate (GeditPlugin *plugin,GeditWindow *window);
Activates the plugin.
|
a GeditPlugin |
|
a GeditWindow |
gedit_plugin_deactivate ()
void gedit_plugin_deactivate (GeditPlugin *plugin,GeditWindow *window);
Deactivates the plugin.
|
a GeditPlugin |
|
a GeditWindow |
gedit_plugin_update_ui ()
void gedit_plugin_update_ui (GeditPlugin *plugin,GeditWindow *window);
Triggers an update of the user interface to take into account state changes caused by the plugin.
|
a GeditPlugin |
|
a GeditWindow |
gedit_plugin_is_configurable ()
gboolean gedit_plugin_is_configurable (GeditPlugin *plugin);
Whether the plugin is configurable.
|
a GeditPlugin |
Returns : |
TRUE if the plugin is configurable: |
gedit_plugin_create_configure_dialog ()
GtkWidget * gedit_plugin_create_configure_dialog
(GeditPlugin *plugin);
Creates the configure dialog widget for the plugin.
|
a GeditPlugin |
Returns : |
the configure dialog widget for the plugin. |
Property Details
The "data-dir" property
"data-dir" gchar* : Read
The full path of the directory where the plugin should look for its data files.
Default value: NULL
The "data-dir-name" property
"data-dir-name" gchar* : Write / Construct Only
The basename of the directory where the plugin should look for its data files.
Default value: NULL
The "install-dir" property
"install-dir" gchar* : Read / Write / Construct Only
The directory where the plugin is installed.
Default value: NULL
