Fix a few typos in NEWS
[geany-mirror.git] / src / pluginutils.c
blob35271a8d65ef542809254d866a2b4fa56f39fff4
1 /*
2 * pluginutils.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2009-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
5 * Copyright 2009-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /** @file pluginutils.h
23 * Plugin utility functions.
24 * These functions all take the @ref geany_plugin symbol as their first argument. */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #ifdef HAVE_PLUGINS
32 #include "pluginutils.h"
34 #include "app.h"
35 #include "geanyobject.h"
36 #include "plugindata.h"
37 #include "pluginprivate.h"
38 #include "plugins.h"
39 #include "support.h"
40 #include "toolbar.h"
41 #include "ui_utils.h"
42 #include "utils.h"
45 /** Inserts a toolbar item before the Quit button, or after the previous plugin toolbar item.
46 * A separator is added on the first call to this function, and will be shown when @a item is
47 * shown; hidden when @a item is hidden.
48 * @note You should still destroy @a item yourself, usually in @ref plugin_cleanup().
49 * @param plugin Must be @ref geany_plugin.
50 * @param item The item to add. */
51 GEANY_API_SYMBOL
52 void plugin_add_toolbar_item(GeanyPlugin *plugin, GtkToolItem *item)
54 GtkToolbar *toolbar = GTK_TOOLBAR(main_widgets.toolbar);
55 gint pos;
56 GeanyAutoSeparator *autosep;
58 g_return_if_fail(plugin);
59 autosep = &plugin->priv->toolbar_separator;
61 if (!autosep->widget)
63 GtkToolItem *sep;
65 pos = toolbar_get_insert_position();
67 sep = gtk_separator_tool_item_new();
68 gtk_toolbar_insert(toolbar, sep, pos);
69 autosep->widget = GTK_WIDGET(sep);
71 toolbar_item_ref(sep);
73 else
75 pos = gtk_toolbar_get_item_index(toolbar, GTK_TOOL_ITEM(autosep->widget));
76 g_return_if_fail(pos >= 0);
79 gtk_toolbar_insert(toolbar, item, pos + autosep->item_count + 1);
80 toolbar_item_ref(item);
82 /* hide the separator widget if there are no toolbar items showing for the plugin */
83 ui_auto_separator_add_ref(autosep, GTK_WIDGET(item));
87 /** Ensures that a plugin's module (*.so) will never be unloaded.
88 * This is necessary if you register new GTypes in your plugin, e.g. when using own classes
89 * using the GObject system.
91 * @param plugin Must be @ref geany_plugin.
93 * @since 0.16
95 GEANY_API_SYMBOL
96 void plugin_module_make_resident(GeanyPlugin *plugin)
98 g_return_if_fail(plugin);
100 g_module_make_resident(plugin->priv->module);
104 /** Connects a signal which will be disconnected on unloading the plugin, to prevent a possible segfault.
105 * @param plugin Must be @ref geany_plugin.
106 * @param object Object to connect to, or @c NULL when using @link pluginsignals.c Geany signals @endlink.
107 * @param signal_name The name of the signal. For a list of available
108 * signals, please see the @link pluginsignals.c Signal documentation @endlink.
109 * @param after Set to @c TRUE to call your handler after the main signal handlers have been called
110 * (if supported by @a signal_name).
111 * @param callback The function to call when the signal is emitted.
112 * @param user_data The user data passed to the signal handler.
113 * @see plugin_callbacks.
115 * @warning Before version 1.25 (API < 218),
116 * this should only be used on objects that outlive the plugin, never on
117 * objects that will get destroyed before the plugin is unloaded. For objects
118 * created and destroyed by the plugin, you can simply use @c g_signal_connect(),
119 * since all handlers are disconnected when the object is destroyed anyway.
120 * For objects that may or may not outlive the plugin (like @link GeanyEditor.sci
121 * a document's @c ScintillaObject @endlink, which is destroyed when the document
122 * is closed), you currently have to manually handle both situations, when the
123 * plugin is unloaded before the object is destroyed (and then, you have to
124 * disconnect the signal on @c plugin_cleanup()), and when the object is destroyed
125 * during the plugin's lifetime (in which case you cannot and should not disconnect
126 * manually in @c plugin_cleanup() since it already has been disconnected and the
127 * object has been destroyed), and disconnect yourself or not as appropriate.
128 * @note Since version 1.25 (API >= 218), the object lifetime is watched and so the above
129 * restriction does not apply. However, for objects destroyed by the plugin,
130 * @c g_signal_connect() is safe and has lower overhead. */
131 GEANY_API_SYMBOL
132 void plugin_signal_connect(GeanyPlugin *plugin,
133 GObject *object, const gchar *signal_name, gboolean after,
134 GCallback callback, gpointer user_data)
136 gulong id;
137 SignalConnection sc;
139 g_return_if_fail(plugin != NULL);
140 g_return_if_fail(object == NULL || G_IS_OBJECT(object));
142 if (!object)
143 object = geany_object;
145 id = after ?
146 g_signal_connect_after(object, signal_name, callback, user_data) :
147 g_signal_connect(object, signal_name, callback, user_data);
149 if (!plugin->priv->signal_ids)
150 plugin->priv->signal_ids = g_array_new(FALSE, FALSE, sizeof(SignalConnection));
152 sc.object = object;
153 sc.handler_id = id;
154 g_array_append_val(plugin->priv->signal_ids, sc);
156 /* watch the object lifetime to nuke our pointers to it */
157 plugin_watch_object(plugin->priv, object);
161 typedef struct PluginSourceData
163 Plugin *plugin;
164 GList list_link; /* element of plugin->sources cointaining this GSource */
165 GSourceFunc function;
166 gpointer user_data;
167 } PluginSourceData;
170 /* prepend psd->list_link to psd->plugin->sources */
171 static void psd_register(PluginSourceData *psd, GSource *source)
173 psd->list_link.data = source;
174 psd->list_link.prev = NULL;
175 psd->list_link.next = psd->plugin->sources;
176 if (psd->list_link.next)
177 psd->list_link.next->prev = &psd->list_link;
178 psd->plugin->sources = &psd->list_link;
182 /* removes psd->list_link from psd->plugin->sources */
183 static void psd_unregister(PluginSourceData *psd)
185 if (psd->list_link.next)
186 psd->list_link.next->prev = psd->list_link.prev;
187 if (psd->list_link.prev)
188 psd->list_link.prev->next = psd->list_link.next;
189 else /* we were the first of the list, update the plugin->sources pointer */
190 psd->plugin->sources = psd->list_link.next;
194 static void on_plugin_source_destroy(gpointer data)
196 PluginSourceData *psd = data;
198 psd_unregister(psd);
199 g_slice_free1(sizeof *psd, psd);
203 static gboolean on_plugin_source_callback(gpointer data)
205 PluginSourceData *psd = data;
207 return psd->function(psd->user_data);
211 /* adds the given source to the default GMainContext and to the list of sources to remove at plugin
212 * unloading time */
213 static guint plugin_source_add(GeanyPlugin *plugin, GSource *source, GSourceFunc func, gpointer data)
215 guint id;
216 PluginSourceData *psd = g_slice_alloc(sizeof *psd);
218 psd->plugin = plugin->priv;
219 psd->function = func;
220 psd->user_data = data;
222 g_source_set_callback(source, on_plugin_source_callback, psd, on_plugin_source_destroy);
223 psd_register(psd, source);
224 id = g_source_attach(source, NULL);
225 g_source_unref(source);
227 return id;
231 /** Adds a GLib main loop timeout callback that will be removed when unloading the plugin,
232 * preventing it to run after the plugin has been unloaded (which may lead to a segfault).
234 * @param plugin Must be @ref geany_plugin.
235 * @param interval The time between calls to the function, in milliseconds.
236 * @param function The function to call after the given timeout.
237 * @param data The user data passed to the function.
238 * @return the ID of the event source (you generally won't need it, or better use g_timeout_add()
239 * directly if you want to manage this event source manually).
241 * @see g_timeout_add()
242 * @since 0.21, plugin API 205.
244 GEANY_API_SYMBOL
245 guint plugin_timeout_add(GeanyPlugin *plugin, guint interval, GSourceFunc function, gpointer data)
247 return plugin_source_add(plugin, g_timeout_source_new(interval), function, data);
251 /** Adds a GLib main loop timeout callback that will be removed when unloading the plugin,
252 * preventing it to run after the plugin has been unloaded (which may lead to a segfault).
254 * @param plugin Must be @ref geany_plugin.
255 * @param interval The time between calls to the function, in seconds.
256 * @param function The function to call after the given timeout.
257 * @param data The user data passed to the function.
258 * @return the ID of the event source (you generally won't need it, or better use
259 * g_timeout_add_seconds() directly if you want to manage this event source manually).
261 * @see g_timeout_add_seconds()
262 * @since 0.21, plugin API 205.
264 GEANY_API_SYMBOL
265 guint plugin_timeout_add_seconds(GeanyPlugin *plugin, guint interval, GSourceFunc function,
266 gpointer data)
268 return plugin_source_add(plugin, g_timeout_source_new_seconds(interval), function, data);
272 /** Adds a GLib main loop IDLE callback that will be removed when unloading the plugin, preventing
273 * it to run after the plugin has been unloaded (which may lead to a segfault).
275 * @param plugin Must be @ref geany_plugin.
276 * @param function The function to call in IDLE time.
277 * @param data The user data passed to the function.
278 * @return the ID of the event source (you generally won't need it, or better use g_idle_add()
279 * directly if you want to manage this event source manually).
281 * @see g_idle_add()
282 * @since 0.21, plugin API 205.
284 GEANY_API_SYMBOL
285 guint plugin_idle_add(GeanyPlugin *plugin, GSourceFunc function, gpointer data)
287 return plugin_source_add(plugin, g_idle_source_new(), function, data);
291 /** Sets up or resizes a keybinding group for the plugin.
292 * You should then call keybindings_set_item() for each keybinding in the group.
293 * @param plugin Must be @ref geany_plugin.
294 * @param section_name Name used in the configuration file, such as @c "html_chars".
295 * @param count Number of keybindings for the group.
296 * @param callback Group callback, or @c NULL if you only want individual keybinding callbacks.
297 * @return The plugin's keybinding group.
298 * @since 0.19. */
299 GEANY_API_SYMBOL
300 GeanyKeyGroup *plugin_set_key_group(GeanyPlugin *plugin,
301 const gchar *section_name, gsize count, GeanyKeyGroupCallback callback)
303 Plugin *priv = plugin->priv;
305 priv->key_group = keybindings_set_group(priv->key_group, section_name,
306 priv->info.name, count, callback);
307 return priv->key_group;
311 static void on_pref_btn_clicked(gpointer btn, Plugin *p)
313 p->configure_single(main_widgets.window);
317 static GtkWidget *create_pref_page(Plugin *p, GtkWidget *dialog)
319 GtkWidget *page = NULL; /* some plugins don't have prefs */
321 if (p->configure)
323 page = p->configure(GTK_DIALOG(dialog));
325 if (! GTK_IS_WIDGET(page))
327 geany_debug("Invalid widget returned from plugin_configure() in plugin \"%s\"!",
328 p->info.name);
329 return NULL;
331 else
333 GtkWidget *align = gtk_alignment_new(0.5, 0.5, 1, 1);
335 gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
336 gtk_container_add(GTK_CONTAINER(align), page);
337 page = gtk_vbox_new(FALSE, 0);
338 gtk_box_pack_start(GTK_BOX(page), align, TRUE, TRUE, 0);
341 else if (p->configure_single)
343 GtkWidget *align = gtk_alignment_new(0.5, 0.5, 0, 0);
344 GtkWidget *btn;
346 gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
348 btn = gtk_button_new_from_stock(GTK_STOCK_PREFERENCES);
349 g_signal_connect(btn, "clicked", G_CALLBACK(on_pref_btn_clicked), p);
350 gtk_container_add(GTK_CONTAINER(align), btn);
351 page = align;
353 return page;
357 /* multiple plugin configure dialog
358 * current_plugin can be NULL */
359 static void configure_plugins(Plugin *current_plugin)
361 GtkWidget *dialog, *vbox, *nb;
362 GList *node;
363 gint cur_page = -1;
365 dialog = gtk_dialog_new_with_buttons(_("Configure Plugins"),
366 GTK_WINDOW(main_widgets.window), GTK_DIALOG_DESTROY_WITH_PARENT,
367 GTK_STOCK_APPLY, GTK_RESPONSE_APPLY,
368 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
369 GTK_STOCK_OK, GTK_RESPONSE_OK, NULL);
370 gtk_widget_set_name(dialog, "GeanyDialog");
372 vbox = ui_dialog_vbox_new(GTK_DIALOG(dialog));
373 nb = gtk_notebook_new();
374 gtk_notebook_set_scrollable(GTK_NOTEBOOK(nb), TRUE);
375 gtk_box_pack_start(GTK_BOX(vbox), nb, TRUE, TRUE, 0);
377 foreach_list(node, active_plugin_list)
379 Plugin *p = node->data;
380 GtkWidget *page = create_pref_page(p, dialog);
382 if (page)
384 GtkWidget *label = gtk_label_new(p->info.name);
385 gint n = gtk_notebook_append_page(GTK_NOTEBOOK(nb), page, label);
387 if (p == current_plugin)
388 cur_page = n;
391 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(nb)))
393 gtk_widget_show_all(vbox);
394 if (cur_page >= 0)
395 gtk_notebook_set_current_page(GTK_NOTEBOOK(nb), cur_page);
397 /* run the dialog */
398 while (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_APPLY);
400 else
401 utils_beep();
403 gtk_widget_destroy(dialog);
407 /** Shows the plugin's configure dialog.
408 * The plugin must implement one of the plugin_configure() or plugin_configure_single() symbols.
409 * @param plugin Must be @ref geany_plugin.
410 * @since 0.19. */
411 /* if NULL, show all plugins */
412 GEANY_API_SYMBOL
413 void plugin_show_configure(GeanyPlugin *plugin)
415 Plugin *p;
417 if (!plugin)
419 configure_plugins(NULL);
420 return;
422 p = plugin->priv;
424 if (p->configure)
425 configure_plugins(p);
426 else
428 g_return_if_fail(p->configure_single);
429 p->configure_single(main_widgets.window);
434 struct BuilderConnectData
436 gpointer user_data;
437 GeanyPlugin *plugin;
441 static void connect_plugin_signals(GtkBuilder *builder, GObject *object,
442 const gchar *signal_name, const gchar *handler_name,
443 GObject *connect_object, GConnectFlags flags, gpointer user_data)
445 gpointer symbol = NULL;
446 struct BuilderConnectData *data = user_data;
448 if (!g_module_symbol(data->plugin->priv->module, handler_name, &symbol))
450 g_warning("Failed to locate signal handler for '%s': %s",
451 signal_name, g_module_error());
452 return;
455 plugin_signal_connect(data->plugin, object, signal_name, FALSE,
456 G_CALLBACK(symbol) /*ub?*/, data->user_data);
461 * Allows auto-connecting Glade/GtkBuilder signals in plugins.
463 * When a plugin uses GtkBuilder to load some UI from file/string,
464 * the gtk_builder_connect_signals() function is unable to automatically
465 * connect to the plugin's signal handlers. A plugin could itself use
466 * the gtk_builder_connect_signals_full() function to automatically
467 * connect to the signal handler functions by loading it's GModule
468 * and retrieving pointers to the handler functions, but rather than
469 * each plugin having to do that, this function handles it automatically.
471 * @code
472 * ...
473 * GeanyPlugin *geany_plugin;
475 * G_MODULE_EXPORT void
476 * myplugin_button_clicked(GtkButton *button, gpointer user_data)
478 * g_print("Button pressed\n");
481 * void plugin_init(GeanyData *data)
483 * GtkBuilder *builder = gtk_builder_new();
484 * gtk_builder_add_from_file(builder, "gui.glade", NULL);
485 * plugin_builder_connect_signals(geany_plugin, builder, NULL);
486 * ...
488 * @endcode
490 * @note It's important that you prefix your callback handlers with
491 * a plugin-specific prefix to avoid clashing with other plugins since
492 * the function symbols will be exported process-wide.
494 * @param plugin Must be @ref geany_plugin.
495 * @param builder The GtkBuilder to connect signals with.
496 * @param user_data User data to pass to the connected signal handlers.
498 * @since 1.24, plugin API 217.
500 GEANY_API_SYMBOL
501 void plugin_builder_connect_signals(GeanyPlugin *plugin,
502 GtkBuilder *builder, gpointer user_data)
504 struct BuilderConnectData data = { NULL };
506 g_return_if_fail(plugin != NULL && plugin->priv != NULL);
507 g_return_if_fail(plugin->priv->module != NULL);
508 g_return_if_fail(GTK_IS_BUILDER(builder));
510 data.user_data = user_data;
511 data.plugin = plugin;
513 gtk_builder_connect_signals_full(builder, connect_plugin_signals, &data);
517 #endif