2005-12-06 [paul] 1.9.100cvs69
[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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20  #include <glib.h>
21 #include <glib/gi18n.h>
22
23
24 #include "version.h"
25 #include "sylpheed.h"
26 #include "plugin.h"
27 #include "utils.h"
28 #include "hooks.h"
29 #include "log.h"
30
31 gboolean my_log_hook(gpointer source, gpointer data)
32 {
33         LogText *logtext = (LogText *)source;
34
35         printf("*** Demo Plugin log: %s\n", logtext->text);
36
37         return FALSE;
38 }
39
40 static guint hook_id;
41
42 gint plugin_init(gchar **error)
43 {
44         if ((sylpheed_get_version() > VERSION_NUMERIC)) {
45                 *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
46                 return -1;
47         }
48
49         if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 8, 11, 39))) {
50                 *error = g_strdup("Your sylpheed version is too old");
51                 return -1;
52         }
53
54         hook_id = hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, my_log_hook, NULL);
55         if (hook_id == -1) {
56                 *error = g_strdup("Failed to register log text hook");
57                 return -1;
58         }
59
60         printf("Demo plugin loaded\n");
61
62         return 0;
63 }
64
65 void plugin_done(void)
66 {
67         hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, hook_id);
68
69         printf("Demo plugin unloaded\n");
70 }
71
72 const gchar *plugin_name(void)
73 {
74         return _("Demo");
75 }
76
77 const gchar *plugin_desc(void)
78 {
79         return _("This Plugin is only a demo of how to write plugins for Sylpheed-Claws. "
80                  "It installs a hook for new log output and writes it to stdout."
81                  "\n\n"
82                  "It is not really useful");
83 }
84
85 const gchar *plugin_type(void)
86 {
87         return "Common";
88 }