readd BUILT_SOURCES
[claws.git] / src / prefs_spelling.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2002 Hiroyuki Yamamoto & 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  * General functions for accessing address book files.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #if USE_ASPELL
29
30 #include "defs.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34
35 #include <glib.h>
36 #include <gtk/gtk.h>
37
38 #include "intl.h"
39 #include "utils.h"
40 #include "prefs_common.h"
41 #include "prefs_gtk.h"
42
43 #include "gtk/gtkutils.h"
44 #include "gtk/prefswindow.h"
45 #include "gtk/filesel.h"
46 #include "gtk/colorsel.h"
47
48 typedef struct _SpellingPage
49 {
50         PrefsPage page;
51
52         GtkWidget *window;              /* do not modify */
53
54         GtkWidget *checkbtn_enable_aspell;
55         GtkWidget *entry_aspell_path;
56         GtkWidget *btn_aspell_path;
57         GtkWidget *optmenu_dictionary;
58         GtkWidget *optmenu_sugmode;
59         GtkWidget *misspelled_btn;
60         GtkWidget *checkbtn_use_alternate;
61         GtkWidget *checkbtn_check_while_typing;
62
63         gint       misspell_col;
64 } SpellingPage;
65
66 static void prefs_spelling_enable(SpellingPage *spelling, gboolean enable)
67 {
68         gtk_widget_set_sensitive(spelling->entry_aspell_path,           enable);
69         gtk_widget_set_sensitive(spelling->optmenu_dictionary,          enable);
70         gtk_widget_set_sensitive(spelling->optmenu_sugmode,             enable);
71         gtk_widget_set_sensitive(spelling->btn_aspell_path,             enable);
72         gtk_widget_set_sensitive(spelling->misspelled_btn,              enable);
73         gtk_widget_set_sensitive(spelling->checkbtn_use_alternate,      enable);
74         gtk_widget_set_sensitive(spelling->checkbtn_check_while_typing, enable);
75 }
76
77 static void prefs_spelling_checkbtn_enable_aspell_toggle_cb
78         (GtkWidget *widget,
79          gpointer data)
80 {
81         SpellingPage *spelling = (SpellingPage *) data;
82         gboolean toggled;
83
84         toggled = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
85         prefs_spelling_enable(spelling, toggled);
86 }
87
88 static void prefs_spelling_btn_aspell_path_clicked_cb(GtkWidget *widget,
89                                                      gpointer data)
90 {
91         SpellingPage *spelling = (SpellingPage *) data;
92         gchar *file_path;
93         GtkWidget *new_menu;
94
95         file_path = filesel_select_file(_("Select dictionaries location"),
96                                         prefs_common.aspell_path);
97         if (file_path != NULL) {
98                 gchar *tmp_path, *tmp;
99
100                 tmp_path = g_dirname(file_path);
101                 tmp = g_strdup_printf("%s%s", tmp_path, G_DIR_SEPARATOR_S);
102                 g_free(tmp_path);
103
104                 new_menu = gtkaspell_dictionary_option_menu_new(tmp);
105                 gtk_option_menu_set_menu(GTK_OPTION_MENU(spelling->optmenu_dictionary),
106                                          new_menu);
107
108                 gtk_entry_set_text(GTK_ENTRY(spelling->entry_aspell_path), tmp);
109                 /* select first one */
110                 gtk_option_menu_set_history(GTK_OPTION_MENU(
111                                         spelling->optmenu_dictionary), 0);
112         
113                 g_free(tmp);
114
115         }
116 }
117
118 static void prefs_spelling_colorsel(GtkWidget *widget,
119                                     gpointer data)
120 {
121         SpellingPage *spelling = (SpellingPage *) data;
122         gint rgbcolor;
123
124         rgbcolor = colorsel_select_color_rgb(_("Pick color for misspelled word"), 
125                                              spelling->misspell_col);
126         gtkut_set_widget_bgcolor_rgb(spelling->misspelled_btn, rgbcolor);
127         spelling->misspell_col = rgbcolor;
128 }
129
130 #define SAFE_STRING(str) \
131         (str) ? (str) : ""
132
133 void prefs_spelling_create_widget(PrefsPage *_page, GtkWindow *window, gpointer data)
134 {
135         SpellingPage *prefs_spelling = (SpellingPage *) _page;
136
137         /* START GLADE CODE */
138         GtkWidget *table;
139         GtkWidget *checkbtn_enable_aspell;
140         GtkWidget *checkbtn_check_while_typing;
141         GtkWidget *checkbtn_use_alternate;
142         GtkWidget *label1;
143         GtkWidget *label2;
144         GtkWidget *entry_aspell_path;
145         GtkWidget *label3;
146         GtkWidget *optmenu_dictionary;
147         GtkWidget *optmenu_dictionary_menu;
148         GtkWidget *label4;
149         GtkWidget *optmenu_sugmode;
150         GtkWidget *optmenu_sugmode_menu;
151         GtkWidget *label5;
152         GtkWidget *btn_aspell_path;
153         GtkWidget *hbox1;
154         GtkWidget *misspelled_btn;
155
156         table = gtk_table_new(8, 3, 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         checkbtn_enable_aspell =
163             gtk_check_button_new_with_label(_("Enable spell checker"));
164         gtk_widget_show(checkbtn_enable_aspell);
165         gtk_table_attach(GTK_TABLE(table), checkbtn_enable_aspell, 0, 3, 0,
166                          1, (GtkAttachOptions) (GTK_FILL),
167                          (GtkAttachOptions) (0), 0, 0);
168
169         checkbtn_check_while_typing =
170             gtk_check_button_new_with_label(_("Check while typing"));
171         gtk_widget_show(checkbtn_check_while_typing);
172         gtk_table_attach(GTK_TABLE(table), checkbtn_check_while_typing, 0,
173                          3, 1, 2, (GtkAttachOptions) (GTK_FILL),
174                          (GtkAttachOptions) (0), 0, 0);
175
176         checkbtn_use_alternate =
177             gtk_check_button_new_with_label(_
178                                             ("Enable alternate dictionary"));
179         gtk_widget_show(checkbtn_use_alternate);
180         gtk_table_attach(GTK_TABLE(table), checkbtn_use_alternate, 0, 3, 2,
181                          3, (GtkAttachOptions) (GTK_FILL),
182                          (GtkAttachOptions) (0), 0, 0);
183
184         label1 =
185             gtk_label_new(_
186                           ("Enabling an alternate dictionary makes switching\nwith the last used dictionary faster"));
187         gtk_widget_show(label1);
188         gtk_table_attach(GTK_TABLE(table), label1, 0, 3, 3, 4,
189                          (GtkAttachOptions) (GTK_FILL),
190                          (GtkAttachOptions) (0), 0, 0);
191         gtk_misc_set_alignment(GTK_MISC(label1), 7.45058e-09, 0.5);
192
193         label2 = gtk_label_new(_("Dictionaries path:"));
194         gtk_widget_show(label2);
195         gtk_table_attach(GTK_TABLE(table), label2, 0, 1, 4, 5,
196                          (GtkAttachOptions) (GTK_FILL),
197                          (GtkAttachOptions) (0), 0, 0);
198         gtk_label_set_justify(GTK_LABEL(label2), GTK_JUSTIFY_RIGHT);
199         gtk_misc_set_alignment(GTK_MISC(label2), 1, 0.5);
200
201         entry_aspell_path = gtk_entry_new();
202         gtk_widget_show(entry_aspell_path);
203         gtk_table_attach(GTK_TABLE(table), entry_aspell_path, 1, 2, 4, 5,
204                          (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
205                          (GtkAttachOptions) (0), 0, 0);
206
207         label3 = gtk_label_new(_("Default dictionary:"));
208         gtk_widget_show(label3);
209         gtk_table_attach(GTK_TABLE(table), label3, 0, 1, 5, 6,
210                          (GtkAttachOptions) (GTK_FILL),
211                          (GtkAttachOptions) (0), 0, 0);
212         gtk_label_set_justify(GTK_LABEL(label3), GTK_JUSTIFY_RIGHT);
213         gtk_misc_set_alignment(GTK_MISC(label3), 1, 0.5);
214
215         optmenu_dictionary = gtk_option_menu_new();
216         gtk_widget_show(optmenu_dictionary);
217         gtk_table_attach(GTK_TABLE(table), optmenu_dictionary, 1, 3, 5, 6,
218                          (GtkAttachOptions) (GTK_FILL),
219                          (GtkAttachOptions) (0), 0, 0);
220         optmenu_dictionary_menu = gtk_menu_new();
221         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu_dictionary),
222                                  optmenu_dictionary_menu);
223
224         label4 = gtk_label_new(_("Default suggestion mode:"));
225         gtk_widget_show(label4);
226         gtk_table_attach(GTK_TABLE(table), label4, 0, 1, 6, 7,
227                          (GtkAttachOptions) (GTK_FILL),
228                          (GtkAttachOptions) (0), 0, 0);
229         gtk_label_set_justify(GTK_LABEL(label4), GTK_JUSTIFY_RIGHT);
230         gtk_misc_set_alignment(GTK_MISC(label4), 1, 0.5);
231
232         optmenu_sugmode = gtk_option_menu_new();
233         gtk_widget_show(optmenu_sugmode);
234         gtk_table_attach(GTK_TABLE(table), optmenu_sugmode, 1, 3, 6, 7,
235                          (GtkAttachOptions) (GTK_FILL),
236                          (GtkAttachOptions) (0), 0, 0);
237         optmenu_sugmode_menu = gtk_menu_new();
238         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu_sugmode),
239                                  optmenu_sugmode_menu);
240
241         label5 = gtk_label_new(_("Misspelled word color:"));
242         gtk_widget_show(label5);
243         gtk_table_attach(GTK_TABLE(table), label5, 0, 1, 7, 8,
244                          (GtkAttachOptions) (GTK_FILL),
245                          (GtkAttachOptions) (0), 0, 0);
246         gtk_label_set_justify(GTK_LABEL(label5), GTK_JUSTIFY_RIGHT);
247         gtk_misc_set_alignment(GTK_MISC(label5), 1, 0.5);
248
249         btn_aspell_path = gtk_button_new_with_label(_(" ... "));
250         gtk_widget_show(btn_aspell_path);
251         gtk_table_attach(GTK_TABLE(table), btn_aspell_path, 2, 3, 4, 5,
252                          (GtkAttachOptions) (GTK_FILL),
253                          (GtkAttachOptions) (0), 0, 0);
254
255         hbox1 = gtk_hbox_new(FALSE, 0);
256         gtk_widget_show(hbox1);
257         gtk_table_attach(GTK_TABLE(table), hbox1, 1, 2, 7, 8,
258                          (GtkAttachOptions) (GTK_FILL),
259                          (GtkAttachOptions) (GTK_FILL), 0, 0);
260
261         misspelled_btn = gtk_button_new_with_label("");
262         gtk_widget_show(misspelled_btn);
263         gtk_box_pack_start(GTK_BOX(hbox1), misspelled_btn, FALSE, FALSE,
264                            0);
265         gtk_widget_set_usize(misspelled_btn, 30, 20);
266         /* END GLADE CODE */
267
268         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbtn_enable_aspell),
269                                      prefs_common.enable_aspell);
270         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbtn_check_while_typing),
271                                      prefs_common.check_while_typing);
272         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbtn_use_alternate),
273                                      prefs_common.use_alternate);
274         gtk_entry_set_text(GTK_ENTRY(entry_aspell_path), 
275                            SAFE_STRING(prefs_common.aspell_path));
276
277         gtk_signal_connect(GTK_OBJECT(checkbtn_enable_aspell), "toggled",
278                            GTK_SIGNAL_FUNC(prefs_spelling_checkbtn_enable_aspell_toggle_cb),
279                            prefs_spelling);
280         gtk_signal_connect(GTK_OBJECT(btn_aspell_path), "clicked", 
281                            GTK_SIGNAL_FUNC(prefs_spelling_btn_aspell_path_clicked_cb),
282                            prefs_spelling);
283         gtk_signal_connect(GTK_OBJECT(misspelled_btn), "clicked",
284                            GTK_SIGNAL_FUNC(prefs_spelling_colorsel), prefs_spelling);
285
286         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu_dictionary),
287                                  gtkaspell_dictionary_option_menu_new(prefs_common.aspell_path));
288         gtkaspell_set_dictionary_menu_active_item(optmenu_dictionary, prefs_common.dictionary);
289
290         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu_sugmode),
291                                  gtkaspell_sugmode_option_menu_new(prefs_common.aspell_sugmode));
292         gtkaspell_sugmode_option_menu_set(GTK_OPTION_MENU(optmenu_sugmode),
293                                           prefs_common.aspell_sugmode);
294
295         prefs_spelling->misspell_col = prefs_common.misspelled_col;
296         gtkut_set_widget_bgcolor_rgb(misspelled_btn, prefs_spelling->misspell_col);
297
298         prefs_spelling->window
299                 = GTK_WIDGET(window);
300         prefs_spelling->checkbtn_enable_aspell 
301                 = checkbtn_enable_aspell;
302         prefs_spelling->entry_aspell_path
303                 = entry_aspell_path;
304         prefs_spelling->btn_aspell_path
305                 = btn_aspell_path;
306         prefs_spelling->optmenu_dictionary
307                 = optmenu_dictionary;
308         prefs_spelling->optmenu_sugmode
309                 = optmenu_sugmode;
310         prefs_spelling->checkbtn_use_alternate
311                 = checkbtn_use_alternate;
312         prefs_spelling->checkbtn_check_while_typing
313                 = checkbtn_check_while_typing;
314         prefs_spelling->misspelled_btn
315                 = misspelled_btn;
316
317         prefs_spelling->page.widget = table;
318
319         prefs_spelling_enable(prefs_spelling, prefs_common.enable_aspell);
320 }
321
322 void prefs_spelling_save(PrefsPage *_page)
323 {
324         SpellingPage *spelling = (SpellingPage *) _page;
325
326         prefs_common.enable_aspell =
327                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->checkbtn_enable_aspell));
328         prefs_common.check_while_typing =
329                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->checkbtn_check_while_typing));
330         prefs_common.use_alternate =
331                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->checkbtn_use_alternate));
332
333         if (prefs_common.aspell_path)
334                 g_free(prefs_common.aspell_path);
335         prefs_common.aspell_path =
336                 gtk_editable_get_chars(GTK_EDITABLE(spelling->entry_aspell_path), 0, -1);
337
338         if (prefs_common.dictionary != NULL)
339                 g_free(prefs_common.dictionary);
340         prefs_common.dictionary = 
341                 gtkaspell_get_dictionary_menu_active_item(
342                         gtk_option_menu_get_menu(
343                                 GTK_OPTION_MENU(
344                                         spelling->optmenu_dictionary)));
345
346         prefs_common.aspell_sugmode =
347                 gtkaspell_get_sugmode_from_option_menu(
348                         GTK_OPTION_MENU(spelling->optmenu_sugmode));
349
350         prefs_common.misspelled_col = spelling->misspell_col;
351 }
352
353 static void prefs_spelling_destroy_widget(PrefsPage *_page)
354 {
355         /* SpellingPage *spelling = (SpellingPage *) _page; */
356
357 }
358
359 SpellingPage *prefs_spelling;
360
361 void prefs_spelling_init(void)
362 {
363         SpellingPage *page;
364
365         page = g_new0(SpellingPage, 1);
366         page->page.path = _("Compose/Spell Checker");
367         page->page.create_widget = prefs_spelling_create_widget;
368         page->page.destroy_widget = prefs_spelling_destroy_widget;
369         page->page.save_page = prefs_spelling_save;
370         page->page.weight = 50.0;
371         prefs_gtk_register_page((PrefsPage *) page);
372         prefs_spelling = page;
373 }
374
375 void prefs_spelling_done(void)
376 {
377         prefs_gtk_unregister_page((PrefsPage *) prefs_spelling);
378         g_free(prefs_spelling);
379 }
380
381 #endif /* USE_ASPELL */