Sync with HEAD 0.9.12cvs46
[claws.git] / src / plugins / dillo_viewer / dillo_prefs.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 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 /*
21  * The structure of this file has been borrowed from the structure of
22  * the image_viewer plugin file. I also used it as an example of how to
23  * build the preferences for the dillo plugin.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #  include "config.h"
28 #endif
29
30 #include "defs.h"
31
32 #include <glib.h>
33 #include <gtk/gtk.h>
34
35 #include "intl.h"
36 #include "utils.h"
37 #include "prefs.h"
38 #include "prefs_gtk.h"
39 #include "prefswindow.h"
40
41 #include "dillo_prefs.h"
42
43 #define PREFS_BLOCK_NAME "Dillo"
44
45 DilloBrowserPrefs dillo_prefs;
46
47 typedef struct _DilloBrowserPage DilloBrowserPage;
48
49 struct _DilloBrowserPage {
50         PrefsPage page;
51         GtkWidget *local;
52         GtkWidget *full;
53 };
54
55 static PrefParam param[] = {
56         {"local_browse", "TRUE", &dillo_prefs.local, P_BOOL, NULL, NULL, NULL},
57         {"full_window", "TRUE", &dillo_prefs.full, P_BOOL, NULL, NULL, NULL},
58         {0,0,0,0,0,0,0}
59 };
60
61 DilloBrowserPage prefs_page;
62
63 static void create_dillo_prefs_page     (PrefsPage *page,
64                                          GtkWindow *window,
65                                          gpointer   data);
66 static void destroy_dillo_prefs_page    (PrefsPage *page);
67 static void save_dillo_prefs            (PrefsPage *page);
68
69 void dillo_prefs_init(void)
70 {
71         static gchar *path[3];
72
73         path[0] = _("Message View");
74         path[1] = _("Dillo Browser");
75         path[2] = NULL;
76
77         prefs_set_default(param);
78         prefs_read_config(param, PREFS_BLOCK_NAME, COMMON_RC);
79         
80         prefs_page.page.path = path;
81         prefs_page.page.create_widget = create_dillo_prefs_page;
82         prefs_page.page.destroy_widget = destroy_dillo_prefs_page;
83         prefs_page.page.save_page = save_dillo_prefs;
84         
85         prefs_gtk_register_page((PrefsPage *) &prefs_page);
86 }
87
88 void dillo_prefs_done(void)
89 {
90         prefs_gtk_unregister_page((PrefsPage *) &prefs_page);
91 }
92
93 static void create_dillo_prefs_page(PrefsPage *page,
94                                     GtkWindow *window,
95                                     gpointer data)
96 {
97         DilloBrowserPage *prefs_page = (DilloBrowserPage *) page;
98
99         GtkWidget *vbox;
100         GtkWidget *local_checkbox;
101         GtkWidget *full_checkbox;
102         GtkWidget *label;
103         GtkTooltips *local_tooltip;
104         GtkTooltips *full_tooltip;
105
106         vbox = gtk_vbox_new(FALSE, 3);
107         gtk_container_set_border_width(GTK_CONTAINER(vbox), 3);
108         gtk_widget_show(vbox);
109         
110         local_tooltip = gtk_tooltips_new();
111         local_checkbox = gtk_check_button_new_with_label
112                                 (_("Do not load remote links in mails"));
113         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(local_checkbox),
114                                      dillo_prefs.local);
115         gtk_box_pack_start(GTK_BOX(vbox), local_checkbox, FALSE, FALSE, 0);
116         gtk_widget_show(local_checkbox);
117         gtk_tooltips_set_tip(GTK_TOOLTIPS(local_tooltip), local_checkbox,
118                              _("Equivalent to Dillo's '--local' option"), NULL);
119         
120         label = gtk_label_new(_("You can still load remote links "
121                               "by reloading the page"));
122         gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
123         gtk_widget_show(label);
124
125         full_tooltip = gtk_tooltips_new();
126         full_checkbox = gtk_check_button_new_with_label
127                                 (_("Full window mode (hide controls)"));
128         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(full_checkbox),
129                                       dillo_prefs.full);
130         gtk_box_pack_start(GTK_BOX(vbox), full_checkbox, FALSE, FALSE, 0);
131         gtk_widget_show(full_checkbox);
132         gtk_tooltips_set_tip(GTK_TOOLTIPS(full_tooltip), full_checkbox,
133                              _("Equivalent to Dillo's '--fullwindow' option"),
134                              NULL);
135         
136         prefs_page->local = local_checkbox;
137         prefs_page->full = full_checkbox;
138         prefs_page->page.widget = vbox;
139 }
140
141 static void destroy_dillo_prefs_page(PrefsPage *page)
142 {
143         /* Do nothing! */
144 }
145
146 static void save_dillo_prefs(PrefsPage *page)
147 {
148         DilloBrowserPage *prefs_page = (DilloBrowserPage *) page;
149         PrefFile *pref_file;
150         gchar *rc_file_path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
151                                           COMMON_RC, NULL);
152         
153         dillo_prefs.local = gtk_toggle_button_get_active
154                                 (GTK_TOGGLE_BUTTON(prefs_page->local));
155         dillo_prefs.full = gtk_toggle_button_get_active
156                                 (GTK_TOGGLE_BUTTON(prefs_page->full));
157         
158         pref_file = prefs_write_open(rc_file_path);
159         g_free(rc_file_path);
160         
161         if (!(pref_file) ||
162             (prefs_set_block_label(pref_file, PREFS_BLOCK_NAME) < 0))
163           return;
164         
165         if (prefs_write_param(param, pref_file->fp) < 0) {
166           g_warning("failed to write Dillo Plugin configuration\n");
167           prefs_file_close_revert(pref_file);
168           return;
169         }
170         fprintf(pref_file->fp, "\n");
171         prefs_file_close(pref_file);
172 }