Files
evolution/e-util/e-html-editor-replace-dialog.c
2016-10-10 14:46:59 +02:00

355 lines
10 KiB
C

/*
* e-html-editor-replace-dialog.h
*
* Copyright (C) 2012 Dan Vrátil <dvratil@redhat.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) version 3.
*
* 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see <http://www.gnu.org/licenses/>
*
*/
#include "evolution-config.h"
#include "e-html-editor-replace-dialog.h"
#include <glib/gi18n-lib.h>
#define E_HTML_EDITOR_REPLACE_DIALOG_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), E_TYPE_HTML_EDITOR_REPLACE_DIALOG, EHTMLEditorReplaceDialogPrivate))
G_DEFINE_TYPE (
EHTMLEditorReplaceDialog,
e_html_editor_replace_dialog,
E_TYPE_HTML_EDITOR_DIALOG);
struct _EHTMLEditorReplaceDialogPrivate {
GtkWidget *search_entry;
GtkWidget *replace_entry;
GtkWidget *case_sensitive;
GtkWidget *backwards;
GtkWidget *wrap;
GtkWidget *result_label;
GtkWidget *skip_button;
GtkWidget *replace_button;
GtkWidget *replace_all_button;
EContentEditor *cnt_editor;
gulong find_done_handler_id;
gulong replace_all_done_handler_id;
};
enum {
PROP_0,
PROP_EDITOR
};
static void
content_editor_find_done_cb (EContentEditor *cnt_editor,
guint match_count,
EHTMLEditorReplaceDialog *dialog)
{
if (match_count) {
gtk_widget_hide (dialog->priv->result_label);
} else {
gtk_label_set_label (GTK_LABEL (dialog->priv->result_label), _("No match found"));
gtk_widget_show (dialog->priv->result_label);
}
}
static void
replace_occurance (EHTMLEditorReplaceDialog *dialog)
{
gtk_widget_hide (dialog->priv->result_label);
e_content_editor_replace (
dialog->priv->cnt_editor,
gtk_entry_get_text (GTK_ENTRY (dialog->priv->replace_entry)));
}
static void
content_editor_replace_all_done_cb (EContentEditor *cnt_editor,
guint replaced_count,
EHTMLEditorReplaceDialog *dialog)
{
gchar *result;
result = g_strdup_printf (ngettext("%d occurrence replaced",
"%d occurrences replaced",
replaced_count),
replaced_count);
gtk_label_set_label (GTK_LABEL (dialog->priv->result_label), result);
gtk_widget_show (dialog->priv->result_label);
g_free (result);
}
static guint32
replace_dialog_get_find_flags (EHTMLEditorReplaceDialog *dialog)
{
guint32 flags = E_CONTENT_EDITOR_FIND_NEXT;
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->backwards)))
flags |= E_CONTENT_EDITOR_FIND_MODE_BACKWARDS;
if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->case_sensitive)))
flags |= E_CONTENT_EDITOR_FIND_CASE_INSENSITIVE;
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->wrap)))
flags |= E_CONTENT_EDITOR_FIND_WRAP_AROUND;
return flags;
}
static void
search (EHTMLEditorReplaceDialog *dialog)
{
e_content_editor_find (
dialog->priv->cnt_editor,
replace_dialog_get_find_flags (dialog),
gtk_entry_get_text (GTK_ENTRY (dialog->priv->search_entry)));
}
static void
html_editor_replace_dialog_skip_cb (EHTMLEditorReplaceDialog *dialog)
{
search (dialog);
}
static void
html_editor_replace_dialog_replace_cb (EHTMLEditorReplaceDialog *dialog)
{
replace_occurance (dialog);
/* Jump to next matching word */
search (dialog);
}
static void
html_editor_replace_dialog_replace_all_cb (EHTMLEditorReplaceDialog *dialog)
{
e_content_editor_replace_all (
dialog->priv->cnt_editor,
replace_dialog_get_find_flags (dialog),
gtk_entry_get_text (GTK_ENTRY (dialog->priv->search_entry)),
gtk_entry_get_text (GTK_ENTRY (dialog->priv->replace_entry)));
}
static void
html_editor_replace_dialog_entry_changed (EHTMLEditorReplaceDialog *dialog)
{
gboolean ready;
ready = gtk_entry_get_text_length (GTK_ENTRY (dialog->priv->search_entry)) != 0;
gtk_widget_set_sensitive (dialog->priv->skip_button, ready);
gtk_widget_set_sensitive (dialog->priv->replace_button, ready);
gtk_widget_set_sensitive (dialog->priv->replace_all_button, ready);
if (ready)
search (dialog);
}
static void
html_editor_replace_dialog_show (GtkWidget *widget)
{
EHTMLEditorReplaceDialog *dialog = E_HTML_EDITOR_REPLACE_DIALOG (widget);
e_content_editor_on_replace_dialog_open (dialog->priv->cnt_editor);
gtk_widget_grab_focus (dialog->priv->search_entry);
gtk_widget_hide (dialog->priv->result_label);
/* Chain up to parent implementation */
GTK_WIDGET_CLASS (e_html_editor_replace_dialog_parent_class)->show (widget);
}
static void
html_editor_replace_dialog_hide (GtkWidget *widget)
{
EHTMLEditorReplaceDialog *dialog = E_HTML_EDITOR_REPLACE_DIALOG (widget);
e_content_editor_on_replace_dialog_close (dialog->priv->cnt_editor);
/* Chain up to parent implementation */
GTK_WIDGET_CLASS (e_html_editor_replace_dialog_parent_class)->hide (widget);
}
static void
html_editor_replace_dialog_constructed (GObject *object)
{
EContentEditor *cnt_editor;
EHTMLEditor *editor;
EHTMLEditorReplaceDialog *dialog;
dialog = E_HTML_EDITOR_REPLACE_DIALOG (object);
dialog->priv = E_HTML_EDITOR_REPLACE_DIALOG_GET_PRIVATE (dialog);
editor = e_html_editor_dialog_get_editor (E_HTML_EDITOR_DIALOG (dialog));
cnt_editor = e_html_editor_get_content_editor (editor);
dialog->priv->find_done_handler_id = g_signal_connect (
cnt_editor, "find-done",
G_CALLBACK (content_editor_find_done_cb), dialog);
dialog->priv->replace_all_done_handler_id = g_signal_connect (
cnt_editor, "replace-all-done",
G_CALLBACK (content_editor_replace_all_done_cb), dialog);
dialog->priv->cnt_editor = cnt_editor;
G_OBJECT_CLASS (e_html_editor_replace_dialog_parent_class)->constructed (object);
}
static void
html_editor_replace_dialog_dispose (GObject *object)
{
EHTMLEditorReplaceDialogPrivate *priv;
priv = E_HTML_EDITOR_REPLACE_DIALOG_GET_PRIVATE (object);
if (priv->find_done_handler_id > 0) {
g_signal_handler_disconnect (
priv->cnt_editor,
priv->find_done_handler_id);
priv->find_done_handler_id = 0;
}
if (priv->replace_all_done_handler_id > 0) {
g_signal_handler_disconnect (
priv->cnt_editor,
priv->replace_all_done_handler_id);
priv->replace_all_done_handler_id = 0;
}
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (e_html_editor_replace_dialog_parent_class)->dispose (object);
}
static void
e_html_editor_replace_dialog_class_init (EHTMLEditorReplaceDialogClass *class)
{
GObjectClass *object_class;
GtkWidgetClass *widget_class;
g_type_class_add_private (class, sizeof (EHTMLEditorReplaceDialogPrivate));
object_class = G_OBJECT_CLASS (class);
object_class->constructed = html_editor_replace_dialog_constructed;
object_class->dispose = html_editor_replace_dialog_dispose;
widget_class = GTK_WIDGET_CLASS (class);
widget_class->show = html_editor_replace_dialog_show;
widget_class->hide = html_editor_replace_dialog_hide;
}
static void
e_html_editor_replace_dialog_init (EHTMLEditorReplaceDialog *dialog)
{
GtkGrid *main_layout;
GtkWidget *widget, *layout;
GtkBox *button_box;
dialog->priv = E_HTML_EDITOR_REPLACE_DIALOG_GET_PRIVATE (dialog);
main_layout = e_html_editor_dialog_get_container (E_HTML_EDITOR_DIALOG (dialog));
widget = gtk_entry_new ();
gtk_grid_attach (main_layout, widget, 1, 0, 2, 1);
dialog->priv->search_entry = widget;
g_signal_connect_swapped (
widget, "notify::text-length",
G_CALLBACK (html_editor_replace_dialog_entry_changed), dialog);
widget = gtk_label_new_with_mnemonic (_("R_eplace:"));
gtk_label_set_mnemonic_widget (GTK_LABEL (widget), dialog->priv->search_entry);
gtk_label_set_justify (GTK_LABEL (widget), GTK_JUSTIFY_RIGHT);
gtk_grid_attach (main_layout, widget, 0, 0, 1, 1);
widget = gtk_entry_new ();
gtk_grid_attach (main_layout, widget, 1, 1, 2, 1);
dialog->priv->replace_entry = widget;
widget = gtk_label_new_with_mnemonic (_("_With:"));
gtk_label_set_mnemonic_widget (GTK_LABEL (widget), dialog->priv->replace_entry);
gtk_label_set_justify (GTK_LABEL (widget), GTK_JUSTIFY_RIGHT);
gtk_grid_attach (main_layout, widget, 0, 1, 1, 1);
layout = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
gtk_grid_attach (main_layout, layout, 1, 2, 2, 1);
widget = gtk_check_button_new_with_mnemonic (_("Search _backwards"));
gtk_box_pack_start (GTK_BOX (layout), widget, FALSE, FALSE, 0);
dialog->priv->backwards = widget;
widget = gtk_check_button_new_with_mnemonic (_("_Case sensitive"));
gtk_box_pack_start (GTK_BOX (layout), widget, FALSE, FALSE, 0);
dialog->priv->case_sensitive = widget;
widget = gtk_check_button_new_with_mnemonic (_("Wra_p search"));
gtk_box_pack_start (GTK_BOX (layout), widget, FALSE, FALSE, 0);
dialog->priv->wrap = widget;
widget = gtk_label_new ("");
gtk_grid_attach (main_layout, widget, 0, 3, 2, 1);
dialog->priv->result_label = widget;
button_box = e_html_editor_dialog_get_button_box (E_HTML_EDITOR_DIALOG (dialog));
widget = gtk_button_new_with_mnemonic (_("_Skip"));
gtk_box_pack_start (button_box, widget, FALSE, FALSE, 5);
gtk_widget_set_sensitive (widget, FALSE);
dialog->priv->skip_button = widget;
g_signal_connect_swapped (
widget, "clicked",
G_CALLBACK (html_editor_replace_dialog_skip_cb), dialog);
widget = gtk_button_new_with_mnemonic (_("_Replace"));
gtk_box_pack_start (button_box, widget, FALSE, FALSE, 5);
gtk_widget_set_sensitive (widget, FALSE);
dialog->priv->replace_button = widget;
g_signal_connect_swapped (
widget, "clicked",
G_CALLBACK (html_editor_replace_dialog_replace_cb), dialog);
widget = gtk_button_new_with_mnemonic (_("Replace _All"));
gtk_box_pack_start (button_box, widget, FALSE, FALSE, 5);
gtk_widget_set_sensitive (widget, FALSE);
dialog->priv->replace_all_button = widget;
g_signal_connect_swapped (
widget, "clicked",
G_CALLBACK (html_editor_replace_dialog_replace_all_cb), dialog);
gtk_widget_show_all (GTK_WIDGET (main_layout));
}
GtkWidget *
e_html_editor_replace_dialog_new (EHTMLEditor *editor)
{
return GTK_WIDGET (
g_object_new (
E_TYPE_HTML_EDITOR_REPLACE_DIALOG,
"editor", editor,
"icon-name", "edit-find-replace",
"resizable", FALSE,
"title", C_("dialog-title", "Replace"),
"transient-for", gtk_widget_get_toplevel (GTK_WIDGET (editor)),
"type", GTK_WINDOW_TOPLEVEL,
"window-position", GTK_WIN_POS_CENTER_ON_PARENT,
NULL));
}