~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to src/pluginutils.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
20
 *      MA 02110-1301, USA.
21
21
 *
22
 
 * $Id: pluginutils.h 4630 2010-01-31 21:54:47Z eht16 $
 
22
 * $Id: pluginutils.h 4850 2010-04-22 12:03:37Z ntrel $
23
23
 */
24
24
 
25
25
 
28
28
 
29
29
#ifdef HAVE_PLUGINS
30
30
 
31
 
#include "plugindata.h"         /* GeanyPlugin */
32
 
 
33
 
void plugin_add_toolbar_item(GeanyPlugin *plugin, GtkToolItem *item);
34
 
 
35
 
void plugin_module_make_resident(GeanyPlugin *plugin);
36
 
 
37
 
void plugin_signal_connect(GeanyPlugin *plugin,
38
 
                GObject *object, gchar *signal_name, gboolean after,
 
31
#include "keybindings.h"        /* GeanyKeyGroupCallback */
 
32
 
 
33
 
 
34
/* avoid including plugindata.h otherwise this redefines the GEANY() macro */
 
35
struct GeanyPlugin;
 
36
 
 
37
 
 
38
void plugin_add_toolbar_item(struct GeanyPlugin *plugin, GtkToolItem *item);
 
39
 
 
40
void plugin_module_make_resident(struct GeanyPlugin *plugin);
 
41
 
 
42
void plugin_signal_connect(struct GeanyPlugin *plugin,
 
43
                GObject *object, const gchar *signal_name, gboolean after,
39
44
                GCallback callback, gpointer user_data);
40
45
 
 
46
struct GeanyKeyGroup *plugin_set_key_group(struct GeanyPlugin *plugin,
 
47
                const gchar *section_name, gsize count, GeanyKeyGroupCallback callback);
 
48
 
 
49
void plugin_show_configure(struct GeanyPlugin *plugin);
 
50
 
41
51
#endif /* HAVE_PLUGINS */
42
52
#endif /* PLUGINUTILS_H */