* src/common/plugin.[ch]
[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 "plugin.h"
22 #include "utils.h"
23 #include "hooks.h"
24 #include "log.h"
25
26 gboolean my_log_hook(gpointer source, gpointer data)
27 {
28         LogText *logtext = (LogText *)source;
29
30         printf("*** Demo Plugin log: %s\n", logtext->text);
31
32         return FALSE;
33 }
34
35 static guint hook_id;
36
37 gint plugin_init(gchar **error)
38 {
39         hook_id = hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, my_log_hook, NULL);
40         if (hook_id == -1) {
41                 *error = g_strdup("Failed to register log text hook");
42                 return -1;
43         }
44
45         printf("Demo plugin loaded\n");
46
47         return 0;
48 }
49
50 void plugin_done(void)
51 {
52         hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, hook_id);
53
54         printf("Demo plugin unloaded\n");
55 }
56
57 const gchar *plugin_name(void)
58 {
59         return _("Demo");
60 }
61
62 const gchar *plugin_desc(void)
63 {
64         return _("This Plugin is only a demo of how to write plugins for Sylpheed. "
65                  "It installs a hook for new log output and writes it to stdout."
66                  "\n\n"
67                  "It is not really useful");
68 }
69
70 const gchar *plugin_type(void)
71 {
72         return "Common";
73 }