Remove non-existing language from 1.34 translation NEWS
[geany-mirror.git] / doc / plugins.dox
blob8918646d473198d0600d00431c940eb5ebb8fc34
1 /*
2  * plugins.dox - this file is part of Geany, a fast and lightweight IDE
3  *
4  * Copyright 2008-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5  * Copyright 2008-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
6  * Copyright 2009-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
7  * Copyright 2014 Matthew Brush <matt(at)geany(dot)org>
8  * Copyright 2015 Thomas Martitz <kugel(at)rockbox(dot)org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  *
24  * This file contains additional plugin documentation like the signal system
25  * and a small howto. It is best viewed when filetype is set to C or C++.
26  */
29 /**
31 @mainpage Geany Plugin API Documentation
33 @author Enrico Tröger, Nick Treleaven, Frank Lanitz, Matthew Brush
35 @section Intro
36 This is the Geany API documentation. It should be considered work in progress.
37 We will try to document as many functions and structs as possible.
39 @warning Do not use any symbol not in the documentation - it may change.
40 @warning Except for exceptions stated in the documentation for geany_load_module(), no API function
41 may be called if the plugin is not enabled (between the calls to their GeanyFuncs::init and
42 GeanyFuncs::cleanup functions).
44 @section pluginsupport Plugin Support
45 - @link howto Plugin HowTo @endlink - get started
46 - @ref proxy
47 - @ref legacy
48 - @link plugindata.h Plugin Datatypes and Macros @endlink
49 - @link pluginsignals.c Plugin Signals @endlink
50 - @link pluginutils.h Plugin Utility Functions @endlink
51 - @link guidelines Plugin Writing Guidelines @endlink
52 - <b>plugins/demoplugin.c</b> - in Geany's source, bigger than the howto example
54 @section common Common API files
55 - @link dialogs.h @endlink
56 - @link document.h @endlink
57 - @link editor.h @endlink
58 - @link filetypes.h @endlink
59 - @link keybindings.h @endlink
60 - @link msgwindow.h @endlink
61 - @link project.h @endlink
62 - @link sciwrappers.h Scintilla Wrapper Functions @endlink
63 - @link spawn.h Spawning programs @endlink
64 - @link stash.h Stash Pref/Setting Functions @endlink
65 - @link utils.h General Utility Functions @endlink
66 - @link ui_utils.h Widget Utility Functions @endlink
68 @section More
69 - All API functions and types - see <b>Files</b> link at the top
70 - Deprecated symbols - see <b>Related Pages</b> link at the top
72 @note See the HACKING file for information about developing the plugin API and
73 other useful notes.
75 @page guidelines Plugin Writing Guidelines
77 @section intro_guidelines Introduction
79 The following hints and guidelines are only recommendations. Nobody is forced to follow
80 them at all.
82 @section general General notes
84 @subsection ideas Getting a plugin idea
86 If you want to write a plugin but don't know yet what it should do, have a look at
87 https://www.geany.org/Support/PluginWishlist to get an idea about what users wish.
89 @subsection code Managing the source code
91 For authors of plugins for Geany, we created a dedicated @a geany-plugins project
92 on Sourceforge and GitHub to ease development of plugins and help new authors.
93 All information about this project you can find at http://plugins.geany.org/
95 To add a new plugin to this project, get in touch with the people on the
96 geany-devel-mailing list and create a fork of the geany-plugins project
97 at https://github.com/geany/geany-plugins.
98 Beside of adding a new plugin, geany-devel-mailing list is also the place
99 to discuss development related questions.
100 However, once you have done your fork of geany-plugins you can develop
101 your plugin until you think it is the right time to publish it. At this point,
102 create a pull request for adding your patch set into the master branch of the main
103 geany-plugins repository.
105 Of course, you don't need to use GitHub - any Git is fine. But GitHub
106 is making it way easier for review, merging and get in touch with you for
107 comments.
109 If you don't want your plugin to be part of the geany-plugins project it is also fine.
110 Just skip the part about forking geany-plugins and sending a pull request.
111 In this case it is of course also a good idea to post some kind of announcement
112 to geany-devel and maybe to the main geany mailing list -- it's up to you.
113 You can also ask for your plugin to be listed on the http://plugins.geany.org/
114 website as a third party plugin, helping Geany user to know about your plugin.
116 At time of writing, there are some plugins already available in the
117 repositories. Feel free to use any of these plugins as a start for your own,
118 maybe by copying the directory structure and the autotools files
119 (Makefile.am, configure.in, ...). Most of the available plugins are also ready for
120 i18n support, just for reference.
122 We encourage authors using this service to only commit changes to their
123 own plugin and not to others' plugins. Instead just send patches to
124 geany-devel at uvena.de or the plugin author directly.
126 @section paths Installation paths
128 - The plugin binary (@c pluginname.so) should be installed in Geany's libdir. This is
129   necessary so that Geany can find the plugin.
130   An easy way to retrieve Geany's libdir is to use the pkg-config tool, e.g. @code
131   `$PKG_CONFIG --variable=libdir geany`/ geany
132   @endcode
133 - If your plugin creates other binary files like helper programs or helper libraries,
134   they should go into @c $prefix/bin (for programs, ideally prefixed with @a geany),
135   additional libraries should be installed in Geany's libdir, maybe in a subdirectory.
136 - Plugins should install their documentation files (README, NEWS, ChangeLog, licences and
137   other documentation files) into the common documentation directory
138   @c $prefix/share/doc/geany-plugins/$pluginname/
139 - Translation files should be installed normally into @c $prefix/share/locale. There is no
140   need to use Geany's translation directory. To set up translation support properly and
141   for additional information, see main_locale_init().
142 - Do @a never install anything into a user's home directory like installing
143   the plugin binary in @c ~/.config/geany/plugins/.
146 @page howto Plugin HowTo
148 @section intro_howto Introduction
150 Since Geany 0.12 there is a plugin interface to extend Geany's functionality and
151 add new features. This document gives a brief overview about how to add new
152 plugins by writing a simple "Hello World" plugin in C or C++.
155 @section buildenv Build environment
157 To be able to write plugins for Geany, you need the source code and some development
158 packages for GTK and its dependencies. The following will only describe the way to compile and
159 build plugins on Unix-like systems [1].
160 If you already have the Geany source code and compiled it from them, you can skip the
161 following.
163 First you need to have Geany installed. Then install the development files for GTK
164 and its dependencies. The easiest way to do this is to use your distribution's package
165 management system, e.g. on Debian and Ubuntu systems you can use
166 @code apt-get install libgtk2.0-dev intltool @endcode
167 This will install all necessary files to be able to compile plugins for Geany. On other
168 distributions, the package names and commands to use may differ.
170 Basically, you are done at this point and could continue with writing the plugin code.
172 [1] For Windows, it is basically the same but you might have some more work on setting up
173 the general build environment (compiler, GTK development files, ...). This is described on
174 Geany's website at https://www.geany.org/Support/BuildingOnWin32.
176 @section helloworld "Hello World"
178 @note This section describes the new entry points for plugins introduced with Geany 1.26. A short
179 summary of the legacy entry points is given at page @ref legacy but they are deprecated should not
180 be used any more.
182 When writing a plugin you will find a couple of functions which are mandatory and some which can be
183 implemented optionally for implementing some useful features once your plugin becomes more
184 powerful. For example to provide a configuration or help dialog.
186 @subsection beginning First steps for any Plugin
188 You should start your plugin with including <geanyplugin.h> and exporting a function named @a
189 geany_load_module(). In this function you must fill in basic information that Geany uses to learn
190 more about your plugin and present it to the user. You also must define some hooks that enable
191 Geany to actually execute your code.
193 Please also do not forget about license headers which are by convention at the start of source
194 files. You can use templates provided by Geany to get started. Without a proper license it will be
195 difficult for packagers to pick up and distribute your plugin.
197 As mentioned above, start with the very fundamental header that gets you all goodies of Geany's
198 plugin API. @a geanyplugin.h includes all of the Geany API and also the necessary GTK header
199 files so there is no need to include @a gtk/gtk.h yourself. In fact it includes a utility header
200 that helps supporting GTK+2 and GTK+3 in the same source.
202 @code
203 #include <geanyplugin.h>
204 @endcode
206 @note If you use autoconf then config.h must be included even before that as usual.
208 Now you can go on and write your first lines for your new plugin. As mentioned before, you will
209 need to implement a couple of functions. The first mandatory one is @a geany_load_module(). Geany
210 uses the presence of this function to identify a library as a plugin. When Geany scans the
211 pre-defined and user-configured plugin directories, it will take a look at each shared library (or
212 DLL on Windows) to see if it exports a @a geany_load_module() symbol. Files lacking these will be
213 ignored. The second mandatory one is an initialization function that is only called when the plugin
214 becomes actually enabled (by the user or at startup).
216 @subsection register Registering a Plugin
218 Geany will always invoke this geany_load_module(), regardless of whether the user activates your
219 plugin. In fact its purpose to probe if the plugin should even be presented to the user. Therefore
220 you must use this function to register your plugin. Geany will pass a pointer to a GeanyPlugin
221 instance which acts as a unique handle to your plugin. Use this pointer for registering and later
222 API calls. It won't change for the life time of the plugin. Registering the plugin consists of a
223 number of steps:
225   1. Filling in GeanyPlugin::info with metadata that is shown to the user.
226     - @ref PluginInfo::name : The name of your plugin
227     - @ref PluginInfo::description : A brief description.
228     - @ref PluginInfo::version : The plugin's version.
229     - @ref PluginInfo::author : Your contact information, preferably in the form "Name <email>".
230     .
231     Filling in all of them is recommended to provide the best user experience, but only the name is
232     truly mandatory. Since all of the strings are shown to the user they should be human readable.
233   2. Filling in GeanyPlugin::funcs with function pointers that are called by Geany.
234     - @ref GeanyPluginFuncs::init : an initialization function
235     - @ref GeanyPluginFuncs::cleanup : a finalization function
236     - @ref GeanyPluginFuncs::configure : a function that provides configuration (optional)
237     - @ref GeanyPluginFuncs::help : a function that provides help (optional)
238     - @ref GeanyPluginFuncs::callbacks : a pointer to an array of PluginCallback (optional).
239     .
240     @a init and @a cleanup are mandatory, the other ones depend on how advanced your plugin is.
241     Furthermore, @a init is called on startup and when the user activates your plugin in the Plugin
242     Manager, and @a cleanup is called on exit and when the user deactivates it. So use these to do
243     advanced initialization and teardown as to not waste resources when the plugin is not even
244     enabled.
245   3. Actually registering by calling GEANY_PLUGIN_REGISTER() or GEANY_PLUGIN_REGISTER_FULL().
246    - Usually you should use GEANY_PLUGIN_REGISTER() to register your plugin, passing the
247     GeanyPlugin pointer that you received and filled out as above. GEANY_PLUGIN_REGISTER() also
248     takes the minimum API version number you want to support (see @ref versions for details). Please
249     also <b>check the return value</b>. Geany may refuse to load your plugin due to
250     incompatibilities, you should then abort any extra setup. GEANY_PLUGIN_REGISTER() is a macro
251     wrapping geany_plugin_register() which takes additional the API and ABI that you should not pass
252     manually.
253    - If you require a plugin-specific context or state to be passed to your GeanyPlugin::funcs then
254     use GEANY_PLUGIN_REGISTER_FULL() to register. This one takes additional parameters for adding
255     user data to your plugin. That user data pointer is subsequently passed back to your functions.
256     It allows, for example, to set instance pointer to objects in case your plugin isn't written in
257     pure C, enabling you to use member functions as plugin functions. You may also set such data
258     later on, for example in your @ref GeanyPluginFuncs::init routine to defer costly allocations
259     to when the plugin is actually activated by the user. However, you then have to call
260     geany_plugin_set_data().
263 @subsection versions On API and ABI Versions
264 As previously mentioned @a geany_plugin_register() takes a number of versions as arguments:
265   1. api_version
266   2. min_api_version
267   3. abi_version
269 These refer to Geany's versioning scheme to manage plugin compatibility. The following rules apply:
270   - Plugins are compiled against a specific Geany version on the build machine. This version of
271     Geany has specific ABI and API versions, which will be compiled into the plugin. Both are
272     managed automatically, by calling GEANY_PLUGIN_REGISTER().
273   - The Geany version that loads the plugin may be different, possibly even have different API and
274     ABI versions.
275   - The ABI version is the primary plugin compatibility criteria. The ABI version of the running
276     Geany and the one that's compiled into the plugin must match exactly (==). In case of mismatch,
277     the affected plugins need to be recompiled (generally without source code changes) against the
278     running Geany. The ABI is usually stable even across multiple releases of Geany.
279   - The API version is secondary. It doesn't have to match exactly, however a plugin can report
280     a minimum API version that it requires to run. Geany will check if its own API is larger than
281     that (>=) and will otherwise refuse to load the plugin. The API version is incremented when
282     functions or variables are added to the API which often happens more than once within a release
283     cycle.
284   - The API version the plugin is compiled against is still relevant for enabling compatibility
285     code inside Geany (for cases where incrementing the ABI version could be avoided).
287 Instead of calling geany_plugin_register() directly it is very highly recommended to use
288 GEANY_PLUGIN_REGISTER(). This is a convenient way to pass Geany's current API and ABI versions
289 without requiring future code changes whenever either one changes. In fact, the promise that
290 plugins need to be just recompiled on ABI change can hold if the plugins use this macro. You still
291 want to pass the API version needed at minimum to run your plugin. The value is defined in
292 plugindata.h by @ref GEANY_API_VERSION. In most cases this should be your minimum. Nevertheless when
293 setting this value, you should choose the lowest possible version here to make the plugin
294 compatible with a bigger number of versions of Geany. The absolute minimum is 225 which introduced
295 the new plugin entry points.
297 To increase your flexibility the API version of the running Geany is passed to geany_load_module().
298 You can use this information to toggle API-specific code. This comes handy, for example to enable
299 optional code that requires a recent API version without raising your minimum required API version.
300 This enables running the plugin against more Geany versions, although perhaps at reduced
301 functionality.
303 @subsection example Example
305 Going back to our "Hello World" plugin here is example code that properly adds the HelloWorld
306 plugin to Geany.
308 @code
309 /* License blob */
311 #include <geanyplugin.h>
314 static gboolean hello_init(GeanyPlugin *plugin, gpointer pdata)
316         printf("Hello World from plugin!\n");
318         /* Perform advanced set up here */
320         return TRUE;
324 static void hello_cleanup(GeanyPlugin *plugin, gpointer pdata)
326         printf("Bye World :-(\n");
330 G_MODULE_EXPORT
331 void geany_load_module(GeanyPlugin *plugin)
333         /* Step 1: Set metadata */
334         plugin->info->name = "HelloWorld";
335         plugin->info->description = "Just another tool to say hello world";
336         plugin->info->version = "1.0";
337         plugin->info->author = "John Doe <john.doe@example.org>";
339         /* Step 2: Set functions */
340         plugin->funcs->init = hello_init;
341         plugin->funcs->cleanup = hello_cleanup;
343         /* Step 3: Register! */
344         GEANY_PLUGIN_REGISTER(plugin, 225);
345         /* alternatively:
346         GEANY_PLUGIN_REGISTER_FULL(plugin, 225, data, free_func); */
348 @endcode
350 If you think this plugin seems not to implement any functionality right now and only wastes
351 some memory, you are right. But it should compile and load/unload in Geany nicely.
352 Now you have the very basic layout of a new plugin. Great, isn't it?
354 If you would rather write the plugin in C++, you can do that by marking @a geany_load_module()
355 as <c> extern "C" </c>, for example:
357 @code
359 extern "C" void geany_load_module(GeanyPlugin *plugin)
363 @endcode
365 You can also create an instance of a class and set that as data pointer (with
366 GEANY_PLUGIN_REGISTER_FULL()). With small wrappers that shuffle the parameters you can even use
367 member functions for @ref GeanyPlugin::funcs etc.
369 @section building Building
371 First make plugin.o:
373 @code gcc -c plugin.c -fPIC `pkg-config --cflags geany` @endcode
375 Then make the plugin library plugin.so (or plugin.dll on Windows):
377 @code gcc plugin.o -o plugin.so -shared `pkg-config --libs geany` @endcode
379 If all went OK, put the library into one of the paths Geany looks for plugins,
380 e.g. $prefix/lib/geany. See @ref paths "Installation paths" for details.
382 If you are writing the plugin in C++, then you will need to use your C++
383 compiler here, for example @c g++.
385 @section realfunc Adding functionality
387 Let's go on and implement some real functionality.
389 As mentioned before, GeanyPluginFuncs::init() will be called when the plugin is activated by
390 Geany. So it should implement everything that needs to be done during startup. In this case, we'd
391 like to add a menu item to Geany's Tools menu which runs a dialog printing "Hello World".
393 @code
394 static gboolean hello_init(GeanyPlugin *plugin, gpointer pdata)
396         GtkWidget *main_menu_item;
398         // Create a new menu item and show it
399         main_menu_item = gtk_menu_item_new_with_mnemonic("Hello World");
400         gtk_widget_show(main_menu_item);
402         // Attach the new menu item to the Tools menu
403         gtk_container_add(GTK_CONTAINER(plugin->geany_data->main_widgets->tools_menu),
404                 main_menu_item);
406         // Connect the menu item with a callback function
407         // which is called when the item is clicked
408         g_signal_connect(main_menu_item, "activate",
409                 G_CALLBACK(item_activate_cb), NULL);
411         return TRUE;
413 @endcode
415 This will add an item to the Tools menu and connect this item to a function which implements what
416 should be done when the menu item is activated by the user. This is done by g_signal_connect(). The
417 Tools menu can be accessed with plugin->geany_data->main_widgets->tools_menu. The structure
418 GeanyMainWidgets contains pointers to all main GUI elements in Geany.
420 Geany has a simple API for showing message dialogs. So our function contains
421 only a few lines:
422 @code
423 static void item_activate_cb(GtkMenuItem *menuitem, gpointer user_data)
425         dialogs_show_msgbox(GTK_MESSAGE_INFO, "Hello World");
427 @endcode
429 For the moment you don't need to worry about the parameters of that function.
431 Now we need to clean up properly when the plugin is unloaded.
433 To remove the menu item from the Tools menu you can use gtk_widget_destroy().
435 First you should add gtk_widget_destroy() to your GeanyPluginFuncs::cleanup() function. The
436 argument for gtk_widget_destroy() is the widget object you created earlier in
437 GeanyPluginFuncs::init(). To be able to access this pointer in GeanyPluginFuncs::cleanup() you can
438 use geany_plugin_set_data() to set plugin-defined data pointer to the widget. Alternatively, you
439 can store the pointer in some global variable so its visibility will increase and it can be
440 accessed in all functions.
442 @code
443 /* alternative: global variable:
444 static GtkWidget *main_menu_item;
446 // ...
447 static gboolean hello_init(GeanyPlugin *plugin, gpointer pdata)
449         GtkWidget *main_menu_item;
451         // Create a new menu item and show it
452         main_menu_item = gtk_menu_item_new_with_mnemonic("Hello World");
453         gtk_widget_show(main_menu_item);
454 // ...
455         geany_plugin_set_data(plugin, main_menu_item, NULL);
456         return TRUE;
459 static void hello_cleanup(GeanyPlugin *plugin, gpointer pdata)
461         GtkWidget *main_menu_item = (GtkWidget *) pdata;
462 // ...
463         gtk_widget_destroy(main_menu_item);
465 @endcode
467 This will ensure your menu item is removed from the Tools menu as well as from
468 memory once your plugin is unloaded, so you don't leave any memory leaks.
469 Once this is done, your first plugin is ready. Congratulations!
471 @section listing Complete listing (without comments)
473 @code
475 #include <geanyplugin.h>
477 static void item_activate_cb(GtkMenuItem *menuitem, gpointer user_data)
479         dialogs_show_msgbox(GTK_MESSAGE_INFO, "Hello World");
483 static gboolean hello_init(GeanyPlugin *plugin, gpointer pdata)
485         GtkWidget *main_menu_item;
487         // Create a new menu item and show it
488         main_menu_item = gtk_menu_item_new_with_mnemonic("Hello World");
489         gtk_widget_show(main_menu_item);
490         gtk_container_add(GTK_CONTAINER(plugin->geany_data->main_widgets->tools_menu),
491                         main_menu_item);
492         g_signal_connect(main_menu_item, "activate",
493                         G_CALLBACK(item_activate_cb), NULL);
495         geany_plugin_set_data(plugin, main_menu_item, NULL);
496         return TRUE;
500 static void hello_cleanup(GeanyPlugin *plugin, gpointer pdata)
502         GtkWidget *main_menu_item = (GtkWidget *) pdata;
504         gtk_widget_destroy(main_menu_item);
508 G_MODULE_EXPORT
509 void geany_load_module(GeanyPlugin *plugin)
511         plugin->info->name = "HelloWorld";
512         plugin->info->description = "Just another tool to say hello world";
513         plugin->info->version = "1.0";
514         plugin->info->author = "John Doe <john.doe@example.org>";
516         plugin->funcs->init = hello_init;
517         plugin->funcs->cleanup = hello_cleanup;
519         GEANY_PLUGIN_REGISTER(plugin, 225);
521 @endcode
524 Now you might like to look at Geany's source code for core plugins such as
525 @a plugins/demoplugin.c.
527 @section furtherimprovements Further Improvements and next steps
528 @subsection translatable_plugin_information Translatable plugin information
530 After having written our first plugin, there is still room for improvement.
532 By default, @ref geany_load_module() is not prepared to allow translation of the basic plugin
533 information, except plugins which are shipped with Geany's core distribution, because custom
534 gettext catalogs are not setup. Since most plugins are not shipped with Geany's core, it makes
535 sense to setup gettext when the plugin is loaded so that it gets translated inside Geany's Plugin
536 Manager. The solution is to call the API function main_locale_init() inside @ref
537 geany_load_module() and then use gettext's _() as usual.
539 The invocation will most probably look similar to this:
540 @code
541 // ...
542         main_locale_init(LOCALEDIR, GETTEXT_PACKAGE);
543         plugin->info->name = _("HelloWorld");
544         plugin->info->description = _("Just another tool to say hello world");
545         plugin->info->version = "1.0";
546         plugin->info->author = "John Doe <john.doe@example.org>";
547 @endcode
549 The @a LOCALEDIR and the @a GETTEXT_PACKAGE parameters are usually set inside the build system.
551 As you can see the author's information is not marked as translatable in
552 this example.  The community has agreed that the best practice here is to
553 use, if possible, the latin version of the author's name followed by the
554 native spelling inside parenthesis, where applicable.
556 @subsection plugin_i18n Using i18n/l10n inside Plugin
559 You can (and should) also mark other strings beside the plugin's meta information as translatable.
560 Strings used in menu entries, information boxes or configuration dialogs should be translatable as
561 well.
563 @code
564 static gboolean hello_init(GeanyPlugin *plugin, gpointer pdata)
566         main_locale_init(LOCALEDIR, GETTEXT_PACKAGE);
567         main_menu_item = gtk_menu_item_new_with_mnemonic(_("Hello World"));
568 // ...
570 @endcode
572 @page legacy Porting guide from legacy entry points to the current ones
574 @section intro_legacy Introduction
576 This page briefly describes the deprecated, legacy plugin entry points. These have been in place
577 prior to Geany 1.26 and are still loadable and working for the time being. However, do not create
578 new plugins against these. For this reason, the actual description here is rather minimalistic and
579 concentrates on porting legacy plugins to the new interface. Basically its main purpose
580 is to give newcomers an idea of what they are looking at if they come across a legacy plugin.
582 @section overview Overview
584 The legacy entry points consist of a number of pre-defined symbols (functions and variables)
585 exported by plugins. There is no active registration procedure. It is implicit simply by exporting
586 the mandatory symbols. The entirety of the symbols is described at the page @link pluginsymbols.c
587 Plugin Symbols @endlink.
589 At the very least plugins must define the functions @a plugin_init(GeanyData *) and @a
590 plugin_version_check(gint). Additionally, an instance of the struct PluginInfo named plugin_info
591 must be exported as well, this contains the same metadata already known from GeanyPlugin::info. The
592 functions plugin_cleanup(), plugin_help(), plugin_configure(GtkDialog *) and
593 plugin_configure_single(GtkWidget *) are optional, however Geany prints a warning if
594 plugin_cleanup() is missing and only one of plugin_configure(GtkDialog *) and
595 plugin_configure_single(GtkWidget *) is used for any single plugin.
597 By convention, plugin_version_check() is implicitly defined through the use of PLUGIN_VERSION_CHECK(),
598 and similarly plugin_info is defined through PLUGIN_SET_INFO() or PLUGIN_SET_TRANSLATABLE_INFO().
600 The functions should generally perform the same tasks as their equivalents in GeanyPlugin::funcs.
602 Geany also recognized numerous variable fields if the plugin exported them globally, and actually
603 set a few of them inside the plugins data section.
605 @section porting Porting a Legacy Plugin
607 Given a legacy plugin it can be modified to use the new entry points without much effort. This
608 section gives a basic recipe that should work for most existing plugins. The transition should
609 be easy and painless so it is recommended that you adapt your plugin as soon as possible.
611 @note This guide is intentionally minimalistic (in terms of suggested code changes) in order to
612 allow adaption to the current entry points as quickly as possible and without a lot effort. It
613 should also work even for rather complex plugins comprising multiple source files. On the other hand
614 it does not make use of new features such as geany_plugin_set_data().
616 @subsection functions Functions
618 Probably the biggest hurdle is the dropped support of the long-deprecated
619 plugin_configure_single(). This means you first have to port the configuration dialog (if any) to
620 the combined plugin dialog. While you previously created a custom dialog you now attach the main
621 widget of that dialog to the combined plugin dialog simply by returning it from
622 GeanyPluginFuncs::configure. You don't actually add it, Geany will do that for you. The pointer to
623 the dialog is passed to @a configure simply to allow you to connect to its "response" or "close"
624 signals.
626 The following lists the function mapping of previous @a plugin_* functions to the new @a
627 GeanyPlugin::funcs. They are semantically the same, however the new functions receive more
628 parameters which you may use or not.
630   - plugin_init() => GeanyPlugin->funcs->init
631   - plugin_cleanup() => GeanyPlugin->funcs->cleanup
632   - plugin_help() => GeanyPlugin->funcs->help
633   - plugin_configure() => GeanyPlugin->funcs->configure
635 @note @ref GeanyPluginFuncs::init() should return a boolean value: whether or not the plugin loaded
636 successfully. Since legacy plugins couldn't fail in plugin_init() you should return @c TRUE
637 unconditionally.
639 @note Again, plugin_configure_single() is not supported anymore.
641 @subsection Variables
643 Exported global variables are not recognized anymore. They are replaced in the following ways:
645 @ref plugin_info is simply removed. Instead, you have to assign the values to GeanyPlugin::info
646 yourself, and it must be done inside your @a geany_load_module().
648 Example:
650 @code
651 PLUGIN_SET_INFO(
652         "HelloWorld",
653         "Just another tool to say hello world",
654         "1.0", "John Doe <john.doe@example.org>");
655 @endcode
657 becomes
659 @code
660 G_MODULE_EXPORT
661 void geany_load_module(GeanyPlugin *plugin)
663 // ...
664         plugin->info->name = "HelloWorld";
665         plugin->info->description = "Just another tool to say hello world";
666         plugin->info->version = "1.0";
667         plugin->info->author = "John Doe <john.doe@example.org>";
668 // ...
670 @endcode
671 @note Refer to @ref translatable_plugin_information for i18n support for the metadata.
674 The @ref plugin_callbacks array is supported by assigning the GeanyPluginFuncs::callbacks to
675 the array.
677 @ref plugin_fields is not supported anymore. Use ui_add_document_sensitive() instead.
678 @ref PLUGIN_KEY_GROUP and @ref plugin_key_group are also not supported anymore. Use
679 plugin_set_key_group() and keybindings_set_item() respectively.
681 Additionally, Geany traditionally set a few variables. This is not the case anymore. @ref
682 geany_functions has been removed in 1.25 and since then existed only for compatibility and has been
683 empty. You can simply remove its declaration from your source code. @ref geany_plugin is passed to
684 each @ref GeanyPluginFuncs function. You need to store it yourself somewhere if you need it
685 elsewhere. @ref geany_data is now available as a member of GeanyPlugin.
687 @code
688 GeanyPlugin *geany_plugin;
689 GeanyData *geany_data;
691 static gboolean my_init(GeanyPlugin *plugin, gpointer pdata)
693 // ...
694         geany_plugin = plugin;
695         geany_data = plugin->geany_data;
696         return TRUE;
698 @endcode
700 @ref geany_plugin is now also passed by default to the PluginCallback signal handlers as data
701 pointer if it's set to NULL.
703 @code
704 static PluginCallback plugin_callbacks[] = {
705         { "editor-notify", (GCallback) &on_editor_notify_cb, FALSE, NULL },
706 // ...
709 static gboolean on_editor_notify_cb(GObject *object, GeanyEditor *editor,
710                                                                         SCNotification *nt, gpointer data)
712         GeanyPlugin *plugin = data;
713 //...
717 G_MODULE_EXPORT
718 void geany_load_module(GeanyPlugin *plugin)
720 // ...
721         plugin->funcs->callbacks = plugin_callbacks;
722 // ...
725 @endcode
728 @page proxy Proxy Plugin HowTo
730 @section proxy_intro Introduction
732 Geany has built-in support for plugins. These plugins can alter the way Geany operates in many
733 imaginable ways which leaves little to be desired.
735 However, there is one significant short-coming. Due to the infrastructure, Geany's built-in support
736 only covers plugins written in C, perhaps C++ and Vala. Basically all languages which can be
737 compiled into native shared libraries and can link GTK libraries. This excludes dynamic languages
738 such as Python.
740 Geany provides a mechanism to enable support for those languages. Native plugins can register as
741 proxy plugins by being a normal plugin to the Geany-side and by providing a bridge to write plugins
742 in another language on the other side.
744 These plugins are also called sub-plugins. This refers to the relation to their proxy.
745 To Geany they are first-class citizens.
747 @section proxy_protocol Writing a Proxy Plugin
749 The basic idea is that a proxy plugin provides methods to match, load and unload one or more
750 sub-plugin plugins in an abstract manner:
752  - Matching consists of providing a list of supported file extensions for the sub-plugins and
753    a mechanism to resolve file extension uncertainty or ambiguity. The matching makes the plugin
754    visible to the user within the Plugin Manager.
755  - Loading consists of loading the sub-plugin's file, passing the file to some form of interpreter
756    and calling GEANY_PLUGIN_REGISTER() or GEANY_PLUGIN_REGISTER_FULL() on behalf of the sub-plugin
757    at some point.
758  - Unloading simply reverses the effect of loading.
760 For providing these methods, GeanyPlugin has a field GeanyProxyFuncs which contains three function
761 pointers which must be initialized prior to calling geany_plugin_register_proxy(). This should be
762 done in the GeanyPluginFuncs::init function of the proxy plugin.
764  - In the call to geany_plugin_register_proxy() the proxy plugin passes a list of file extensions.
765    When Geany scans through its plugin directories as usual it will also look for files with
766    that extensions and consider found files as plugin candidate.
767  - GeanyProxyFuncs::probe may be implemented to probe if a plugin candidate (that has one of the
768    provided file extensions) is actually a plugin. This may depend on the plugin file itself in
769    case of ambiguity or availability of runtime dependencies or even configuration.
770    @ref GeanyProxyProbeResults constants should be returned. Not implementing GeanyProxyFuncs::probe
771    at all is equivalent to always returning @ref GEANY_PROXY_MATCH.
772  - GeanyProxyFuncs::load must be implemented to actually load the plugin. It is called by Geany
773    when the user enables the sub-plugin. What "loading" means is entirely up to the proxy plugin and
774    probably depends on the interpreter of the dynamic language that shall be supported. After
775    setting everything up as necessary GEANY_PLUGIN_REGISTER() or GEANY_PLUGIN_REGISTER_FULL() must
776    be called to register the sub-plugin.
777  - GeanyProxyFuncs::unload must be implemented and is called when the user unchecks the sub-plugin
778    or when Geany exits. Here, the proxy should release any references or memory associated to the
779    sub-plugin. Note that if GeanyProxyFuncs::load didn't succeed, i.e. didn't successfully register
780    the sub-plugin, then this function won't be called.
782 GeanyProxyFuncs::load and GeanyProxyFuncs::unload receive two GeanyPlugin pointers: One that
783 corresponds to the proxy itself and another that corresponds to the sub-plugin. The sub-plugin's
784 one may be used to call various API functions on behalf of the sub-plugin, including
785 GEANY_PLUGIN_REGISTER() and GEANY_PLUGIN_REGISTER_FULL().
787 GeanyProxyFuncs::load may return a pointer that is passed back to GeanyProxyFuncs::unload. This can
788 be used to store proxy-defined but sub-plugin-specific data required for unloading. However, this
789 pointer is not passed to the sub-plugin's GeanyPluginFuncs. To arrange for that, you want to call
790 GEANY_PLUGIN_REGISTER_FULL(). This method is the key to enable proxy plugins to wrap the
791 GeanyPluginFuncs of all sub-plugins and yet multiplex between multiple sub-plugin, for example by
792 storing a per-sub-plugin interpreter context.
794 @note If the pointer returned from GeanyProxyFuncs::load is the same that is passed to
795 GEANY_PLUGIN_REGISTER_FULL() then you must pass NULL as free_func, because that would be invoked
796 prior to unloading. Insert the corresponding code into GeanyProxyFuncs::unload.
798 @section proxy_compat_guideline Guideline for Checking Compatibility
800 Determining if a plugin candidate is compatible is not a single test. There are multiple levels and
801 each should be handled differently in order to give the user a consistent feedback.
803 Consider the 5 basic cases:
805 1) A candidate comes with a suitable file extension but is not a workable plugin file at all. For
806 example, your proxy supports plugins written in a shell script (.sh) but the shebang of that script
807 points to an incompatible shell (or even lacks a shebang). You should check for this in
808 GeanyProxyFuncs::probe() and return @ref GEANY_PROXY_IGNORE which hides that script from the Plugin
809 Manager and allows other enabled proxy plugins to pick it up. GeanyProxyFuncs::probe() returning
810 @ref GEANY_PROXY_IGNORE is an indication that the candidate is meant for another proxy, or the user
811 placed the file by accident in one of Geany's plugin directories. In other words the candidate
812 simply doesn't correspond to your proxy. Thus any noise by debug messages for this case is
813 undesirable.
815 2) A proxy plugin provides its own, versioned API to sub-plugin. The API version of the sub-plugin
816 is not compatible with the API exposed by the proxy. GeanyProxyFuncs::probe() should never perform
817 a version check because its sole purpose is to indicate a proxy's correspondence to a given
818 candidate. It should return @ref GEANY_PROXY_MATCH instead. Later, Geany will invoke the
819 GeanyProxyFuncs::load(), and this function is the right place for a version check. If it fails then
820 you simply do not call GEANY_PLUGIN_REGISTER(), but rather print a debug message. The result is
821 that the sub-plugin is not shown in the Plugin Manager at all. This is consistent with the
822 treatment of native plugins by Geany.
824 3) The sub-plugin is also depending on Geany's API version (whether it is or not depends on the
825 design of the proxy). In this case do not do anything special but forward the API version the
826 sub-plugin is written/compiled against to GEANY_PLUGIN_REGISTER(). Here, Geany will perform its own
827 compatibility check, allowing for a consistent user feedback. The result is again that the
828 sub-plugin is hidden from the Plugin Manager, like in case 2. But Geany will print a debug message
829 so you can skip that.
832 If you have even more cases try to fit it into case 1 or 2, depending on whether other proxy
833 plugins should get a chance to load the candidate or not.
835 @section proxy_dep_guideline Guideline for Runtime Errors
837 A sub-plugin might not be able to run even if it's perfectly compatible with its proxy. This
838 includes the case when it lacks certain runtime dependencies such as programs or modules but also
839 syntactic problems or other errors.
841 There are two basic classes:
843 1) Runtime errors that can be determined at load time. For example, the shebang of a script
844 indicates a specific interpreter version but that version is not installed on the system. Your proxy
845 should respond the same way as for version-incompatible plugins: don't register the plugin at
846 all, but leave a message the user suggesting what has to be installed in order to work. Handle
847 syntax errors in the scripts of sub-plugins the same way if possible.
849 2) Runtime errors that cannot be determined without actually running the plugin. An example would
850 be missing modules in Python scripts. If your proxy has no way of foreseeing the problem the plugin
851 will be registered normally. However, you can catch runtime errors by implementing
852 GeanyPluginFuncs::init() on the plugin's behalf. This is called after user activation and allows to
853 indicate errors by returning @c FALSE. However, allowing the user to enable a plugin and then
854 disabling anyway is a poor user experience.
856 Therefore, if possible, try to fail fast and disallow registration.
858 @section Proxy Plugin Example
860 In this section a dumb example proxy plugin is shown in order to give a practical starting point.
861 The sub-plugin are not actually code but rather a ini-style description of one or more menu items
862 that are added to Geany's tools menu and a help dialog. Real world sub-plugins would contain actual
863 code, usually written in a scripting language.
865 A sub-plugin file looks like this:
867 @code{.ini}
868 #!!PROXY_MAGIC!!
870 [Init]
871 item0 = Bam
872 item1 = Foo
873 item2 = Bar
875 [Help]
876 text = I'm a simple test. Nothing to see!
878 [Info]
879 name = Demo Proxy Tester
880 description = I'm a simple test. Nothing to see!
881 version = 0.1
882 author = The Geany developer team
883 @endcode
885 The first line acts as a verification that this file is truly a sub-plugin. Within the [Init] section
886 there is the menu items for Geany's tools menu. The [Help] section declares the sub-plugins help
887 text which is shown in its help dialog (via GeanyPluginFuncs::help). The [Info] section is
888 used as-is for filling the sub-plugins PluginInfo fields.
890 That's it, this dumb format is purely declarative and contains no logic. Yet we will create plugins
891 from it.
893 We start by registering the proxy plugin to Geany. There is nothing special to it compared to
894 normal plugins. A proxy plugin must also fill its own @ref PluginInfo and @ref GeanyPluginFuncs,
895 followed by registering through GEANY_PLUGIN_REGISTER().
898 @code{.c}
900 /* Called by Geany to initialize the plugin. */
901 static gboolean demoproxy_init(GeanyPlugin *plugin, gpointer pdata)
903         // ...
907 /* Called by Geany before unloading the plugin. */
908 static void demoproxy_cleanup(GeanyPlugin *plugin, gpointer data)
910         // ...
914 G_MODULE_EXPORT
915 void geany_load_module(GeanyPlugin *plugin)
917         plugin->info->name = _("Demo Proxy");
918         plugin->info->description = _("Example Proxy.");
919         plugin->info->version = "0.1";
920         plugin->info->author = _("The Geany developer team");
922         plugin->funcs->init = demoproxy_init;
923         plugin->funcs->cleanup = demoproxy_cleanup;
925         GEANY_PLUGIN_REGISTER(plugin, 225);
928 @endcode
930 The next step is to actually register as a proxy plugin. This is done in demoproxy_init().
931 As previously mentioned, it needs a list of accepted file extensions and a set of callback
932 functions.
934 @code{.c}
935 static gboolean demoproxy_init(GeanyPlugin *plugin, gpointer pdata)
937         const gchar *extensions[] = { "ini", "px", NULL };
939         plugin->proxy_funcs->probe  = demoproxy_probe;
940         plugin->proxy_funcs->load   = demoproxy_load;
941         plugin->proxy_funcs->unload = demoproxy_unload;
943         return geany_plugin_register_proxy(plugin, extensions);
946 @endcode
948 The callback functions deserve a closer look.
950 As already mentioned the file format includes a magic first line which must be present.
951 GeanyProxyFuncs::probe() verifies that it's present and avoids showing the sub-plugin in the
952 Plugin Manager if not.
954 @code{.c}
955 static gint demoproxy_probe(GeanyPlugin *proxy, const gchar *filename, gpointer pdata)
957         /* We know the extension is right (Geany checks that). For demo purposes we perform an
958          * additional check. This is not necessary when the extension is unique enough. */
959         gboolean match = FALSE;
960         gchar linebuf[128];
961         FILE *f = fopen(filename, "r");
962         if (f != NULL)
963         {
964                 if (fgets(linebuf, sizeof(linebuf), f) != NULL)
965                         match = utils_str_equal(linebuf, "#!!PROXY_MAGIC!!\n");
966                 fclose(f);
967         }
968         return match ? GEANY_PROXY_MATCH : GEANY_PROXY_IGNORE;
970 @endcode
972 GeanyProxyFuncs::load is a bit more complex. It reads the file, fills the sub-plugin's PluginInfo
973 fields and calls GEANY_PLUGIN_REGISTER_FULL(). Additionally, it creates a per-plugin context that
974 holds GKeyFile instance (a poor man's interpreter context). You can also see that it does not call
975 GEANY_PLUGIN_REGISTER_FULL() if g_key_file_load_from_file() found an error (probably a syntax
976 problem) which means the sub-plugin cannot be enabled.
978 It also installs wrapper functions for the sub-plugin's GeanyPluginFuncs as ini files aren't code.
979 It's very likely that your proxy needs something similar because you can only install function
980 pointers to native code.
982 @code{.c}
983 typedef struct {
984         GKeyFile       *file;
985         gchar          *help_text;
986         GSList         *menu_items;
988 PluginContext;
991 static gboolean proxy_init(GeanyPlugin *plugin, gpointer pdata);
992 static void proxy_help(GeanyPlugin *plugin, gpointer pdata);
993 static void proxy_cleanup(GeanyPlugin *plugin, gpointer pdata);
996 static gpointer demoproxy_load(GeanyPlugin *proxy, GeanyPlugin *plugin,
997                                const gchar *filename, gpointer pdata)
999         GKeyFile *file;
1000         gboolean result;
1002         file = g_key_file_new();
1003         result = g_key_file_load_from_file(file, filename, 0, NULL);
1005         if (result)
1006         {
1007                 PluginContext *data = g_new0(PluginContext, 1);
1008                 data->file = file;
1010                 plugin->info->name = g_key_file_get_locale_string(data->file, "Info", "name", NULL, NULL);
1011                 plugin->info->description = g_key_file_get_locale_string(data->file, "Info", "description", NULL, NULL);
1012                 plugin->info->version = g_key_file_get_locale_string(data->file, "Info", "version", NULL, NULL);
1013                 plugin->info->author = g_key_file_get_locale_string(data->file, "Info", "author", NULL, NULL);
1015                 plugin->funcs->init = proxy_init;
1016                 plugin->funcs->help = proxy_help;
1017                 plugin->funcs->cleanup = proxy_cleanup;
1019                 /* Cannot pass g_free as free_func be Geany calls it before unloading, and since 
1020                  * demoproxy_unload() accesses the data this would be catastrophic */
1021                 GEANY_PLUGIN_REGISTER_FULL(plugin, 225, data, NULL);
1022                 return data;
1023         }
1025         g_key_file_free(file);
1026         return NULL;
1028 @endcode
1030 demoproxy_unload() simply releases all resources acquired in demoproxy_load(). It does not have to
1031 do anything else in for unloading.
1033 @code{.c}
1034 static void demoproxy_unload(GeanyPlugin *proxy, GeanyPlugin *plugin, gpointer load_data, gpointer pdata)
1036         PluginContext *data = load_data;
1038         g_free((gchar *)plugin->info->name);
1039         g_free((gchar *)plugin->info->description);
1040         g_free((gchar *)plugin->info->version);
1041         g_free((gchar *)plugin->info->author);
1043         g_key_file_free(data->file);
1044         g_free(data);
1046 @endcode
1048 Finally the demo_proxy's wrapper GeanyPluginFuncs. They are called for each possible sub-plugin and
1049 therefore have to multiplex between each using the plugin-defined data pointer. Each is called by
1050 Geany as if it were an ordinary, native plugin.
1052 proxy_init() actually reads the sub-plugin's file using GKeyFile APIs. It prepares for the help
1053 dialog and installs the menu items. proxy_help() is called when the user clicks the help button in
1054 the Plugin Manager. Consequently, this fires up a suitable dialog, although with a dummy message.
1055 proxy_cleanup() frees all memory allocated in proxy_init().
1057 @code{.c}
1058 static gboolean proxy_init(GeanyPlugin *plugin, gpointer pdata)
1060         PluginContext *data;
1061         gint i = 0;
1062         gchar *text;
1064         data = (PluginContext *) pdata;
1066         /* Normally, you would instruct the VM/interpreter to call into the actual plugin. The
1067          * plugin would be identified by pdata. Because there is no interpreter for
1068          * .ini files we do it inline, as this is just a demo */
1069         data->help_text = g_key_file_get_locale_string(data->file, "Help", "text", NULL, NULL);
1070         while (TRUE)
1071         {
1072                 GtkWidget *item;
1073                 gchar *key = g_strdup_printf("item%d", i++);
1074                 text = g_key_file_get_locale_string(data->file, "Init", key, NULL, NULL);
1075                 g_free(key);
1077                 if (!text)
1078                         break;
1080                 item = gtk_menu_item_new_with_label(text);
1081                 gtk_widget_show(item);
1082                 gtk_container_add(GTK_CONTAINER(plugin->geany_data->main_widgets->tools_menu), item);
1083                 gtk_widget_set_sensitive(item, FALSE);
1084                 data->menu_items = g_slist_prepend(data->menu_items, (gpointer) item);
1085                 g_free(text);
1086         }
1088         return TRUE;
1092 static void proxy_help(GeanyPlugin *plugin, gpointer pdata)
1094         PluginContext *data;
1095         GtkWidget *dialog;
1097         data = (PluginContext *) pdata;
1099         dialog = gtk_message_dialog_new(
1100                 GTK_WINDOW(plugin->geany_data->main_widgets->window),
1101                 GTK_DIALOG_DESTROY_WITH_PARENT,
1102                 GTK_MESSAGE_INFO,
1103                 GTK_BUTTONS_OK,
1104                 "%s", data->help_text);
1105         gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
1106                 _("(From the %s plugin)"), plugin->info->name);
1108         gtk_dialog_run(GTK_DIALOG(dialog));
1109         gtk_widget_destroy(dialog);
1113 static void proxy_cleanup(GeanyPlugin *plugin, gpointer pdata)
1115         PluginContext *data = (PluginContext *) pdata;
1117         g_slist_free_full(data->menu_items, (GDestroyNotify) gtk_widget_destroy);
1118         g_free(data->help_text);
1120 @endcode