xed/plugins/spell/xedit-spell-checker-dialog.c

727 lines
20 KiB
C
Raw Normal View History

2011-11-07 13:46:58 -06:00
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
2016-01-25 08:13:49 -06:00
* xedit-spell-checker-dialog.c
* This file is part of xedit
2011-11-07 13:46:58 -06:00
*
* Copyright (C) 2002 Paolo Maggi
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (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
* along with this program; if not, write to the Free Software
2012-11-18 19:54:49 -06:00
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
2011-11-07 13:46:58 -06:00
*/
/*
2016-01-25 08:13:49 -06:00
* Modified by the xedit Team, 2002. See the AUTHORS file for a
* list of people on the xedit Team.
2011-11-07 13:46:58 -06:00
* See the ChangeLog files for a list of changes.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
2016-01-25 08:13:49 -06:00
#include <xedit/xedit-utils.h>
#include "xedit-spell-checker-dialog.h"
#include "xedit-spell-marshal.h"
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
struct _XeditSpellCheckerDialog
2011-11-07 13:46:58 -06:00
{
GtkWindow parent_instance;
2016-01-25 08:13:49 -06:00
XeditSpellChecker *spell_checker;
2011-11-07 13:46:58 -06:00
gchar *misspelled_word;
GtkWidget *misspelled_word_label;
GtkWidget *word_entry;
GtkWidget *check_word_button;
GtkWidget *ignore_button;
GtkWidget *ignore_all_button;
GtkWidget *change_button;
GtkWidget *change_all_button;
GtkWidget *add_word_button;
GtkWidget *close_button;
GtkWidget *suggestions_list;
GtkWidget *language_label;
GtkTreeModel *suggestions_list_model;
};
enum
{
IGNORE,
IGNORE_ALL,
CHANGE,
CHANGE_ALL,
ADD_WORD_TO_PERSONAL,
LAST_SIGNAL
};
enum
{
COLUMN_SUGGESTIONS,
NUM_COLUMNS
};
2016-01-25 08:13:49 -06:00
static void update_suggestions_list_model (XeditSpellCheckerDialog *dlg,
2011-11-07 13:46:58 -06:00
GSList *suggestions);
static void word_entry_changed_handler (GtkEditable *editable,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void close_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void suggestions_list_selection_changed_handler (GtkTreeSelection *selection,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void check_word_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void add_word_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void ignore_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void ignore_all_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void change_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void change_all_button_clicked_handler (GtkButton *button,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static void suggestions_list_row_activated_handler (GtkTreeView *view,
GtkTreePath *path,
GtkTreeViewColumn *column,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg);
2011-11-07 13:46:58 -06:00
static guint signals [LAST_SIGNAL] = { 0 };
2016-01-25 08:13:49 -06:00
G_DEFINE_TYPE(XeditSpellCheckerDialog, xedit_spell_checker_dialog, GTK_TYPE_WINDOW)
2011-11-07 13:46:58 -06:00
static void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_dispose (GObject *object)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg = XEDIT_SPELL_CHECKER_DIALOG (object);
2011-11-07 13:46:58 -06:00
if (dlg->spell_checker != NULL)
{
g_object_unref (dlg->spell_checker);
dlg->spell_checker = NULL;
}
if (dlg->misspelled_word != NULL)
{
g_free (dlg->misspelled_word);
dlg->misspelled_word = NULL;
}
2016-01-25 08:13:49 -06:00
G_OBJECT_CLASS (xedit_spell_checker_dialog_parent_class)->dispose (object);
2011-11-07 13:46:58 -06:00
}
static void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_class_init (XeditSpellCheckerDialogClass * klass)
2011-11-07 13:46:58 -06:00
{
GObjectClass *object_class;
object_class = G_OBJECT_CLASS (klass);
2016-01-25 08:13:49 -06:00
object_class->dispose = xedit_spell_checker_dialog_dispose;
2011-11-07 13:46:58 -06:00
signals[IGNORE] =
g_signal_new ("ignore",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
2016-01-25 08:13:49 -06:00
G_STRUCT_OFFSET (XeditSpellCheckerDialogClass, ignore),
2011-11-07 13:46:58 -06:00
NULL, NULL,
2016-01-25 08:13:49 -06:00
xedit_marshal_VOID__STRING,
2011-11-07 13:46:58 -06:00
G_TYPE_NONE,
1,
G_TYPE_STRING);
signals[IGNORE_ALL] =
g_signal_new ("ignore_all",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
2016-01-25 08:13:49 -06:00
G_STRUCT_OFFSET (XeditSpellCheckerDialogClass, ignore_all),
2011-11-07 13:46:58 -06:00
NULL, NULL,
2016-01-25 08:13:49 -06:00
xedit_marshal_VOID__STRING,
2011-11-07 13:46:58 -06:00
G_TYPE_NONE,
1,
G_TYPE_STRING);
signals[CHANGE] =
g_signal_new ("change",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
2016-01-25 08:13:49 -06:00
G_STRUCT_OFFSET (XeditSpellCheckerDialogClass, change),
2011-11-07 13:46:58 -06:00
NULL, NULL,
2016-01-25 08:13:49 -06:00
xedit_marshal_VOID__STRING_STRING,
2011-11-07 13:46:58 -06:00
G_TYPE_NONE,
2,
G_TYPE_STRING,
G_TYPE_STRING);
signals[CHANGE_ALL] =
g_signal_new ("change_all",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
2016-01-25 08:13:49 -06:00
G_STRUCT_OFFSET (XeditSpellCheckerDialogClass, change_all),
2011-11-07 13:46:58 -06:00
NULL, NULL,
2016-01-25 08:13:49 -06:00
xedit_marshal_VOID__STRING_STRING,
2011-11-07 13:46:58 -06:00
G_TYPE_NONE,
2,
G_TYPE_STRING,
G_TYPE_STRING);
signals[ADD_WORD_TO_PERSONAL] =
g_signal_new ("add_word_to_personal",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
2016-01-25 08:13:49 -06:00
G_STRUCT_OFFSET (XeditSpellCheckerDialogClass, add_word_to_personal),
2011-11-07 13:46:58 -06:00
NULL, NULL,
2016-01-25 08:13:49 -06:00
xedit_marshal_VOID__STRING,
2011-11-07 13:46:58 -06:00
G_TYPE_NONE,
1,
G_TYPE_STRING);
}
static void
2016-01-25 08:13:49 -06:00
create_dialog (XeditSpellCheckerDialog *dlg,
2011-11-07 13:46:58 -06:00
const gchar *data_dir)
{
GtkWidget *error_widget;
GtkWidget *content;
GtkTreeViewColumn *column;
GtkCellRenderer *cell;
GtkTreeSelection *selection;
gchar *root_objects[] = {
"content",
"check_word_image",
"add_word_image",
"ignore_image",
"change_image",
"ignore_all_image",
"change_all_image",
NULL
};
gboolean ret;
gchar *ui_file;
g_return_if_fail (dlg != NULL);
dlg->spell_checker = NULL;
dlg->misspelled_word = NULL;
ui_file = g_build_filename (data_dir, "spell-checker.ui", NULL);
2016-01-25 08:13:49 -06:00
ret = xedit_utils_get_ui_objects (ui_file,
2011-11-07 13:46:58 -06:00
root_objects,
&error_widget,
"content", &content,
"misspelled_word_label", &dlg->misspelled_word_label,
"word_entry", &dlg->word_entry,
"check_word_button", &dlg->check_word_button,
"ignore_button", &dlg->ignore_button,
"ignore_all_button", &dlg->ignore_all_button,
"change_button", &dlg->change_button,
"change_all_button", &dlg->change_all_button,
"add_word_button", &dlg->add_word_button,
"close_button", &dlg->close_button,
"suggestions_list", &dlg->suggestions_list,
"language_label", &dlg->language_label,
NULL);
g_free (ui_file);
if (!ret)
{
gtk_widget_show (error_widget);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dlg))),
error_widget, TRUE, TRUE, 0);
return;
}
gtk_label_set_label (GTK_LABEL (dlg->misspelled_word_label), "");
gtk_widget_set_sensitive (dlg->word_entry, FALSE);
gtk_widget_set_sensitive (dlg->check_word_button, FALSE);
gtk_widget_set_sensitive (dlg->ignore_button, FALSE);
gtk_widget_set_sensitive (dlg->ignore_all_button, FALSE);
gtk_widget_set_sensitive (dlg->change_button, FALSE);
gtk_widget_set_sensitive (dlg->change_all_button, FALSE);
gtk_widget_set_sensitive (dlg->add_word_button, FALSE);
gtk_label_set_label (GTK_LABEL (dlg->language_label), "");
gtk_container_add (GTK_CONTAINER (dlg), content);
g_object_unref (content);
gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE);
gtk_window_set_title (GTK_WINDOW (dlg), _("Check Spelling"));
/* Suggestion list */
dlg->suggestions_list_model = GTK_TREE_MODEL (
gtk_list_store_new (NUM_COLUMNS, G_TYPE_STRING));
gtk_tree_view_set_model (GTK_TREE_VIEW (dlg->suggestions_list),
dlg->suggestions_list_model);
/* Add the suggestions column */
cell = gtk_cell_renderer_text_new ();
column = gtk_tree_view_column_new_with_attributes (_("Suggestions"), cell,
"text", COLUMN_SUGGESTIONS, NULL);
gtk_tree_view_append_column (GTK_TREE_VIEW (dlg->suggestions_list), column);
gtk_tree_view_set_search_column (GTK_TREE_VIEW (dlg->suggestions_list),
COLUMN_SUGGESTIONS);
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dlg->suggestions_list));
gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
/* Set default button */
2013-10-30 10:20:47 -05:00
gtk_widget_set_can_default (dlg->change_button, TRUE);
2011-11-07 13:46:58 -06:00
gtk_widget_grab_default (dlg->change_button);
gtk_entry_set_activates_default (GTK_ENTRY (dlg->word_entry), TRUE);
/* Connect signals */
g_signal_connect (dlg->word_entry, "changed",
G_CALLBACK (word_entry_changed_handler), dlg);
g_signal_connect (dlg->close_button, "clicked",
G_CALLBACK (close_button_clicked_handler), dlg);
g_signal_connect (selection, "changed",
G_CALLBACK (suggestions_list_selection_changed_handler),
dlg);
g_signal_connect (dlg->check_word_button, "clicked",
G_CALLBACK (check_word_button_clicked_handler), dlg);
g_signal_connect (dlg->add_word_button, "clicked",
G_CALLBACK (add_word_button_clicked_handler), dlg);
g_signal_connect (dlg->ignore_button, "clicked",
G_CALLBACK (ignore_button_clicked_handler), dlg);
g_signal_connect (dlg->ignore_all_button, "clicked",
G_CALLBACK (ignore_all_button_clicked_handler), dlg);
g_signal_connect (dlg->change_button, "clicked",
G_CALLBACK (change_button_clicked_handler), dlg);
g_signal_connect (dlg->change_all_button, "clicked",
G_CALLBACK (change_all_button_clicked_handler), dlg);
g_signal_connect (dlg->suggestions_list, "row-activated",
G_CALLBACK (suggestions_list_row_activated_handler), dlg);
}
static void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_init (XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
}
GtkWidget *
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_new (const gchar *data_dir)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg;
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
dlg = XEDIT_SPELL_CHECKER_DIALOG (
g_object_new (XEDIT_TYPE_SPELL_CHECKER_DIALOG, NULL));
2011-11-07 13:46:58 -06:00
g_return_val_if_fail (dlg != NULL, NULL);
create_dialog (dlg, data_dir);
return GTK_WIDGET (dlg);
}
GtkWidget *
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_new_from_spell_checker (XeditSpellChecker *spell,
2011-11-07 13:46:58 -06:00
const gchar *data_dir)
{
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg;
2011-11-07 13:46:58 -06:00
g_return_val_if_fail (spell != NULL, NULL);
2016-01-25 08:13:49 -06:00
dlg = XEDIT_SPELL_CHECKER_DIALOG (
g_object_new (XEDIT_TYPE_SPELL_CHECKER_DIALOG, NULL));
2011-11-07 13:46:58 -06:00
g_return_val_if_fail (dlg != NULL, NULL);
create_dialog (dlg, data_dir);
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_set_spell_checker (dlg, spell);
2011-11-07 13:46:58 -06:00
return GTK_WIDGET (dlg);
}
void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_set_spell_checker (XeditSpellCheckerDialog *dlg, XeditSpellChecker *spell)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
const XeditSpellCheckerLanguage* language;
2011-11-07 13:46:58 -06:00
const gchar *lang;
gchar *tmp;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (spell != NULL);
if (dlg->spell_checker != NULL)
g_object_unref (dlg->spell_checker);
dlg->spell_checker = spell;
g_object_ref (dlg->spell_checker);
2016-01-25 08:13:49 -06:00
language = xedit_spell_checker_get_language (dlg->spell_checker);
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
lang = xedit_spell_checker_language_to_string (language);
2011-11-07 13:46:58 -06:00
tmp = g_strdup_printf("<b>%s</b>", lang);
gtk_label_set_label (GTK_LABEL (dlg->language_label), tmp);
g_free (tmp);
if (dlg->misspelled_word != NULL)
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_set_misspelled_word (dlg, dlg->misspelled_word, -1);
2011-11-07 13:46:58 -06:00
else
gtk_list_store_clear (GTK_LIST_STORE (dlg->suggestions_list_model));
/* TODO: reset all widgets */
}
void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_set_misspelled_word (XeditSpellCheckerDialog *dlg,
2011-11-07 13:46:58 -06:00
const gchar *word,
gint len)
{
gchar *tmp;
GSList *sug;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (word != NULL);
g_return_if_fail (dlg->spell_checker != NULL);
2016-01-25 08:13:49 -06:00
g_return_if_fail (!xedit_spell_checker_check_word (dlg->spell_checker, word, -1));
2011-11-07 13:46:58 -06:00
/* build_suggestions_list */
if (dlg->misspelled_word != NULL)
g_free (dlg->misspelled_word);
dlg->misspelled_word = g_strdup (word);
tmp = g_strdup_printf("<b>%s</b>", word);
gtk_label_set_label (GTK_LABEL (dlg->misspelled_word_label), tmp);
g_free (tmp);
2016-01-25 08:13:49 -06:00
sug = xedit_spell_checker_get_suggestions (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
dlg->misspelled_word,
-1);
update_suggestions_list_model (dlg, sug);
/* free the suggestion list */
g_slist_foreach (sug, (GFunc)g_free, NULL);
g_slist_free (sug);
gtk_widget_set_sensitive (dlg->ignore_button, TRUE);
gtk_widget_set_sensitive (dlg->ignore_all_button, TRUE);
gtk_widget_set_sensitive (dlg->add_word_button, TRUE);
}
static void
2016-01-25 08:13:49 -06:00
update_suggestions_list_model (XeditSpellCheckerDialog *dlg, GSList *suggestions)
2011-11-07 13:46:58 -06:00
{
GtkListStore *store;
GtkTreeIter iter;
GtkTreeSelection *sel;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (GTK_IS_LIST_STORE (dlg->suggestions_list_model));
store = GTK_LIST_STORE (dlg->suggestions_list_model);
gtk_list_store_clear (store);
gtk_widget_set_sensitive (dlg->word_entry, TRUE);
if (suggestions == NULL)
{
gtk_list_store_append (store, &iter);
gtk_list_store_set (store, &iter,
/* Translators: Displayed in the "Check Spelling" dialog if there are no suggestions
* for the current misspelled word */
COLUMN_SUGGESTIONS, _("(no suggested words)"),
-1);
gtk_entry_set_text (GTK_ENTRY (dlg->word_entry), "");
gtk_widget_set_sensitive (dlg->suggestions_list, FALSE);
return;
}
gtk_widget_set_sensitive (dlg->suggestions_list, TRUE);
gtk_entry_set_text (GTK_ENTRY (dlg->word_entry), (gchar*)suggestions->data);
while (suggestions != NULL)
{
gtk_list_store_append (store, &iter);
gtk_list_store_set (store, &iter,
COLUMN_SUGGESTIONS, (gchar*)suggestions->data,
-1);
suggestions = g_slist_next (suggestions);
}
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (dlg->suggestions_list));
gtk_tree_model_get_iter_first (dlg->suggestions_list_model, &iter);
gtk_tree_selection_select_iter (sel, &iter);
}
static void
2016-01-25 08:13:49 -06:00
word_entry_changed_handler (GtkEditable *editable, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
const gchar *text;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
text = gtk_entry_get_text (GTK_ENTRY (dlg->word_entry));
if (g_utf8_strlen (text, -1) > 0)
{
gtk_widget_set_sensitive (dlg->check_word_button, TRUE);
gtk_widget_set_sensitive (dlg->change_button, TRUE);
gtk_widget_set_sensitive (dlg->change_all_button, TRUE);
}
else
{
gtk_widget_set_sensitive (dlg->check_word_button, FALSE);
gtk_widget_set_sensitive (dlg->change_button, FALSE);
gtk_widget_set_sensitive (dlg->change_all_button, FALSE);
}
}
static void
2016-01-25 08:13:49 -06:00
close_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
gtk_widget_destroy (GTK_WIDGET (dlg));
}
static void
suggestions_list_selection_changed_handler (GtkTreeSelection *selection,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
GtkTreeIter iter;
GValue value = {0, };
const gchar *text;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
if (! gtk_tree_selection_get_selected (selection, NULL, &iter))
return;
gtk_tree_model_get_value (dlg->suggestions_list_model, &iter,
COLUMN_SUGGESTIONS,
&value);
text = g_value_get_string (&value);
gtk_entry_set_text (GTK_ENTRY (dlg->word_entry), text);
g_value_unset (&value);
}
static void
2016-01-25 08:13:49 -06:00
check_word_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
const gchar *word;
gssize len;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
word = gtk_entry_get_text (GTK_ENTRY (dlg->word_entry));
len = strlen (word);
g_return_if_fail (len > 0);
2016-01-25 08:13:49 -06:00
if (xedit_spell_checker_check_word (dlg->spell_checker, word, len))
2011-11-07 13:46:58 -06:00
{
GtkListStore *store;
GtkTreeIter iter;
store = GTK_LIST_STORE (dlg->suggestions_list_model);
gtk_list_store_clear (store);
gtk_list_store_append (store, &iter);
gtk_list_store_set (store, &iter,
/* Translators: Displayed in the "Check Spelling" dialog if the current word isn't misspelled */
COLUMN_SUGGESTIONS, _("(correct spelling)"),
-1);
gtk_widget_set_sensitive (dlg->suggestions_list, FALSE);
}
else
{
GSList *sug;
2016-01-25 08:13:49 -06:00
sug = xedit_spell_checker_get_suggestions (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
word,
len);
update_suggestions_list_model (dlg, sug);
/* free the suggestion list */
g_slist_foreach (sug, (GFunc)g_free, NULL);
g_slist_free (sug);
}
}
static void
2016-01-25 08:13:49 -06:00
add_word_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
gchar *word;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (dlg->misspelled_word != NULL);
2016-01-25 08:13:49 -06:00
xedit_spell_checker_add_word_to_personal (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
dlg->misspelled_word,
-1);
word = g_strdup (dlg->misspelled_word);
g_signal_emit (G_OBJECT (dlg), signals [ADD_WORD_TO_PERSONAL], 0, word);
g_free (word);
}
static void
2016-01-25 08:13:49 -06:00
ignore_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
gchar *word;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (dlg->misspelled_word != NULL);
word = g_strdup (dlg->misspelled_word);
g_signal_emit (G_OBJECT (dlg), signals [IGNORE], 0, word);
g_free (word);
}
static void
2016-01-25 08:13:49 -06:00
ignore_all_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
gchar *word;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (dlg->misspelled_word != NULL);
2016-01-25 08:13:49 -06:00
xedit_spell_checker_add_word_to_session (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
dlg->misspelled_word,
-1);
word = g_strdup (dlg->misspelled_word);
g_signal_emit (G_OBJECT (dlg), signals [IGNORE_ALL], 0, word);
g_free (word);
}
static void
2016-01-25 08:13:49 -06:00
change_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
2014-11-22 10:11:28 -06:00
const gchar *entry_text;
2011-11-07 13:46:58 -06:00
gchar *change;
2014-11-22 10:11:28 -06:00
gchar *word;
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (dlg->misspelled_word != NULL);
2014-11-22 10:11:28 -06:00
entry_text = gtk_entry_get_text (GTK_ENTRY (dlg->word_entry));
g_return_if_fail (entry_text != NULL);
g_return_if_fail (*entry_text != '\0');
change = g_strdup (entry_text);
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
xedit_spell_checker_set_correction (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
dlg->misspelled_word, -1,
change, -1);
word = g_strdup (dlg->misspelled_word);
g_signal_emit (G_OBJECT (dlg), signals [CHANGE], 0, word, change);
g_free (word);
g_free (change);
}
/* double click on one of the suggestions is like clicking on "change" */
static void
suggestions_list_row_activated_handler (GtkTreeView *view,
GtkTreePath *path,
GtkTreeViewColumn *column,
2016-01-25 08:13:49 -06:00
XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
change_button_clicked_handler (GTK_BUTTON (dlg->change_button), dlg);
}
static void
2016-01-25 08:13:49 -06:00
change_all_button_clicked_handler (GtkButton *button, XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
2014-11-22 10:11:28 -06:00
const gchar *entry_text;
2011-11-07 13:46:58 -06:00
gchar *change;
2014-11-22 10:11:28 -06:00
gchar *word;
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
g_return_if_fail (dlg->misspelled_word != NULL);
2014-11-22 10:11:28 -06:00
entry_text = gtk_entry_get_text (GTK_ENTRY (dlg->word_entry));
g_return_if_fail (entry_text != NULL);
g_return_if_fail (*entry_text != '\0');
change = g_strdup (entry_text);
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
xedit_spell_checker_set_correction (dlg->spell_checker,
2011-11-07 13:46:58 -06:00
dlg->misspelled_word, -1,
change, -1);
word = g_strdup (dlg->misspelled_word);
g_signal_emit (G_OBJECT (dlg), signals [CHANGE_ALL], 0, word, change);
g_free (word);
g_free (change);
}
void
2016-01-25 08:13:49 -06:00
xedit_spell_checker_dialog_set_completed (XeditSpellCheckerDialog *dlg)
2011-11-07 13:46:58 -06:00
{
gchar *tmp;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_SPELL_CHECKER_DIALOG (dlg));
2011-11-07 13:46:58 -06:00
tmp = g_strdup_printf("<b>%s</b>", _("Completed spell checking"));
gtk_label_set_label (GTK_LABEL (dlg->misspelled_word_label),
tmp);
g_free (tmp);
gtk_list_store_clear (GTK_LIST_STORE (dlg->suggestions_list_model));
gtk_entry_set_text (GTK_ENTRY (dlg->word_entry), "");
gtk_widget_set_sensitive (dlg->word_entry, FALSE);
gtk_widget_set_sensitive (dlg->check_word_button, FALSE);
gtk_widget_set_sensitive (dlg->ignore_button, FALSE);
gtk_widget_set_sensitive (dlg->ignore_all_button, FALSE);
gtk_widget_set_sensitive (dlg->change_button, FALSE);
gtk_widget_set_sensitive (dlg->change_all_button, FALSE);
gtk_widget_set_sensitive (dlg->add_word_button, FALSE);
gtk_widget_set_sensitive (dlg->suggestions_list, FALSE);
}