Fixed typo introduced after 0.9.3claws92 that prevented compilation; Updated Makefile...
[claws.git] / src / plugins / demo / demo.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include "intl.h"
21 #include "version.h"
22 #include "sylpheed.h"
23 #include "plugin.h"
24 #include "utils.h"
25 #include "hooks.h"
26 #include "log.h"
27
28 gboolean my_log_hook(gpointer source, gpointer data)
29 {
30         LogText *logtext = (LogText *)source;
31
32         printf("*** Demo Plugin log: %s\n", logtext->text);
33
34         return FALSE;
35 }
36
37 static guint hook_id;
38
39 gint plugin_init(gchar **error)
40 {
41         if ((sylpheed_get_version() > VERSION_NUMERIC)) {
42                 *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
43                 return -1;
44         }
45
46         if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 8, 11, 39))) {
47                 *error = g_strdup("Your sylpheed version is too old");
48                 return -1;
49         }
50
51         hook_id = hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, my_log_hook, NULL);
52         if (hook_id == -1) {
53                 *error = g_strdup("Failed to register log text hook");
54                 return -1;
55         }
56
57         printf("Demo plugin loaded\n");
58
59         return 0;
60 }
61
62 void plugin_done(void)
63 {
64         hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, hook_id);
65
66         printf("Demo plugin unloaded\n");
67 }
68
69 const gchar *plugin_name(void)
70 {
71         return _("Demo");
72 }
73
74 const gchar *plugin_desc(void)
75 {
76         return _("This Plugin is only a demo of how to write plugins for Sylpheed. "
77                  "It installs a hook for new log output and writes it to stdout."
78                  "\n\n"
79                  "It is not really useful");
80 }
81
82 const gchar *plugin_type(void)
83 {
84         return "Common";
85 }