[evolution/webkit-composer: 22/30] Port EMailSignatureEditor to EEditor



commit 49111e45a9f91f394cd1f0c2f1316af48610017e
Author: Dan VrÃtil <dvratil redhat com>
Date:   Mon Aug 27 13:55:19 2012 +0200

    Port EMailSignatureEditor to EEditor

 widgets/misc/e-mail-signature-editor.c  |  144 ++++++++++++++-----------------
 widgets/misc/e-mail-signature-editor.h  |    8 +-
 widgets/misc/e-mail-signature-manager.c |   11 ++-
 widgets/misc/e-mail-signature-preview.c |    8 ++-
 4 files changed, 86 insertions(+), 85 deletions(-)
---
diff --git a/widgets/misc/e-mail-signature-editor.c b/widgets/misc/e-mail-signature-editor.c
index 62149de..a954855 100644
--- a/widgets/misc/e-mail-signature-editor.c
+++ b/widgets/misc/e-mail-signature-editor.c
@@ -16,15 +16,19 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include "e-mail-signature-editor.h"
 
 #include <string.h>
 #include <glib/gi18n.h>
 
+#include <editor/e-editor.h>
 #include <libevolution-utils/e-alert-dialog.h>
 #include <libevolution-utils/e-alert-sink.h>
 #include <misc/e-alert-bar.h>
-#include <misc/e-web-view-gtkhtml.h>
 
 #define E_MAIL_SIGNATURE_EDITOR_GET_PRIVATE(obj) \
 	(G_TYPE_INSTANCE_GET_PRIVATE \
@@ -40,6 +44,8 @@ struct _EMailSignatureEditorPrivate {
 	ESource *source;
 	gchar *original_name;
 
+	EEditor *editor;
+
 	GtkWidget *entry;		/* not referenced */
 	GtkWidget *alert_bar;		/* not referenced */
 };
@@ -83,7 +89,7 @@ static void	e_mail_signature_editor_alert_sink_init
 G_DEFINE_TYPE_WITH_CODE (
 	EMailSignatureEditor,
 	e_mail_signature_editor,
-	GTKHTML_TYPE_EDITOR,
+	GTK_TYPE_WINDOW,
 	G_IMPLEMENT_INTERFACE (
 		E_TYPE_ALERT_SINK,
 		e_mail_signature_editor_alert_sink_init))
@@ -107,6 +113,8 @@ mail_signature_editor_loaded_cb (GObject *object,
                                  GAsyncResult *result,
                                  gpointer user_data)
 {
+	EEditorWidget *editor_widget;
+	EEditorSelection *editor_selection;
 	ESource *source;
 	EMailSignatureEditor *editor;
 	ESourceMailSignature *extension;
@@ -148,14 +156,16 @@ mail_signature_editor_loaded_cb (GObject *object,
 	mime_type = e_source_mail_signature_get_mime_type (extension);
 	is_html = (g_strcmp0 (mime_type, "text/html") == 0);
 
-	gtkhtml_editor_set_html_mode (GTKHTML_EDITOR (editor), is_html);
+	editor_widget = e_editor_get_editor_widget (editor->priv->editor);
+	e_editor_widget_set_mode (editor_widget,
+		(is_html) ? E_EDITOR_WIDGET_MODE_HTML : E_EDITOR_WIDGET_MODE_PLAIN_TEXT);
 
-	if (is_html)
-		gtkhtml_editor_insert_html (
-			GTKHTML_EDITOR (editor), contents);
-	else
-		gtkhtml_editor_insert_text (
-			GTKHTML_EDITOR (editor), contents);
+	editor_selection = e_editor_widget_get_selection (editor_widget);
+	if (is_html) {
+		e_editor_selection_insert_html (editor_selection, contents);
+	} else {
+		e_editor_selection_insert_text (editor_selection, contents);
+	}
 
 	g_free (contents);
 
@@ -180,14 +190,16 @@ static void
 action_close_cb (GtkAction *action,
                  EMailSignatureEditor *editor)
 {
+	EEditorWidget *editor_widget;
 	gboolean something_changed = FALSE;
 	const gchar *original_name;
 	const gchar *signature_name;
 
 	original_name = editor->priv->original_name;
 	signature_name = gtk_entry_get_text (GTK_ENTRY (editor->priv->entry));
+	editor_widget = e_editor_get_editor_widget (editor->priv->editor);
 
-	something_changed |= gtkhtml_editor_has_undo (GTKHTML_EDITOR (editor));
+	something_changed |= webkit_web_view_can_undo (WEBKIT_WEB_VIEW (editor_widget));
 	something_changed |= (strcmp (signature_name, original_name) != 0);
 
 	if (something_changed) {
@@ -458,7 +470,7 @@ mail_signature_editor_constructed (GObject *object)
 	EMailSignatureEditor *editor;
 	GtkActionGroup *action_group;
 	EFocusTracker *focus_tracker;
-	GtkhtmlEditor *gtkhtml_editor;
+	EEditorWidget *editor_widget;
 	GtkUIManager *ui_manager;
 	GDBusObject *dbus_object;
 	ESource *source;
@@ -473,9 +485,10 @@ mail_signature_editor_constructed (GObject *object)
 		constructed (object);
 
 	editor = E_MAIL_SIGNATURE_EDITOR (object);
+	editor->priv->editor = E_EDITOR (e_editor_new ());
+	editor_widget = e_editor_get_editor_widget (editor->priv->editor);
 
-	gtkhtml_editor = GTKHTML_EDITOR (editor);
-	ui_manager = gtkhtml_editor_get_ui_manager (gtkhtml_editor);
+	ui_manager = e_editor_get_ui_manager (editor->priv->editor);
 
 	/* Because we are loading from a hard-coded string, there is
 	 * no chance of I/O errors.  Failure here implies a malformed
@@ -494,11 +507,10 @@ mail_signature_editor_constructed (GObject *object)
 	editor->priv->action_group = g_object_ref (action_group);
 
 	/* Hide page properties because it is not inherited in the mail. */
-	action = gtkhtml_editor_get_action (gtkhtml_editor, "properties-page");
+	action = e_editor_get_action (editor->priv->editor, "properties-page");
 	gtk_action_set_visible (action, FALSE);
 
-	action = gtkhtml_editor_get_action (
-		gtkhtml_editor, "context-properties-page");
+	action = e_editor_get_action (editor->priv->editor, "context-properties-page");
 	gtk_action_set_visible (action, FALSE);
 
 	gtk_ui_manager_ensure_update (ui_manager);
@@ -507,7 +519,21 @@ mail_signature_editor_constructed (GObject *object)
 
 	/* Construct the signature name entry. */
 
-	container = gtkhtml_editor->vbox;
+	container = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5);
+	gtk_container_add (GTK_CONTAINER (editor), container);
+	gtk_widget_show (container);
+
+	/* Construct the alert bar for errors. */
+	widget = e_alert_bar_new ();
+	gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
+	/* Position 5 should be between the style toolbar and editing area. */
+	gtk_box_reorder_child (GTK_BOX (container), widget, 5);
+	editor->priv->alert_bar = widget;  /* not referenced */
+	/* EAlertBar controls its own visibility. */
+
+	gtk_box_pack_end (
+		GTK_BOX (container), GTK_WIDGET (editor->priv->editor), TRUE, TRUE, 0);
+	gtk_widget_show (GTK_WIDGET (editor->priv->editor));
 
 	widget = gtk_hbox_new (FALSE, 6);
 	gtk_container_set_border_width (GTK_CONTAINER (widget), 6);
@@ -517,6 +543,7 @@ mail_signature_editor_constructed (GObject *object)
 	gtk_widget_show (widget);
 
 	container = widget;
+	gtk_widget_show (container);
 
 	widget = gtk_entry_new ();
 	gtk_box_pack_end (GTK_BOX (container), widget, TRUE, TRUE, 0);
@@ -532,16 +559,6 @@ mail_signature_editor_constructed (GObject *object)
 		editor, "delete-event",
 		G_CALLBACK (mail_signature_editor_delete_event_cb), NULL);
 
-	/* Construct the alert bar for errors. */
-
-	container = gtkhtml_editor->vbox;
-
-	widget = e_alert_bar_new ();
-	gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
-	/* Position 5 should be between the style toolbar and editing area. */
-	gtk_box_reorder_child (GTK_BOX (container), widget, 5);
-	editor->priv->alert_bar = widget;  /* not referenced */
-	/* EAlertBar controls its own visibility. */
 
 	/* Configure an EFocusTracker to manage selection actions.
 	 *
@@ -551,16 +568,16 @@ mail_signature_editor_constructed (GObject *object)
 
 	focus_tracker = e_focus_tracker_new (GTK_WINDOW (editor));
 
-	action = gtkhtml_editor_get_action (gtkhtml_editor, "cut");
+	action = e_editor_get_action (editor->priv->editor, "cut");
 	e_focus_tracker_set_cut_clipboard_action (focus_tracker, action);
 
-	action = gtkhtml_editor_get_action (gtkhtml_editor, "copy");
+	action = e_editor_get_action (editor->priv->editor, "copy");
 	e_focus_tracker_set_copy_clipboard_action (focus_tracker, action);
 
-	action = gtkhtml_editor_get_action (gtkhtml_editor, "paste");
+	action = e_editor_get_action (editor->priv->editor, "paste");
 	e_focus_tracker_set_paste_clipboard_action (focus_tracker, action);
 
-	action = gtkhtml_editor_get_action (gtkhtml_editor, "select-all");
+	action = e_editor_get_action (editor->priv->editor, "select-all");
 	e_focus_tracker_set_select_all_action (focus_tracker, action);
 
 	editor->priv->focus_tracker = focus_tracker;
@@ -579,13 +596,10 @@ mail_signature_editor_constructed (GObject *object)
 	/* Set the focus appropriately.  If this is a new signature, draw
 	 * the user's attention to the signature name entry.  Otherwise go
 	 * straight to the editing area. */
-	if (source == NULL)
+	if (source == NULL) {
 		gtk_widget_grab_focus (editor->priv->entry);
-	else {
-		GtkHTML *html;
-
-		html = gtkhtml_editor_get_html (gtkhtml_editor);
-		gtk_widget_grab_focus (GTK_WIDGET (html));
+	} else {
+		gtk_widget_grab_focus (GTK_WIDGET (editor_widget));
 	}
 
 	/* Load file content only for an existing signature.
@@ -611,30 +625,6 @@ mail_signature_editor_constructed (GObject *object)
 }
 
 static void
-mail_signature_editor_cut_clipboard (GtkhtmlEditor *editor)
-{
-	/* Do nothing.  EFocusTracker handles this. */
-}
-
-static void
-mail_signature_editor_copy_clipboard (GtkhtmlEditor *editor)
-{
-	/* Do nothing.  EFocusTracker handles this. */
-}
-
-static void
-mail_signature_editor_paste_clipboard (GtkhtmlEditor *editor)
-{
-	/* Do nothing.  EFocusTracker handles this. */
-}
-
-static void
-mail_signature_editor_select_all (GtkhtmlEditor *editor)
-{
-	/* Do nothing.  EFocusTracker handles this. */
-}
-
-static void
 mail_signature_editor_submit_alert (EAlertSink *alert_sink,
                                     EAlert *alert)
 {
@@ -666,7 +656,6 @@ static void
 e_mail_signature_editor_class_init (EMailSignatureEditorClass *class)
 {
 	GObjectClass *object_class;
-	GtkhtmlEditorClass *editor_class;
 
 	g_type_class_add_private (class, sizeof (EMailSignatureEditorPrivate));
 
@@ -677,12 +666,6 @@ e_mail_signature_editor_class_init (EMailSignatureEditorClass *class)
 	object_class->finalize = mail_signature_editor_finalize;
 	object_class->constructed = mail_signature_editor_constructed;
 
-	editor_class = GTKHTML_EDITOR_CLASS (class);
-	editor_class->cut_clipboard = mail_signature_editor_cut_clipboard;
-	editor_class->copy_clipboard = mail_signature_editor_copy_clipboard;
-	editor_class->paste_clipboard = mail_signature_editor_paste_clipboard;
-	editor_class->select_all = mail_signature_editor_select_all;
-
 	g_object_class_install_property (
 		object_class,
 		PROP_FOCUS_TRACKER,
@@ -742,7 +725,6 @@ e_mail_signature_editor_new (ESourceRegistry *registry,
 
 	return g_object_new (
 		E_TYPE_MAIL_SIGNATURE_EDITOR,
-		"html", e_web_view_gtkhtml_new (),
 		"registry", registry,
 		"source", source, NULL);
 }
@@ -842,23 +824,22 @@ e_mail_signature_editor_commit (EMailSignatureEditor *editor,
 	const gchar *extension_name;
 	const gchar *mime_type;
 	gchar *contents;
-	gboolean is_html;
-	gsize length;
+	EEditorWidget *editor_widget;
+	EEditorWidgetMode mode;
 
 	g_return_if_fail (E_IS_MAIL_SIGNATURE_EDITOR (editor));
 
 	registry = e_mail_signature_editor_get_registry (editor);
 	source = e_mail_signature_editor_get_source (editor);
-	is_html = gtkhtml_editor_get_html_mode (GTKHTML_EDITOR (editor));
+	editor_widget = e_editor_get_editor_widget (editor->priv->editor);
+	mode = e_editor_widget_get_mode (editor_widget);
 
-	if (is_html) {
+	if (mode == E_EDITOR_WIDGET_MODE_HTML) {
 		mime_type = "text/html";
-		contents = gtkhtml_editor_get_text_html (
-			GTKHTML_EDITOR (editor), &length);
+		contents = e_editor_widget_get_text_html (editor_widget);
 	} else {
 		mime_type = "text/plain";
-		contents = gtkhtml_editor_get_text_plain (
-			GTKHTML_EDITOR (editor), &length);
+		contents = e_editor_widget_get_text_plain (editor_widget);
 	}
 
 	extension_name = E_SOURCE_EXTENSION_MAIL_SIGNATURE;
@@ -868,7 +849,7 @@ e_mail_signature_editor_commit (EMailSignatureEditor *editor,
 	async_context = g_slice_new0 (AsyncContext);
 	async_context->source = g_object_ref (source);
 	async_context->contents = contents;  /* takes ownership */
-	async_context->length = length;
+	async_context->length = strlen (contents);
 
 	if (G_IS_CANCELLABLE (cancellable))
 		async_context->cancellable = g_object_ref (cancellable);
@@ -905,3 +886,10 @@ e_mail_signature_editor_commit_finish (EMailSignatureEditor *editor,
 	return !g_simple_async_result_propagate_error (simple, error);
 }
 
+EEditorWidget *
+e_mail_signature_editor_get_editor_widget (EMailSignatureEditor *editor)
+{
+	g_return_val_if_fail (E_IS_MAIL_SIGNATURE_EDITOR (editor), NULL);
+
+	return e_editor_get_editor_widget (editor->priv->editor);
+}
diff --git a/widgets/misc/e-mail-signature-editor.h b/widgets/misc/e-mail-signature-editor.h
index 8f1be2d..dfed2a4 100644
--- a/widgets/misc/e-mail-signature-editor.h
+++ b/widgets/misc/e-mail-signature-editor.h
@@ -19,9 +19,9 @@
 #ifndef E_MAIL_SIGNATURE_EDITOR_H
 #define E_MAIL_SIGNATURE_EDITOR_H
 
-#include <gtkhtml-editor.h>
 #include <misc/e-focus-tracker.h>
 #include <libedataserver/libedataserver.h>
+#include <editor/e-editor-widget.h>
 
 /* Standard GObject macros */
 #define E_TYPE_MAIL_SIGNATURE_EDITOR \
@@ -49,12 +49,12 @@ typedef struct _EMailSignatureEditorClass EMailSignatureEditorClass;
 typedef struct _EMailSignatureEditorPrivate EMailSignatureEditorPrivate;
 
 struct _EMailSignatureEditor {
-	GtkhtmlEditor parent;
+	GtkWindow parent;
 	EMailSignatureEditorPrivate *priv;
 };
 
 struct _EMailSignatureEditorClass {
-	GtkhtmlEditorClass parent_class;
+	GtkWindowClass parent_class;
 };
 
 GType		e_mail_signature_editor_get_type
@@ -76,6 +76,8 @@ gboolean	e_mail_signature_editor_commit_finish
 						(EMailSignatureEditor *editor,
 						 GAsyncResult *result,
 						 GError **error);
+EEditorWidget *	e_mail_signature_editor_get_editor_widget
+						(EMailSignatureEditor *editor);
 
 G_END_DECLS
 
diff --git a/widgets/misc/e-mail-signature-manager.c b/widgets/misc/e-mail-signature-manager.c
index 425fbca..68e4e6c 100644
--- a/widgets/misc/e-mail-signature-manager.c
+++ b/widgets/misc/e-mail-signature-manager.c
@@ -401,13 +401,19 @@ static void
 mail_signature_manager_add_signature (EMailSignatureManager *manager)
 {
 	ESourceRegistry *registry;
+	EEditorWidget *editor_widget;
 	GtkWidget *editor;
 
 	registry = e_mail_signature_manager_get_registry (manager);
 
 	editor = e_mail_signature_editor_new (registry, NULL);
-	gtkhtml_editor_set_html_mode (
-		GTKHTML_EDITOR (editor), manager->priv->prefer_html);
+	editor_widget = e_mail_signature_editor_get_editor_widget (
+				E_MAIL_SIGNATURE_EDITOR (editor));
+	e_editor_widget_set_mode (
+		editor_widget,
+		manager->priv->prefer_html ?
+			E_EDITOR_WIDGET_MODE_HTML :
+			E_EDITOR_WIDGET_MODE_PLAIN_TEXT);
 	mail_signature_manager_emit_editor_created (manager, editor);
 
 	gtk_widget_grab_focus (manager->priv->tree_view);
@@ -438,6 +444,7 @@ mail_signature_manager_editor_created (EMailSignatureManager *manager,
 	gtk_window_set_transient_for (GTK_WINDOW (editor), parent);
 	gtk_window_set_position (GTK_WINDOW (editor), position);
 	gtk_widget_show (GTK_WIDGET (editor));
+	gtk_widget_set_size_request (GTK_WIDGET (editor), 450, 300);
 }
 
 static void
diff --git a/widgets/misc/e-mail-signature-preview.c b/widgets/misc/e-mail-signature-preview.c
index 0e7500c..6556699 100644
--- a/widgets/misc/e-mail-signature-preview.c
+++ b/widgets/misc/e-mail-signature-preview.c
@@ -95,12 +95,16 @@ mail_signature_preview_load_cb (ESource *source,
 	mime_type = e_source_mail_signature_get_mime_type (extension);
 
 	if (g_strcmp0 (mime_type, "text/html") == 0)
-		e_web_view_load_string (E_WEB_VIEW (preview), contents);
+		webkit_web_view_load_string (
+			WEBKIT_WEB_VIEW (preview), contents,
+			"text/html", "UTF-8", "file:///");
 	else {
 		gchar *string;
 
 		string = g_markup_printf_escaped ("<pre>%s</pre>", contents);
-		e_web_view_load_string (E_WEB_VIEW (preview), string);
+		webkit_web_view_load_string (
+			WEBKIT_WEB_VIEW (preview), string,
+			"text/html", "UTF-8", "file:///");
 		g_free (string);
 	}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]