Update HACKING for changed doc generation instructions
[geany-mirror.git] / src / pluginprivate.h
blobd5c6a37a748bd0dd11647c8c89ddb0c125714d35
1 /*
2 * pluginprivate.h - 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.
23 #ifndef GEANY_PLUGIN_PRIVATE_H
24 #define GEANY_PLUGIN_PRIVATE_H 1
26 #include "plugindata.h"
27 #include "ui_utils.h" /* GeanyAutoSeparator */
28 #include "keybindings.h" /* GeanyKeyGroup */
30 #include "gtkcompat.h"
33 G_BEGIN_DECLS
35 typedef struct SignalConnection
37 GObject *object;
38 gulong handler_id;
40 SignalConnection;
43 typedef struct GeanyPluginPrivate
45 GModule *module;
46 gchar *filename; /* plugin filename (/path/libname.so) */
47 PluginInfo info; /* plugin name, description, etc */
48 GeanyPlugin public; /* fields the plugin can read */
50 void (*init) (GeanyData *data); /* Called when the plugin is enabled */
51 GtkWidget* (*configure) (GtkDialog *dialog); /* plugins configure dialog, optional */
52 void (*configure_single) (GtkWidget *parent); /* plugin configure dialog, optional */
53 void (*help) (void); /* Called when the plugin should show some help, optional */
54 void (*cleanup) (void); /* Called when the plugin is disabled or when Geany exits */
56 /* extra stuff */
57 PluginFields fields;
58 GeanyKeyGroup *key_group;
59 GeanyAutoSeparator toolbar_separator;
60 GArray *signal_ids; /* SignalConnection's to disconnect when unloading */
61 GList *sources; /* GSources to destroy when unloading */
63 GeanyPluginPrivate;
65 typedef GeanyPluginPrivate Plugin; /* shorter alias */
68 void plugin_watch_object(Plugin *plugin, gpointer object);
70 G_END_DECLS
72 #endif /* GEANY_PLUGIN_PRIVATE_H */