2003-08-09 03:11:53 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2007-01-03 06:42:43 +01:00
|
|
|
* Copyright (C) 2002-2007 Hiroyuki Yamamoto & the Claws Mail team
|
2003-08-09 03:11:53 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-11 18:38:12 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-09 03:11:53 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-11 18:38:12 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2003-08-09 03:11:53 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-08-09 21:29:33 +02:00
|
|
|
#if USE_ASPELL
|
|
|
|
|
2003-08-09 03:11:53 +02:00
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
2005-02-10 13:06:07 +01:00
|
|
|
#include <glib/gi18n.h>
|
2003-08-09 03:11:53 +02:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "prefs_common.h"
|
|
|
|
#include "prefs_gtk.h"
|
|
|
|
|
|
|
|
#include "gtk/gtkutils.h"
|
|
|
|
#include "gtk/prefswindow.h"
|
|
|
|
#include "gtk/filesel.h"
|
|
|
|
#include "gtk/colorsel.h"
|
2007-10-30 09:04:20 +01:00
|
|
|
#include "gtk/combobox.h"
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
typedef struct _SpellingPage
|
|
|
|
{
|
|
|
|
PrefsPage page;
|
|
|
|
|
|
|
|
GtkWidget *window; /* do not modify */
|
|
|
|
|
2006-05-12 19:42:48 +02:00
|
|
|
GtkWidget *automatic_frame;
|
|
|
|
GtkWidget *dictionary_frame;
|
|
|
|
GtkWidget *path_frame;
|
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
GtkWidget *enable_aspell_checkbtn;
|
|
|
|
GtkWidget *recheck_when_changing_dict_checkbtn;
|
|
|
|
GtkWidget *check_while_typing_checkbtn;
|
|
|
|
GtkWidget *use_alternate_checkbtn;
|
|
|
|
|
|
|
|
GtkWidget *aspell_path_entry;
|
|
|
|
GtkWidget *aspell_path_select;
|
|
|
|
|
|
|
|
GtkWidget *default_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *default_dict_combo;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
2006-12-21 09:15:55 +01:00
|
|
|
GtkWidget *default_alt_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *default_alt_dict_combo;
|
2006-12-21 09:15:55 +01:00
|
|
|
|
2006-12-21 11:52:39 +01:00
|
|
|
GtkWidget *both_dict_check;
|
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
GtkWidget *sugmode_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *sugmode_combo;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
|
|
|
GtkWidget *misspelled_label;
|
|
|
|
GtkWidget *misspelled_colorbtn;
|
|
|
|
GtkWidget *misspelled_useblack_label;
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
gint misspell_col;
|
|
|
|
} SpellingPage;
|
|
|
|
|
|
|
|
static void prefs_spelling_btn_aspell_path_clicked_cb(GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
SpellingPage *spelling = (SpellingPage *) data;
|
|
|
|
gchar *file_path;
|
|
|
|
|
2004-07-21 11:39:52 +02:00
|
|
|
file_path = filesel_select_file_open(_("Select dictionaries location"),
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.aspell_path);
|
|
|
|
if (file_path != NULL) {
|
|
|
|
gchar *tmp_path, *tmp;
|
|
|
|
|
2004-11-12 10:21:06 +01:00
|
|
|
tmp_path = g_path_get_dirname(file_path);
|
2003-08-09 03:11:53 +02:00
|
|
|
tmp = g_strdup_printf("%s%s", tmp_path, G_DIR_SEPARATOR_S);
|
|
|
|
g_free(tmp_path);
|
|
|
|
|
2007-10-30 09:04:20 +01:00
|
|
|
gtk_combo_box_set_model(GTK_COMBO_BOX(spelling->default_dict_combo),
|
|
|
|
gtkaspell_dictionary_store_new(tmp));
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2007-10-30 09:04:20 +01:00
|
|
|
gtk_combo_box_set_model(GTK_COMBO_BOX(spelling->default_alt_dict_combo),
|
|
|
|
gtkaspell_dictionary_store_new_with_refresh(tmp, FALSE));
|
2006-12-21 09:15:55 +01:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_entry_set_text(GTK_ENTRY(spelling->aspell_path_entry), tmp);
|
2003-08-09 03:11:53 +02:00
|
|
|
/* select first one */
|
2007-10-30 09:04:20 +01:00
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(
|
|
|
|
spelling->default_dict_combo), 0);
|
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(
|
|
|
|
spelling->default_alt_dict_combo), 0);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
g_free(tmp);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_spelling_colorsel(GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
SpellingPage *spelling = (SpellingPage *) data;
|
|
|
|
gint rgbcolor;
|
|
|
|
|
|
|
|
rgbcolor = colorsel_select_color_rgb(_("Pick color for misspelled word"),
|
|
|
|
spelling->misspell_col);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtkut_set_widget_bgcolor_rgb(spelling->misspelled_colorbtn, rgbcolor);
|
2003-08-09 03:11:53 +02:00
|
|
|
spelling->misspell_col = rgbcolor;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SAFE_STRING(str) \
|
|
|
|
(str) ? (str) : ""
|
|
|
|
|
2007-01-20 20:54:05 +01:00
|
|
|
static void prefs_spelling_create_widget(PrefsPage *_page, GtkWindow *window, gpointer data)
|
2003-08-09 03:11:53 +02:00
|
|
|
{
|
|
|
|
SpellingPage *prefs_spelling = (SpellingPage *) _page;
|
|
|
|
|
2006-09-03 11:55:00 +02:00
|
|
|
GtkWidget *vbox1, *vbox2;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
|
|
|
GtkWidget *enable_aspell_checkbtn;
|
|
|
|
GtkWidget *check_while_typing_checkbtn;
|
|
|
|
GtkWidget *recheck_when_changing_dict_checkbtn;
|
|
|
|
GtkWidget *use_alternate_checkbtn;
|
|
|
|
|
2006-05-12 19:42:48 +02:00
|
|
|
GtkWidget *automatic_frame;
|
|
|
|
GtkWidget *dictionary_frame;
|
|
|
|
GtkWidget *path_frame;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
|
|
|
GtkWidget *aspell_path_hbox;
|
|
|
|
GtkWidget *aspell_path_entry;
|
|
|
|
GtkWidget *aspell_path_select;
|
|
|
|
|
2006-09-03 11:55:00 +02:00
|
|
|
GtkWidget *table;
|
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
GtkWidget *default_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *default_dict_combo;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
2006-12-21 09:15:55 +01:00
|
|
|
GtkWidget *default_alt_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *default_alt_dict_combo;
|
2006-12-21 09:15:55 +01:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
GtkWidget *sugmode_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
GtkWidget *sugmode_combo;
|
2006-12-21 11:52:39 +01:00
|
|
|
|
|
|
|
GtkWidget *both_dict_check;
|
2006-03-14 21:16:48 +01:00
|
|
|
GtkWidget *misspelled_label;
|
|
|
|
GtkWidget *misspelled_hbox;
|
|
|
|
GtkWidget *misspelled_colorbtn;
|
2008-07-19 16:02:31 +02:00
|
|
|
CLAWS_TIP_DECL();
|
2003-08-30 06:52:49 +02:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
vbox1 = gtk_vbox_new (FALSE, VSPACING);
|
|
|
|
gtk_widget_show (vbox1);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox1), VBOX_BORDER);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
vbox2 = gtk_vbox_new (FALSE, 0);
|
|
|
|
gtk_widget_show (vbox2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox1), vbox2, FALSE, FALSE, 0);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
enable_aspell_checkbtn = gtk_check_button_new_with_label(
|
|
|
|
_("Enable spell checker"));
|
|
|
|
gtk_widget_show(enable_aspell_checkbtn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox2), enable_aspell_checkbtn, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
use_alternate_checkbtn = gtk_check_button_new_with_label(
|
|
|
|
_("Enable alternate dictionary"));
|
|
|
|
gtk_widget_show(use_alternate_checkbtn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox2), use_alternate_checkbtn, TRUE, TRUE, 0);
|
|
|
|
|
2008-07-19 16:02:31 +02:00
|
|
|
CLAWS_SET_TIP(use_alternate_checkbtn,
|
|
|
|
_("Faster switching with last used dictionary"));
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-08-28 14:10:36 +02:00
|
|
|
PACK_FRAME(vbox1, path_frame, _("Path to dictionaries"));
|
2006-03-14 21:16:48 +01:00
|
|
|
aspell_path_hbox = gtk_hbox_new(FALSE, 8);
|
|
|
|
gtk_widget_show(aspell_path_hbox);
|
2006-05-12 19:42:48 +02:00
|
|
|
gtk_container_add(GTK_CONTAINER(path_frame), aspell_path_hbox);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(aspell_path_hbox), 8);
|
2006-02-16 17:01:51 +01:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
aspell_path_entry = gtk_entry_new();
|
|
|
|
gtk_widget_show(aspell_path_entry);
|
|
|
|
gtk_box_pack_start(GTK_BOX(aspell_path_hbox), aspell_path_entry, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_set_size_request(aspell_path_entry, 30, 20);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
aspell_path_select = gtkut_get_browse_directory_btn(_("_Browse"));
|
|
|
|
gtk_widget_show(aspell_path_select);
|
|
|
|
gtk_box_pack_start(GTK_BOX(aspell_path_hbox), aspell_path_select, FALSE, FALSE, 0);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2007-03-15 10:51:32 +01:00
|
|
|
vbox2 = gtkut_get_options_frame(vbox1, &automatic_frame, _("Automatic spell checking"));
|
2006-03-14 21:16:48 +01:00
|
|
|
|
2006-05-12 19:42:48 +02:00
|
|
|
check_while_typing_checkbtn = gtk_check_button_new_with_label(
|
|
|
|
_("Check while typing"));
|
|
|
|
gtk_widget_show(check_while_typing_checkbtn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox2), check_while_typing_checkbtn, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
recheck_when_changing_dict_checkbtn = gtk_check_button_new_with_label(
|
|
|
|
_("Re-check message when changing dictionary"));
|
|
|
|
gtk_widget_show(recheck_when_changing_dict_checkbtn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox2), recheck_when_changing_dict_checkbtn, TRUE, TRUE, 0);
|
|
|
|
|
2007-01-13 17:03:08 +01:00
|
|
|
vbox2 = gtkut_get_options_frame(vbox1, &dictionary_frame, _("Dictionary"));
|
2006-05-12 19:42:48 +02:00
|
|
|
|
2006-12-21 11:52:39 +01:00
|
|
|
table = gtk_table_new(6, 4, FALSE);
|
2006-09-03 11:55:00 +02:00
|
|
|
gtk_widget_show(table);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(table), 8);
|
|
|
|
gtk_table_set_row_spacings(GTK_TABLE(table), 4);
|
|
|
|
gtk_table_set_col_spacings(GTK_TABLE(table), 8);
|
|
|
|
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox2), table, TRUE, TRUE, 0);
|
|
|
|
|
2006-05-12 19:42:48 +02:00
|
|
|
default_dict_label = gtk_label_new(_("Default dictionary"));
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_widget_show(default_dict_label);
|
2006-09-03 11:55:00 +02:00
|
|
|
gtk_table_attach(GTK_TABLE (table), default_dict_label, 0, 1, 0, 1,
|
|
|
|
(GtkAttachOptions) (GTK_FILL),
|
|
|
|
(GtkAttachOptions) (0), 0, 2);
|
|
|
|
gtk_label_set_justify(GTK_LABEL(default_dict_label), GTK_JUSTIFY_RIGHT);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_misc_set_alignment(GTK_MISC(default_dict_label), 1, 0.5);
|
2006-05-12 19:42:48 +02:00
|
|
|
|
2007-10-30 09:04:20 +01:00
|
|
|
default_dict_combo = gtkaspell_dictionary_combo_new(
|
|
|
|
prefs_common.aspell_path, TRUE);
|
|
|
|
gtk_widget_set_size_request(default_dict_combo, 180, -1);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), default_dict_combo, 1, 2, 0, 1,
|
2006-09-03 11:55:00 +02:00
|
|
|
GTK_SHRINK, 0, 0, 0);
|
2006-05-12 19:42:48 +02:00
|
|
|
|
2006-12-21 09:15:55 +01:00
|
|
|
default_alt_dict_label = gtk_label_new(_("Default alternate dictionary"));
|
|
|
|
gtk_widget_show(default_alt_dict_label);
|
|
|
|
gtk_table_attach(GTK_TABLE (table), default_alt_dict_label, 0, 1, 1, 2,
|
|
|
|
(GtkAttachOptions) (GTK_FILL),
|
|
|
|
(GtkAttachOptions) (0), 0, 2);
|
|
|
|
gtk_label_set_justify(GTK_LABEL(default_alt_dict_label), GTK_JUSTIFY_RIGHT);
|
|
|
|
gtk_misc_set_alignment(GTK_MISC(default_alt_dict_label), 1, 0.5);
|
|
|
|
|
2007-10-30 09:04:20 +01:00
|
|
|
default_alt_dict_combo = gtkaspell_dictionary_combo_new(
|
|
|
|
prefs_common.aspell_path, FALSE);
|
|
|
|
gtk_widget_set_size_request(default_alt_dict_combo, 180, -1);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), default_alt_dict_combo, 1, 2, 1, 2,
|
2006-12-21 09:15:55 +01:00
|
|
|
GTK_SHRINK, 0, 0, 0);
|
|
|
|
|
2006-12-21 11:52:39 +01:00
|
|
|
both_dict_check = gtk_check_button_new_with_label(
|
|
|
|
_("Check with both dictionaries"));
|
|
|
|
gtk_widget_show(both_dict_check);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), both_dict_check, 1, 2, 2, 3,
|
|
|
|
GTK_SHRINK, 0, 0, 0);
|
|
|
|
|
2006-05-12 19:42:48 +02:00
|
|
|
sugmode_label = gtk_label_new(_("Default suggestion mode"));
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_widget_show(sugmode_label);
|
2006-12-21 11:52:39 +01:00
|
|
|
gtk_table_attach(GTK_TABLE (table), sugmode_label, 0, 1, 3, 4,
|
2006-09-03 11:55:00 +02:00
|
|
|
(GtkAttachOptions) (GTK_FILL),
|
|
|
|
(GtkAttachOptions) (0), 0, 2);
|
|
|
|
gtk_label_set_justify(GTK_LABEL(sugmode_label), GTK_JUSTIFY_RIGHT);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_misc_set_alignment(GTK_MISC(sugmode_label), 1, 0.5);
|
|
|
|
|
2007-10-30 09:04:20 +01:00
|
|
|
sugmode_combo = gtkaspell_sugmode_combo_new(prefs_common.aspell_sugmode);
|
|
|
|
gtk_widget_set_size_request(sugmode_combo, 180, -1);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), sugmode_combo, 1, 2, 3, 4,
|
2006-09-03 11:55:00 +02:00
|
|
|
GTK_SHRINK, 0, 0, 0);
|
2006-05-12 19:42:48 +02:00
|
|
|
|
|
|
|
misspelled_hbox = gtk_hbox_new(FALSE, 10);
|
|
|
|
gtk_widget_show(misspelled_hbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox1), misspelled_hbox, FALSE, FALSE, 0);
|
|
|
|
|
2006-09-03 11:55:00 +02:00
|
|
|
misspelled_label = gtk_label_new(_("Misspelled word color"));
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_widget_show(misspelled_label);
|
2006-05-12 19:42:48 +02:00
|
|
|
gtk_box_pack_start(GTK_BOX(misspelled_hbox), misspelled_label,
|
|
|
|
FALSE, FALSE, 0);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_label_set_justify(GTK_LABEL(misspelled_label), GTK_JUSTIFY_RIGHT);
|
|
|
|
gtk_misc_set_alignment(GTK_MISC(misspelled_label), 1, 0.5);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
misspelled_colorbtn = gtk_button_new_with_label("");
|
|
|
|
gtk_widget_show(misspelled_colorbtn);
|
2006-05-12 19:42:48 +02:00
|
|
|
gtk_box_pack_start(GTK_BOX(misspelled_hbox), misspelled_colorbtn,
|
|
|
|
FALSE, FALSE, 0);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_widget_set_size_request(misspelled_colorbtn, 30, 20);
|
2008-07-19 16:02:31 +02:00
|
|
|
CLAWS_SET_TIP(misspelled_colorbtn,
|
2006-04-13 15:57:32 +02:00
|
|
|
_("Pick color for misspelled word. "
|
2008-07-19 16:02:31 +02:00
|
|
|
"Use black to underline"));
|
2006-03-14 21:16:48 +01:00
|
|
|
|
2006-12-21 09:15:55 +01:00
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, automatic_frame);
|
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, dictionary_frame);
|
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, path_frame);
|
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, misspelled_label);
|
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, misspelled_colorbtn);
|
|
|
|
SET_TOGGLE_SENSITIVITY(enable_aspell_checkbtn, use_alternate_checkbtn);
|
|
|
|
SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, default_alt_dict_label);
|
2007-10-30 09:04:20 +01:00
|
|
|
SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, default_alt_dict_combo);
|
2006-12-21 11:52:39 +01:00
|
|
|
SET_TOGGLE_SENSITIVITY(use_alternate_checkbtn, both_dict_check);
|
2006-12-21 09:15:55 +01:00
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(enable_aspell_checkbtn),
|
|
|
|
prefs_common.enable_aspell);
|
2006-12-21 11:52:39 +01:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(both_dict_check),
|
|
|
|
prefs_common.use_both_dicts);
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_while_typing_checkbtn),
|
|
|
|
prefs_common.check_while_typing);
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(recheck_when_changing_dict_checkbtn),
|
|
|
|
prefs_common.recheck_when_changing_dict);
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(use_alternate_checkbtn),
|
|
|
|
prefs_common.use_alternate);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(aspell_path_entry),
|
|
|
|
SAFE_STRING(prefs_common.aspell_path));
|
|
|
|
g_signal_connect(G_OBJECT(aspell_path_select), "clicked",
|
2004-05-25 10:39:41 +02:00
|
|
|
G_CALLBACK(prefs_spelling_btn_aspell_path_clicked_cb),
|
|
|
|
prefs_spelling);
|
2007-10-30 09:04:20 +01:00
|
|
|
gtkaspell_set_dictionary_menu_active_item(GTK_COMBO_BOX(default_dict_combo),
|
|
|
|
prefs_common.dictionary);
|
|
|
|
|
|
|
|
gtkaspell_set_dictionary_menu_active_item(GTK_COMBO_BOX(default_alt_dict_combo),
|
|
|
|
prefs_common.alt_dictionary);
|
|
|
|
|
2006-03-14 21:16:48 +01:00
|
|
|
g_signal_connect(G_OBJECT(misspelled_colorbtn), "clicked",
|
|
|
|
G_CALLBACK(prefs_spelling_colorsel), prefs_spelling);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
prefs_spelling->misspell_col = prefs_common.misspelled_col;
|
2006-03-14 21:16:48 +01:00
|
|
|
gtkut_set_widget_bgcolor_rgb(misspelled_colorbtn, prefs_spelling->misspell_col);
|
|
|
|
|
|
|
|
prefs_spelling->window = GTK_WIDGET(window);
|
2006-05-12 19:42:48 +02:00
|
|
|
prefs_spelling->automatic_frame = automatic_frame;
|
|
|
|
prefs_spelling->dictionary_frame = dictionary_frame;
|
|
|
|
prefs_spelling->path_frame = path_frame;
|
2006-03-14 21:16:48 +01:00
|
|
|
prefs_spelling->enable_aspell_checkbtn = enable_aspell_checkbtn;
|
|
|
|
prefs_spelling->check_while_typing_checkbtn
|
|
|
|
= check_while_typing_checkbtn;
|
|
|
|
prefs_spelling->recheck_when_changing_dict_checkbtn
|
|
|
|
= recheck_when_changing_dict_checkbtn;
|
|
|
|
prefs_spelling->use_alternate_checkbtn = use_alternate_checkbtn;
|
|
|
|
prefs_spelling->aspell_path_entry = aspell_path_entry;
|
|
|
|
prefs_spelling->aspell_path_select = aspell_path_select;
|
|
|
|
prefs_spelling->default_dict_label = default_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
prefs_spelling->default_dict_combo = default_dict_combo;
|
2006-12-21 09:15:55 +01:00
|
|
|
prefs_spelling->default_alt_dict_label = default_alt_dict_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
prefs_spelling->default_alt_dict_combo = default_alt_dict_combo;
|
2006-03-14 21:16:48 +01:00
|
|
|
prefs_spelling->sugmode_label = sugmode_label;
|
2007-10-30 09:04:20 +01:00
|
|
|
prefs_spelling->sugmode_combo = sugmode_combo;
|
2006-03-14 21:16:48 +01:00
|
|
|
prefs_spelling->misspelled_label = misspelled_label;
|
|
|
|
prefs_spelling->misspelled_colorbtn = misspelled_colorbtn;
|
2006-12-21 11:52:39 +01:00
|
|
|
prefs_spelling->both_dict_check = both_dict_check;
|
2006-03-14 21:16:48 +01:00
|
|
|
|
|
|
|
prefs_spelling->page.widget = vbox1;
|
2003-08-09 03:11:53 +02:00
|
|
|
}
|
|
|
|
|
2007-01-20 20:54:05 +01:00
|
|
|
static void prefs_spelling_save(PrefsPage *_page)
|
2003-08-09 03:11:53 +02:00
|
|
|
{
|
|
|
|
SpellingPage *spelling = (SpellingPage *) _page;
|
|
|
|
|
|
|
|
prefs_common.enable_aspell =
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->enable_aspell_checkbtn));
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.check_while_typing =
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->check_while_typing_checkbtn));
|
2006-02-16 17:01:51 +01:00
|
|
|
prefs_common.recheck_when_changing_dict =
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->recheck_when_changing_dict_checkbtn));
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.use_alternate =
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->use_alternate_checkbtn));
|
2006-12-21 11:52:39 +01:00
|
|
|
prefs_common.use_both_dicts =
|
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(spelling->both_dict_check));
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-04-06 12:58:17 +02:00
|
|
|
g_free(prefs_common.aspell_path);
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.aspell_path =
|
2006-03-14 21:16:48 +01:00
|
|
|
gtk_editable_get_chars(GTK_EDITABLE(spelling->aspell_path_entry), 0, -1);
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-04-06 12:58:17 +02:00
|
|
|
g_free(prefs_common.dictionary);
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.dictionary =
|
|
|
|
gtkaspell_get_dictionary_menu_active_item(
|
2007-10-30 09:04:20 +01:00
|
|
|
GTK_COMBO_BOX(spelling->default_dict_combo));
|
2003-08-09 03:11:53 +02:00
|
|
|
|
2006-12-21 09:15:55 +01:00
|
|
|
g_free(prefs_common.alt_dictionary);
|
|
|
|
prefs_common.alt_dictionary =
|
|
|
|
gtkaspell_get_dictionary_menu_active_item(
|
2007-10-30 09:04:20 +01:00
|
|
|
GTK_COMBO_BOX(spelling->default_alt_dict_combo));
|
2006-12-21 09:15:55 +01:00
|
|
|
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_common.aspell_sugmode =
|
2007-10-30 09:04:20 +01:00
|
|
|
combobox_get_active_data(GTK_COMBO_BOX(spelling->sugmode_combo));
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
prefs_common.misspelled_col = spelling->misspell_col;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_spelling_destroy_widget(PrefsPage *_page)
|
|
|
|
{
|
|
|
|
/* SpellingPage *spelling = (SpellingPage *) _page; */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SpellingPage *prefs_spelling;
|
|
|
|
|
|
|
|
void prefs_spelling_init(void)
|
|
|
|
{
|
|
|
|
SpellingPage *page;
|
2004-08-06 13:34:34 +02:00
|
|
|
static gchar *path[3];
|
2005-09-09 18:49:10 +02:00
|
|
|
const gchar* language = NULL;
|
|
|
|
|
2004-08-06 13:34:34 +02:00
|
|
|
path[0] = _("Compose");
|
2005-07-15 09:54:30 +02:00
|
|
|
path[1] = _("Spell Checking");
|
2004-08-06 13:34:34 +02:00
|
|
|
path[2] = NULL;
|
2003-08-09 03:11:53 +02:00
|
|
|
|
|
|
|
page = g_new0(SpellingPage, 1);
|
2004-08-06 13:34:34 +02:00
|
|
|
page->page.path = path;
|
2003-08-09 03:11:53 +02:00
|
|
|
page->page.create_widget = prefs_spelling_create_widget;
|
|
|
|
page->page.destroy_widget = prefs_spelling_destroy_widget;
|
|
|
|
page->page.save_page = prefs_spelling_save;
|
2005-05-31 21:00:21 +02:00
|
|
|
page->page.weight = 180.0;
|
2004-08-06 13:34:34 +02:00
|
|
|
|
2003-08-09 03:11:53 +02:00
|
|
|
prefs_gtk_register_page((PrefsPage *) page);
|
|
|
|
prefs_spelling = page;
|
2004-09-02 09:19:24 +02:00
|
|
|
|
2005-09-09 18:49:10 +02:00
|
|
|
language = g_getenv("LANG");
|
2005-09-12 11:22:22 +02:00
|
|
|
if (language == NULL)
|
|
|
|
language = "en";
|
|
|
|
else if (!strcmp(language, "POSIX") || !strcmp(language, "C"))
|
2005-09-09 18:49:10 +02:00
|
|
|
language = "en";
|
|
|
|
|
2004-09-02 09:19:24 +02:00
|
|
|
if (!prefs_common.dictionary)
|
|
|
|
prefs_common.dictionary = g_strdup_printf("%s%s",
|
|
|
|
prefs_common.aspell_path,
|
2005-09-09 18:49:10 +02:00
|
|
|
language);
|
2004-09-02 09:19:24 +02:00
|
|
|
if (!strlen(prefs_common.dictionary)
|
|
|
|
|| !strcmp(prefs_common.dictionary,"(None"))
|
|
|
|
prefs_common.dictionary = g_strdup_printf("%s%s",
|
|
|
|
prefs_common.aspell_path,
|
2005-09-09 18:49:10 +02:00
|
|
|
language);
|
2004-09-02 09:19:24 +02:00
|
|
|
if (strcasestr(prefs_common.dictionary,".utf"))
|
|
|
|
*(strcasestr(prefs_common.dictionary,".utf")) = '\0';
|
|
|
|
if (strstr(prefs_common.dictionary,"@"))
|
|
|
|
*(strstr(prefs_common.dictionary,"@")) = '\0';
|
2003-08-09 03:11:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_spelling_done(void)
|
|
|
|
{
|
|
|
|
prefs_gtk_unregister_page((PrefsPage *) prefs_spelling);
|
|
|
|
g_free(prefs_spelling);
|
|
|
|
}
|
2003-08-09 21:29:33 +02:00
|
|
|
|
|
|
|
#endif /* USE_ASPELL */
|