2011-09-03 [colin] 3.7.10cvs16
[claws.git] / src / prefs_spelling.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2002-2011 Hiroyuki Yamamoto & 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  *
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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #if USE_ENCHANT
25
26 #include "defs.h"
27
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #include <glib.h>
32 #include <glib/gi18n.h>
33 #include <gtk/gtk.h>
34
35 #include "utils.h"
36 #include "prefs_common.h"
37 #include "prefs_gtk.h"
38
39 #include "gtk/gtkutils.h"
40 #include "gtk/prefswindow.h"
41 #include "gtk/filesel.h"
42 #include "gtk/colorsel.h"
43 #include "gtk/combobox.h"
44
45 typedef struct _SpellingPage
46 {
47         PrefsPage page;
48
49         GtkWidget *window;              /* do not modify */
50
51         GtkWidget *automatic_frame;
52         GtkWidget *dictionary_frame;
53         
54         GtkWidget *enable_aspell_checkbtn;
55         GtkWidget *recheck_when_changing_dict_checkbtn;
56         GtkWidget *check_while_typing_checkbtn;
57         GtkWidget *use_alternate_checkbtn;
58
59         GtkWidget *default_dict_label;
60         GtkWidget *default_dict_combo;
61
62         GtkWidget *default_alt_dict_label;
63         GtkWidget *default_alt_dict_combo;
64
65         GtkWidget *both_dict_check;
66
67         GtkWidget *misspelled_label;
68         GtkWidget *misspelled_colorbtn;
69         GtkWidget *misspelled_useblack_label;
70
71         gint       misspell_col;
72 } SpellingPage;
73
74 static void prefs_spelling_colorsel(GtkWidget *widget,
75                                     gpointer data)
76 {
77         SpellingPage *spelling = (SpellingPage *) data;
78         gint rgbcolor;
79
80         rgbcolor = colorsel_select_color_rgb(_("Pick color for misspelled word"), 
81                                              spelling->misspell_col);
82         gtkut_set_widget_bgcolor_rgb(spelling->misspelled_colorbtn, rgbcolor);
83         spelling->misspell_col = rgbcolor;
84 }
85
86 #define SAFE_STRING(str) \
87         (str) ? (str) : ""
88
89 static void prefs_spelling_create_widget(PrefsPage *_page, GtkWindow *window, gpointer data)
90 {
91         SpellingPage *prefs_spelling = (SpellingPage *) _page;
92
93         GtkWidget *vbox1, *vbox2;
94
95         GtkWidget *enable_aspell_checkbtn;
96         GtkWidget *check_while_typing_checkbtn;
97         GtkWidget *recheck_when_changing_dict_checkbtn;
98         GtkWidget *use_alternate_checkbtn;
99
100         GtkWidget *automatic_frame;
101         GtkWidget *dictionary_frame;
102
103         GtkWidget *table;
104
105         GtkWidget *default_dict_label;
106         GtkWidget *default_dict_combo;
107
108         GtkWidget *default_alt_dict_label;
109         GtkWidget *default_alt_dict_combo;
110         GtkWidget *both_dict_check;
111 #ifdef WIN32
112         GtkWidget *get_dictionaries_btn;
113 #endif
114
115         GtkWidget *misspelled_label;
116         GtkWidget *misspelled_hbox;
117         GtkWidget *misspelled_colorbtn;
118
119         CLAWS_TIP_DECL();
120
121         vbox1 = gtk_vbox_new (FALSE, VSPACING);
122         gtk_widget_show (vbox1);
123         gtk_container_set_border_width (GTK_CONTAINER (vbox1), VBOX_BORDER);
124
125         vbox2 = gtk_vbox_new (FALSE, 0);
126         gtk_widget_show (vbox2);
127         gtk_box_pack_start (GTK_BOX (vbox1), vbox2, FALSE, FALSE, 0);
128
129         enable_aspell_checkbtn = gtk_check_button_new_with_label(
130                         _("Enable spell checker"));
131         gtk_widget_show(enable_aspell_checkbtn);
132         gtk_box_pack_start(GTK_BOX(vbox2), enable_aspell_checkbtn, TRUE, TRUE, 0);
133
134         use_alternate_checkbtn = gtk_check_button_new_with_label(
135                         _("Enable alternate dictionary"));
136         gtk_widget_show(use_alternate_checkbtn);
137         gtk_box_pack_start(GTK_BOX(vbox2), use_alternate_checkbtn, TRUE, TRUE, 0);
138
139         CLAWS_SET_TIP(use_alternate_checkbtn, 
140                         _("Faster switching with last used dictionary"));
141
142         vbox2 = gtkut_get_options_frame(vbox1, &automatic_frame, _("Automatic spell checking"));
143         
144         check_while_typing_checkbtn = gtk_check_button_new_with_label(
145                         _("Check while typing"));
146         gtk_widget_show(check_while_typing_checkbtn);
147         gtk_box_pack_start(GTK_BOX(vbox2), check_while_typing_checkbtn, TRUE, TRUE, 0);
148
149         recheck_when_changing_dict_checkbtn = gtk_check_button_new_with_label(
150                         _("Re-check message when changing dictionary"));
151         gtk_widget_show(recheck_when_changing_dict_checkbtn);
152         gtk_box_pack_start(GTK_BOX(vbox2), recheck_when_changing_dict_checkbtn, TRUE, TRUE, 0);
153         
154         vbox2 = gtkut_get_options_frame(vbox1, &dictionary_frame, _("Dictionary"));
155         
156         table = gtk_table_new(6, 4, FALSE);
157         gtk_widget_show(table);
158         gtk_container_set_border_width(GTK_CONTAINER(table), 8);
159         gtk_table_set_row_spacings(GTK_TABLE(table), 4);
160         gtk_table_set_col_spacings(GTK_TABLE(table), 8);
161
162         gtk_box_pack_start(GTK_BOX(vbox2), table, TRUE, TRUE, 0);
163
164         default_dict_label = gtk_label_new(_("Default dictionary"));
165         gtk_widget_show(default_dict_label);
166         gtk_table_attach(GTK_TABLE (table), default_dict_label, 0, 1, 0, 1,
167                          (GtkAttachOptions) (GTK_FILL),
168                          (GtkAttachOptions) (0), 0, 2);
169         gtk_label_set_justify(GTK_LABEL(default_dict_label), GTK_JUSTIFY_RIGHT);
170         gtk_misc_set_alignment(GTK_MISC(default_dict_label), 1, 0.5);
171         
172         default_dict_combo = gtkaspell_dictionary_combo_new(TRUE);
173         gtk_widget_set_size_request(default_dict_combo, 180, -1);
174         gtk_table_attach (GTK_TABLE (table), default_dict_combo, 1, 2, 0, 1,
175                           GTK_SHRINK, 0, 0, 0);
176
177         default_alt_dict_label = gtk_label_new(_("Default alternate dictionary"));
178         gtk_widget_show(default_alt_dict_label);
179         gtk_table_attach(GTK_TABLE (table), default_alt_dict_label, 0, 1, 1, 2,
180                          (GtkAttachOptions) (GTK_FILL),
181                          (GtkAttachOptions) (0), 0, 2);
182         gtk_label_set_justify(GTK_LABEL(default_alt_dict_label), GTK_JUSTIFY_RIGHT);
183         gtk_misc_set_alignment(GTK_MISC(default_alt_dict_label), 1, 0.5);
184         
185         default_alt_dict_combo = gtkaspell_dictionary_combo_new(FALSE);
186         gtk_widget_set_size_request(default_alt_dict_combo, 180, -1);
187         gtk_table_attach (GTK_TABLE (table), default_alt_dict_combo, 1, 2, 1, 2,
188                           GTK_SHRINK, 0, 0, 0);
189
190         both_dict_check = gtk_check_button_new_with_label(
191                                 _("Check with both dictionaries"));
192         gtk_widget_show(both_dict_check);
193         gtk_table_attach (GTK_TABLE (table), both_dict_check, 1, 2, 2, 3,
194                           GTK_SHRINK, 0, 0, 0);
195
196 #ifdef WIN32
197         get_dictionaries_btn = gtkut_get_link_btn(GTK_WIDGET(window), 
198                                 DICTS_URI, _("Get more dictionaries..."));
199
200         gtk_widget_show(get_dictionaries_btn);
201         gtk_table_attach (GTK_TABLE (table), get_dictionaries_btn, 1, 2, 3, 4,
202                           GTK_SHRINK, 0, 0, 0);
203 #endif
204         misspelled_hbox = gtk_hbox_new(FALSE, 10);
205         gtk_widget_show(misspelled_hbox);
206         gtk_box_pack_start(GTK_BOX(vbox1), misspelled_hbox, FALSE, FALSE, 0);
207                 
208         misspelled_label = gtk_label_new(_("Misspelled word color"));
209         gtk_widget_show(misspelled_label);
210         gtk_box_pack_start(GTK_BOX(misspelled_hbox), misspelled_label,
211                 FALSE, FALSE, 0);
212         gtk_label_set_justify(GTK_LABEL(misspelled_label), GTK_JUSTIFY_RIGHT);
213         gtk_misc_set_alignment(GTK_MISC(misspelled_label), 1, 0.5);
214
215         misspelled_colorbtn = gtk_button_new_with_label("");
216         gtk_widget_show(misspelled_colorbtn);
217         gtk_box_pack_start(GTK_BOX(misspelled_hbox), misspelled_colorbtn,
218                 FALSE, FALSE, 0);
219         gtk_widget_set_size_request(misspelled_colorbtn, 30, 20);
220         CLAWS_SET_TIP(misspelled_colorbtn,
221                              _("Pick color for misspelled word. "
222                                "Use black to underline"));
223
224         SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, automatic_frame);
225         SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, dictionary_frame);
226         SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, misspelled_label);
227         SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, misspelled_colorbtn);
228         SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, use_alternate_checkbtn);
229         SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, default_alt_dict_label);
230         SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, default_alt_dict_combo);
231         SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, both_dict_check);
232
233         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(enable_aspell_checkbtn),
234                         prefs_common.enable_aspell);
235         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(both_dict_check),
236                         prefs_common.use_both_dicts);
237         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_while_typing_checkbtn),
238                         prefs_common.check_while_typing);
239         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(recheck_when_changing_dict_checkbtn),
240                         prefs_common.recheck_when_changing_dict);
241         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(use_alternate_checkbtn),
242                         prefs_common.use_alternate);
243         if (prefs_common.dictionary && 
244             strrchr(prefs_common.dictionary, '/')) {
245                 gchar *tmp = g_strdup(strrchr(prefs_common.dictionary, '/')+1);
246                 g_free(prefs_common.dictionary);
247                 prefs_common.dictionary = tmp;
248         }
249         if (prefs_common.alt_dictionary &&
250             strrchr(prefs_common.alt_dictionary, '/')) {
251                 gchar *tmp = g_strdup(strrchr(prefs_common.alt_dictionary, '/')+1);
252                 g_free(prefs_common.alt_dictionary);
253                 prefs_common.alt_dictionary = tmp;
254         }
255         if (prefs_common.dictionary &&
256             strchr(prefs_common.dictionary, '-')) {
257                 *(strchr(prefs_common.dictionary, '-')) = '\0';
258         }
259         if (prefs_common.alt_dictionary &&
260             strchr(prefs_common.alt_dictionary, '-')) {
261                 *(strchr(prefs_common.alt_dictionary, '-')) = '\0';
262         }
263         gtkaspell_set_dictionary_menu_active_item(GTK_COMBO_BOX(default_dict_combo),
264                                                 prefs_common.dictionary);
265
266         gtkaspell_set_dictionary_menu_active_item(GTK_COMBO_BOX(default_alt_dict_combo),
267                                                 prefs_common.alt_dictionary);
268
269         g_signal_connect(G_OBJECT(misspelled_colorbtn), "clicked",
270                          G_CALLBACK(prefs_spelling_colorsel), prefs_spelling);
271
272         prefs_spelling->misspell_col = prefs_common.misspelled_col;
273         gtkut_set_widget_bgcolor_rgb(misspelled_colorbtn, prefs_spelling->misspell_col);
274
275         prefs_spelling->window                  = GTK_WIDGET(window);
276         prefs_spelling->automatic_frame =       automatic_frame;
277         prefs_spelling->dictionary_frame =      dictionary_frame;
278         prefs_spelling->enable_aspell_checkbtn  = enable_aspell_checkbtn;
279         prefs_spelling->check_while_typing_checkbtn
280                 = check_while_typing_checkbtn;
281         prefs_spelling->recheck_when_changing_dict_checkbtn
282                 = recheck_when_changing_dict_checkbtn;
283         prefs_spelling->use_alternate_checkbtn  = use_alternate_checkbtn;
284         prefs_spelling->default_dict_label      = default_dict_label;
285         prefs_spelling->default_dict_combo      = default_dict_combo;
286         prefs_spelling->default_alt_dict_label  = default_alt_dict_label;
287         prefs_spelling->default_alt_dict_combo  = default_alt_dict_combo;
288         prefs_spelling->misspelled_label        = misspelled_label;
289         prefs_spelling->misspelled_colorbtn     = misspelled_colorbtn;
290         prefs_spelling->both_dict_check = both_dict_check;
291
292         prefs_spelling->page.widget = vbox1;
293 }
294
295 static void prefs_spelling_save(PrefsPage *_page)
296 {
297         SpellingPage *spelling = (SpellingPage *) _page;
298
299         prefs_common.enable_aspell =
300                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->enable_aspell_checkbtn));
301         prefs_common.check_while_typing =
302                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->check_while_typing_checkbtn));
303         prefs_common.recheck_when_changing_dict =
304                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->recheck_when_changing_dict_checkbtn));
305         prefs_common.use_alternate =
306                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->use_alternate_checkbtn));
307         prefs_common.use_both_dicts =
308                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->both_dict_check));
309
310         g_free(prefs_common.dictionary);
311         prefs_common.dictionary = 
312                 gtkaspell_get_dictionary_menu_active_item(
313                                 GTK_COMBO_BOX(spelling->default_dict_combo));
314
315         g_free(prefs_common.alt_dictionary);
316         prefs_common.alt_dictionary = 
317                 gtkaspell_get_dictionary_menu_active_item(
318                                 GTK_COMBO_BOX(spelling->default_alt_dict_combo));
319
320         prefs_common.misspelled_col = spelling->misspell_col;
321 }
322
323 static void prefs_spelling_destroy_widget(PrefsPage *_page)
324 {
325         /* SpellingPage *spelling = (SpellingPage *) _page; */
326
327 }
328
329 SpellingPage *prefs_spelling;
330
331 void prefs_spelling_init(void)
332 {
333         SpellingPage *page;
334         static gchar *path[3];
335         const gchar* language = NULL;
336         
337         path[0] = _("Compose");
338         path[1] = _("Spell Checking");
339         path[2] = NULL;
340
341         page = g_new0(SpellingPage, 1);
342         page->page.path = path;
343         page->page.create_widget = prefs_spelling_create_widget;
344         page->page.destroy_widget = prefs_spelling_destroy_widget;
345         page->page.save_page = prefs_spelling_save;
346         page->page.weight = 180.0;
347
348         prefs_gtk_register_page((PrefsPage *) page);
349         prefs_spelling = page;
350         
351         language = g_getenv("LANG");
352         if (language == NULL)
353                 language = "en";
354         else if (!strcmp(language, "POSIX") || !strcmp(language, "C"))
355                 language = "en";
356         
357         if (!prefs_common.dictionary)
358                 prefs_common.dictionary = g_strdup_printf("%s",
359                                                 language);
360         if (!strlen(prefs_common.dictionary)
361         ||  !strcmp(prefs_common.dictionary,"(None"))
362                 prefs_common.dictionary = g_strdup_printf("%s",
363                                                 language);
364         if (strcasestr(prefs_common.dictionary,".utf"))
365                 *(strcasestr(prefs_common.dictionary,".utf")) = '\0';
366         if (strstr(prefs_common.dictionary,"@"))
367                 *(strstr(prefs_common.dictionary,"@")) = '\0';
368 }
369
370 void prefs_spelling_done(void)
371 {
372         prefs_gtk_unregister_page((PrefsPage *) prefs_spelling);
373         g_free(prefs_spelling);
374 }
375
376 #endif /* USE_ENCHANT */