Add default_font preference to Litehtml plugin
[claws.git] / src / plugins / litehtml_viewer / lh_prefs.c
1 /*
2  * Claws Mail -- A GTK+ based, lightweight, and fast e-mail client
3  * Copyright(C) 2019 the Claws Mail 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 3 of the License, or
8  * (at your option) any later version.
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write tothe Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16  */
17
18 #ifdef HAVE_CONFIG_H
19 #include "config.h"
20 #include "claws-features.h"
21 #endif
22
23 #include <glib.h>
24 #include <glib/gi18n.h>
25
26 #include "prefs_gtk.h"
27 #include "common/defs.h"
28 #include "common/utils.h"
29 #include "gtk/gtkutils.h"
30
31 #include "lh_prefs.h"
32
33 #define PREFS_BLOCK_NAME "LiteHTML"
34
35 static void create_lh_prefs_page(PrefsPage *page, GtkWindow *window,
36                 gpointer data);
37 static void destroy_lh_prefs_page(PrefsPage *page);
38 static void save_lh_prefs_page(PrefsPage *page);
39 static void save_prefs(void);
40
41 LHPrefs lh_prefs;
42
43 struct _LHPrefsPage {
44         PrefsPage page;
45         GtkWidget *enable_remote_content;
46         GtkWidget *image_cache_size;
47         GtkWidget *default_font;
48 };
49 typedef struct _LHPrefsPage LHPrefsPage;
50
51 static PrefParam param[] = {
52         { "enable_remote_content", "FALSE", &lh_prefs.enable_remote_content, P_BOOL,
53                 NULL, NULL, NULL },
54         { "image_cache_size", "20", &lh_prefs.image_cache_size, P_INT,
55                 NULL, NULL, NULL },
56         { "default_font", "Sans 16", &lh_prefs.default_font, P_STRING,
57                 NULL, NULL, NULL },
58         { NULL, NULL, NULL, 0, NULL, NULL, NULL }
59 };
60
61 static LHPrefsPage lh_prefs_page;
62
63 LHPrefs *lh_prefs_get(void)
64 {
65         return &lh_prefs;
66 }
67
68 void lh_prefs_init(void)
69 {
70         static gchar *path[3];
71         gchar *rcpath;
72
73         path[0] = _("Plugins");
74         path[1] = "LiteHTML";
75         path[2] = NULL;
76
77         prefs_set_default(param);
78         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
79         prefs_read_config(param, PREFS_BLOCK_NAME, rcpath, NULL);
80         g_free(rcpath);
81
82         lh_prefs_page.page.path = path;
83         lh_prefs_page.page.create_widget = create_lh_prefs_page;
84         lh_prefs_page.page.destroy_widget = destroy_lh_prefs_page;
85         lh_prefs_page.page.save_page = save_lh_prefs_page;
86         lh_prefs_page.page.weight = 30.0;
87         prefs_gtk_register_page((PrefsPage *) &lh_prefs_page);
88 }
89
90 void lh_prefs_done(void)
91 {
92 }
93
94 static void create_lh_prefs_page(PrefsPage *page, GtkWindow *window,
95                 gpointer data)
96 {
97         LHPrefsPage *prefs_page = (LHPrefsPage *)page;
98         GtkWidget *vbox;
99         GtkWidget *vbox_remote;
100         GtkWidget *hbox;
101         GtkWidget *frame;
102         GtkWidget *label;
103         GtkWidget *enable_remote_content;
104         GtkWidget *image_cache_size;
105         GtkWidget *default_font;
106         GtkObject *adj;
107
108         vbox = gtk_vbox_new(FALSE, 3);
109         gtk_container_set_border_width(GTK_CONTAINER(vbox), VBOX_BORDER);
110         gtk_widget_show(vbox);
111
112         /* Enable remote content */
113         vbox_remote = gtkut_get_options_frame(vbox, &frame, _("Remote resources"));
114
115         label = gtk_label_new(_("Loading remote resources can lead to some privacy issues.\n"
116                                 "When remote content loading is disabled, nothing will be requested\n"
117                                 "from the network."));
118         gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
119
120         enable_remote_content = gtk_check_button_new_with_label(_("Enable loading of remote content"));
121         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(enable_remote_content),
122                         lh_prefs.enable_remote_content);
123
124         gtk_box_pack_start(GTK_BOX(vbox_remote), label, FALSE, FALSE, 0);
125         gtk_box_pack_start(GTK_BOX(vbox_remote), enable_remote_content, FALSE, FALSE, 0);
126         gtk_widget_show_all(vbox_remote);
127
128         /* Image cache size */
129         hbox = gtk_hbox_new(FALSE, 8);
130         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
131
132         label = gtk_label_new(_("Size of image cache in megabytes"));
133         gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
134
135         adj = gtk_adjustment_new(0, 0, 99999, 1, 10, 0);
136         image_cache_size = gtk_spin_button_new(GTK_ADJUSTMENT(adj), 1, 0);
137         gtk_spin_button_set_numeric(GTK_SPIN_BUTTON(image_cache_size), TRUE);
138         gtk_spin_button_set_wrap(GTK_SPIN_BUTTON(image_cache_size), FALSE);
139         gtk_spin_button_set_value(GTK_SPIN_BUTTON(image_cache_size),
140                         lh_prefs.image_cache_size);
141         gtk_box_pack_start(GTK_BOX(hbox), image_cache_size, FALSE, FALSE, 0);
142
143         /* Font */
144         hbox = gtk_hbox_new(FALSE, 8);
145         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
146
147         label = gtk_label_new(_("Default font"));
148         gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
149
150         default_font = gtk_font_button_new_with_font(lh_prefs.default_font);
151         g_object_set(G_OBJECT(default_font), "use-font", TRUE, NULL);
152         gtk_box_pack_start(GTK_BOX(hbox), default_font, FALSE, FALSE, 0);
153
154         gtk_widget_show_all(hbox);
155
156         prefs_page->enable_remote_content = enable_remote_content;
157         prefs_page->image_cache_size = image_cache_size;
158         prefs_page->default_font = default_font;
159         prefs_page->page.widget = vbox;
160 }
161
162 static void destroy_lh_prefs_page(PrefsPage *page)
163 {
164 }
165
166 static void save_lh_prefs_page(PrefsPage *page)
167 {
168         LHPrefsPage *prefs_page = (LHPrefsPage *)page;
169
170         lh_prefs.enable_remote_content = gtk_toggle_button_get_active(
171                         GTK_TOGGLE_BUTTON(prefs_page->enable_remote_content));
172
173         lh_prefs.image_cache_size = gtk_spin_button_get_value_as_int(
174                         GTK_SPIN_BUTTON(prefs_page->image_cache_size));
175
176         g_free(lh_prefs.default_font);
177         lh_prefs.default_font = g_strdup(gtk_font_button_get_font_name(
178                         GTK_FONT_BUTTON(prefs_page->default_font)));
179
180         save_prefs();
181 }
182
183 static void save_prefs(void)
184 {
185         PrefFile *pref_file;
186         gchar *rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
187                         COMMON_RC, NULL);
188
189         pref_file = prefs_write_open(rcpath);
190
191         if (!pref_file) {
192                 g_warning("failed to open configuration file '%s' for writing", rcpath);
193                 g_free(rcpath);
194                 return;
195         }
196         if (prefs_set_block_label(pref_file, PREFS_BLOCK_NAME) < 0) {
197                 g_warning("failed to set block label "PREFS_BLOCK_NAME);
198                 g_free(rcpath);
199                 return;
200         }
201
202         if (prefs_write_param(param, pref_file->fp) < 0) {
203                 g_warning("failed to write LiteHTML Viewer plugin configuration");
204                 prefs_file_close_revert(pref_file);
205                 g_free(rcpath);
206                 return;
207         }
208
209         if (fprintf(pref_file->fp, "\n") < 0) {
210                 FILE_OP_ERROR(rcpath, "fprintf");
211                 prefs_file_close_revert(pref_file);
212         } else {
213                 debug_print("successfully saved LiteHTML Viewer plugin configuration\n");
214                 prefs_file_close(pref_file);
215         }
216
217         g_free(rcpath);
218 }