[evolution/wip/webkit-composer] Rename EEditorSelection to EHTMLEditorSelection



commit 5738b49add2e5dfc1921098c86ca725e72de6c97
Author: Tomas Popela <tpopela redhat com>
Date:   Fri Mar 28 13:55:24 2014 +0100

    Rename EEditorSelection to EHTMLEditorSelection

 composer/e-composer-private.c                      |   36 +-
 composer/e-msg-composer.c                          |   20 +-
 .../evolution-util/evolution-util-sections.txt     |  124 +-
 e-util/Makefile.am                                 |    4 +-
 e-util/e-editor-actions.c                          |   84 +-
 e-util/e-editor-hrule-dialog.c                     |    6 +-
 e-util/e-editor-image-dialog.c                     |    4 +-
 e-util/e-editor-link-dialog.c                      |   10 +-
 e-util/e-editor-replace-dialog.c                   |   11 +-
 e-util/e-editor-selection.h                        |  230 ----
 e-util/e-editor-spell-check-dialog.c               |    8 +-
 e-util/e-editor-table-dialog.c                     |    6 +-
 e-util/e-editor-text-dialog.c                      |   38 +-
 e-util/e-html-editor-private.h                     |    2 +-
 ...ditor-selection.c => e-html-editor-selection.c} | 1316 ++++++++++----------
 e-util/e-html-editor-selection.h                   |  244 ++++
 e-util/e-html-editor-view.c                        |  162 ++--
 e-util/e-html-editor-view.h                        |    4 +-
 e-util/e-html-editor.c                             |   22 +-
 e-util/e-util-enums.h                              |   62 +-
 e-util/e-util.h                                    |    2 +-
 21 files changed, 1205 insertions(+), 1190 deletions(-)
---
diff --git a/composer/e-composer-private.c b/composer/e-composer-private.c
index e267b93..d6d4ecd 100644
--- a/composer/e-composer-private.c
+++ b/composer/e-composer-private.c
@@ -480,7 +480,7 @@ e_composer_paste_html (EMsgComposer *composer,
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        gchar *html;
 
        g_return_val_if_fail (E_IS_MSG_COMPOSER (composer), FALSE);
@@ -492,12 +492,12 @@ e_composer_paste_html (EMsgComposer *composer,
        editor = e_msg_composer_get_editor (composer);
        view = e_html_editor_get_view (editor);
        editor_selection = e_html_editor_view_get_selection (view);
-       e_editor_selection_insert_html (editor_selection, html);
+       e_html_editor_selection_insert_html (editor_selection, html);
 
        e_html_editor_view_check_magic_links (view, FALSE);
        e_html_editor_view_force_spell_check (view);
 
-       e_editor_selection_scroll_to_caret (editor_selection);
+       e_html_editor_selection_scroll_to_caret (editor_selection);
        g_free (html);
 
        return TRUE;
@@ -552,11 +552,11 @@ e_composer_paste_image (EMsgComposer *composer,
        editor = e_msg_composer_get_editor (composer);
        html_editor_view = e_html_editor_get_view (editor);
        if (e_html_editor_view_get_html_mode (html_editor_view)) {
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                selection = e_html_editor_view_get_selection (html_editor_view);
-               e_editor_selection_insert_image (selection, uri);
-               e_editor_selection_scroll_to_caret (selection);
+               e_html_editor_selection_insert_image (selection, uri);
+               e_html_editor_selection_scroll_to_caret (selection);
        } else {
                EAttachment *attachment;
 
@@ -589,7 +589,7 @@ e_composer_paste_text (EMsgComposer *composer,
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        gchar *text;
 
        g_return_val_if_fail (E_IS_MSG_COMPOSER (composer), FALSE);
@@ -605,11 +605,11 @@ e_composer_paste_text (EMsgComposer *composer,
        if (!gtk_widget_has_focus (GTK_WIDGET (view)))
                gtk_widget_grab_focus (GTK_WIDGET (view));
 
-       e_editor_selection_insert_text (editor_selection, text);
+       e_html_editor_selection_insert_text (editor_selection, text);
 
        e_html_editor_view_check_magic_links (view, FALSE);
        e_html_editor_view_force_spell_check (view);
-       e_editor_selection_scroll_to_caret (editor_selection);
+       e_html_editor_selection_scroll_to_caret (editor_selection);
 
        g_free (text);
 
@@ -827,7 +827,7 @@ composer_move_caret (EMsgComposer *composer)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        GSettings *settings;
        gboolean start_bottom, html_mode, top_signature;
        gboolean has_paragraphs_in_body = TRUE;
@@ -867,7 +867,7 @@ composer_move_caret (EMsgComposer *composer)
        element = webkit_dom_document_get_element_by_id (document, "-x-evo-caret-position");
        /* Caret position found => composer mode changed */
        if (element) {
-               e_editor_selection_restore_caret_position (editor_selection);
+               e_html_editor_selection_restore_caret_position (editor_selection);
                /* We want to force spellcheck just in case that we switched to plain
                 * text mode (when switching to html mode, the underlined words are
                 * preserved */
@@ -884,13 +884,13 @@ composer_move_caret (EMsgComposer *composer)
                                "data-edit-as-new",
                                "",
                                NULL);
-               e_editor_selection_restore_caret_position (editor_selection);
+               e_html_editor_selection_restore_caret_position (editor_selection);
 
                e_html_editor_view_force_spell_check (view);
                return;
        }
 
-       e_editor_selection_block_selection_changed (editor_selection);
+       e_html_editor_selection_block_selection_changed (editor_selection);
 
        /* When the new message is written from the beginning - note it into body */
        if (composer->priv->is_from_new_message) {
@@ -912,7 +912,7 @@ composer_move_caret (EMsgComposer *composer)
        blockquotes = webkit_dom_document_get_elements_by_tag_name (document, "blockquote");
 
        if (!has_paragraphs_in_body) {
-               element = e_editor_selection_get_paragraph_element (
+               element = e_html_editor_selection_get_paragraph_element (
                        editor_selection, document, -1, 0);
                webkit_dom_element_set_id (element, "-x-evo-input-start");
                webkit_dom_html_element_set_inner_html (
@@ -943,7 +943,7 @@ composer_move_caret (EMsgComposer *composer)
                                }
                        }
 
-                       e_editor_selection_restore_caret_position (editor_selection);
+                       e_html_editor_selection_restore_caret_position (editor_selection);
                        if (!html_mode)
                                e_html_editor_view_quote_plain_text (view);
                        e_html_editor_view_force_spell_check (view);
@@ -984,11 +984,11 @@ composer_move_caret (EMsgComposer *composer)
                                        blockquote = webkit_dom_node_list_item (blockquotes, 0);
 
                                        /* FIXME determine when we can skip this */
-                                       e_editor_selection_wrap_paragraph (
+                                       e_html_editor_selection_wrap_paragraph (
                                                editor_selection,
                                                WEBKIT_DOM_ELEMENT (blockquote));
 
-                                       e_editor_selection_restore_caret_position (editor_selection);
+                                       e_html_editor_selection_restore_caret_position (editor_selection);
                                        e_html_editor_view_quote_plain_text (view);
                                        body = webkit_dom_document_get_body (document);
                                }
@@ -1008,7 +1008,7 @@ composer_move_caret (EMsgComposer *composer)
        webkit_dom_dom_selection_remove_all_ranges (dom_selection);
        webkit_dom_dom_selection_add_range (dom_selection, new_range);
 
-       e_editor_selection_unblock_selection_changed (editor_selection);
+       e_html_editor_selection_unblock_selection_changed (editor_selection);
 }
 
 static void
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 2017094..157b249 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -1210,7 +1210,7 @@ composer_build_message (EMsgComposer *composer,
                gchar *text;
                EHTMLEditor *editor;
                EHTMLEditorView *view;
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                editor = e_msg_composer_get_editor (composer);
                view = e_html_editor_get_view (editor);
@@ -1219,12 +1219,12 @@ composer_build_message (EMsgComposer *composer,
                data = g_byte_array_new ();
 
                e_html_editor_view_embed_styles (view);
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
 
                text = e_html_editor_view_get_text_html_for_drafts (view);
 
                e_html_editor_view_remove_embed_styles (view);
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
 
                g_byte_array_append (data, (guint8 *) text, strlen (text));
 
@@ -1813,7 +1813,7 @@ msg_composer_drag_data_received_cb (GtkWidget *widget,
        EAttachmentView *view;
        EHTMLEditor *editor;
        EHTMLEditorView *html_editor_view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
 
        editor = e_msg_composer_get_editor (composer);
        html_editor_view = e_html_editor_get_view (editor);
@@ -1845,7 +1845,7 @@ msg_composer_drag_data_received_cb (GtkWidget *widget,
                        list_len = length;
                        do {
                                uri = next_uri ((guchar **) &data, &len, &list_len);
-                               e_editor_selection_insert_image (editor_selection, uri);
+                               e_html_editor_selection_insert_image (editor_selection, uri);
                        } while (list_len);
                }
 
@@ -1865,7 +1865,7 @@ msg_composer_drag_data_received_cb (GtkWidget *widget,
                        do {
                                uri = next_uri ((guchar **) &data, &len, &list_len);
 
-                               e_editor_selection_insert_image (editor_selection, uri);
+                               e_html_editor_selection_insert_image (editor_selection, uri);
                        } while (list_len);
                }
        } else {
@@ -5009,12 +5009,12 @@ e_msg_composer_save_focused_widget (EMsgComposer *composer)
        composer->priv->focused_entry = widget;
 
        if (E_IS_HTML_EDITOR_VIEW (widget)) {
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                selection = e_html_editor_view_get_selection (
                        E_HTML_EDITOR_VIEW (widget));
 
-               e_editor_selection_save (selection);
+               e_html_editor_selection_save (selection);
        }
 
        if (GTK_IS_EDITABLE (widget)) {
@@ -5045,14 +5045,14 @@ e_msg_composer_restore_focus_on_composer (EMsgComposer *composer)
        }
 
        if (E_IS_HTML_EDITOR_VIEW (widget)) {
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                e_html_editor_view_force_spell_check (E_HTML_EDITOR_VIEW (widget));
 
                selection = e_html_editor_view_get_selection (
                        E_HTML_EDITOR_VIEW (widget));
 
-               e_editor_selection_restore (selection);
+               e_html_editor_selection_restore (selection);
        }
 
        composer->priv->focused_entry = NULL;
diff --git a/doc/reference/evolution-util/evolution-util-sections.txt 
b/doc/reference/evolution-util/evolution-util-sections.txt
index ef26588..cf38717 100644
--- a/doc/reference/evolution-util/evolution-util-sections.txt
+++ b/doc/reference/evolution-util/evolution-util-sections.txt
@@ -1763,69 +1763,69 @@ EEditorReplaceDialogPrivate
 </SECTION>
 
 <SECTION>
-<FILE>e-editor-selection</FILE>
-<TITLE>EEditorSelection</TITLE>
-e_editor_selection_ref_html_editor_view
-e_editor_selection_has_text
-e_editor_selection_get_caret_word
-e_editor_selection_replace_caret_word
-EEditorSelectionAlignment
-e_editor_selection_get_alignment
-e_editor_selection_set_alignment
-e_editor_selection_get_background_color
-e_editor_selection_set_background_color
-e_editor_selection_get_font_color
-e_editor_selection_set_font_color
-e_editor_selection_get_font_name
-e_editor_selection_set_font_name
-EEditorSelectionFontSize
-e_editor_selection_get_font_size
-e_editor_selection_set_font_size
-EEditorSelectionBlockFormat
-e_editor_selection_get_block_format
-e_editor_selection_set_block_format
-e_editor_selection_is_citation
-e_editor_selection_is_indented
-e_editor_selection_indent
-e_editor_selection_unindent
-e_editor_selection_is_bold
-e_editor_selection_set_bold
-e_editor_selection_is_italic
-e_editor_selection_set_italic
-e_editor_selection_is_monospaced
-e_editor_selection_set_monospaced
-e_editor_selection_is_strike_through
-e_editor_selection_set_strike_through
-e_editor_selection_is_superscript
-e_editor_selection_set_superscript
-e_editor_selection_is_subscript
-e_editor_selection_set_subscript
-e_editor_selection_is_underline
-e_editor_selection_set_underline
-e_editor_selection_unlink
-e_editor_selection_create_link
-e_editor_selection_get_string
-e_editor_selection_replace
-e_editor_selection_insert_html
-e_editor_selection_insert_image
-e_editor_selection_insert_text
-e_editor_selection_wrap_lines
-e_editor_selection_save
-e_editor_selection_restore
-EEditorSelectionGranularity
-e_editor_selection_move
-e_editor_selection_extend
-<SUBSECTION Standard>
-E_EDITOR_SELECTION
-E_IS_EDITOR_SELECTION
-E_TYPE_EDITOR_SELECTION
-E_EDITOR_SELECTION_CLASS
-E_IS_EDITOR_SELECTION_CLASS
-E_EDITOR_SELECTION_GET_CLASS
-EEditorSelectionClass
-e_editor_selection_get_type
-<SUBSECTION Private>
-EEditorSelectionPrivate
+<FILE>e-html-editor-selection</FILE>
+<TITLE>EHTMLEditorSelection</TITLE>
+e_html_editor_selection_ref_html_html_editor_view
+e_html_editor_selection_has_text
+e_html_editor_selection_get_caret_word
+e_html_editor_selection_replace_caret_word
+EHTMLEditorSelectionAlignment
+e_html_editor_selection_get_alignment
+e_html_editor_selection_set_alignment
+e_html_editor_selection_get_background_color
+e_html_editor_selection_set_background_color
+e_html_editor_selection_get_font_color
+e_html_editor_selection_set_font_color
+e_html_editor_selection_get_font_name
+e_html_editor_selection_set_font_name
+EHTMLEditorSelectionFontSize
+e_html_editor_selection_get_font_size
+e_html_editor_selection_set_font_size
+EHTMLEditorSelectionBlockFormat
+e_html_editor_selection_get_block_format
+e_html_editor_selection_set_block_format
+e_html_editor_selection_is_citation
+e_html_editor_selection_is_indented
+e_html_editor_selection_indent
+e_html_editor_selection_unindent
+e_html_editor_selection_is_bold
+e_html_editor_selection_set_bold
+e_html_editor_selection_is_italic
+e_html_editor_selection_set_italic
+e_html_editor_selection_is_monospaced
+e_html_editor_selection_set_monospaced
+e_html_editor_selection_is_strike_through
+e_html_editor_selection_set_strike_through
+e_html_editor_selection_is_superscript
+e_html_editor_selection_set_superscript
+e_html_editor_selection_is_subscript
+e_html_editor_selection_set_subscript
+e_html_editor_selection_is_underline
+e_html_editor_selection_set_underline
+e_html_editor_selection_unlink
+e_html_editor_selection_create_link
+e_html_editor_selection_get_string
+e_html_editor_selection_replace
+e_html_editor_selection_insert_html
+e_html_editor_selection_insert_image
+e_html_editor_selection_insert_text
+e_html_editor_selection_wrap_lines
+e_html_editor_selection_save
+e_html_editor_selection_restore
+EHTMLEditorSelectionGranularity
+e_html_editor_selection_move
+e_html_editor_selection_extend
+<SUBSECTION Standard>
+E_HTML_EDITOR_SELECTION
+E_IS_HTML_EDITOR_SELECTION
+E_TYPE_HTML_EDITOR_SELECTION
+E_HTML_EDITOR_SELECTION_CLASS
+E_IS_HTML_EDITOR_SELECTION_CLASS
+E_HTML_EDITOR_SELECTION_GET_CLASS
+EHTMLEditorSelectionClass
+e_html_editor_selection_get_type
+<SUBSECTION Private>
+EHTMLEditorSelectionPrivate
 </SECTION>
 
 <SECTION>
diff --git a/e-util/Makefile.am b/e-util/Makefile.am
index 1036807..8b2bb23 100644
--- a/e-util/Makefile.am
+++ b/e-util/Makefile.am
@@ -186,7 +186,6 @@ evolution_util_include_HEADERS =  \
        e-editor-page-dialog.h \
        e-editor-paragraph-dialog.h \
        e-editor-replace-dialog.h \
-       e-editor-selection.h \
        e-editor-spell-check-dialog.h \
        e-editor-table-dialog.h \
        e-editor-text-dialog.h \
@@ -210,6 +209,7 @@ evolution_util_include_HEADERS =  \
        e-filter-part.h \
        e-filter-rule.h \
        e-focus-tracker.h \
+       e-html-editor-selection.h \
        e-html-editor-view.h \
        e-html-editor.h \
        e-html-utils.h \
@@ -457,7 +457,6 @@ libevolution_util_la_SOURCES = \
        e-editor-page-dialog.c \
        e-editor-paragraph-dialog.c \
        e-editor-replace-dialog.c \
-       e-editor-selection.c \
        e-editor-spell-check-dialog.c \
        e-editor-table-dialog.c \
        e-editor-text-dialog.c \
@@ -482,6 +481,7 @@ libevolution_util_la_SOURCES = \
        e-filter-rule.c \
        e-focus-tracker.c \
        e-html-editor-private.h \
+       e-html-editor-selection.c \
        e-html-editor-view.c \
        e-html-editor.c \
        e-html-utils.c \
diff --git a/e-util/e-editor-actions.c b/e-util/e-editor-actions.c
index 3409ba5..dfdc9c7 100644
--- a/e-util/e-editor-actions.c
+++ b/e-util/e-editor-actions.c
@@ -40,7 +40,7 @@ insert_html_file_ready_cb (GFile *file,
                            GAsyncResult *result,
                            EHTMLEditor *editor)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gchar *contents = NULL;
        gsize length;
        GError *error = NULL;
@@ -66,7 +66,7 @@ insert_html_file_ready_cb (GFile *file,
 
        selection = e_html_editor_view_get_selection (
                e_html_editor_get_view (editor));
-       e_editor_selection_insert_html (selection, contents);
+       e_html_editor_selection_insert_html (selection, contents);
        g_free (contents);
 
        g_object_unref (editor);
@@ -77,7 +77,7 @@ insert_text_file_ready_cb (GFile *file,
                            GAsyncResult *result,
                            EHTMLEditor *editor)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gchar *contents;
        gsize length;
        GError *error = NULL;
@@ -103,7 +103,7 @@ insert_text_file_ready_cb (GFile *file,
 
        selection = e_html_editor_view_get_selection (
                e_html_editor_get_view (editor));
-       e_editor_selection_insert_text (selection, contents);
+       e_html_editor_selection_insert_text (selection, contents);
        g_free (contents);
 
        g_object_unref (editor);
@@ -377,12 +377,12 @@ action_context_remove_link_cb (GtkAction *action,
                                EHTMLEditor *editor)
 {
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_unlink (selection);
+       e_html_editor_selection_unlink (selection);
 }
 
 static void
@@ -390,14 +390,14 @@ action_context_spell_add_cb (GtkAction *action,
                              EHTMLEditor *editor)
 {
        ESpellChecker *spell_checker;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gchar *word;
 
        spell_checker = e_html_editor_view_get_spell_checker (
                editor->priv->html_editor_view);
        selection = e_html_editor_view_get_selection (editor->priv->html_editor_view);
 
-       word = e_editor_selection_get_caret_word (selection);
+       word = e_html_editor_selection_get_caret_word (selection);
        if (word && *word) {
                e_spell_checker_learn_word (spell_checker, word);
        }
@@ -408,14 +408,14 @@ action_context_spell_ignore_cb (GtkAction *action,
                                 EHTMLEditor *editor)
 {
        ESpellChecker *spell_checker;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gchar *word;
 
        spell_checker = e_html_editor_view_get_spell_checker (
                editor->priv->html_editor_view);
        selection = e_html_editor_view_get_selection (editor->priv->html_editor_view);
 
-       word = e_editor_selection_get_caret_word (selection);
+       word = e_html_editor_selection_get_caret_word (selection);
        if (word && *word) {
                e_spell_checker_ignore_word (spell_checker, word);
        }
@@ -441,7 +441,7 @@ static void
 action_indent_cb (GtkAction *action,
                   EHTMLEditor *editor)
 {
-       e_editor_selection_indent (editor->priv->selection);
+       e_html_editor_selection_indent (editor->priv->selection);
 }
 
 static void
@@ -504,14 +504,14 @@ action_insert_image_cb (GtkAction *action,
 
        if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) {
                EHTMLEditorView *view;
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
                gchar *uri;
 
                uri = gtk_file_chooser_get_uri (GTK_FILE_CHOOSER (dialog));
 
                view = e_html_editor_get_view (editor);
                selection = e_html_editor_view_get_selection (view);
-               e_editor_selection_insert_image (selection, uri);
+               e_html_editor_selection_insert_image (selection, uri);
 
                g_free (uri);
        }
@@ -892,14 +892,14 @@ static void
 action_unindent_cb (GtkAction *action,
                     EHTMLEditor *editor)
 {
-       e_editor_selection_unindent (editor->priv->selection);
+       e_html_editor_selection_unindent (editor->priv->selection);
 }
 
 static void
 action_wrap_lines_cb (GtkAction *action,
                       EHTMLEditor *editor)
 {
-       e_editor_selection_wrap_lines (editor->priv->selection);
+       e_html_editor_selection_wrap_lines (editor->priv->selection);
 }
 
 static void
@@ -1108,21 +1108,21 @@ static GtkRadioActionEntry core_justify_entries[] = {
          N_("_Center"),
          "<Control>e",
          N_("Center Alignment"),
-         E_EDITOR_SELECTION_ALIGNMENT_CENTER },
+         E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER },
 
        { "justify-left",
          GTK_STOCK_JUSTIFY_LEFT,
          N_("_Left"),
          "<Control>l",
          N_("Left Alignment"),
-         E_EDITOR_SELECTION_ALIGNMENT_LEFT },
+         E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT },
 
        { "justify-right",
          GTK_STOCK_JUSTIFY_RIGHT,
          N_("_Right"),
          "<Control>r",
          N_("Right Alignment"),
-         E_EDITOR_SELECTION_ALIGNMENT_RIGHT }
+         E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT }
 };
 
 static GtkRadioActionEntry core_mode_entries[] = {
@@ -1149,98 +1149,98 @@ static GtkRadioActionEntry core_style_entries[] = {
          N_("_Normal"),
          "<Control>0",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH },
 
        { "style-h1",
          NULL,
          N_("Header _1"),
          "<Control>1",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H1 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1 },
 
        { "style-h2",
          NULL,
          N_("Header _2"),
          "<Control>2",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H2 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H2 },
 
        { "style-h3",
          NULL,
          N_("Header _3"),
          "<Control>3",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H3 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H3 },
 
        { "style-h4",
          NULL,
          N_("Header _4"),
          "<Control>4",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H4 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H4 },
 
        { "style-h5",
          NULL,
          N_("Header _5"),
          "<Control>5",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H5 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H5 },
 
        { "style-h6",
          NULL,
          N_("Header _6"),
          "<Control>6",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_H6 },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6 },
 
         { "style-preformat",
           NULL,
           N_("_Preformatted"),
           "<Control>7",
           NULL,
-          E_EDITOR_SELECTION_BLOCK_FORMAT_PRE },
+          E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PRE },
 
        { "style-address",
          NULL,
          N_("A_ddress"),
          "<Control>8",
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS },
 
         { "style-blockquote",
           NULL,
           N_("_Blockquote"),
           "<Control>9",
           NULL,
-          E_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE },
+          E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE },
 
        { "style-list-bullet",
          NULL,
          N_("_Bulleted List"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST },
 
        { "style-list-roman",
          NULL,
          N_("_Roman Numeral List"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN },
 
        { "style-list-number",
          NULL,
          N_("Numbered _List"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST },
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST },
 
        { "style-list-alpha",
          NULL,
          N_("_Alphabetical List"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA }
+         E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA }
 };
 
 /*****************************************************************************
@@ -1392,7 +1392,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("-2"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_TINY },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_TINY },
 
        { "size-minus-one",
          NULL,
@@ -1400,7 +1400,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("-1"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_SMALL },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_SMALL },
 
        { "size-plus-zero",
          NULL,
@@ -1408,7 +1408,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("+0"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_NORMAL },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL },
 
        { "size-plus-one",
          NULL,
@@ -1416,7 +1416,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("+1"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_BIG },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_BIG },
 
        { "size-plus-two",
          NULL,
@@ -1424,7 +1424,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("+2"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_BIGGER },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_BIGGER },
 
        { "size-plus-three",
          NULL,
@@ -1432,7 +1432,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("+3"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_LARGE },
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_LARGE },
 
        { "size-plus-four",
          NULL,
@@ -1440,7 +1440,7 @@ static GtkRadioActionEntry html_size_entries[] = {
          N_("+4"),
          NULL,
          NULL,
-         E_EDITOR_SELECTION_FONT_SIZE_VERY_LARGE }
+         E_HTML_EDITOR_SELECTION_FONT_SIZE_VERY_LARGE }
 };
 
 /*****************************************************************************
@@ -1829,7 +1829,7 @@ editor_actions_init (EHTMLEditor *editor)
        gtk_action_group_add_radio_actions (
                action_group, core_justify_entries,
                G_N_ELEMENTS (core_justify_entries),
-               E_EDITOR_SELECTION_ALIGNMENT_LEFT,
+               E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT,
                NULL, NULL);
        gtk_action_group_add_radio_actions (
                action_group, core_mode_entries,
@@ -1839,7 +1839,7 @@ editor_actions_init (EHTMLEditor *editor)
        gtk_action_group_add_radio_actions (
                action_group, core_style_entries,
                G_N_ELEMENTS (core_style_entries),
-               E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH,
+               E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH,
                NULL, NULL);
        gtk_ui_manager_insert_action_group (manager, action_group, 0);
 
@@ -1875,7 +1875,7 @@ editor_actions_init (EHTMLEditor *editor)
        gtk_action_group_add_radio_actions (
                action_group, html_size_entries,
                G_N_ELEMENTS (html_size_entries),
-               E_EDITOR_SELECTION_FONT_SIZE_NORMAL,
+               E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL,
                NULL, NULL);
        gtk_ui_manager_insert_action_group (manager, action_group, 0);
 
diff --git a/e-util/e-editor-hrule-dialog.c b/e-util/e-editor-hrule-dialog.c
index 4559a96..0138843 100644
--- a/e-util/e-editor-hrule-dialog.c
+++ b/e-util/e-editor-hrule-dialog.c
@@ -211,7 +211,7 @@ editor_hrule_dialog_show (GtkWidget *widget)
 {
        EEditorHRuleDialog *dialog;
        EHTMLEditor *editor;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        EHTMLEditorView *view;
 
        WebKitDOMDocument *document;
@@ -237,7 +237,7 @@ editor_hrule_dialog_show (GtkWidget *widget)
        if (!rule) {
                WebKitDOMElement *caret, *parent, *element;
 
-               caret = e_editor_selection_save_caret_position (editor_selection);
+               caret = e_html_editor_selection_save_caret_position (editor_selection);
 
                parent = webkit_dom_node_get_parent_element (WEBKIT_DOM_NODE (caret));
                element = caret;
@@ -257,7 +257,7 @@ editor_hrule_dialog_show (GtkWidget *widget)
                        webkit_dom_node_get_next_sibling (WEBKIT_DOM_NODE (element)),
                        NULL);
 
-               e_editor_selection_clear_caret_position_marker (editor_selection);
+               e_html_editor_selection_clear_caret_position_marker (editor_selection);
 
                dialog->priv->hr_element = WEBKIT_DOM_HTMLHR_ELEMENT (rule);
 
diff --git a/e-util/e-editor-image-dialog.c b/e-util/e-editor-image-dialog.c
index eb20c38..27d2059 100644
--- a/e-util/e-editor-image-dialog.c
+++ b/e-util/e-editor-image-dialog.c
@@ -63,14 +63,14 @@ static void
 editor_image_dialog_set_src (EEditorImageDialog *dialog)
 {
        EHTMLEditor *editor;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        EHTMLEditorView *view;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        editor_selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_replace_image_src (
+       e_html_editor_selection_replace_image_src (
                editor_selection,
                WEBKIT_DOM_ELEMENT (dialog->priv->image),
                gtk_file_chooser_get_uri (
diff --git a/e-util/e-editor-link-dialog.c b/e-util/e-editor-link-dialog.c
index a866b4d..6cbeef1 100644
--- a/e-util/e-editor-link-dialog.c
+++ b/e-util/e-editor-link-dialog.c
@@ -23,7 +23,7 @@
 #endif
 
 #include "e-editor-link-dialog.h"
-#include "e-editor-selection.h"
+#include "e-html-editor-selection.h"
 #include "e-editor-utils.h"
 #include "e-html-editor-view.h"
 
@@ -89,12 +89,12 @@ editor_link_dialog_remove_link (EEditorLinkDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
-       e_editor_selection_unlink (selection);
+       e_html_editor_selection_unlink (selection);
 
        gtk_widget_hide (GTK_WIDGET (dialog));
 }
@@ -104,7 +104,7 @@ editor_link_dialog_ok (EEditorLinkDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitDOMDocument *document;
        WebKitDOMDOMWindow *window;
        WebKitDOMDOMSelection *dom_selection;
@@ -170,7 +170,7 @@ editor_link_dialog_ok (EEditorLinkDialog *dialog)
                /* Check whether a text is selected or not */
                text = webkit_dom_range_get_text (range);
                if (text && *text) {
-                       e_editor_selection_create_link (
+                       e_html_editor_selection_create_link (
                                selection,
                                gtk_entry_get_text (
                                        GTK_ENTRY (dialog->priv->url_edit)));
diff --git a/e-util/e-editor-replace-dialog.c b/e-util/e-editor-replace-dialog.c
index 991be23..bd860ad 100644
--- a/e-util/e-editor-replace-dialog.c
+++ b/e-util/e-editor-replace-dialog.c
@@ -92,7 +92,7 @@ editor_replace_dialog_replace_cb (EEditorReplaceDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        /* Jump to next matching word */
        if (!jump (dialog)) {
@@ -109,7 +109,7 @@ editor_replace_dialog_replace_cb (EEditorReplaceDialog *dialog)
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_replace (
+       e_html_editor_selection_replace (
                selection,
                gtk_entry_get_text (GTK_ENTRY (dialog->priv->replace_entry)));
 }
@@ -121,7 +121,7 @@ editor_replace_dialog_replace_all_cb (EEditorReplaceDialog *dialog)
        gchar *result;
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        const gchar *replacement;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
@@ -130,11 +130,12 @@ editor_replace_dialog_replace_all_cb (EEditorReplaceDialog *dialog)
        replacement = gtk_entry_get_text (GTK_ENTRY (dialog->priv->replace_entry));
 
        while (jump (dialog)) {
-               e_editor_selection_replace (selection, replacement);
+               e_html_editor_selection_replace (selection, replacement);
                i++;
 
                /* Jump behind the word */
-               e_editor_selection_move (selection, TRUE, E_EDITOR_SELECTION_GRANULARITY_WORD);
+               e_html_editor_selection_move (
+                       selection, TRUE, E_HTML_EDITOR_SELECTION_GRANULARITY_WORD);
        }
 
        result = g_strdup_printf (_("%d occurences replaced"), i);
diff --git a/e-util/e-editor-spell-check-dialog.c b/e-util/e-editor-spell-check-dialog.c
index 81f7aa7..2c5da90 100644
--- a/e-util/e-editor-spell-check-dialog.c
+++ b/e-util/e-editor-spell-check-dialog.c
@@ -308,7 +308,7 @@ editor_spell_check_dialog_replace (EEditorSpellCheckDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        GtkTreeModel *model;
        GtkTreeSelection *selection;
        GtkTreeIter iter;
@@ -323,7 +323,7 @@ editor_spell_check_dialog_replace (EEditorSpellCheckDialog *dialog)
        gtk_tree_selection_get_selected (selection, &model, &iter);
        gtk_tree_model_get (model, &iter, 0, &replacement, -1);
 
-       e_editor_selection_insert_html (
+       e_html_editor_selection_insert_html (
                editor_selection, replacement);
 
        g_free (replacement);
@@ -335,7 +335,7 @@ editor_spell_check_dialog_replace_all (EEditorSpellCheckDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        GtkTreeModel *model;
        GtkTreeSelection *selection;
        GtkTreeIter iter;
@@ -357,7 +357,7 @@ editor_spell_check_dialog_replace_all (EEditorSpellCheckDialog *dialog)
                        WEBKIT_WEB_VIEW (view), dialog->priv->word,
                        FALSE, TRUE, TRUE)) {
 
-               e_editor_selection_insert_html (
+               e_html_editor_selection_insert_html (
                        editor_selection, replacement);
        }
 
diff --git a/e-util/e-editor-table-dialog.c b/e-util/e-editor-table-dialog.c
index 54dff1f..4b66ad5 100644
--- a/e-util/e-editor-table-dialog.c
+++ b/e-util/e-editor-table-dialog.c
@@ -67,7 +67,7 @@ static WebKitDOMElement *
 editor_table_dialog_create_table (EEditorTableDialog *dialog)
 {
        EHTMLEditor *editor;
-       EEditorSelection *editor_selection;
+       EHTMLEditorSelection *editor_selection;
        EHTMLEditorView *view;
        WebKitDOMDocument *document;
        WebKitDOMElement *table, *br, *caret, *parent, *element;
@@ -95,7 +95,7 @@ editor_table_dialog_create_table (EEditorTableDialog *dialog)
                }
        }
 
-       caret = e_editor_selection_save_caret_position (editor_selection);
+       caret = e_html_editor_selection_save_caret_position (editor_selection);
 
        parent = webkit_dom_node_get_parent_element (WEBKIT_DOM_NODE (caret));
        element = caret;
@@ -120,7 +120,7 @@ editor_table_dialog_create_table (EEditorTableDialog *dialog)
                webkit_dom_node_get_next_sibling (WEBKIT_DOM_NODE (element)),
                NULL);
 
-       e_editor_selection_clear_caret_position_marker (editor_selection);
+       e_html_editor_selection_clear_caret_position_marker (editor_selection);
 
        e_html_editor_view_set_changed (view, TRUE);
 
diff --git a/e-util/e-editor-text-dialog.c b/e-util/e-editor-text-dialog.c
index 2fa6d24..3b0b00e 100644
--- a/e-util/e-editor-text-dialog.c
+++ b/e-util/e-editor-text-dialog.c
@@ -52,13 +52,13 @@ editor_text_dialog_set_bold (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_set_bold (
+       e_html_editor_selection_set_bold (
                selection,
                gtk_toggle_button_get_active (
                        GTK_TOGGLE_BUTTON (dialog->priv->bold_check)));
@@ -69,13 +69,13 @@ editor_text_dialog_set_italic (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_set_italic (
+       e_html_editor_selection_set_italic (
                selection,
                gtk_toggle_button_get_active (
                        GTK_TOGGLE_BUTTON (dialog->priv->italic_check)));
@@ -86,13 +86,13 @@ editor_text_dialog_set_underline (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_set_underline (
+       e_html_editor_selection_set_underline (
                selection,
                gtk_toggle_button_get_active (
                        GTK_TOGGLE_BUTTON (dialog->priv->underline_check)));
@@ -103,13 +103,13 @@ editor_text_dialog_set_strikethrough (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_set_strikethrough (
+       e_html_editor_selection_set_strikethrough (
                selection,
                gtk_toggle_button_get_active (
                        GTK_TOGGLE_BUTTON (dialog->priv->strikethrough_check)));
@@ -120,7 +120,7 @@ editor_text_dialog_set_color (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        GdkRGBA rgba;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
@@ -129,7 +129,7 @@ editor_text_dialog_set_color (EEditorTextDialog *dialog)
 
        e_color_combo_get_current_color (
                E_COLOR_COMBO (dialog->priv->color_check), &rgba);
-       e_editor_selection_set_font_color (selection, &rgba);
+       e_html_editor_selection_set_font_color (selection, &rgba);
 }
 
 static void
@@ -137,7 +137,7 @@ editor_text_dialog_set_size (EEditorTextDialog *dialog)
 {
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gint size;
 
        editor = e_editor_dialog_get_editor (E_EDITOR_DIALOG (dialog));
@@ -145,7 +145,7 @@ editor_text_dialog_set_size (EEditorTextDialog *dialog)
        selection = e_html_editor_view_get_selection (view);
        size = gtk_combo_box_get_active (GTK_COMBO_BOX (dialog->priv->size_check));
 
-       e_editor_selection_set_font_size (selection, size + 1);
+       e_html_editor_selection_set_font_size (selection, size + 1);
 }
 
 static void
@@ -154,7 +154,7 @@ editor_text_dialog_show (GtkWidget *widget)
        EEditorTextDialog *dialog;
        EHTMLEditor *editor;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        GdkRGBA rgba;
 
        dialog = E_EDITOR_TEXT_DIALOG (widget);
@@ -164,22 +164,22 @@ editor_text_dialog_show (GtkWidget *widget)
 
        gtk_toggle_button_set_active (
                GTK_TOGGLE_BUTTON (dialog->priv->bold_check),
-               e_editor_selection_is_bold (selection));
+               e_html_editor_selection_is_bold (selection));
        gtk_toggle_button_set_active (
                GTK_TOGGLE_BUTTON (dialog->priv->italic_check),
-               e_editor_selection_is_italic (selection));
+               e_html_editor_selection_is_italic (selection));
        gtk_toggle_button_set_active (
                GTK_TOGGLE_BUTTON (dialog->priv->underline_check),
-               e_editor_selection_is_underline (selection));
+               e_html_editor_selection_is_underline (selection));
        gtk_toggle_button_set_active (
                GTK_TOGGLE_BUTTON (dialog->priv->strikethrough_check),
-               e_editor_selection_is_strikethrough (selection));
+               e_html_editor_selection_is_strikethrough (selection));
 
        gtk_combo_box_set_active (
                GTK_COMBO_BOX (dialog->priv->size_check),
-               e_editor_selection_get_font_size (selection));
+               e_html_editor_selection_get_font_size (selection));
 
-       e_editor_selection_get_font_color (selection, &rgba);
+       e_html_editor_selection_get_font_color (selection, &rgba);
        e_color_combo_set_current_color (
                E_COLOR_COMBO (dialog->priv->color_check), &rgba);
 
diff --git a/e-util/e-html-editor-private.h b/e-util/e-html-editor-private.h
index e4b32f2..0a29fa0 100644
--- a/e-util/e-html-editor-private.h
+++ b/e-util/e-html-editor-private.h
@@ -84,7 +84,7 @@ struct _EHTMLEditorPrivate {
        GtkWidget *scrolled_window;
 
        EHTMLEditorView *html_editor_view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        gchar *filename;
 
diff --git a/e-util/e-editor-selection.c b/e-util/e-html-editor-selection.c
similarity index 74%
rename from e-util/e-editor-selection.c
rename to e-util/e-html-editor-selection.c
index 63b4b69..f788620 100644
--- a/e-util/e-editor-selection.c
+++ b/e-util/e-html-editor-selection.c
@@ -1,5 +1,5 @@
 /*
- * e-editor-selection.c
+ * e-html-editor-selection.c
  *
  * Copyright (C) 2012 Dan Vrátil <dvratil redhat com>
  *
@@ -22,7 +22,7 @@
 #include <config.h>
 #endif
 
-#include "e-editor-selection.h"
+#include "e-html-editor-selection.h"
 #include "e-html-editor-view.h"
 #include "e-html-editor.h"
 #include "e-editor-utils.h"
@@ -35,22 +35,22 @@
 #include <stdlib.h>
 #include <ctype.h>
 
-#define E_EDITOR_SELECTION_GET_PRIVATE(obj) \
+#define E_HTML_EDITOR_SELECTION_GET_PRIVATE(obj) \
        (G_TYPE_INSTANCE_GET_PRIVATE \
-       ((obj), E_TYPE_EDITOR_SELECTION, EEditorSelectionPrivate))
+       ((obj), E_TYPE_HTML_EDITOR_SELECTION, EHTMLEditorSelectionPrivate))
 
 #define UNICODE_ZERO_WIDTH_SPACE "\xe2\x80\x8b"
 #define SPACES_PER_INDENTATION 4
 
 /**
- * EEditorSelection:
+ * EHTMLEditorSelection
  *
- * The #EEditorSelection object represents current position of the cursor
+ * The #EHTMLEditorSelection object represents current position of the cursor
  * with the editor or current text selection within the editor. To obtain
- * valid #EEditorSelection, call e_html_editor_view_get_selection().
+ * valid #EHTMLEditorSelection, call e_html_editor_view_get_selection().
  */
 
-struct _EEditorSelectionPrivate {
+struct _EHTMLEditorSelectionPrivate {
 
        GWeakRef html_editor_view;
        gulong selection_changed_handler_id;
@@ -72,7 +72,7 @@ struct _EEditorSelectionPrivate {
        gint word_wrap_length;
        guint font_size;
 
-       EEditorSelectionAlignment alignment;
+       EHTMLEditorSelectionAlignment alignment;
 };
 
 enum {
@@ -98,13 +98,13 @@ enum {
 static const GdkRGBA black = { 0 };
 
 G_DEFINE_TYPE (
-       EEditorSelection,
-       e_editor_selection,
+       EHTMLEditorSelection,
+       e_html_editor_selection,
        G_TYPE_OBJECT
 );
 
 static WebKitDOMRange *
-editor_selection_get_current_range (EEditorSelection *selection)
+html_editor_selection_get_current_range (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -113,7 +113,7 @@ editor_selection_get_current_range (EEditorSelection *selection)
        WebKitDOMDOMSelection *dom_selection;
        WebKitDOMRange *range = NULL;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
@@ -139,7 +139,7 @@ editor_selection_get_current_range (EEditorSelection *selection)
 }
 
 static gboolean
-get_has_style (EEditorSelection *selection,
+get_has_style (EHTMLEditorSelection *selection,
                const gchar *style_tag)
 {
        WebKitDOMNode *node;
@@ -148,7 +148,7 @@ get_has_style (EEditorSelection *selection,
        gboolean result;
        gint tag_len;
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -207,7 +207,7 @@ get_has_style (EEditorSelection *selection,
 }
 
 static gchar *
-get_font_property (EEditorSelection *selection,
+get_font_property (EHTMLEditorSelection *selection,
                    const gchar *font_property)
 {
        WebKitDOMRange *range;
@@ -215,7 +215,7 @@ get_font_property (EEditorSelection *selection,
        WebKitDOMElement *element;
        gchar *value;
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return NULL;
 
@@ -230,8 +230,8 @@ get_font_property (EEditorSelection *selection,
 }
 
 static void
-editor_selection_selection_changed_cb (WebKitWebView *webview,
-                                       EEditorSelection *selection)
+html_editor_selection_selection_changed_cb (WebKitWebView *webview,
+                                            EHTMLEditorSelection *selection)
 {
        g_object_freeze_notify (G_OBJECT (selection));
 
@@ -255,30 +255,30 @@ editor_selection_selection_changed_cb (WebKitWebView *webview,
 }
 
 void
-e_editor_selection_block_selection_changed (EEditorSelection *selection)
+e_html_editor_selection_block_selection_changed (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_signal_handlers_block_by_func (
-               view, editor_selection_selection_changed_cb, selection);
+               view, html_editor_selection_selection_changed_cb, selection);
        g_object_unref (view);
 }
 
 void
-e_editor_selection_unblock_selection_changed (EEditorSelection *selection)
+e_html_editor_selection_unblock_selection_changed (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_signal_handlers_unblock_by_func (
-               view, editor_selection_selection_changed_cb, selection);
+               view, html_editor_selection_selection_changed_cb, selection);
        g_object_unref (view);
 }
 
 static void
-editor_selection_set_html_editor_view (EEditorSelection *selection,
-                                    EHTMLEditorView *view)
+html_editor_selection_set_html_editor_view (EHTMLEditorSelection *selection,
+                                            EHTMLEditorView *view)
 {
        gulong handler_id;
 
@@ -288,17 +288,17 @@ editor_selection_set_html_editor_view (EEditorSelection *selection,
 
        handler_id = g_signal_connect (
                view, "selection-changed",
-               G_CALLBACK (editor_selection_selection_changed_cb),
+               G_CALLBACK (html_editor_selection_selection_changed_cb),
                selection);
 
        selection->priv->selection_changed_handler_id = handler_id;
 }
 
 static void
-editor_selection_get_property (GObject *object,
-                               guint property_id,
-                               GValue *value,
-                               GParamSpec *pspec)
+html_editor_selection_get_property (GObject *object,
+                                    guint property_id,
+                                    GValue *value,
+                                    GParamSpec *pspec)
 {
        GdkRGBA rgba = { 0 };
 
@@ -306,112 +306,112 @@ editor_selection_get_property (GObject *object,
                case PROP_ALIGNMENT:
                        g_value_set_int (
                                value,
-                               e_editor_selection_get_alignment (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_alignment (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_BACKGROUND_COLOR:
                        g_value_set_string (
                                value,
-                               e_editor_selection_get_background_color (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_background_color (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_BLOCK_FORMAT:
                        g_value_set_int (
                                value,
-                               e_editor_selection_get_block_format (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_block_format (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_BOLD:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_bold (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_bold (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_HTML_EDITOR_VIEW:
                        g_value_take_object (
                                value,
-                               e_editor_selection_ref_html_editor_view (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_ref_html_editor_view (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_FONT_COLOR:
-                       e_editor_selection_get_font_color (
-                               E_EDITOR_SELECTION (object), &rgba);
+                       e_html_editor_selection_get_font_color (
+                               E_HTML_EDITOR_SELECTION (object), &rgba);
                        g_value_set_boxed (value, &rgba);
                        return;
 
                case PROP_FONT_NAME:
                        g_value_set_string (
                                value,
-                               e_editor_selection_get_font_name (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_font_name (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_FONT_SIZE:
                        g_value_set_int (
                                value,
-                               e_editor_selection_get_font_size (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_font_size (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_INDENTED:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_indented (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_indented (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_ITALIC:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_italic (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_italic (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_MONOSPACED:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_monospaced (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_monospaced (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_STRIKETHROUGH:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_strikethrough (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_strikethrough (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_SUBSCRIPT:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_subscript (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_subscript (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_SUPERSCRIPT:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_superscript (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_superscript (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
 
                case PROP_TEXT:
                        g_value_set_string (
                                value,
-                               e_editor_selection_get_string (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_get_string (
+                               E_HTML_EDITOR_SELECTION (object)));
                        break;
 
                case PROP_UNDERLINE:
                        g_value_set_boolean (
                                value,
-                               e_editor_selection_is_underline (
-                               E_EDITOR_SELECTION (object)));
+                               e_html_editor_selection_is_underline (
+                               E_HTML_EDITOR_SELECTION (object)));
                        return;
        }
 
@@ -419,93 +419,93 @@ editor_selection_get_property (GObject *object,
 }
 
 static void
-editor_selection_set_property (GObject *object,
-                               guint property_id,
-                               const GValue *value,
-                               GParamSpec *pspec)
+html_editor_selection_set_property (GObject *object,
+                                    guint property_id,
+                                    const GValue *value,
+                                    GParamSpec *pspec)
 {
        switch (property_id) {
                case PROP_ALIGNMENT:
-                       e_editor_selection_set_alignment (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_alignment (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_int (value));
                        return;
 
                case PROP_BACKGROUND_COLOR:
-                       e_editor_selection_set_background_color (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_background_color (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_string (value));
                        return;
 
                case PROP_BOLD:
-                       e_editor_selection_set_bold (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_bold (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_HTML_EDITOR_VIEW:
-                       editor_selection_set_html_editor_view (
-                               E_EDITOR_SELECTION (object),
+                       html_editor_selection_set_html_editor_view (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_object (value));
                        return;
 
                case PROP_FONT_COLOR:
-                       e_editor_selection_set_font_color (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_font_color (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boxed (value));
                        return;
 
                case PROP_BLOCK_FORMAT:
-                       e_editor_selection_set_block_format (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_block_format (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_int (value));
                        return;
 
                case PROP_FONT_NAME:
-                       e_editor_selection_set_font_name (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_font_name (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_string (value));
                        return;
 
                case PROP_FONT_SIZE:
-                       e_editor_selection_set_font_size (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_font_size (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_int (value));
                        return;
 
                case PROP_ITALIC:
-                       e_editor_selection_set_italic (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_italic (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_MONOSPACED:
-                       e_editor_selection_set_monospaced (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_monospaced (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_STRIKETHROUGH:
-                       e_editor_selection_set_strikethrough (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_strikethrough (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_SUBSCRIPT:
-                       e_editor_selection_set_subscript (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_subscript (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_SUPERSCRIPT:
-                       e_editor_selection_set_superscript (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_superscript (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
 
                case PROP_UNDERLINE:
-                       e_editor_selection_set_underline (
-                               E_EDITOR_SELECTION (object),
+                       e_html_editor_selection_set_underline (
+                               E_HTML_EDITOR_SELECTION (object),
                                g_value_get_boolean (value));
                        return;
        }
@@ -514,12 +514,12 @@ editor_selection_set_property (GObject *object,
 }
 
 static void
-editor_selection_dispose (GObject *object)
+html_editor_selection_dispose (GObject *object)
 {
-       EEditorSelectionPrivate *priv;
+       EHTMLEditorSelectionPrivate *priv;
        EHTMLEditorView *view;
 
-       priv = E_EDITOR_SELECTION_GET_PRIVATE (object);
+       priv = E_HTML_EDITOR_SELECTION_GET_PRIVATE (object);
 
        view = g_weak_ref_get (&priv->html_editor_view);
        if (view != NULL) {
@@ -532,13 +532,13 @@ editor_selection_dispose (GObject *object)
        g_weak_ref_set (&priv->html_editor_view, NULL);
 
        /* Chain up to parent's dispose() method. */
-       G_OBJECT_CLASS (e_editor_selection_parent_class)->dispose (object);
+       G_OBJECT_CLASS (e_html_editor_selection_parent_class)->dispose (object);
 }
 
 static void
-editor_selection_finalize (GObject *object)
+html_editor_selection_finalize (GObject *object)
 {
-       EEditorSelection *selection = E_EDITOR_SELECTION (object);
+       EHTMLEditorSelection *selection = E_HTML_EDITOR_SELECTION (object);
 
        g_free (selection->priv->text);
        g_free (selection->priv->background_color);
@@ -546,24 +546,24 @@ editor_selection_finalize (GObject *object)
        g_free (selection->priv->font_family);
 
        /* Chain up to parent's finalize() method. */
-       G_OBJECT_CLASS (e_editor_selection_parent_class)->finalize (object);
+       G_OBJECT_CLASS (e_html_editor_selection_parent_class)->finalize (object);
 }
 
 static void
-e_editor_selection_class_init (EEditorSelectionClass *class)
+e_html_editor_selection_class_init (EHTMLEditorSelectionClass *class)
 {
        GObjectClass *object_class;
 
-       g_type_class_add_private (class, sizeof (EEditorSelectionPrivate));
+       g_type_class_add_private (class, sizeof (EHTMLEditorSelectionPrivate));
 
        object_class = G_OBJECT_CLASS (class);
-       object_class->get_property = editor_selection_get_property;
-       object_class->set_property = editor_selection_set_property;
-       object_class->dispose = editor_selection_dispose;
-       object_class->finalize = editor_selection_finalize;
+       object_class->get_property = html_editor_selection_get_property;
+       object_class->set_property = html_editor_selection_set_property;
+       object_class->dispose = html_editor_selection_dispose;
+       object_class->finalize = html_editor_selection_finalize;
 
        /**
-        * EEditorSelection:alignment
+        * EHTMLEditorSelectionalignment
         *
         * Holds alignment of current paragraph.
         */
@@ -575,13 +575,13 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        "alignment",
                        NULL,
                        NULL,
-                       E_EDITOR_SELECTION_ALIGNMENT_LEFT,
-                       E_EDITOR_SELECTION_ALIGNMENT_RIGHT,
-                       E_EDITOR_SELECTION_ALIGNMENT_LEFT,
+                       E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT,
+                       E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT,
+                       E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT,
                        G_PARAM_READWRITE));
 
        /**
-        * EEditorSelection:background-color
+        * EHTMLEditorSelectionbackground-color
         *
         * Holds background color of current selection or at current cursor
         * position.
@@ -597,12 +597,12 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_READWRITE));
 
        /**
-        * EEditorSelection:block-format
+        * EHTMLEditorSelectionblock-format
         *
         * Holds block format of current paragraph. See
-        * #EEditorSelectionBlockFormat for valid values.
+        * #EHTMLEditorSelectionBlockFormat for valid values.
         */
-       /* FIXME Convert the EEditorSelectionBlockFormat
+       /* FIXME Convert the EHTMLEditorSelectionBlockFormat
         *       enum to a proper type. */
        g_object_class_install_property (
                object_class,
@@ -618,7 +618,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:bold
+        * EHTMLEditorSelectionbold
         *
         * Holds whether current selection or text at current cursor position
         * is bold.
@@ -647,7 +647,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:font-color
+        * EHTMLEditorSelectionfont-color
         *
         * Holds font color of current selection or at current cursor position.
         */
@@ -663,7 +663,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:font-name
+        * EHTMLEditorSelectionfont-name
         *
         * Holds name of font in current selection or at current cursor
         * position.
@@ -680,7 +680,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:font-size
+        * EHTMLEditorSelectionfont-size
         *
         * Holds point size of current selection or at current cursor position.
         */
@@ -698,7 +698,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:indented
+        * EHTMLEditorSelectionindented
         *
         * Holds whether current paragraph is indented. This does not include
         * citations.
@@ -715,7 +715,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:italic
+        * EHTMLEditorSelectionitalic
         *
         * Holds whether current selection or letter at current cursor position
         * is italic.
@@ -732,7 +732,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:monospaced
+        * EHTMLEditorSelectionmonospaced
         *
         * Holds whether current selection or letter at current cursor position
         * is monospaced.
@@ -749,7 +749,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:strikethrough
+        * EHTMLEditorSelectionstrikethrough
         *
         * Holds whether current selection or letter at current cursor position
         * is strikethrough.
@@ -766,7 +766,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:superscript
+        * EHTMLEditorSelectionsuperscript
         *
         * Holds whether current selection or letter at current cursor position
         * is in superscript.
@@ -783,7 +783,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:subscript
+        * EHTMLEditorSelectionsubscript
         *
         * Holds whether current selection or letter at current cursor position
         * is in subscript.
@@ -800,7 +800,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:text
+        * EHTMLEditorSelectiontext
         *
         * Holds always up-to-date text of current selection.
         */
@@ -816,7 +816,7 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
                        G_PARAM_STATIC_STRINGS));
 
        /**
-        * EEditorSelection:underline
+        * EHTMLEditorSelectionunderline
         *
         * Holds whether current selection or letter at current cursor position
         * is underlined.
@@ -834,11 +834,11 @@ e_editor_selection_class_init (EEditorSelectionClass *class)
 }
 
 static void
-e_editor_selection_init (EEditorSelection *selection)
+e_html_editor_selection_init (EHTMLEditorSelection *selection)
 {
        GSettings *g_settings;
 
-       selection->priv = E_EDITOR_SELECTION_GET_PRIVATE (selection);
+       selection->priv = E_HTML_EDITOR_SELECTION_GET_PRIVATE (selection);
 
        g_settings = g_settings_new ("org.gnome.evolution.mail");
        selection->priv->word_wrap_length =
@@ -847,16 +847,16 @@ e_editor_selection_init (EEditorSelection *selection)
 }
 
 gint
-e_editor_selection_get_word_wrap_length (EEditorSelection *selection)
+e_html_editor_selection_get_word_wrap_length (EHTMLEditorSelection *selection)
 {
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), 72);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), 72);
 
        return selection->priv->word_wrap_length;
 }
 
 /**
- * e_editor_selection_ref_html_editor_view:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_ref_html_editor_view:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns a new reference to @selection's #EHTMLEditorView.  Unreference
  * the #EHTMLEditorView with g_object_unref() when finished with it.
@@ -864,30 +864,30 @@ e_editor_selection_get_word_wrap_length (EEditorSelection *selection)
  * Returns: an #EHTMLEditorView
  **/
 EHTMLEditorView *
-e_editor_selection_ref_html_editor_view (EEditorSelection *selection)
+e_html_editor_selection_ref_html_editor_view (EHTMLEditorSelection *selection)
 {
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
        return g_weak_ref_get (&selection->priv->html_editor_view);
 }
 
 /**
- * e_editor_selection_has_text:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_has_text:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection contains any text.
  *
  * Returns: @TRUE when current selection contains text, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_has_text (EEditorSelection *selection)
+e_html_editor_selection_has_text (EHTMLEditorSelection *selection)
 {
        WebKitDOMRange *range;
        WebKitDOMNode *node;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
 
        node = webkit_dom_range_get_start_container (range, NULL);
        if (webkit_dom_node_get_node_type (node) == 3)
@@ -918,8 +918,8 @@ e_editor_selection_has_text (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_get_caret_word:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_caret_word:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns word under cursor.
  *
@@ -927,13 +927,13 @@ e_editor_selection_has_text (EEditorSelection *selection)
  * is no text under cursor or when selection is active. [transfer-full].
  */
 gchar *
-e_editor_selection_get_caret_word (EEditorSelection *selection)
+e_html_editor_selection_get_caret_word (EHTMLEditorSelection *selection)
 {
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
 
        /* Don't operate on the visible selection */
        range = webkit_dom_range_clone_range (range, NULL);
@@ -943,15 +943,15 @@ e_editor_selection_get_caret_word (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_replace_caret_word:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_replace_caret_word:
+ * @selection: an #EHTMLEditorSelection
  * @replacement: a string to replace current caret word with
  *
  * Replaces current word under cursor with @replacement.
  */
 void
-e_editor_selection_replace_caret_word (EEditorSelection *selection,
-                                       const gchar *replacement)
+e_html_editor_selection_replace_caret_word (EHTMLEditorSelection *selection,
+                                            const gchar *replacement)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -960,15 +960,15 @@ e_editor_selection_replace_caret_word (EEditorSelection *selection,
        WebKitDOMDOMSelection *dom_selection;
        WebKitDOMRange *range;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (replacement != NULL);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        document = webkit_web_view_get_dom_document (web_view);
        window = webkit_dom_document_get_default_view (document);
        dom_selection = webkit_dom_dom_window_get_selection (window);
@@ -976,28 +976,28 @@ e_editor_selection_replace_caret_word (EEditorSelection *selection,
        webkit_dom_range_expand (range, "word", NULL);
        webkit_dom_dom_selection_add_range (dom_selection, range);
 
-       e_editor_selection_insert_html (selection, replacement);
+       e_html_editor_selection_insert_html (selection, replacement);
 
        g_object_unref (view);
 }
 
 /**
- * e_editor_selection_get_string:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_string:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns currently selected string.
  *
  * Returns: A pointer to content of current selection. The string is owned by
- * #EEditorSelection and should not be free'd.
+ * #EHTMLEditorSelection and should not be free'd.
  */
 const gchar *
-e_editor_selection_get_string (EEditorSelection *selection)
+e_html_editor_selection_get_string (EHTMLEditorSelection *selection)
 {
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return NULL;
 
@@ -1008,21 +1008,21 @@ e_editor_selection_get_string (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_replace:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_replace:
+ * @selection: an #EHTMLEditorSelection
  * @new_string: a string to replace current selection with
  *
  * Replaces currently selected text with @new_string.
  */
 void
-e_editor_selection_replace (EEditorSelection *selection,
-                            const gchar *new_string)
+e_html_editor_selection_replace (EHTMLEditorSelection *selection,
+                                 const gchar *new_string)
 {
        EHTMLEditorView *view;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        e_html_editor_view_exec_command (
@@ -1032,17 +1032,17 @@ e_editor_selection_replace (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_get_alignment:
- * @selection: #an EEditorSelection
+ * e_html_editor_selection_get_alignment:
+ * @selection: #an EHTMLEditorSelection
  *
  * Returns alignment of current paragraph
  *
- * Returns: #EEditorSelectionAlignment
+ * Returns: #EHTMLEditorSelectionAlignment
  */
-EEditorSelectionAlignment
-e_editor_selection_get_alignment (EEditorSelection *selection)
+EHTMLEditorSelectionAlignment
+e_html_editor_selection_get_alignment (EHTMLEditorSelection *selection)
 {
-       EEditorSelectionAlignment alignment;
+       EHTMLEditorSelectionAlignment alignment;
        EHTMLEditorView *view;
        gchar *value;
        WebKitDOMCSSStyleDeclaration *style;
@@ -1053,22 +1053,22 @@ e_editor_selection_get_alignment (EEditorSelection *selection)
        WebKitDOMRange *range;
 
        g_return_val_if_fail (
-               E_IS_EDITOR_SELECTION (selection),
-               E_EDITOR_SELECTION_ALIGNMENT_LEFT);
+               E_IS_HTML_EDITOR_SELECTION (selection),
+               E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
-               return E_EDITOR_SELECTION_ALIGNMENT_LEFT;
+               return E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT;
 
        node = webkit_dom_range_get_start_container (range, NULL);
        if (!node)
-               return E_EDITOR_SELECTION_ALIGNMENT_LEFT;
+               return E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT;
 
        if (WEBKIT_DOM_IS_ELEMENT (node))
                element = WEBKIT_DOM_ELEMENT (node);
@@ -1080,13 +1080,13 @@ e_editor_selection_get_alignment (EEditorSelection *selection)
 
        if (!value || !*value ||
            (g_ascii_strncasecmp (value, "left", 4) == 0)) {
-               alignment = E_EDITOR_SELECTION_ALIGNMENT_LEFT;
+               alignment = E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT;
        } else if (g_ascii_strncasecmp (value, "center", 6) == 0) {
-               alignment = E_EDITOR_SELECTION_ALIGNMENT_CENTER;
+               alignment = E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER;
        } else if (g_ascii_strncasecmp (value, "right", 5) == 0) {
-               alignment = E_EDITOR_SELECTION_ALIGNMENT_RIGHT;
+               alignment = E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT;
        } else {
-               alignment = E_EDITOR_SELECTION_ALIGNMENT_LEFT;
+               alignment = E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT;
        }
 
        g_free (value);
@@ -1095,41 +1095,41 @@ e_editor_selection_get_alignment (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_alignment:
- * @selection: an #EEditorSelection
- * @alignment: an #EEditorSelectionAlignment value to apply
+ * e_html_editor_selection_set_alignment:
+ * @selection: an #EHTMLEditorSelection
+ * @alignment: an #EHTMLEditorSelectionAlignment value to apply
  *
  * Sets alignment of current paragraph to give @alignment.
  */
 void
-e_editor_selection_set_alignment (EEditorSelection *selection,
-                                  EEditorSelectionAlignment alignment)
+e_html_editor_selection_set_alignment (EHTMLEditorSelection *selection,
+                                       EHTMLEditorSelectionAlignment alignment)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_get_alignment (selection) == alignment)
+       if (e_html_editor_selection_get_alignment (selection) == alignment)
                return;
 
        switch (alignment) {
-               case E_EDITOR_SELECTION_ALIGNMENT_CENTER:
+               case E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER:
                        command = E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_CENTER;
                        break;
 
-               case E_EDITOR_SELECTION_ALIGNMENT_LEFT:
+               case E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT:
                        command = E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_LEFT;
                        break;
 
-               case E_EDITOR_SELECTION_ALIGNMENT_RIGHT:
+               case E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT:
                        command = E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_RIGHT;
                        break;
        }
 
        selection->priv->alignment = alignment;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        e_html_editor_view_exec_command (view, command, NULL);
@@ -1140,8 +1140,8 @@ e_editor_selection_set_alignment (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_get_background_color:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_background_color:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns background color of currently selected text or letter at current
  * cursor position.
@@ -1149,15 +1149,15 @@ e_editor_selection_set_alignment (EEditorSelection *selection,
  * Returns: A string with code of current background color.
  */
 const gchar *
-e_editor_selection_get_background_color (EEditorSelection *selection)
+e_html_editor_selection_get_background_color (EHTMLEditorSelection *selection)
 {
        WebKitDOMNode *ancestor;
        WebKitDOMRange *range;
        WebKitDOMCSSStyleDeclaration *css;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
 
        ancestor = webkit_dom_range_get_common_ancestor_container (range, NULL);
 
@@ -1170,24 +1170,24 @@ e_editor_selection_get_background_color (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_background_color:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_background_color:
+ * @selection: an #EHTMLEditorSelection
  * @color: code of new background color to set
  *
  * Changes background color of current selection or letter at current cursor
  * position to @color.
  */
 void
-e_editor_selection_set_background_color (EEditorSelection *selection,
-                                        const gchar *color)
+e_html_editor_selection_set_background_color (EHTMLEditorSelection *selection,
+                                              const gchar *color)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (color != NULL && *color != '\0');
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_BACKGROUND_COLOR;
@@ -1235,90 +1235,90 @@ get_block_node (WebKitDOMRange *range)
 }
 
 /**
- * e_editor_selection_get_block_format:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_block_format:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns block format of current paragraph.
  *
- * Returns: #EEditorSelectionBlockFormat
+ * Returns: #EHTMLEditorSelectionBlockFormat
  */
-EEditorSelectionBlockFormat
-e_editor_selection_get_block_format (EEditorSelection *selection)
+EHTMLEditorSelectionBlockFormat
+e_html_editor_selection_get_block_format (EHTMLEditorSelection *selection)
 {
        WebKitDOMNode *node;
        WebKitDOMRange *range;
        WebKitDOMElement *element;
-       EEditorSelectionBlockFormat result;
+       EHTMLEditorSelectionBlockFormat result;
 
        g_return_val_if_fail (
-               E_IS_EDITOR_SELECTION (selection),
-               E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH);
+               E_IS_HTML_EDITOR_SELECTION (selection),
+               E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
-               return E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
+               return E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
 
        node = webkit_dom_range_get_start_container (range, NULL);
 
        if (e_editor_dom_node_find_parent_element (node, "UL")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST;
        } else if ((element = e_editor_dom_node_find_parent_element (node, "OL")) != NULL) {
                if (webkit_dom_element_has_attribute (element, "type")) {
                        gchar *type;
 
                        type = webkit_dom_element_get_attribute (element, "type");
                        if (type && ((*type == 'a') || (*type == 'A'))) {
-                               result = E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA;
+                               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA;
                        } else if (type && ((*type == 'i') || (*type == 'I'))) {
-                               result = E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN;
+                               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN;
                        } else {
-                               result = E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST;
+                               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST;
                        }
 
                        g_free (type);
                } else {
-                       result = E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST;
+                       result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST;
                }
        } else if (e_editor_dom_node_find_parent_element (node, "PRE")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_PRE;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PRE;
        } else if (e_editor_dom_node_find_parent_element (node, "ADDRESS")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS;
        } else if (e_editor_dom_node_find_parent_element (node, "H1")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H1;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1;
        } else if (e_editor_dom_node_find_parent_element (node, "H2")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H2;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H2;
        } else if (e_editor_dom_node_find_parent_element (node, "H3")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H3;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H3;
        } else if (e_editor_dom_node_find_parent_element (node, "H4")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H4;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H4;
        } else if (e_editor_dom_node_find_parent_element (node, "H5")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H5;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H5;
        } else if (e_editor_dom_node_find_parent_element (node, "H6")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_H6;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6;
        } else if ((element = e_editor_dom_node_find_parent_element (node, "BLOCKQUOTE")) != NULL) {
                if (element_has_class (element, "-x-evo-indented"))
-                       result = E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
+                       result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
                else {
                        WebKitDOMNode *block = get_block_node (range);
 
                        if (element_has_class (WEBKIT_DOM_ELEMENT (block), "-x-evo-paragraph"))
-                               result = E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
+                               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
                        else
-                               result = E_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE;
+                               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE;
                }
        } else if (e_editor_dom_node_find_parent_element (node, "P")) {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
        } else {
-               result = E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
+               result = E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH;
        }
 
        return result;
 }
 
 static void
-remove_br_after_list_end (EEditorSelection *selection)
+remove_br_after_list_end (EHTMLEditorSelection *selection)
 {
-       WebKitDOMRange *range = editor_selection_get_current_range (selection);
+       WebKitDOMRange *range = html_editor_selection_get_current_range (selection);
        WebKitDOMNode *node = webkit_dom_range_get_end_container (range, NULL);
 
        if (WEBKIT_DOM_IS_HTMLBR_ELEMENT (webkit_dom_node_get_last_child (node)))
@@ -1363,21 +1363,21 @@ put_selection_markers_around_element (WebKitDOMDocument *document,
 }
 
 static void
-change_list_style (EEditorSelection *selection,
+change_list_style (EHTMLEditorSelection *selection,
                    WebKitDOMDocument *document,
-                   EEditorSelectionBlockFormat from,
-                   EEditorSelectionBlockFormat to,
+                   EHTMLEditorSelectionBlockFormat from,
+                   EHTMLEditorSelectionBlockFormat to,
                    gboolean html_mode)
 {
        WebKitDOMNode *list, *node;
        WebKitDOMRange *range;
        gboolean has_selection = g_strcmp0 (
-               e_editor_selection_get_string (selection), "") != 0;
+               e_html_editor_selection_get_string (selection), "") != 0;
 
        if (!has_selection)
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        node = webkit_dom_range_get_end_container (range, NULL);
        if (!WEBKIT_DOM_IS_ELEMENT (node))
                node = WEBKIT_DOM_NODE (webkit_dom_node_get_parent_element (node));
@@ -1386,26 +1386,26 @@ change_list_style (EEditorSelection *selection,
                return;
 
        list = webkit_dom_node_get_parent_node (node);
-       if (from >= E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST &&
+       if (from >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST &&
            !WEBKIT_DOM_IS_HTMLO_LIST_ELEMENT (list))
                return;
 
-       if (from == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST &&
+       if (from == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST &&
            !WEBKIT_DOM_IS_HTMLU_LIST_ELEMENT (list))
                return;
 
-       if ((from >= E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST &&
-           to == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) ||
-           (from == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST &&
-           to >= E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST)) {
+       if ((from >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST &&
+           to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) ||
+           (from == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST &&
+           to >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST)) {
                WebKitDOMElement *new_list;
 
                new_list = webkit_dom_document_create_element (
                        document,
-                       to == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST ? "UL" : "OL",
+                       to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST ? "UL" : "OL",
                        NULL);
 
-               if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST && !html_mode) {
+               if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST && !html_mode) {
                        element_add_class (new_list, "-x-evo-ul-plain");
                        webkit_dom_element_set_attribute (
                                new_list, "style", "margin-left: -3ch;", NULL);
@@ -1421,29 +1421,29 @@ change_list_style (EEditorSelection *selection,
 
                if (has_selection) {
                        put_selection_markers_around_element (document, new_list);
-                       e_editor_selection_restore (selection);
+                       e_html_editor_selection_restore (selection);
                }
        }
 
-       if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST) {
+       if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST) {
                webkit_dom_element_remove_attribute (
                        WEBKIT_DOM_ELEMENT (list), "type");
-       } else if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA) {
+       } else if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA) {
                webkit_dom_element_set_attribute (
                        WEBKIT_DOM_ELEMENT (list), "type", "A", NULL);
-       } else if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN) {
+       } else if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN) {
                webkit_dom_element_set_attribute (
                        WEBKIT_DOM_ELEMENT (list), "type", "I", NULL);
        }
 
        if (!has_selection)
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
 }
 
 static void
-insert_new_list (EEditorSelection *selection,
+insert_new_list (EHTMLEditorSelection *selection,
                  WebKitDOMDocument *document,
-                 EEditorSelectionBlockFormat to,
+                 EHTMLEditorSelectionBlockFormat to,
                  gboolean html_mode)
 {
        gboolean inserting_ordered_list = FALSE, empty;
@@ -1452,12 +1452,12 @@ insert_new_list (EEditorSelection *selection,
        WebKitDOMElement *element, *li;
        WebKitDOMNode *node;
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        node = webkit_dom_range_get_end_container (range, NULL);
        if (!WEBKIT_DOM_IS_ELEMENT (node))
                node = WEBKIT_DOM_NODE (webkit_dom_node_get_parent_element (node));
 
-       if (to != E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST)
+       if (to != E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST)
                inserting_ordered_list = TRUE;
 
        content = webkit_dom_node_get_text_content (node);
@@ -1468,10 +1468,10 @@ insert_new_list (EEditorSelection *selection,
        element = webkit_dom_document_create_element (
                document, inserting_ordered_list ? "OL" : "UL", NULL);
 
-       if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA) {
+       if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA) {
                webkit_dom_element_set_attribute (
                        WEBKIT_DOM_ELEMENT (element), "type", "A", NULL);
-       } else if (to == E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN) {
+       } else if (to == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN) {
                webkit_dom_element_set_attribute (
                        WEBKIT_DOM_ELEMENT (element), "type", "I", NULL);
        }
@@ -1507,11 +1507,11 @@ insert_new_list (EEditorSelection *selection,
 
        node = webkit_dom_node_get_first_child (WEBKIT_DOM_NODE (element));
        webkit_dom_node_append_child (
-               node, e_editor_selection_get_caret_position_node (document), NULL);
+               node, e_html_editor_selection_get_caret_position_node (document), NULL);
 
        webkit_dom_range_insert_node (range, WEBKIT_DOM_NODE (element), NULL);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 }
 
 static void
@@ -1567,7 +1567,7 @@ remove_quoting (WebKitDOMElement *element)
 }
 
 static void
-select_nodes_for_format_change (EEditorSelection *selection,
+select_nodes_for_format_change (EHTMLEditorSelection *selection,
                                 WebKitDOMDocument *document)
 {
        WebKitDOMDOMSelection *window_selection;
@@ -1579,12 +1579,12 @@ select_nodes_for_format_change (EEditorSelection *selection,
        window_selection = webkit_dom_dom_window_get_selection (window);
        new_range = webkit_dom_document_create_range (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
 
        node = get_block_node (range);
 
        remove_wrapping (WEBKIT_DOM_ELEMENT (node));
-       e_editor_selection_save_caret_position (selection);
+       e_html_editor_selection_save_caret_position (selection);
        remove_quoting (WEBKIT_DOM_ELEMENT (node));
 
        webkit_dom_range_select_node_contents (new_range, node, NULL);
@@ -1593,18 +1593,18 @@ select_nodes_for_format_change (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_set_block_format:
- * @selection: an #EEditorSelection
- * @format: an #EEditorSelectionBlockFormat value
+ * e_html_editor_selection_set_block_format:
+ * @selection: an #EHTMLEditorSelection
+ * @format: an #EHTMLEditorSelectionBlockFormat value
  *
  * Changes block format of current paragraph to @format.
  */
 void
-e_editor_selection_set_block_format (EEditorSelection *selection,
-                                     EEditorSelectionBlockFormat format)
+e_html_editor_selection_set_block_format (EHTMLEditorSelection *selection,
+                                          EHTMLEditorSelectionBlockFormat format)
 {
        EHTMLEditorView *view;
-       EEditorSelectionBlockFormat current_format;
+       EHTMLEditorSelectionBlockFormat current_format;
        EHTMLEditorViewCommand command;
        const gchar *value;
        gboolean has_selection = FALSE;
@@ -1613,99 +1613,99 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
        WebKitDOMNode *block = NULL;
        WebKitDOMRange *range;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       current_format = e_editor_selection_get_block_format (selection);
+       current_format = e_html_editor_selection_get_block_format (selection);
        if (current_format == format) {
                return;
        }
 
        switch (format) {
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "BLOCKQUOTE";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H1:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H1";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H2:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H2:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H2";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H3:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H3:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H3";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H4:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H4:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H4";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H5:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H5:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H5";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_H6:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "H6";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "P";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_PRE:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PRE:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "PRE";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS:
                        command = E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK;
                        value = "ADDRESS";
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST:
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA:
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN:
                        command = E_HTML_EDITOR_VIEW_COMMAND_INSERT_ORDERED_LIST;
                        to_list = TRUE;
                        value = NULL;
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST:
                        command = E_HTML_EDITOR_VIEW_COMMAND_INSERT_UNORDERED_LIST;
                        to_list = TRUE;
                        value = NULL;
                        break;
-               case E_EDITOR_SELECTION_BLOCK_FORMAT_NONE:
+               case E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_NONE:
                default:
                        command = E_HTML_EDITOR_VIEW_COMMAND_REMOVE_FORMAT;
                        value = NULL;
                        break;
        }
 
-       if (g_strcmp0 (e_editor_selection_get_string (selection), "") != 0)
+       if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") != 0)
                has_selection = TRUE;
 
        /* H1 - H6 have bold font by default */
-       if (format >= E_EDITOR_SELECTION_BLOCK_FORMAT_H1 && format <= E_EDITOR_SELECTION_BLOCK_FORMAT_H6)
+       if (format >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1 && format <= 
E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6)
                selection->priv->is_bold = TRUE;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        html_mode = e_html_editor_view_get_html_mode (view);
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
 
        from_list =
-               (current_format == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) ||
-               (current_format >= E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST);
+               (current_format == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) ||
+               (current_format >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST);
 
        if (from_list && !to_list) {
                /* First remove (un)ordered list before changing formatting */
-               if (current_format == E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) {
+               if (current_format == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST) {
                        e_html_editor_view_exec_command (
                                view,
                                E_HTML_EDITOR_VIEW_COMMAND_INSERT_UNORDERED_LIST, NULL);
                        /*                  ^-- not a typo, "insert" toggles the
                         *                      formatting if already present */
-               } else if (current_format >= E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST) {
+               } else if (current_format >= E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST) {
                        e_html_editor_view_exec_command (
                                view,
                                E_HTML_EDITOR_VIEW_COMMAND_INSERT_ORDERED_LIST, NULL);
@@ -1714,7 +1714,7 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
 
        remove_br_after_list_end (selection);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range) {
                g_object_unref (view);
                return;
@@ -1724,7 +1724,7 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                WebKitDOMNode *node = get_block_node (range);
 
                remove_wrapping (WEBKIT_DOM_ELEMENT (node));
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
                remove_quoting (WEBKIT_DOM_ELEMENT (node));
        }
 
@@ -1742,8 +1742,8 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                                WebKitDOMNode *clone = webkit_dom_node_clone_node (node, TRUE);
 
                                restore_caret = FALSE;
-                               if (format == E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH)
-                                       new = e_editor_selection_get_paragraph_element (
+                               if (format == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH)
+                                       new = e_html_editor_selection_get_paragraph_element (
                                                selection, document, -1, 0);
                                else
                                        new = webkit_dom_document_create_element (
@@ -1757,7 +1757,7 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                                }
 
                                if (!webkit_dom_node_has_child_nodes (node)) {
-                                       e_editor_selection_clear_caret_position_marker (selection);
+                                       e_html_editor_selection_clear_caret_position_marker (selection);
 
                                        webkit_dom_html_element_set_inner_html (
                                                WEBKIT_DOM_HTML_ELEMENT (new),
@@ -1765,7 +1765,7 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
 
                                        webkit_dom_node_append_child (
                                                WEBKIT_DOM_NODE (new),
-                                               e_editor_selection_get_caret_position_node (
+                                               e_html_editor_selection_get_caret_position_node (
                                                        document),
                                                NULL);
                                        restore_caret = TRUE;
@@ -1784,21 +1784,21 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                        }
 
                        if (restore_caret)
-                               e_editor_selection_restore_caret_position (selection);
+                               e_html_editor_selection_restore_caret_position (selection);
                } else {
-                       e_editor_selection_save (selection);
+                       e_html_editor_selection_save (selection);
                        e_html_editor_view_exec_command (view, command, value);
                        e_html_editor_view_force_spell_check_for_current_paragraph (view);
-                       e_editor_selection_restore (selection);
+                       e_html_editor_selection_restore (selection);
                }
        } else {
                if (!has_selection)
                        insert_new_list (selection, document, format, html_mode);
                else {
-                       e_editor_selection_save (selection);
+                       e_html_editor_selection_save (selection);
                        e_html_editor_view_exec_command (view, command, value);
                        e_html_editor_view_force_spell_check_for_current_paragraph (view);
-                       e_editor_selection_restore (selection);
+                       e_html_editor_selection_restore (selection);
                }
        }
 
@@ -1812,8 +1812,8 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                        value = webkit_dom_element_get_attribute (blockquote, "type");
                        if (g_strstr_len (value, -1, "cite")) {
 
-                               if (format == E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH) {
-                                       block = WEBKIT_DOM_NODE (e_editor_selection_wrap_paragraph (
+                               if (format == E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH) {
+                                       block = WEBKIT_DOM_NODE (e_html_editor_selection_wrap_paragraph (
                                                selection, WEBKIT_DOM_ELEMENT (block)));
                                }
 
@@ -1823,7 +1823,7 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
                        g_free (value);
                }
 
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
        }
 
        if (!has_selection)
@@ -1832,27 +1832,27 @@ e_editor_selection_set_block_format (EEditorSelection *selection,
        g_object_unref (view);
 
        /* When changing the format we need to re-set the alignment */
-       e_editor_selection_set_alignment (selection, selection->priv->alignment);
+       e_html_editor_selection_set_alignment (selection, selection->priv->alignment);
 
        g_object_notify (G_OBJECT (selection), "block-format");
 }
 
 /**
- * e_editor_selection_get_font_color:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_font_color:
+ * @selection: an #EHTMLEditorSelection
  * @rgba: a #GdkRGBA object to be set to current font color
  *
  * Sets @rgba to contain color of current text selection or letter at current
  * cursor position.
  */
 void
-e_editor_selection_get_font_color (EEditorSelection *selection,
-                                   GdkRGBA *rgba)
+e_html_editor_selection_get_font_color (EHTMLEditorSelection *selection,
+                                        GdkRGBA *rgba)
 {
        gchar *color;
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (g_strcmp0 (e_editor_selection_get_string (selection), "") == 0) {
+       if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") == 0) {
                color = g_strdup (selection->priv->font_color);
        } else {
                color = get_font_property (selection, "color");
@@ -1867,30 +1867,30 @@ e_editor_selection_get_font_color (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_set_font_color:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_font_color:
+ * @selection: an #EHTMLEditorSelection
  * @rgba: a #GdkRGBA
  *
  * Sets font color of current selection or letter at current cursor position to
  * color defined in @rgba.
  */
 void
-e_editor_selection_set_font_color (EEditorSelection *selection,
-                                   const GdkRGBA *rgba)
+e_html_editor_selection_set_font_color (EHTMLEditorSelection *selection,
+                                        const GdkRGBA *rgba)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
        guint32 rgba_value;
        gchar *color;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
        if (!rgba)
                rgba = &black;
 
        rgba_value = e_rgba_to_value ((GdkRGBA *) rgba);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_FORE_COLOR;
@@ -1905,8 +1905,8 @@ e_editor_selection_set_font_color (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_get_font_name:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_get_font_name:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns name of font used in current selection or at letter at current cursor
  * position.
@@ -1914,15 +1914,15 @@ e_editor_selection_set_font_color (EEditorSelection *selection,
  * Returns: A string with font name. [transfer-none]
  */
 const gchar *
-e_editor_selection_get_font_name (EEditorSelection *selection)
+e_html_editor_selection_get_font_name (EHTMLEditorSelection *selection)
 {
        WebKitDOMNode *node;
        WebKitDOMRange *range;
        WebKitDOMCSSStyleDeclaration *css;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        node = webkit_dom_range_get_common_ancestor_container (range, NULL);
 
        g_free (selection->priv->font_family);
@@ -1934,23 +1934,23 @@ e_editor_selection_get_font_name (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_font_name:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_font_name:
+ * @selection: an #EHTMLEditorSelection
  * @font_name: a font name to apply
  *
  * Sets font name of current selection or of letter at current cursor position
  * to @font_name.
  */
 void
-e_editor_selection_set_font_name (EEditorSelection *selection,
-                                  const gchar *font_name)
+e_html_editor_selection_set_font_name (EHTMLEditorSelection *selection,
+                                       const gchar *font_name)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_FONT_NAME;
@@ -1963,52 +1963,52 @@ e_editor_selection_set_font_name (EEditorSelection *selection,
 
 /**
  * e_editor_Selection_get_font_size:
- * @selection: an #EEditorSelection
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns point size of current selection or of letter at current cursor position.
  */
  guint
-e_editor_selection_get_font_size (EEditorSelection *selection)
+e_html_editor_selection_get_font_size (EHTMLEditorSelection *selection)
 {
        gchar *size;
        guint size_int;
 
        g_return_val_if_fail (
-               E_IS_EDITOR_SELECTION (selection),
-               E_EDITOR_SELECTION_FONT_SIZE_NORMAL);
+               E_IS_HTML_EDITOR_SELECTION (selection),
+               E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL);
 
        size = get_font_property (selection, "size");
        if (!size)
-               return E_EDITOR_SELECTION_FONT_SIZE_NORMAL;
+               return E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL;
 
        size_int = atoi (size);
        g_free (size);
 
        if (size_int == 0)
-               return E_EDITOR_SELECTION_FONT_SIZE_NORMAL;
+               return E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL;
 
        return size_int;
 }
 
 /**
- * e_editor_selection_set_font_size:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_font_size:
+ * @selection: an #EHTMLEditorSelection
  * @font_size: point size to apply
  *
  * Sets font size of current selection or of letter at current cursor position
  * to @font_size.
  */
 void
-e_editor_selection_set_font_size (EEditorSelection *selection,
-                                  guint font_size)
+e_html_editor_selection_set_font_size (EHTMLEditorSelection *selection,
+                                       guint font_size)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
        gchar *size_str;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        selection->priv->font_size = font_size;
@@ -2023,24 +2023,24 @@ e_editor_selection_set_font_size (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_citation:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_citation:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current paragraph is a citation.
  *
  * Returns: @TRUE when current paragraph is a citation, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_citation (EEditorSelection *selection)
+e_html_editor_selection_is_citation (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
        WebKitDOMNode *node;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -2071,25 +2071,25 @@ e_editor_selection_is_citation (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_is_indented:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_indented:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current paragraph is indented. This does not include
  * citations.  To check, whether paragraph is a citation, use
- * e_editor_selection_is_citation().
+ * e_html_editor_selection_is_citation().
  *
  * Returns: @TRUE when current paragraph is indented, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_indented (EEditorSelection *selection)
+e_html_editor_selection_is_indented (EHTMLEditorSelection *selection)
 {
        WebKitDOMRange *range;
        WebKitDOMNode *node;
        WebKitDOMElement *element;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -2106,9 +2106,9 @@ e_editor_selection_is_indented (EEditorSelection *selection)
 }
 
 static gboolean
-is_in_html_mode (EEditorSelection *selection)
+is_in_html_mode (EHTMLEditorSelection *selection)
 {
-       EHTMLEditorView *view = e_editor_selection_ref_html_editor_view (selection);
+       EHTMLEditorView *view = e_html_editor_selection_ref_html_editor_view (selection);
        gboolean ret_val;
 
        g_return_val_if_fail (view != NULL, FALSE);
@@ -2121,23 +2121,23 @@ is_in_html_mode (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_indent:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_indent:
+ * @selection: an #EHTMLEditorSelection
  *
  * Indents current paragraph by one level.
  */
 void
-e_editor_selection_indent (EEditorSelection *selection)
+e_html_editor_selection_indent (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
-       if (g_strcmp0 (e_editor_selection_get_string (selection), "") == 0) {
+       if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") == 0) {
                WebKitDOMDocument *document;
                WebKitDOMRange *range;
                WebKitDOMNode *node;
@@ -2150,9 +2150,9 @@ e_editor_selection_indent (EEditorSelection *selection)
                document = webkit_web_view_get_dom_document (
                        WEBKIT_WEB_VIEW (view));
 
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
 
-               range = editor_selection_get_current_range (selection);
+               range = html_editor_selection_get_current_range (selection);
                if (!range) {
                        g_object_unref (view);
                        return;
@@ -2167,7 +2167,7 @@ e_editor_selection_indent (EEditorSelection *selection)
 
                final_width = word_wrap_length - SPACES_PER_INDENTATION * (level + 1);
                if (final_width < 10 && !is_in_html_mode (selection)) {
-                       e_editor_selection_restore_caret_position (selection);
+                       e_html_editor_selection_restore_caret_position (selection);
                        g_object_unref (view);
                        return;
                }
@@ -2180,7 +2180,7 @@ e_editor_selection_indent (EEditorSelection *selection)
                        webkit_dom_element_remove_attribute (
                                WEBKIT_DOM_ELEMENT (clone), "style");
 
-               element = e_editor_selection_get_indented_element (
+               element = e_html_editor_selection_get_indented_element (
                        selection, document, final_width);
 
                webkit_dom_node_append_child (
@@ -2194,7 +2194,7 @@ e_editor_selection_indent (EEditorSelection *selection)
                        node,
                        NULL);
 
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
        } else {
                command = E_HTML_EDITOR_VIEW_COMMAND_INDENT;
                e_html_editor_view_exec_command (view, command, NULL);
@@ -2214,39 +2214,39 @@ is_caret_position_node (WebKitDOMNode *node)
 }
 
 static const gchar *
-get_css_alignment_value (EEditorSelectionAlignment alignment)
+get_css_alignment_value (EHTMLEditorSelectionAlignment alignment)
 {
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_LEFT)
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT)
                return ""; /* Left is by default on ltr */
 
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_CENTER)
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER)
                return  "text-align: center;";
 
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_RIGHT)
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT)
                return "text-align: right;";
 
        return "";
 }
 
 /**
- * e_editor_selection_unindent:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_unindent:
+ * @selection: an #EHTMLEditorSelection
  *
  * Unindents current paragraph by one level.
  */
 void
-e_editor_selection_unindent (EEditorSelection *selection)
+e_html_editor_selection_unindent (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
-       if (g_strcmp0 (e_editor_selection_get_string (selection), "") == 0) {
-               EEditorSelectionAlignment alignment;
+       if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") == 0) {
+               EHTMLEditorSelectionAlignment alignment;
                gboolean before_node = TRUE, reinsert_caret_position = FALSE;
                const gchar *align_value;
                gint word_wrap_length = selection->priv->word_wrap_length;
@@ -2259,12 +2259,12 @@ e_editor_selection_unindent (EEditorSelection *selection)
 
                document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
 
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
 
-               alignment = e_editor_selection_get_alignment (selection);
+               alignment = e_html_editor_selection_get_alignment (selection);
                align_value = get_css_alignment_value (alignment);
 
-               range = editor_selection_get_current_range (selection);
+               range = html_editor_selection_get_current_range (selection);
                if (!range) {
                        g_object_unref (view);
                        return;
@@ -2288,13 +2288,13 @@ e_editor_selection_unindent (EEditorSelection *selection)
                /* Look if we have previous siblings, if so, we have to
                 * create new blockquote that will include them */
                if (webkit_dom_node_get_previous_sibling (node))
-                       prev_blockquote = e_editor_selection_get_indented_element (
+                       prev_blockquote = e_html_editor_selection_get_indented_element (
                                selection, document, width);
 
                /* Look if we have next siblings, if so, we have to
                 * create new blockquote that will include them */
                if (webkit_dom_node_get_next_sibling (node))
-                       next_blockquote = e_editor_selection_get_indented_element (
+                       next_blockquote = e_html_editor_selection_get_indented_element (
                                selection, document, width);
 
                /* Copy nodes that are before / after the element that we want to unindent */
@@ -2350,7 +2350,7 @@ e_editor_selection_unindent (EEditorSelection *selection)
                }
 
                if (level == 1 && element_has_class (WEBKIT_DOM_ELEMENT (node_clone), "-x-evo-paragraph"))
-                       e_editor_selection_set_paragraph_style (
+                       e_html_editor_selection_set_paragraph_style (
                                selection, WEBKIT_DOM_ELEMENT (node_clone), word_wrap_length, 0, align_value);
 
                /* Insert the unindented element */
@@ -2377,7 +2377,7 @@ e_editor_selection_unindent (EEditorSelection *selection)
                        WEBKIT_DOM_NODE (element),
                        NULL);
 
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
        } else {
                command = E_HTML_EDITOR_VIEW_COMMAND_OUTDENT;
                e_html_editor_view_exec_command (view, command, NULL);
@@ -2391,8 +2391,8 @@ e_editor_selection_unindent (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_is_bold:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_bold:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is bold.
@@ -2400,7 +2400,7 @@ e_editor_selection_unindent (EEditorSelection *selection)
  * Returns @TRUE when selection is bold, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_bold (EEditorSelection *selection)
+e_html_editor_selection_is_bold (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
@@ -2412,9 +2412,9 @@ e_editor_selection_is_bold (EEditorSelection *selection)
        WebKitDOMElement *element;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -2426,7 +2426,7 @@ e_editor_selection_is_bold (EEditorSelection *selection)
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -2458,28 +2458,28 @@ e_editor_selection_is_bold (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_bold:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_bold:
+ * @selection: an #EHTMLEditorSelection
  * @bold: @TRUE to enable bold, @FALSE to disable
  *
  * Toggles bold formatting of current selection or letter at current cursor
  * position, depending on whether @bold is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_bold (EEditorSelection *selection,
-                             gboolean bold)
+e_html_editor_selection_set_bold (EHTMLEditorSelection *selection,
+                                  gboolean bold)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_bold (selection) == bold)
+       if (e_html_editor_selection_is_bold (selection) == bold)
                return;
 
        selection->priv->is_bold = bold;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_BOLD;
@@ -2491,8 +2491,8 @@ e_editor_selection_set_bold (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_italic:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_italic:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is italic.
@@ -2500,7 +2500,7 @@ e_editor_selection_set_bold (EEditorSelection *selection,
  * Returns @TRUE when selection is italic, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_italic (EEditorSelection *selection)
+e_html_editor_selection_is_italic (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
@@ -2512,9 +2512,9 @@ e_editor_selection_is_italic (EEditorSelection *selection)
        WebKitDOMElement *element;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -2526,7 +2526,7 @@ e_editor_selection_is_italic (EEditorSelection *selection)
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -2558,28 +2558,28 @@ e_editor_selection_is_italic (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_italic:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_italic:
+ * @selection: an #EHTMLEditorSelection
  * @italic: @TRUE to enable italic, @FALSE to disable
  *
  * Toggles italic formatting of current selection or letter at current cursor
  * position, depending on whether @italic is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_italic (EEditorSelection *selection,
-                               gboolean italic)
+e_html_editor_selection_set_italic (EHTMLEditorSelection *selection,
+                                    gboolean italic)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_italic (selection) == italic)
+       if (e_html_editor_selection_is_italic (selection) == italic)
                return;
 
        selection->priv->is_italic = italic;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_ITALIC;
@@ -2613,8 +2613,8 @@ is_monospaced_element (WebKitDOMElement *element)
 }
 
 /**
- * e_editor_selection_is_monospaced:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_monospaced:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is monospaced.
@@ -2622,7 +2622,7 @@ is_monospaced_element (WebKitDOMElement *element)
  * Returns @TRUE when selection is monospaced, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_monospaced (EEditorSelection *selection)
+e_html_editor_selection_is_monospaced (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
@@ -2634,9 +2634,9 @@ e_editor_selection_is_monospaced (EEditorSelection *selection)
        WebKitDOMElement *element;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -2648,7 +2648,7 @@ e_editor_selection_is_monospaced (EEditorSelection *selection)
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -2702,16 +2702,16 @@ move_caret_into_element (WebKitDOMDocument *document,
 }
 
 /**
- * e_editor_selection_set_monospaced:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_monospaced:
+ * @selection: an #EHTMLEditorSelection
  * @monospaced: @TRUE to enable monospaced, @FALSE to disable
  *
  * Toggles monospaced formatting of current selection or letter at current cursor
  * position, depending on whether @monospaced is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_monospaced (EEditorSelection *selection,
-                                   gboolean monospaced)
+e_html_editor_selection_set_monospaced (EHTMLEditorSelection *selection,
+                                        gboolean monospaced)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -2720,18 +2720,18 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
        WebKitDOMDOMWindow *window;
        WebKitDOMDOMSelection *window_selection;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_monospaced (selection) == monospaced)
+       if (e_html_editor_selection_is_monospaced (selection) == monospaced)
                return;
 
        selection->priv->is_monospaced = monospaced;
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
@@ -2752,13 +2752,13 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
 
                font_size = selection->priv->font_size;
                if (font_size == 0)
-                       font_size = E_EDITOR_SELECTION_FONT_SIZE_NORMAL;
+                       font_size = E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL;
                font_size_str = g_strdup_printf ("%d", font_size);
                webkit_dom_element_set_attribute (
                        monospace, "size", font_size_str, NULL);
                g_free (font_size_str);
 
-               if (g_strcmp0 (e_editor_selection_get_string (selection), "") != 0) {
+               if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") != 0) {
                        gchar *html, *outer_html;
 
                        webkit_dom_node_append_child (
@@ -2777,9 +2777,9 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
                                "<span id=\"-x-evo-selection-end-marker\"></span>",
                                NULL),
 
-                       e_editor_selection_insert_html (selection, html);
+                       e_html_editor_selection_insert_html (selection, html);
 
-                       e_editor_selection_restore (selection);
+                       e_html_editor_selection_restore (selection);
 
                        g_free (html);
                        g_free (outer_html);
@@ -2820,9 +2820,9 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
                is_strikethrough = selection->priv->is_strikethrough;
                font_size = selection->priv->font_size;
                if (font_size == 0)
-                       font_size = E_EDITOR_SELECTION_FONT_SIZE_NORMAL;
+                       font_size = E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL;
 
-               if (g_strcmp0 (e_editor_selection_get_string (selection), "") != 0) {
+               if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") != 0) {
                        gchar *html, *outer_html, *inner_html, *beginning, *end;
                        gchar *start_position, *end_position, *font_size_str;
                        WebKitDOMElement *wrapper;
@@ -2877,7 +2877,7 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
                                outer_html,
                                NULL);
 
-                       e_editor_selection_restore (selection);
+                       e_html_editor_selection_restore (selection);
 
                        g_free (html);
                        g_free (outer_html);
@@ -2927,15 +2927,15 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
 
                /* Re-set formatting */
                if (is_bold)
-                       e_editor_selection_set_bold (selection, TRUE);
+                       e_html_editor_selection_set_bold (selection, TRUE);
                if (is_italic)
-                       e_editor_selection_set_italic (selection, TRUE);
+                       e_html_editor_selection_set_italic (selection, TRUE);
                if (is_underline)
-                       e_editor_selection_set_underline (selection, TRUE);
+                       e_html_editor_selection_set_underline (selection, TRUE);
                if (is_strikethrough)
-                       e_editor_selection_set_strikethrough (selection, TRUE);
+                       e_html_editor_selection_set_strikethrough (selection, TRUE);
 
-               e_editor_selection_set_font_size (selection, font_size);
+               e_html_editor_selection_set_font_size (selection, font_size);
        }
 
        g_object_unref (view);
@@ -2944,8 +2944,8 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_strikethrough:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_strikethrough:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is striked through.
@@ -2953,7 +2953,7 @@ e_editor_selection_set_monospaced (EEditorSelection *selection,
  * Returns @TRUE when selection is striked through, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_strikethrough (EEditorSelection *selection)
+e_html_editor_selection_is_strikethrough (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
@@ -2965,9 +2965,9 @@ e_editor_selection_is_strikethrough (EEditorSelection *selection)
        WebKitDOMElement *element;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -2979,7 +2979,7 @@ e_editor_selection_is_strikethrough (EEditorSelection *selection)
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -3011,28 +3011,28 @@ e_editor_selection_is_strikethrough (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_strikethrough:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_strikethrough:
+ * @selection: an #EHTMLEditorSelection
  * @strikethrough: @TRUE to enable strikethrough, @FALSE to disable
  *
  * Toggles strike through formatting of current selection or letter at current
  * cursor position, depending on whether @strikethrough is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_strikethrough (EEditorSelection *selection,
-                                       gboolean strikethrough)
+e_html_editor_selection_set_strikethrough (EHTMLEditorSelection *selection,
+                                           gboolean strikethrough)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_strikethrough (selection) == strikethrough)
+       if (e_html_editor_selection_is_strikethrough (selection) == strikethrough)
                return;
 
        selection->priv->is_strikethrough = strikethrough;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_STRIKETHROUGH;
@@ -3044,8 +3044,8 @@ e_editor_selection_set_strikethrough (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_subscript:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_subscript:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is in subscript.
@@ -3053,15 +3053,15 @@ e_editor_selection_set_strikethrough (EEditorSelection *selection,
  * Returns @TRUE when selection is in subscript, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_subscript (EEditorSelection *selection)
+e_html_editor_selection_is_subscript (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMNode *node;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -3071,7 +3071,7 @@ e_editor_selection_is_subscript (EEditorSelection *selection)
 
        g_object_unref (view);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        node = webkit_dom_range_get_common_ancestor_container (range, NULL);
 
        while (node) {
@@ -3092,26 +3092,26 @@ e_editor_selection_is_subscript (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_subscript:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_subscript:
+ * @selection: an #EHTMLEditorSelection
  * @subscript: @TRUE to enable subscript, @FALSE to disable
  *
  * Toggles subscript of current selection or letter at current cursor position,
  * depending on whether @subscript is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_subscript (EEditorSelection *selection,
-                                  gboolean subscript)
+e_html_editor_selection_set_subscript (EHTMLEditorSelection *selection,
+                                       gboolean subscript)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_subscript (selection) == subscript)
+       if (e_html_editor_selection_is_subscript (selection) == subscript)
                return;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_SUBSCRIPT;
@@ -3123,8 +3123,8 @@ e_editor_selection_set_subscript (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_superscript:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_superscript:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is in superscript.
@@ -3132,15 +3132,15 @@ e_editor_selection_set_subscript (EEditorSelection *selection,
  * Returns @TRUE when selection is in superscript, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_superscript (EEditorSelection *selection)
+e_html_editor_selection_is_superscript (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMNode *node;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -3150,7 +3150,7 @@ e_editor_selection_is_superscript (EEditorSelection *selection)
 
        g_object_unref (view);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        node = webkit_dom_range_get_common_ancestor_container (range, NULL);
 
        while (node) {
@@ -3171,26 +3171,26 @@ e_editor_selection_is_superscript (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_superscript:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_superscript:
+ * @selection: an #EHTMLEditorSelection
  * @superscript: @TRUE to enable superscript, @FALSE to disable
  *
  * Toggles superscript of current selection or letter at current cursor position,
  * depending on whether @superscript is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_superscript (EEditorSelection *selection,
-                                    gboolean superscript)
+e_html_editor_selection_set_superscript (EHTMLEditorSelection *selection,
+                                         gboolean superscript)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_superscript (selection) == superscript)
+       if (e_html_editor_selection_is_superscript (selection) == superscript)
                return;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_SUPERSCRIPT;
@@ -3202,8 +3202,8 @@ e_editor_selection_set_superscript (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_is_underline:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_is_underline:
+ * @selection: an #EHTMLEditorSelection
  *
  * Returns whether current selection or letter at current cursor position
  * is underlined.
@@ -3211,7 +3211,7 @@ e_editor_selection_set_superscript (EEditorSelection *selection,
  * Returns @TRUE when selection is underlined, @FALSE otherwise.
  */
 gboolean
-e_editor_selection_is_underline (EEditorSelection *selection)
+e_html_editor_selection_is_underline (EHTMLEditorSelection *selection)
 {
        gboolean ret_val;
        gchar *value, *text_content;
@@ -3223,9 +3223,9 @@ e_editor_selection_is_underline (EEditorSelection *selection)
        WebKitDOMElement *element;
        WebKitDOMRange *range;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), FALSE);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), FALSE);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, FALSE);
 
        if (!e_html_editor_view_get_html_mode (view)) {
@@ -3237,7 +3237,7 @@ e_editor_selection_is_underline (EEditorSelection *selection)
        g_object_unref (view);
        window = webkit_dom_document_get_default_view (document);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return FALSE;
 
@@ -3269,28 +3269,28 @@ e_editor_selection_is_underline (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_set_underline:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_set_underline:
+ * @selection: an #EHTMLEditorSelection
  * @underline: @TRUE to enable underline, @FALSE to disable
  *
  * Toggles underline formatting of current selection or letter at current
  * cursor position, depending on whether @underline is @TRUE or @FALSE.
  */
 void
-e_editor_selection_set_underline (EEditorSelection *selection,
-                                  gboolean underline)
+e_html_editor_selection_set_underline (EHTMLEditorSelection *selection,
+                                       gboolean underline)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       if (e_editor_selection_is_underline (selection) == underline)
+       if (e_html_editor_selection_is_underline (selection) == underline)
                return;
 
        selection->priv->is_underline = underline;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_UNDERLINE;
@@ -3302,14 +3302,14 @@ e_editor_selection_set_underline (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_unlink:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_unlink:
+ * @selection: an #EHTMLEditorSelection
  *
  * Removes any links (&lt;A&gt; elements) from current selection or at current
  * cursor position.
  */
 void
-e_editor_selection_unlink (EEditorSelection *selection)
+e_html_editor_selection_unlink (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
@@ -3319,9 +3319,9 @@ e_editor_selection_unlink (EEditorSelection *selection)
        WebKitDOMRange *range;
        WebKitDOMElement *link;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
@@ -3351,23 +3351,23 @@ e_editor_selection_unlink (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_create_link:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_create_link:
+ * @selection: an #EHTMLEditorSelection
  * @uri: destination of the new link
  *
  * Converts current selection into a link pointing to @url.
  */
 void
-e_editor_selection_create_link (EEditorSelection *selection,
-                                const gchar *uri)
+e_html_editor_selection_create_link (EHTMLEditorSelection *selection,
+                                     const gchar *uri)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (uri != NULL && *uri != '\0');
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_CREATE_LINK;
@@ -3377,24 +3377,24 @@ e_editor_selection_create_link (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_insert_text:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_insert_text:
+ * @selection: an #EHTMLEditorSelection
  * @plain_text: text to insert
  *
  * Inserts @plain_text at current cursor position. When a text range is selected,
  * it will be replaced by @plain_text.
  */
 void
-e_editor_selection_insert_text (EEditorSelection *selection,
-                                const gchar *plain_text)
+e_html_editor_selection_insert_text (EHTMLEditorSelection *selection,
+                                     const gchar *plain_text)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (plain_text != NULL);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_INSERT_TEXT;
@@ -3404,24 +3404,24 @@ e_editor_selection_insert_text (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_insert_html:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_insert_html:
+ * @selection: an #EHTMLEditorSelection
  * @html_text: an HTML code to insert
  *
  * Insert @html_text into document at current cursor position. When a text range
  * is selected, it will be replaced by @html_text.
  */
 void
-e_editor_selection_insert_html (EEditorSelection *selection,
-                                const gchar *html_text)
+e_html_editor_selection_insert_html (EHTMLEditorSelection *selection,
+                                     const gchar *html_text)
 {
        EHTMLEditorView *view;
        EHTMLEditorViewCommand command;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (html_text != NULL);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        command = E_HTML_EDITOR_VIEW_COMMAND_INSERT_HTML;
@@ -3441,7 +3441,7 @@ e_editor_selection_insert_html (EEditorSelection *selection,
 typedef struct _LoadContext LoadContext;
 
 struct _LoadContext {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitDOMElement *element;
        GInputStream *input_stream;
        GOutputStream *output_stream;
@@ -3461,7 +3461,7 @@ image_load_stream_read_cb (GInputStream *input_stream,
                            LoadContext *load_context);
 
 static LoadContext *
-image_load_context_new (EEditorSelection *selection)
+image_load_context_new (EHTMLEditorSelection *selection)
 {
        LoadContext *load_context;
 
@@ -3490,15 +3490,15 @@ image_load_context_free (LoadContext *load_context)
 }
 
 static void
-replace_base64_image_src (EEditorSelection *selection,
-                         WebKitDOMElement *element,
-                         const gchar *base64_content,
-                         const gchar *filename,
-                         const gchar *uri)
+replace_base64_image_src (EHTMLEditorSelection *selection,
+                          WebKitDOMElement *element,
+                          const gchar *base64_content,
+                          const gchar *filename,
+                          const gchar *uri)
 {
        EHTMLEditorView *view;
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        e_html_editor_view_set_changed (view, TRUE);
@@ -3517,7 +3517,7 @@ replace_base64_image_src (EEditorSelection *selection,
 }
 
 static void
-insert_base64_image (EEditorSelection *selection,
+insert_base64_image (EHTMLEditorSelection *selection,
                      const gchar *base64_content,
                      const gchar *filename,
                      const gchar *uri)
@@ -3527,9 +3527,9 @@ insert_base64_image (EEditorSelection *selection,
        WebKitDOMElement *element, *caret_position, *resizable_wrapper;
        WebKitDOMText *text;
 
-       caret_position = e_editor_selection_save_caret_position (selection);
+       caret_position = e_html_editor_selection_save_caret_position (selection);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        document = webkit_web_view_get_dom_document (
@@ -3578,13 +3578,13 @@ insert_base64_image (EEditorSelection *selection,
                WEBKIT_DOM_NODE (caret_position),
                NULL);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 }
 
 static void
 image_load_finish (LoadContext *load_context)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        GMemoryOutputStream *output_stream;
        gchar *base64_encoded, *mime_type, *output, *uri;
        gsize size;
@@ -3661,8 +3661,8 @@ image_load_write_cb (GOutputStream *output_stream,
 
 static void
 image_load_stream_read_cb (GInputStream *input_stream,
-                                GAsyncResult *result,
-                                LoadContext *load_context)
+                           GAsyncResult *result,
+                           LoadContext *load_context)
 {
        GOutputStream *output_stream;
        gssize bytes_read;
@@ -3751,7 +3751,7 @@ image_load_query_info_cb (GFile *file,
 }
 
 static void
-image_load_and_insert_async (EEditorSelection *selection,
+image_load_and_insert_async (EHTMLEditorSelection *selection,
                              WebKitDOMElement *element,
                              const gchar *uri)
 {
@@ -3775,18 +3775,18 @@ image_load_and_insert_async (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_insert_image:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_insert_image:
+ * @selection: an #EHTMLEditorSelection
  * @image_uri: an URI of the source image
  *
  * Inserts image at current cursor position using @image_uri as source. When a
  * text range is selected, it will be replaced by the image.
  */
 void
-e_editor_selection_insert_image (EEditorSelection *selection,
-                                 const gchar *image_uri)
+e_html_editor_selection_insert_image (EHTMLEditorSelection *selection,
+                                      const gchar *image_uri)
 {
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (image_uri != NULL);
 
        if (is_in_html_mode (selection)) {
@@ -3812,19 +3812,19 @@ e_editor_selection_insert_image (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_replace_image_src:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_replace_image_src:
+ * @selection: an #EHTMLEditorSelection
  * @image: #WebKitDOMElement representation of image
  * @image_uri: an URI of the source image
  *
  * Replace the src attribute of the given @image with @image_uri.
  */
 void
-e_editor_selection_replace_image_src (EEditorSelection *selection,
-                                      WebKitDOMElement *image,
-                                      const gchar *image_uri)
+e_html_editor_selection_replace_image_src (EHTMLEditorSelection *selection,
+                                           WebKitDOMElement *image,
+                                           const gchar *image_uri)
 {
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
        g_return_if_fail (image_uri != NULL);
        g_return_if_fail (WEBKIT_DOM_IS_HTML_IMAGE_ELEMENT (image));
 
@@ -3851,21 +3851,21 @@ e_editor_selection_replace_image_src (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_clear_caret_position_marker:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_clear_caret_position_marker:
+ * @selection: an #EHTMLEditorSelection
  *
  * Removes previously set caret position marker from composer.
  */
 void
-e_editor_selection_clear_caret_position_marker (EEditorSelection *selection)
+e_html_editor_selection_clear_caret_position_marker (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMDocument *document;
        WebKitDOMElement *element;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
@@ -3883,7 +3883,7 @@ e_editor_selection_clear_caret_position_marker (EEditorSelection *selection)
 }
 
 WebKitDOMNode *
-e_editor_selection_get_caret_position_node (WebKitDOMDocument *document)
+e_html_editor_selection_get_caret_position_node (WebKitDOMDocument *document)
 {
        WebKitDOMElement *element;
 
@@ -3898,15 +3898,15 @@ e_editor_selection_get_caret_position_node (WebKitDOMDocument *document)
 }
 
 /**
- * e_editor_selection_save_caret_position:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_save_caret_position:
+ * @selection: an #EHTMLEditorSelection
  *
  * Saves current caret position in composer.
  *
  * Returns: #WebKitDOMElement that was created on caret position
  */
 WebKitDOMElement *
-e_editor_selection_save_caret_position (EEditorSelection *selection)
+e_html_editor_selection_save_caret_position (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMDocument *document;
@@ -3916,24 +3916,24 @@ e_editor_selection_save_caret_position (EEditorSelection *selection)
        WebKitDOMRange *range;
        gulong start_offset;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_val_if_fail (view != NULL, NULL);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
        g_object_unref (view);
 
-       e_editor_selection_clear_caret_position_marker (selection);
+       e_html_editor_selection_clear_caret_position_marker (selection);
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
        if (!range)
                return NULL;
 
        start_offset = webkit_dom_range_get_start_offset (range, NULL);
        start_offset_node = webkit_dom_range_get_end_container (range, NULL);
 
-       caret_node = e_editor_selection_get_caret_position_node (document);
+       caret_node = e_html_editor_selection_get_caret_position_node (document);
 
        if (WEBKIT_DOM_IS_TEXT (start_offset_node) && start_offset != 0) {
                WebKitDOMText *split_text;
@@ -3994,13 +3994,13 @@ fix_quoting_nodes_after_caret_restoration (WebKitDOMDOMSelection *window_selecti
 }
 
 /**
- * e_editor_selection_restore_caret_position:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_restore_caret_position:
+ * @selection: an #EHTMLEditorSelection
  *
  * Restores previously saved caret position in composer.
  */
 void
-e_editor_selection_restore_caret_position (EEditorSelection *selection)
+e_html_editor_selection_restore_caret_position (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMDocument *document;
@@ -4008,9 +4008,9 @@ e_editor_selection_restore_caret_position (EEditorSelection *selection)
        gboolean fix_after_quoting;
        gboolean swap_direction = FALSE;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
@@ -4040,7 +4040,7 @@ e_editor_selection_restore_caret_position (EEditorSelection *selection)
                        next_sibling = webkit_dom_node_get_next_sibling (
                                WEBKIT_DOM_NODE (element));
                        if (!WEBKIT_DOM_IS_ELEMENT (next_sibling)) {
-                               e_editor_selection_clear_caret_position_marker (selection);
+                               e_html_editor_selection_clear_caret_position_marker (selection);
                                return;
                        }
 
@@ -4176,7 +4176,7 @@ find_where_to_break_line (WebKitDOMNode *node,
 }
 
 static WebKitDOMElement *
-wrap_lines (EEditorSelection *selection,
+wrap_lines (EHTMLEditorSelection *selection,
            WebKitDOMNode *paragraph,
            WebKitDOMDocument *document,
            gboolean remove_all_br,
@@ -4194,10 +4194,10 @@ wrap_lines (EEditorSelection *selection,
 
        if (selection) {
                paragraph_char_count = g_utf8_strlen (
-                       e_editor_selection_get_string (selection), -1);
+                       e_html_editor_selection_get_string (selection), -1);
 
                fragment = webkit_dom_range_clone_contents (
-                       editor_selection_get_current_range (selection), NULL);
+                       html_editor_selection_get_current_range (selection), NULL);
 
                /* Select all BR elements or just ours that are used for wrapping.
                 * We are not removing user BR elements when this function is activated
@@ -4459,7 +4459,7 @@ wrap_lines (EEditorSelection *selection,
                html = webkit_dom_html_element_get_inner_html (WEBKIT_DOM_HTML_ELEMENT (element));
 
                /* Overwrite the current selection be the processed content */
-               e_editor_selection_insert_html (selection, html);
+               e_html_editor_selection_insert_html (selection, html);
 
                g_free (html);
 
@@ -4479,27 +4479,27 @@ wrap_lines (EEditorSelection *selection,
 }
 
 void
-e_editor_selection_set_indented_style (EEditorSelection *selection,
-                                       WebKitDOMElement *element,
-                                       gint width)
+e_html_editor_selection_set_indented_style (EHTMLEditorSelection *selection,
+                                            WebKitDOMElement *element,
+                                            gint width)
 {
-       EEditorSelectionAlignment alignment;
+       EHTMLEditorSelectionAlignment alignment;
        gchar *style;
        const gchar *align_value;
        gint word_wrap_length = (width == -1) ? selection->priv->word_wrap_length : width;
        gint start = 0, end = 0;
 
-       alignment = e_editor_selection_get_alignment (selection);
+       alignment = e_html_editor_selection_get_alignment (selection);
        align_value = get_css_alignment_value (alignment);
 
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_LEFT)
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT)
                start = SPACES_PER_INDENTATION;
 
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_CENTER) {
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER) {
                start = SPACES_PER_INDENTATION;
        }
 
-       if (alignment == E_EDITOR_SELECTION_ALIGNMENT_RIGHT) {
+       if (alignment == E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT) {
                start = 0;
                end = SPACES_PER_INDENTATION;
        }
@@ -4522,31 +4522,31 @@ e_editor_selection_set_indented_style (EEditorSelection *selection,
 }
 
 WebKitDOMElement *
-e_editor_selection_get_indented_element (EEditorSelection *selection,
-                                         WebKitDOMDocument *document,
-                                         gint width)
+e_html_editor_selection_get_indented_element (EHTMLEditorSelection *selection,
+                                              WebKitDOMDocument *document,
+                                              gint width)
 {
        WebKitDOMElement *element;
 
        element = webkit_dom_document_create_element (document, "BLOCKQUOTE", NULL);
-       e_editor_selection_set_indented_style (selection, element, width);
+       e_html_editor_selection_set_indented_style (selection, element, width);
 
        return element;
 }
 
 void
-e_editor_selection_set_paragraph_style (EEditorSelection *selection,
-                                        WebKitDOMElement *element,
-                                        gint width,
-                                        gint offset,
-                                        const gchar *style_to_add)
+e_html_editor_selection_set_paragraph_style (EHTMLEditorSelection *selection,
+                                             WebKitDOMElement *element,
+                                             gint width,
+                                             gint offset,
+                                             const gchar *style_to_add)
 {
-       EEditorSelectionAlignment alignment;
+       EHTMLEditorSelectionAlignment alignment;
        const gchar *align_value = NULL;
        char *style = NULL;
        gint word_wrap_length = (width == -1) ? selection->priv->word_wrap_length : width;
 
-       alignment = e_editor_selection_get_alignment (selection);
+       alignment = e_html_editor_selection_get_alignment (selection);
        align_value = get_css_alignment_value (alignment);
 
        webkit_dom_element_set_class_name (element, "-x-evo-paragraph");
@@ -4566,30 +4566,30 @@ e_editor_selection_set_paragraph_style (EEditorSelection *selection,
 }
 
 WebKitDOMElement *
-e_editor_selection_get_paragraph_element (EEditorSelection *selection,
-                                          WebKitDOMDocument *document,
-                                          gint width,
-                                          gint offset)
+e_html_editor_selection_get_paragraph_element (EHTMLEditorSelection *selection,
+                                               WebKitDOMDocument *document,
+                                               gint width,
+                                               gint offset)
 {
        WebKitDOMElement *element;
 
        element = webkit_dom_document_create_element (document, "DIV", NULL);
-       e_editor_selection_set_paragraph_style (selection, element, width, offset, "");
+       e_html_editor_selection_set_paragraph_style (selection, element, width, offset, "");
 
        return element;
 }
 
 WebKitDOMElement *
-e_editor_selection_put_node_into_paragraph (EEditorSelection *selection,
-                                            WebKitDOMDocument *document,
-                                            WebKitDOMNode *node,
-                                            WebKitDOMNode *caret_position)
+e_html_editor_selection_put_node_into_paragraph (EHTMLEditorSelection *selection,
+                                                 WebKitDOMDocument *document,
+                                                 WebKitDOMNode *node,
+                                                 WebKitDOMNode *caret_position)
 {
        WebKitDOMRange *range;
        WebKitDOMElement *container;
 
        range = webkit_dom_document_create_range (document);
-       container = e_editor_selection_get_paragraph_element (selection, document, -1, 0);
+       container = e_html_editor_selection_get_paragraph_element (selection, document, -1, 0);
        webkit_dom_range_select_node (range, node, NULL);
        webkit_dom_range_surround_contents (range, WEBKIT_DOM_NODE (container), NULL);
        /* We have to move caret position inside this container */
@@ -4599,29 +4599,29 @@ e_editor_selection_put_node_into_paragraph (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_wrap_lines:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_wrap_lines:
+ * @selection: an #EHTMLEditorSelection
  *
  * Wraps all lines in current selection to be 71 characters long.
  */
 void
-e_editor_selection_wrap_lines (EEditorSelection *selection)
+e_html_editor_selection_wrap_lines (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitDOMRange *range;
        WebKitDOMDocument *document;
        WebKitDOMElement *active_paragraph, *caret;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
        g_object_unref (view);
 
-       caret = e_editor_selection_save_caret_position (selection);
-       if (g_strcmp0 (e_editor_selection_get_string (selection), "") == 0) {
+       caret = e_html_editor_selection_save_caret_position (selection);
+       if (g_strcmp0 (e_html_editor_selection_get_string (selection), "") == 0) {
                WebKitDOMNode *end_container;
                WebKitDOMNode *parent;
                WebKitDOMNode *paragraph;
@@ -4630,7 +4630,7 @@ e_editor_selection_wrap_lines (EEditorSelection *selection)
                /* We need to save caret position and restore it after
                 * wrapping the selection, but we need to save it before we
                 * start to modify selection */
-               range = editor_selection_get_current_range (selection);
+               range = html_editor_selection_get_current_range (selection);
                if (!range)
                        return;
 
@@ -4661,12 +4661,12 @@ e_editor_selection_wrap_lines (EEditorSelection *selection)
                                         * we have to surround it with paragraph div */
                                        if (WEBKIT_DOM_IS_TEXT (paragraph))
                                                paragraph = WEBKIT_DOM_NODE (
-                                                       e_editor_selection_put_node_into_paragraph (
+                                                       e_html_editor_selection_put_node_into_paragraph (
                                                                selection, document, paragraph,
                                                                WEBKIT_DOM_NODE (caret)));
                                } else {
                                        /* When some weird element is selected, return */
-                                       e_editor_selection_clear_caret_position_marker (selection);
+                                       e_html_editor_selection_clear_caret_position_marker (selection);
                                        return;
                                }
                        }
@@ -4713,7 +4713,7 @@ e_editor_selection_wrap_lines (EEditorSelection *selection)
                        selection->priv->word_wrap_length);
 
        } else {
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
                /* If we have selection -> wrap it */
                wrap_lines (
                        selection, NULL, document, FALSE,
@@ -4723,7 +4723,7 @@ e_editor_selection_wrap_lines (EEditorSelection *selection)
        active_paragraph = webkit_dom_document_get_element_by_id (
                document, "-x-evo-active-paragraph");
        /* We have to move caret on position where it was before modifying the text */
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 
        /* Set paragraph as non-active */
        if (active_paragraph)
@@ -4732,13 +4732,13 @@ e_editor_selection_wrap_lines (EEditorSelection *selection)
 }
 
 WebKitDOMElement *
-e_editor_selection_wrap_paragraph_length (EEditorSelection *selection,
-                                          WebKitDOMElement *paragraph,
-                                          gint length)
+e_html_editor_selection_wrap_paragraph_length (EHTMLEditorSelection *selection,
+                                               WebKitDOMElement *paragraph,
+                                               gint length)
 {
        WebKitDOMDocument *document;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
        g_return_val_if_fail (WEBKIT_DOM_IS_ELEMENT (paragraph), NULL);
        g_return_val_if_fail (length > 10, NULL);
 
@@ -4765,13 +4765,13 @@ get_citation_level (WebKitDOMNode *node)
 }
 
 void
-e_editor_selection_wrap_paragraphs_in_document (EEditorSelection *selection,
-                                                WebKitDOMDocument *document)
+e_html_editor_selection_wrap_paragraphs_in_document (EHTMLEditorSelection *selection,
+                                                     WebKitDOMDocument *document)
 {
        WebKitDOMNodeList *list;
        gint ii, length;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
        list = webkit_dom_document_query_selector_all (
                document, "div.-x-evo-paragraph:not(#-x-evo-input-start)", NULL);
@@ -4781,7 +4781,7 @@ e_editor_selection_wrap_paragraphs_in_document (EEditorSelection *selection,
        for (ii = 0; ii < length; ii++) {
                WebKitDOMNode *node = webkit_dom_node_list_item (list, ii);
 
-               e_editor_selection_wrap_paragraph_length (
+               e_html_editor_selection_wrap_paragraph_length (
                        selection,
                        WEBKIT_DOM_ELEMENT (node),
                        selection->priv->word_wrap_length - (get_citation_level (node) + 1));
@@ -4789,13 +4789,13 @@ e_editor_selection_wrap_paragraphs_in_document (EEditorSelection *selection,
 }
 
 WebKitDOMElement *
-e_editor_selection_wrap_paragraph (EEditorSelection *selection,
-                                   WebKitDOMElement *paragraph)
+e_html_editor_selection_wrap_paragraph (EHTMLEditorSelection *selection,
+                                        WebKitDOMElement *paragraph)
 {
        gint indentation_level, citation_level, quote;
        gint word_wrap_length;
 
-       g_return_val_if_fail (E_IS_EDITOR_SELECTION (selection), NULL);
+       g_return_val_if_fail (E_IS_HTML_EDITOR_SELECTION (selection), NULL);
        g_return_val_if_fail (WEBKIT_DOM_IS_ELEMENT (paragraph), NULL);
 
        word_wrap_length = selection->priv->word_wrap_length;
@@ -4804,28 +4804,28 @@ e_editor_selection_wrap_paragraph (EEditorSelection *selection,
 
        quote = citation_level ? citation_level + 1 : 0;
 
-       return e_editor_selection_wrap_paragraph_length (
+       return e_html_editor_selection_wrap_paragraph_length (
                selection,
                WEBKIT_DOM_ELEMENT (paragraph),
                word_wrap_length - (SPACES_PER_INDENTATION * indentation_level) - quote);
 }
 
 /**
- * e_editor_selection_save:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_save:
+ * @selection: an #EHTMLEditorSelection
  *
  * Saves current cursor position or current selection range. The selection can
- * be later restored by calling e_editor_selection_restore().
+ * be later restored by calling e_html_editor_selection_restore().
  *
- * Note that calling e_editor_selection_save() overwrites previously saved
+ * Note that calling e_html_editor_selection_save() overwrites previously saved
  * position.
  *
  * Note that this method inserts special markings into the HTML code that are
  * used to later restore the selection. It can happen that by deleting some
  * segments of the document some of the markings are deleted too. In that case
- * restoring the selection by e_editor_selection_restore() can fail. Also by
+ * restoring the selection by e_html_editor_selection_restore() can fail. Also by
  * moving text segments (Cut & Paste) can result in moving the markings
- * elsewhere, thus e_editor_selection_restore() will restore the selection
+ * elsewhere, thus e_html_editor_selection_restore() will restore the selection
  * incorrectly.
  *
  * It is recommended to use this method only when you are not planning to make
@@ -4833,7 +4833,7 @@ e_editor_selection_wrap_paragraph (EEditorSelection *selection,
  * are usually OK).
  */
 void
-e_editor_selection_save (EEditorSelection *selection)
+e_html_editor_selection_save (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -4842,9 +4842,9 @@ e_editor_selection_save (EEditorSelection *selection)
        WebKitDOMNode *container;
        WebKitDOMElement *marker;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
@@ -4874,7 +4874,7 @@ e_editor_selection_save (EEditorSelection *selection)
                webkit_dom_node_remove_child (parent_node, marker_node, NULL);
        }
 
-       range = editor_selection_get_current_range (selection);
+       range = html_editor_selection_get_current_range (selection);
 
        if (range != NULL) {
                WebKitDOMNode *marker_node;
@@ -4961,17 +4961,17 @@ e_editor_selection_save (EEditorSelection *selection)
 }
 
 /**
- * e_editor_selection_restore:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_restore:
+ * @selection: an #EHTMLEditorSelection
  *
  * Restores cursor position or selection range that was saved by
- * e_editor_selection_save().
+ * e_html_editor_selection_save().
  *
- * Note that calling this function without calling e_editor_selection_save()
+ * Note that calling this function without calling e_html_editor_selection_save()
  * before is a programming error and the behavior is undefined.
  */
 void
-e_editor_selection_restore (EEditorSelection *selection)
+e_html_editor_selection_restore (EHTMLEditorSelection *selection)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -4981,9 +4981,9 @@ e_editor_selection_restore (EEditorSelection *selection)
        WebKitDOMRange *range;
        WebKitDOMElement *marker;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
@@ -5049,10 +5049,10 @@ e_editor_selection_restore (EEditorSelection *selection)
 }
 
 static void
-editor_selection_modify (EEditorSelection *selection,
-                         const gchar *alter,
-                         gboolean forward,
-                         EEditorSelectionGranularity granularity)
+html_editor_selection_modify (EHTMLEditorSelection *selection,
+                              const gchar *alter,
+                              gboolean forward,
+                              EHTMLEditorSelectionGranularity granularity)
 {
        EHTMLEditorView *view;
        WebKitWebView *web_view;
@@ -5061,9 +5061,9 @@ editor_selection_modify (EEditorSelection *selection,
        WebKitDOMDOMSelection *dom_selection;
        const gchar *granularity_str;
 
-       g_return_if_fail (E_IS_EDITOR_SELECTION (selection));
+       g_return_if_fail (E_IS_HTML_EDITOR_SELECTION (selection));
 
-       view = e_editor_selection_ref_html_editor_view (selection);
+       view = e_html_editor_selection_ref_html_editor_view (selection);
        g_return_if_fail (view != NULL);
 
        web_view = WEBKIT_WEB_VIEW (view);
@@ -5073,10 +5073,10 @@ editor_selection_modify (EEditorSelection *selection,
        dom_selection = webkit_dom_dom_window_get_selection (window);
 
        switch (granularity) {
-               case E_EDITOR_SELECTION_GRANULARITY_CHARACTER:
+               case E_HTML_EDITOR_SELECTION_GRANULARITY_CHARACTER:
                        granularity_str = "character";
                        break;
-               case E_EDITOR_SELECTION_GRANULARITY_WORD:
+               case E_HTML_EDITOR_SELECTION_GRANULARITY_WORD:
                        granularity_str = "word";
                        break;
        }
@@ -5090,45 +5090,45 @@ editor_selection_modify (EEditorSelection *selection,
 }
 
 /**
- * e_editor_selection_extend:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_extend:
+ * @selection: an #EHTMLEditorSelection
  * @forward: whether to extend selection forward or backward
  * @granularity: granularity of the extension
  *
  * Extends current selection in given direction by given granularity.
  */
 void
-e_editor_selection_extend (EEditorSelection *selection,
-                           gboolean forward,
-                           EEditorSelectionGranularity granularity)
+e_html_editor_selection_extend (EHTMLEditorSelection *selection,
+                                gboolean forward,
+                                EHTMLEditorSelectionGranularity granularity)
 {
-       editor_selection_modify (selection, "extend", forward, granularity);
+       html_editor_selection_modify (selection, "extend", forward, granularity);
 }
 
 /**
- * e_editor_selection_move:
- * @selection: an #EEditorSelection
+ * e_html_editor_selection_move:
+ * @selection: an #EHTMLEditorSelection
  * @forward: whether to move the selection forward or backward
  * @granularity: granularity of the movement
  *
  * Moves current selection in given direction by given granularity
  */
 void
-e_editor_selection_move (EEditorSelection *selection,
-                         gboolean forward,
-                         EEditorSelectionGranularity granularity)
+e_html_editor_selection_move (EHTMLEditorSelection *selection,
+                              gboolean forward,
+                              EHTMLEditorSelectionGranularity granularity)
 {
-       editor_selection_modify (selection, "move", forward, granularity);
+       html_editor_selection_modify (selection, "move", forward, granularity);
 }
 
 void
-e_editor_selection_scroll_to_caret (EEditorSelection *selection)
+e_html_editor_selection_scroll_to_caret (EHTMLEditorSelection *selection)
 {
        WebKitDOMElement *caret;
 
-       caret = e_editor_selection_save_caret_position (selection);
+       caret = e_html_editor_selection_save_caret_position (selection);
 
        webkit_dom_element_scroll_into_view (caret, TRUE);
 
-       e_editor_selection_clear_caret_position_marker (selection);
+       e_html_editor_selection_clear_caret_position_marker (selection);
 }
diff --git a/e-util/e-html-editor-selection.h b/e-util/e-html-editor-selection.h
new file mode 100644
index 0000000..e0b6a66
--- /dev/null
+++ b/e-util/e-html-editor-selection.h
@@ -0,0 +1,244 @@
+/*
+ * e-html-editor-selection.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/>
+ *
+ */
+
+#if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
+#error "Only <e-util/e-util.h> should be included directly."
+#endif
+
+#ifndef E_HTML_EDITOR_SELECTION_H
+#define E_HTML_EDITOR_SELECTION_H
+
+#include <gtk/gtk.h>
+#include <e-util/e-util-enums.h>
+#include <webkit/webkit.h>
+
+/* Standard GObject macros */
+#define E_TYPE_HTML_EDITOR_SELECTION \
+       (e_html_editor_selection_get_type ())
+#define E_HTML_EDITOR_SELECTION(obj) \
+       (G_TYPE_CHECK_INSTANCE_CAST \
+       ((obj), E_TYPE_HTML_EDITOR_SELECTION, EHTMLEditorSelection))
+#define E_HTML_EDITOR_SELECTION_CLASS(cls) \
+       (G_TYPE_CHECK_CLASS_CAST \
+       ((cls), E_TYPE_HTML_EDITOR_SELECTION, EHTMLEditorSelectionClass))
+#define E_IS_HTML_EDITOR_SELECTION(obj) \
+       (G_TYPE_CHECK_INSTANCE_TYPE \
+       ((obj), E_TYPE_HTML_EDITOR_SELECTION))
+#define E_IS_HTML_EDITOR_SELECTION_CLASS(cls) \
+       (G_TYPE_CHECK_CLASS_TYPE \
+       ((cls), E_TYPE_HTML_EDITOR_SELECTION))
+#define E_HTML_EDITOR_SELECTION_GET_CLASS(obj) \
+       (G_TYPE_INSTANCE_GET_CLASS \
+       ((obj), E_TYPE_HTML_EDITOR_SELECTION, EHTMLEditorSelectionClass))
+
+G_BEGIN_DECLS
+
+struct _EHTMLEditorView;
+
+typedef struct _EHTMLEditorSelection EHTMLEditorSelection;
+typedef struct _EHTMLEditorSelectionClass EHTMLEditorSelectionClass;
+typedef struct _EHTMLEditorSelectionPrivate EHTMLEditorSelectionPrivate;
+
+struct _EHTMLEditorSelection {
+       GObject parent;
+       EHTMLEditorSelectionPrivate *priv;
+};
+
+struct _EHTMLEditorSelectionClass {
+       GObjectClass parent_class;
+};
+
+GType          e_html_editor_selection_get_type
+                                               (void) G_GNUC_CONST;
+struct _EHTMLEditorView *
+               e_html_editor_selection_ref_html_editor_view
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_block_selection_changed
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_unblock_selection_changed
+                                               (EHTMLEditorSelection *selection);
+gint           e_html_editor_selection_get_word_wrap_length
+                                               (EHTMLEditorSelection *selection);
+gboolean       e_html_editor_selection_has_text
+                                               (EHTMLEditorSelection *selection);
+gchar *                e_html_editor_selection_get_caret_word
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_replace_caret_word
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *replacement);
+EHTMLEditorSelectionAlignment
+               e_html_editor_selection_get_alignment
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_alignment
+                                               (EHTMLEditorSelection *selection,
+                                                EHTMLEditorSelectionAlignment alignment);
+const gchar *  e_html_editor_selection_get_background_color
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_background_color
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *color);
+void           e_html_editor_selection_get_font_color
+                                               (EHTMLEditorSelection *selection,
+                                                GdkRGBA *rgba);
+void           e_html_editor_selection_set_font_color
+                                               (EHTMLEditorSelection *selection,
+                                                const GdkRGBA *rgba);
+const gchar *  e_html_editor_selection_get_font_name
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_font_name
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *font_name);
+guint          e_html_editor_selection_get_font_size
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_font_size
+                                               (EHTMLEditorSelection *selection,
+                                                guint font_size);
+EHTMLEditorSelectionBlockFormat
+               e_html_editor_selection_get_block_format
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_block_format
+                                               (EHTMLEditorSelection *selection,
+                                                EHTMLEditorSelectionBlockFormat format);
+gboolean       e_html_editor_selection_is_citation
+                                               (EHTMLEditorSelection *selection);
+gboolean       e_html_editor_selection_is_indented
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_indent  (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_unindent
+                                               (EHTMLEditorSelection *selection);
+gboolean       e_html_editor_selection_is_bold (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_bold
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean bold);
+gboolean       e_html_editor_selection_is_italic
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_italic
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean italic);
+gboolean       e_html_editor_selection_is_monospaced
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_monospaced
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean monospaced);
+gboolean       e_html_editor_selection_is_strikethrough
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_strikethrough
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean strikethrough);
+gboolean       e_html_editor_selection_is_superscript
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_superscript
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean superscript);
+gboolean       e_html_editor_selection_is_subscript
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_subscript
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean subscript);
+gboolean       e_html_editor_selection_is_underline
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_underline
+                                               (EHTMLEditorSelection *selection,
+                                                gboolean underline);
+void           e_html_editor_selection_unlink  (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_create_link
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *uri);
+const gchar *  e_html_editor_selection_get_string
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_replace (EHTMLEditorSelection *selection,
+                                                const gchar *new_string);
+void           e_html_editor_selection_insert_html
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *html_text);
+void           e_html_editor_selection_replace_image_src
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMElement *image,
+                                                const gchar *image_uri);
+void           e_html_editor_selection_insert_image
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *image_uri);
+void           e_html_editor_selection_insert_text
+                                               (EHTMLEditorSelection *selection,
+                                                const gchar *plain_text);
+void           e_html_editor_selection_clear_caret_position_marker
+                                               (EHTMLEditorSelection *selection);
+WebKitDOMNode *
+               e_html_editor_selection_get_caret_position_node
+                                               (WebKitDOMDocument *document);
+WebKitDOMElement *
+               e_html_editor_selection_save_caret_position
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_restore_caret_position
+                                               (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_set_indented_style
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMElement *element,
+                                                gint width);
+WebKitDOMElement *
+               e_html_editor_selection_get_indented_element
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMDocument *document,
+                                                gint width);
+void           e_html_editor_selection_set_paragraph_style
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMElement *element,
+                                                gint width,
+                                                gint offset,
+                                                const gchar *style_to_add);
+WebKitDOMElement *
+               e_html_editor_selection_get_paragraph_element
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMDocument *document,
+                                                gint width,
+                                                gint offset);
+WebKitDOMElement *
+               e_html_editor_selection_put_node_into_paragraph
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMDocument *document,
+                                                WebKitDOMNode *node,
+                                                WebKitDOMNode *caret_position);
+void           e_html_editor_selection_wrap_lines
+                                               (EHTMLEditorSelection *selection);
+WebKitDOMElement *
+               e_html_editor_selection_wrap_paragraph_length
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMElement *paragraph,
+                                                gint length);
+void           e_html_editor_selection_wrap_paragraphs_in_document
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMDocument *document);
+WebKitDOMElement *
+               e_html_editor_selection_wrap_paragraph
+                                               (EHTMLEditorSelection *selection,
+                                                WebKitDOMElement *paragraph);
+void           e_html_editor_selection_save    (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_restore (EHTMLEditorSelection *selection);
+void           e_html_editor_selection_move    (EHTMLEditorSelection *selection,
+                                                gboolean forward,
+                                                EHTMLEditorSelectionGranularity granularity);
+void           e_html_editor_selection_extend  (EHTMLEditorSelection *selection,
+                                                gboolean forward,
+                                                EHTMLEditorSelectionGranularity granularity);
+void           e_html_editor_selection_scroll_to_caret
+                                               (EHTMLEditorSelection *selection);
+G_END_DECLS
+
+#endif /* E_HTML_EDITOR_SELECTION_H */
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c
index 7486f8e..50d941b 100644
--- a/e-util/e-html-editor-view.c
+++ b/e-util/e-html-editor-view.c
@@ -53,7 +53,7 @@
  * The #EHTMLEditorView is a WebKit-based rich text editor. The view itself
  * only provides means to configure global behavior of the editor. To work
  * with the actual content, current cursor position or current selection,
- * use #EEditorSelection object.
+ * use #EHTMLEditorSelection object.
  */
 
 struct _EHTMLEditorViewPrivate {
@@ -69,7 +69,7 @@ struct _EHTMLEditorViewPrivate {
        gint reload_in_progress : 1;
        gint html_mode          : 1;
 
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        WebKitDOMElement *element_under_mouse;
 
@@ -168,7 +168,7 @@ html_editor_view_selection_changed_cb (EHTMLEditorView *view,
 
        /* When the webview is being (re)loaded, the document is in an
         * inconsistant state and there is no selection, so don't propagate
-        * the signal further to EEditorSelection and others and wait until
+        * the signal further to EHTMLEditorSelection and others and wait until
         * the load is finished. */
        if (view->priv->reload_in_progress) {
                g_signal_stop_emission_by_name (view, "selection-changed");
@@ -204,7 +204,7 @@ html_editor_view_should_show_delete_interface_for_element (EHTMLEditorView *view
 void
 e_html_editor_view_force_spell_check_for_current_paragraph (EHTMLEditorView *view)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitDOMDocument *document;
        WebKitDOMDOMSelection *dom_selection;
        WebKitDOMDOMWindow *window;
@@ -223,14 +223,14 @@ e_html_editor_view_force_spell_check_for_current_paragraph (EHTMLEditorView *vie
                return;
 
        selection = e_html_editor_view_get_selection (view);
-       caret = e_editor_selection_save_caret_position (selection);
+       caret = e_html_editor_selection_save_caret_position (selection);
 
        /* Block callbacks of selection-changed signal as we don't want to
-        * recount all the block format things in EEditorSelection and here as well
+        * recount all the block format things in EHTMLEditorSelection and here as well
         * when we are moving with caret */
        g_signal_handlers_block_by_func (
                view, html_editor_view_selection_changed_cb, NULL);
-       e_editor_selection_block_selection_changed (selection);
+       e_html_editor_selection_block_selection_changed (selection);
 
        parent = webkit_dom_node_get_parent_element (WEBKIT_DOM_NODE (caret));
        element = caret;
@@ -279,9 +279,9 @@ e_html_editor_view_force_spell_check_for_current_paragraph (EHTMLEditorView *vie
        /* Unblock the callbacks */
        g_signal_handlers_unblock_by_func (
                view, html_editor_view_selection_changed_cb, NULL);
-       e_editor_selection_unblock_selection_changed (selection);
+       e_html_editor_selection_unblock_selection_changed (selection);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 }
 
 static void
@@ -310,7 +310,7 @@ static void
 refresh_spell_check (EHTMLEditorView *view,
                      gboolean enable_spell_check)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitDOMDocument *document;
        WebKitDOMDOMSelection *dom_selection;
        WebKitDOMDOMWindow *window;
@@ -331,7 +331,7 @@ refresh_spell_check (EHTMLEditorView *view,
                NULL);
 
        selection = e_html_editor_view_get_selection (view);
-       e_editor_selection_save_caret_position (selection);
+       e_html_editor_selection_save_caret_position (selection);
 
        /* Sometimes the web view is not event focused, so we have to move caret
         * into body */
@@ -339,15 +339,15 @@ refresh_spell_check (EHTMLEditorView *view,
                move_caret_into_element (
                        document,
                        WEBKIT_DOM_ELEMENT (webkit_dom_document_get_body (document)));
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
        }
 
        /* Block callbacks of selection-changed signal as we don't want to
-        * recount all the block format things in EEditorSelection and here as well
+        * recount all the block format things in EHTMLEditorSelection and here as well
         * when we are moving with caret */
        g_signal_handlers_block_by_func (
                view, html_editor_view_selection_changed_cb, NULL);
-       e_editor_selection_block_selection_changed (selection);
+       e_html_editor_selection_block_selection_changed (selection);
 
        /* Append some text on the end of the body */
        text = webkit_dom_document_create_text_node (document, "-x-evo-end");
@@ -383,9 +383,9 @@ refresh_spell_check (EHTMLEditorView *view,
        /* Unblock the callbacks */
        g_signal_handlers_unblock_by_func (
                view, html_editor_view_selection_changed_cb, NULL);
-       e_editor_selection_unblock_selection_changed (selection);
+       e_html_editor_selection_unblock_selection_changed (selection);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 }
 
 void
@@ -467,7 +467,7 @@ body_input_event_cb (WebKitDOMElement *element,
                                element_add_class (
                                        WEBKIT_DOM_ELEMENT (parent), "-x-evo-paragraph");
                        } else {
-                               e_editor_selection_set_paragraph_style (
+                               e_html_editor_selection_set_paragraph_style (
                                        e_html_editor_view_get_selection (view),
                                        WEBKIT_DOM_ELEMENT (parent),
                                        -1, 0, "");
@@ -494,11 +494,11 @@ body_input_event_cb (WebKitDOMElement *element,
 
                        webkit_dom_node_append_child (
                                node,
-                               e_editor_selection_get_caret_position_node (
+                               e_html_editor_selection_get_caret_position_node (
                                        document),
                                NULL);
 
-                       e_editor_selection_restore_caret_position (
+                       e_html_editor_selection_restore_caret_position (
                                e_html_editor_view_get_selection (view));
                }
        }
@@ -817,7 +817,7 @@ html_editor_view_check_magic_links (EHTMLEditorView *view,
                document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (view));
 
                if (!return_pressed)
-                       e_editor_selection_save_caret_position (
+                       e_html_editor_selection_save_caret_position (
                                e_html_editor_view_get_selection (view));
 
                g_match_info_fetch_pos (match_info, 0, &start_pos_url, &end_pos_url);
@@ -865,7 +865,7 @@ html_editor_view_check_magic_links (EHTMLEditorView *view,
                        NULL);
 
                if (!return_pressed)
-                       e_editor_selection_restore_caret_position (
+                       e_html_editor_selection_restore_caret_position (
                                e_html_editor_view_get_selection (view));
 
                g_free (url_end_raw);
@@ -1069,7 +1069,7 @@ emoticon_read_async_cb (GFile *file,
        if (error || (size == -1))
                goto out;
 
-       caret_position = e_editor_selection_save_caret_position (
+       caret_position = e_html_editor_selection_save_caret_position (
                e_html_editor_view_get_selection (view));
 
        mime_type = g_content_type_get_mime_type (load_context->content_type);
@@ -1116,7 +1116,7 @@ emoticon_read_async_cb (GFile *file,
                        NULL);
        }
 
-       e_editor_selection_restore_caret_position (
+       e_html_editor_selection_restore_caret_position (
                e_html_editor_view_get_selection (view));
 
        e_html_editor_view_set_changed (view, TRUE);
@@ -1281,7 +1281,7 @@ clipboard_text_received (GtkClipboard *clipboard,
                          const gchar *text,
                          EHTMLEditorView *view)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gchar *escaped_text;
        WebKitDOMDocument *document;
        WebKitDOMDOMWindow *window;
@@ -1315,7 +1315,7 @@ clipboard_text_received (GtkClipboard *clipboard,
 
        webkit_dom_node_append_child (
                WEBKIT_DOM_NODE (element),
-               e_editor_selection_get_caret_position_node (document),
+               e_html_editor_selection_get_caret_position_node (document),
                NULL);
 
        blockquote = webkit_dom_document_create_element (document, "blockquote", NULL);
@@ -1335,7 +1335,7 @@ clipboard_text_received (GtkClipboard *clipboard,
                WEBKIT_DOM_NODE (blockquote),
                NULL);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 
        g_free (escaped_text);
 }
@@ -1617,7 +1617,7 @@ html_editor_view_button_release_event (GtkWidget *widget,
 static gboolean
 end_list_on_return_press_in_plain_text_mode (EHTMLEditorView *view)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitDOMDocument *document;
        WebKitDOMElement *caret, *li, *list, *paragraph;
        WebKitDOMNode *prev_sibling, *parent;
@@ -1626,7 +1626,7 @@ end_list_on_return_press_in_plain_text_mode (EHTMLEditorView *view)
                return FALSE;
 
        selection = e_html_editor_view_get_selection (view);
-       caret = e_editor_selection_save_caret_position (selection);
+       caret = e_html_editor_selection_save_caret_position (selection);
 
        document = webkit_web_view_get_dom_document (
                WEBKIT_WEB_VIEW (view));
@@ -1665,7 +1665,7 @@ end_list_on_return_press_in_plain_text_mode (EHTMLEditorView *view)
                WEBKIT_DOM_NODE (li),
                NULL);
 
-       paragraph = e_editor_selection_get_paragraph_element (
+       paragraph = e_html_editor_selection_get_paragraph_element (
                selection, document, -1, 0);
 
        webkit_dom_html_element_set_inner_html (
@@ -1673,7 +1673,7 @@ end_list_on_return_press_in_plain_text_mode (EHTMLEditorView *view)
 
        webkit_dom_node_append_child (
                WEBKIT_DOM_NODE (paragraph),
-               e_editor_selection_get_caret_position_node (document),
+               e_html_editor_selection_get_caret_position_node (document),
                NULL);
 
        parent = webkit_dom_node_get_parent_node (WEBKIT_DOM_NODE (list));
@@ -1683,17 +1683,17 @@ end_list_on_return_press_in_plain_text_mode (EHTMLEditorView *view)
                webkit_dom_node_get_next_sibling (parent),
                NULL);
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
        return TRUE;
  out:
-       e_editor_selection_clear_caret_position_marker (selection);
+       e_html_editor_selection_clear_caret_position_marker (selection);
        return FALSE;
 }
 
 static gboolean
 insert_new_line_into_citation (EHTMLEditorView *view)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gboolean html_mode, ret_val;
 
        html_mode = e_html_editor_view_get_html_mode (view);
@@ -1727,12 +1727,12 @@ insert_new_line_into_citation (EHTMLEditorView *view)
                        webkit_dom_node_insert_before (
                                webkit_dom_node_get_parent_node (
                                        WEBKIT_DOM_NODE (element)),
-                               e_editor_selection_get_caret_position_node (
+                               e_html_editor_selection_get_caret_position_node (
                                        document),
                                WEBKIT_DOM_NODE (element),
                                NULL);
                        /* Restore caret position */
-                       e_editor_selection_restore_caret_position (
+                       e_html_editor_selection_restore_caret_position (
                                selection);
                }
        }
@@ -1758,13 +1758,13 @@ html_editor_view_key_press_event (GtkWidget *widget,
 
        if ((event->keyval == GDK_KEY_Return) ||
            (event->keyval == GDK_KEY_KP_Enter)) {
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                selection = e_html_editor_view_get_selection (view);
                /* When user presses ENTER in a citation block, WebKit does
                 * not break the citation automatically, so we need to use
                 * the special command to do it. */
-               if (e_editor_selection_is_citation (selection)) {
+               if (e_html_editor_selection_is_citation (selection)) {
                        return insert_new_line_into_citation (view);
                } else {
                        if (end_list_on_return_press_in_plain_text_mode (view))
@@ -1774,20 +1774,20 @@ html_editor_view_key_press_event (GtkWidget *widget,
 
        /* BackSpace in indented block decrease indent level by one */
        if (event->keyval == GDK_KEY_BackSpace) {
-               EEditorSelection *selection;
+               EHTMLEditorSelection *selection;
 
                selection = e_html_editor_view_get_selection (view);
-               if (e_editor_selection_is_indented (selection)) {
+               if (e_html_editor_selection_is_indented (selection)) {
                        WebKitDOMElement *caret;
 
-                       caret = e_editor_selection_save_caret_position (selection);
+                       caret = e_html_editor_selection_save_caret_position (selection);
 
                        if (!webkit_dom_node_get_previous_sibling (WEBKIT_DOM_NODE (caret))) {
-                               e_editor_selection_clear_caret_position_marker (selection);
-                               e_editor_selection_unindent (selection);
+                               e_html_editor_selection_clear_caret_position_marker (selection);
+                               e_html_editor_selection_unindent (selection);
                                return TRUE;
                        } else
-                               e_editor_selection_clear_caret_position_marker (selection);
+                               e_html_editor_selection_clear_caret_position_marker (selection);
                }
        }
 
@@ -1797,7 +1797,7 @@ html_editor_view_key_press_event (GtkWidget *widget,
 }
 
 static void
-adjust_html_structure_after_ending_list (EEditorSelection *selection,
+adjust_html_structure_after_ending_list (EHTMLEditorSelection *selection,
                                          WebKitDOMDocument *document,
                                          WebKitDOMNode *node)
 {
@@ -1827,7 +1827,7 @@ adjust_html_structure_after_ending_list (EEditorSelection *selection,
                between_lists = TRUE;
 
        parent = webkit_dom_node_get_parent_node (prev_sibling);
-       paragraph = e_editor_selection_get_paragraph_element (
+       paragraph = e_html_editor_selection_get_paragraph_element (
                selection, document, -1, 0),
 
        webkit_dom_html_element_set_inner_text (
@@ -1835,7 +1835,7 @@ adjust_html_structure_after_ending_list (EEditorSelection *selection,
 
        webkit_dom_node_append_child (
                WEBKIT_DOM_NODE (paragraph),
-               e_editor_selection_get_caret_position_node (document),
+               e_html_editor_selection_get_caret_position_node (document),
                NULL);
 
        if (between_lists) {
@@ -1854,11 +1854,11 @@ adjust_html_structure_after_ending_list (EEditorSelection *selection,
                        parent, node, NULL);
        }
 
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
 }
 
 static gboolean
-surround_text_with_paragraph_if_needed (EEditorSelection *selection,
+surround_text_with_paragraph_if_needed (EHTMLEditorSelection *selection,
                                         WebKitDOMDocument *document,
                                         WebKitDOMNode *node)
 {
@@ -1871,11 +1871,11 @@ surround_text_with_paragraph_if_needed (EEditorSelection *selection,
         * paragraph */
        if (WEBKIT_DOM_IS_TEXT (node) &&
            WEBKIT_DOM_IS_HTML_BODY_ELEMENT (webkit_dom_node_get_parent_node (node))) {
-               element = e_editor_selection_put_node_into_paragraph (
+               element = e_html_editor_selection_put_node_into_paragraph (
                        selection,
                        document,
                        node,
-                       e_editor_selection_get_caret_position_node (document));
+                       e_html_editor_selection_get_caret_position_node (document));
 
                if (WEBKIT_DOM_IS_HTMLBR_ELEMENT (next_sibling)) {
                        webkit_dom_node_remove_child (
@@ -1908,7 +1908,7 @@ html_editor_view_key_release_event (GtkWidget *widget,
        WebKitDOMDocument *document;
        WebKitDOMRange *range;
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
 
        view = E_HTML_EDITOR_VIEW (widget);
        range = html_editor_view_get_dom_range (view);
@@ -1937,7 +1937,7 @@ html_editor_view_key_release_event (GtkWidget *widget,
                node = webkit_dom_range_get_end_container (range, NULL);
 
                if (surround_text_with_paragraph_if_needed (selection, document, node)) {
-                       e_editor_selection_restore_caret_position (selection);
+                       e_html_editor_selection_restore_caret_position (selection);
                        node = webkit_dom_range_get_end_container (range, NULL);
                        range = html_editor_view_get_dom_range (view);
                }
@@ -2376,7 +2376,7 @@ parse_html_into_paragraphs (EHTMLEditorView *view,
                        paragraph = webkit_dom_document_create_element (
                                document, "pre", NULL);
                } else {
-                       paragraph = e_editor_selection_get_paragraph_element (
+                       paragraph = e_html_editor_selection_get_paragraph_element (
                                e_html_editor_view_get_selection (view),
                                document, -1, citation_level);
                }
@@ -2444,7 +2444,7 @@ parse_html_into_paragraphs (EHTMLEditorView *view,
                        paragraph = webkit_dom_document_create_element (
                                document, "pre", NULL);
                } else {
-                       paragraph = e_editor_selection_get_paragraph_element (
+                       paragraph = e_html_editor_selection_get_paragraph_element (
                                e_html_editor_view_get_selection (view),
                                document, -1, citation_level);
                }
@@ -2539,7 +2539,7 @@ static void
 html_editor_view_process_document_from_convertor (EHTMLEditorView *view,
                                                   WebKitDOMDocument *document_convertor)
 {
-       EEditorSelection *selection = e_html_editor_view_get_selection (view);
+       EHTMLEditorSelection *selection = e_html_editor_view_get_selection (view);
        gboolean start_bottom;
        gchar *inner_text, *inner_html;
        gint ii;
@@ -2563,7 +2563,7 @@ html_editor_view_process_document_from_convertor (EHTMLEditorView *view,
 
        paragraph = webkit_dom_document_get_element_by_id (document, "-x-evo-input-start");
        if (!paragraph) {
-               paragraph = e_editor_selection_get_paragraph_element (
+               paragraph = e_html_editor_selection_get_paragraph_element (
                        selection, document, -1, 0);
                webkit_dom_element_set_id (paragraph, "-x-evo-input-start");
                webkit_dom_html_element_set_inner_text (
@@ -2616,12 +2616,12 @@ html_editor_view_process_document_from_convertor (EHTMLEditorView *view,
 
        if (cite_body) {
                if (!(top_signature && start_bottom))
-                       e_editor_selection_save_caret_position (selection);
+                       e_html_editor_selection_save_caret_position (selection);
        } else {
                webkit_dom_node_append_child (
                        WEBKIT_DOM_NODE (paragraph),
                        WEBKIT_DOM_NODE (
-                               e_editor_selection_get_caret_position_node (
+                               e_html_editor_selection_get_caret_position_node (
                                        document)),
                        NULL);
        }
@@ -2659,7 +2659,7 @@ html_editor_view_process_document_from_convertor (EHTMLEditorView *view,
                                                NULL);
                                        webkit_dom_node_append_child (
                                                WEBKIT_DOM_NODE (paragraph),
-                                               e_editor_selection_get_caret_position_node (
+                                               e_html_editor_selection_get_caret_position_node (
                                                        document),
                                                NULL);
                                } else {
@@ -2763,14 +2763,14 @@ html_editor_view_process_document_from_convertor (EHTMLEditorView *view,
 
                webkit_dom_node_insert_before (
                        first_child,
-                       e_editor_selection_get_caret_position_node (
+                       e_html_editor_selection_get_caret_position_node (
                                document),
                        webkit_dom_node_get_first_child (first_child),
                        NULL);
        }
 
        body = WEBKIT_DOM_HTML_ELEMENT (e_html_editor_view_quote_plain_text (view));
-       e_editor_selection_restore_caret_position (selection);
+       e_html_editor_selection_restore_caret_position (selection);
        e_html_editor_view_force_spell_check (view);
 
        /* Register on input event that is called when the content (body) is modified */
@@ -2898,7 +2898,7 @@ e_html_editor_view_init (EHTMLEditorView *view)
                G_CALLBACK (html_editor_view_load_status_changed), NULL);
 
        view->priv->selection = g_object_new (
-               E_TYPE_EDITOR_SELECTION,
+               E_TYPE_HTML_EDITOR_SELECTION,
                "html-editor-view", view,
                NULL);
 
@@ -2994,14 +2994,14 @@ e_html_editor_view_new (void)
  * e_html_editor_view_get_selection:
  * @view: an #EHTMLEditorView
  *
- * Returns an #EEditorSelection object which represents current selection or
- * cursor position within the editor document. The #EEditorSelection allows
+ * Returns an #EHTMLEditorSelection object which represents current selection or
+ * cursor position within the editor document. The #EHTMLEditorSelection allows
  * programmer to manipulate with formatting, selection, styles etc.
  *
- * Returns: An always valid #EEditorSelection object. The object is owned by
+ * Returns: An always valid #EHTMLEditorSelection object. The object is owned by
  * the @view and should never be free'd.
  */
-EEditorSelection *
+EHTMLEditorSelection *
 e_html_editor_view_get_selection (EHTMLEditorView *view)
 {
        g_return_val_if_fail (E_IS_HTML_EDITOR_VIEW (view), NULL);
@@ -4189,7 +4189,7 @@ process_elements (EHTMLEditorView *view,
                                        gchar *content_with_align;
                                        gint length;
                                        gint word_wrap_length =
-                                               e_editor_selection_get_word_wrap_length (
+                                               e_html_editor_selection_get_word_wrap_length (
                                                        e_html_editor_view_get_selection (view));
 
                                        if (g_str_has_prefix (css_align + 12, "center"))
@@ -4589,7 +4589,7 @@ toggle_paragraphs_style_in_element (EHTMLEditorView *view,
                                     WebKitDOMElement *element,
                                    gboolean html_mode)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gint ii, length;
        WebKitDOMNodeList *paragraphs;
 
@@ -4643,7 +4643,7 @@ toggle_paragraphs_style_in_element (EHTMLEditorView *view,
                                                        "text-align: right;";
 
                                        /* In HTML mode the paragraphs have width limit */
-                                       e_editor_selection_set_paragraph_style (
+                                       e_html_editor_selection_set_paragraph_style (
                                                selection, WEBKIT_DOM_ELEMENT (node),
                                                -1, 0, style_to_add);
                                }
@@ -4721,7 +4721,7 @@ convert_element_from_html_to_plain_text (EHTMLEditorView *view,
                                          gboolean *wrap,
                                          gboolean *quote)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gint blockquotes_count;
        gchar *inner_text, *inner_html;
        gboolean restore = TRUE;
@@ -4757,7 +4757,7 @@ convert_element_from_html_to_plain_text (EHTMLEditorView *view,
                if (input_start) {
                        webkit_dom_node_append_child (
                                WEBKIT_DOM_NODE (input_start),
-                               e_editor_selection_get_caret_position_node (
+                               e_html_editor_selection_get_caret_position_node (
                                        document),
                                NULL);
                }
@@ -4835,7 +4835,7 @@ convert_element_from_html_to_plain_text (EHTMLEditorView *view,
                }
                webkit_dom_node_insert_before (
                        first_child,
-                       e_editor_selection_get_caret_position_node (
+                       e_html_editor_selection_get_caret_position_node (
                                document),
                        webkit_dom_node_get_first_child (first_child),
                        NULL);
@@ -4852,7 +4852,7 @@ convert_element_from_html_to_plain_text (EHTMLEditorView *view,
        g_free (inner_html);
 
        if (restore)
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
 }
 
 static gchar *
@@ -4931,7 +4931,7 @@ process_content_for_plain_text (EHTMLEditorView *view)
 
                paragraph = webkit_dom_node_list_item (paragraphs, ii);
 
-               e_editor_selection_wrap_paragraph (
+               e_html_editor_selection_wrap_paragraph (
                        e_html_editor_view_get_selection (view),
                        WEBKIT_DOM_ELEMENT (paragraph));
        }
@@ -5056,7 +5056,7 @@ clear_attributes (WebKitDOMDocument *document)
 static void
 convert_when_changing_composer_mode (EHTMLEditorView *view)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gboolean quote = FALSE, wrap = FALSE;
        WebKitDOMDocument *document;
        WebKitDOMHTMLElement *body;
@@ -5070,12 +5070,12 @@ convert_when_changing_composer_mode (EHTMLEditorView *view)
                view, WEBKIT_DOM_ELEMENT (body), &wrap, &quote);
 
        if (wrap)
-               e_editor_selection_wrap_paragraphs_in_document (selection, document);
+               e_html_editor_selection_wrap_paragraphs_in_document (selection, document);
 
        if (quote) {
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
                body = WEBKIT_DOM_HTML_ELEMENT (e_html_editor_view_quote_plain_text (view));
-               e_editor_selection_restore_caret_position (selection);
+               e_html_editor_selection_restore_caret_position (selection);
        }
 
        clear_attributes (document);
@@ -5103,7 +5103,7 @@ void
 e_html_editor_view_set_html_mode (EHTMLEditorView *view,
                                   gboolean html_mode)
 {
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        gboolean is_from_new_message, converted, edit_as_new, message, convert;
        gboolean reply, hide;
        WebKitDOMElement *blockquote;
@@ -5167,10 +5167,10 @@ e_html_editor_view_set_html_mode (EHTMLEditorView *view,
                gchar *plain;
 
                /* Save caret position -> it will be restored in e-composer-private.c */
-               e_editor_selection_save_caret_position (selection);
+               e_html_editor_selection_save_caret_position (selection);
 
                if (blockquote) {
-                       e_editor_selection_wrap_paragraphs_in_document (
+                       e_html_editor_selection_wrap_paragraphs_in_document (
                                selection, document);
                        e_html_editor_view_quote_plain_text (view);
                }
diff --git a/e-util/e-html-editor-view.h b/e-util/e-html-editor-view.h
index a62f285..e40b15b 100644
--- a/e-util/e-html-editor-view.h
+++ b/e-util/e-html-editor-view.h
@@ -29,7 +29,7 @@
 
 #include <camel/camel.h>
 
-#include <e-util/e-editor-selection.h>
+#include <e-util/e-html-editor-selection.h>
 #include <e-util/e-emoticon.h>
 #include <e-util/e-spell-checker.h>
 #include <e-util/e-util-enums.h>
@@ -78,7 +78,7 @@ struct _EHTMLEditorViewClass {
 GType          e_html_editor_view_get_type     (void) G_GNUC_CONST;
 EHTMLEditorView *
                e_html_editor_view_new          (void);
-EEditorSelection *
+EHTMLEditorSelection *
                e_html_editor_view_get_selection
                                                (EHTMLEditorView *view);
 gboolean       e_html_editor_view_exec_command (EHTMLEditorView *view,
diff --git a/e-util/e-html-editor.c b/e-util/e-html-editor.c
index af40024..5a3992b 100644
--- a/e-util/e-html-editor.c
+++ b/e-util/e-html-editor.c
@@ -32,7 +32,7 @@
 #include "e-alert-sink.h"
 #include "e-html-editor-private.h"
 #include "e-editor-utils.h"
-#include "e-editor-selection.h"
+#include "e-html-editor-selection.h"
 
 #define E_HTML_EDITOR_GET_PRIVATE(obj) \
        (G_TYPE_INSTANCE_GET_PRIVATE \
@@ -42,7 +42,7 @@
  * EHTMLEditor:
  *
  * #EHTMLEditor provides GUI for manipulating with properties of #EHTMLEditorView and
- * its #EEditorSelection - i.e. toolbars and actions.
+ * its #EHTMLEditorSelection - i.e. toolbars and actions.
  */
 
 /* This controls how spelling suggestions are divided between the primary
@@ -97,7 +97,7 @@ action_context_spell_suggest_cb (GtkAction *action,
                                  EHTMLEditor *editor)
 {
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        const gchar *word;
 
        word = g_object_get_data (G_OBJECT (action), "word");
@@ -106,14 +106,14 @@ action_context_spell_suggest_cb (GtkAction *action,
        view = e_html_editor_get_view (editor);
        selection = e_html_editor_view_get_selection (view);
 
-       e_editor_selection_replace_caret_word (selection, word);
+       e_html_editor_selection_replace_caret_word (selection, word);
 }
 
 static void
 html_editor_inline_spelling_suggestions (EHTMLEditor *editor)
 {
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        WebKitSpellChecker *checker;
        GtkActionGroup *action_group;
        GtkUIManager *manager;
@@ -130,7 +130,7 @@ html_editor_inline_spelling_suggestions (EHTMLEditor *editor)
        selection = e_html_editor_view_get_selection (view);
        checker = WEBKIT_SPELL_CHECKER (webkit_get_text_checker ());
 
-       word = e_editor_selection_get_caret_word (selection);
+       word = e_html_editor_selection_get_caret_word (selection);
        if (word == NULL || *word == '\0')
                return;
 
@@ -213,7 +213,7 @@ html_editor_spell_checkers_foreach (EHTMLEditor *editor,
                                const gchar *language_code)
 {
        EHTMLEditorView *view;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        ESpellChecker *spell_checker;
        ESpellDictionary *dictionary;
        GtkActionGroup *action_group;
@@ -228,7 +228,7 @@ html_editor_spell_checkers_foreach (EHTMLEditor *editor,
        selection = e_html_editor_view_get_selection (view);
        spell_checker = e_html_editor_view_get_spell_checker (view);
 
-       word = e_editor_selection_get_caret_word (selection);
+       word = e_html_editor_selection_get_caret_word (selection);
        if (word == NULL || *word == '\0')
                return;
 
@@ -312,7 +312,7 @@ html_editor_update_actions (EHTMLEditor *editor,
        WebKitHitTestResult *hit_test;
        WebKitHitTestResultContext context;
        WebKitDOMNode *node;
-       EEditorSelection *selection;
+       EHTMLEditorSelection *selection;
        EHTMLEditorView *view;
        ESpellChecker *spell_checker;
        GtkUIManager *manager;
@@ -418,8 +418,8 @@ html_editor_update_actions (EHTMLEditor *editor,
        checker = WEBKIT_SPELL_CHECKER (webkit_get_text_checker ());
        selection = e_html_editor_view_get_selection (view);
        visible = FALSE;
-       if ((n_languages > 0) && e_editor_selection_has_text (selection)) {
-               gchar *word = e_editor_selection_get_caret_word (selection);
+       if ((n_languages > 0) && e_html_editor_selection_has_text (selection)) {
+               gchar *word = e_html_editor_selection_get_caret_word (selection);
                if (word && *word) {
                        webkit_spell_checker_check_spelling_of_string (
                                checker, word, &loc, &len);
diff --git a/e-util/e-util-enums.h b/e-util/e-util-enums.h
index 03d6fe3..83a6b89 100644
--- a/e-util/e-util-enums.h
+++ b/e-util/e-util-enums.h
@@ -125,44 +125,44 @@ typedef enum {
 } EDurationType;
 
 typedef enum {
-       E_EDITOR_SELECTION_BLOCK_FORMAT_NONE = 0,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H1,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H2,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H3,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H4,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H5,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_H6,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_PRE,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN,
-       E_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA,
-} EEditorSelectionBlockFormat;
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_NONE = 0,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H2,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H3,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H4,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H5,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PRE,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN,
+       E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA
+} EHTMLEditorSelectionBlockFormat;
 
 /* The values match the actual size in <font size="n"> */
 typedef enum {
-       E_EDITOR_SELECTION_FONT_SIZE_TINY       = 1,
-       E_EDITOR_SELECTION_FONT_SIZE_SMALL      = 2,
-       E_EDITOR_SELECTION_FONT_SIZE_NORMAL     = 3,
-       E_EDITOR_SELECTION_FONT_SIZE_BIG        = 4,
-       E_EDITOR_SELECTION_FONT_SIZE_BIGGER     = 5,
-       E_EDITOR_SELECTION_FONT_SIZE_LARGE      = 6,
-       E_EDITOR_SELECTION_FONT_SIZE_VERY_LARGE = 7
-} EEditorSelectionFontSize;
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_TINY          = 1,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_SMALL         = 2,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL        = 3,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_BIG           = 4,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_BIGGER        = 5,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_LARGE         = 6,
+       E_HTML_EDITOR_SELECTION_FONT_SIZE_VERY_LARGE    = 7
+} EHTMLEditorSelectionFontSize;
 
 typedef enum {
-       E_EDITOR_SELECTION_ALIGNMENT_LEFT,
-       E_EDITOR_SELECTION_ALIGNMENT_CENTER,
-       E_EDITOR_SELECTION_ALIGNMENT_RIGHT
-} EEditorSelectionAlignment;
+       E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT,
+       E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER,
+       E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT
+} EHTMLEditorSelectionAlignment;
 
 typedef enum {
-       E_EDITOR_SELECTION_GRANULARITY_CHARACTER,
-       E_EDITOR_SELECTION_GRANULARITY_WORD
-} EEditorSelectionGranularity;
+       E_HTML_EDITOR_SELECTION_GRANULARITY_CHARACTER,
+       E_HTML_EDITOR_SELECTION_GRANULARITY_WORD
+} EHTMLEditorSelectionGranularity;
 
 /**
  * EHTMLEditorViewCommand:
diff --git a/e-util/e-util.h b/e-util/e-util.h
index 6919c10..4c03c05 100644
--- a/e-util/e-util.h
+++ b/e-util/e-util.h
@@ -101,7 +101,6 @@
 #include <e-util/e-editor-page-dialog.h>
 #include <e-util/e-editor-paragraph-dialog.h>
 #include <e-util/e-editor-replace-dialog.h>
-#include <e-util/e-editor-selection.h>
 #include <e-util/e-editor-spell-check-dialog.h>
 #include <e-util/e-editor-table-dialog.h>
 #include <e-util/e-editor-text-dialog.h>
@@ -125,6 +124,7 @@
 #include <e-util/e-filter-part.h>
 #include <e-util/e-filter-rule.h>
 #include <e-util/e-focus-tracker.h>
+#include <e-util/e-html-editor-selection.h>
 #include <e-util/e-html-editor-view.h>
 #include <e-util/e-html-editor.h>
 #include <e-util/e-html-utils.h>


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