[evolution/wip/webkit-composer: 769/966] When saving the message as draft save it as HTML.
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/wip/webkit-composer: 769/966] When saving the message as draft save it as HTML.
- Date: Wed, 23 Apr 2014 10:58:04 +0000 (UTC)
commit 21d0da6302df0ff0f7b53097fa3d123bbd23345a
Author: Tomas Popela <tpopela redhat com>
Date: Fri Oct 11 14:52:44 2013 +0200
When saving the message as draft save it as HTML.
And remember in what mode the composer was (save it into message
headers). When opening the draft again in composer set the right
composer mode.
composer/e-msg-composer.c | 27 +++++++++++++++++++++------
1 files changed, 21 insertions(+), 6 deletions(-)
---
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index da27bcd..7625037 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -1223,7 +1223,7 @@ composer_build_message (EMsgComposer *composer,
e_editor_widget_embed_styles (editor_widget);
e_editor_selection_save_caret_position (selection);
- text = e_editor_widget_get_text_html_for_drafts (editor_widget);
+ text = e_editor_widget_get_text_html (editor_widget);
e_editor_widget_remove_embed_styles (editor_widget);
e_editor_selection_restore_caret_position (selection);
@@ -1806,9 +1806,11 @@ msg_composer_drag_data_received_cb (GtkWidget *widget,
EAttachmentView *view;
EEditor *editor;
EEditorWidget *editor_widget;
+ EEditorSelection *editor_selection;
editor = e_msg_composer_get_editor (composer);
editor_widget = e_editor_get_editor_widget (editor);
+ editor_selection = e_editor_widget_get_selection (editor_widget);
/* HTML mode has a few special cases for drops... */
if (e_editor_widget_get_html_mode (editor_widget)) {
@@ -3324,11 +3326,21 @@ e_msg_composer_new_with_message (EShell *shell,
flags = g_strsplit (format, ", ", 0);
for (i = 0; flags[i]; i++) {
if (g_ascii_strcasecmp (flags[i], "text/html") == 0) {
- e_editor_widget_set_html_mode (
- editor_widget, TRUE);
+ if (g_ascii_strcasecmp (composer_mode, "text/html") == 0) {
+ e_editor_widget_set_html_mode (
+ editor_widget, TRUE);
+ } else {
+ e_editor_widget_set_html_mode (
+ editor_widget, FALSE);
+ }
} else if (g_ascii_strcasecmp (flags[i], "text/plain") == 0) {
- e_editor_widget_set_html_mode (
- editor_widget, FALSE);
+ if (g_ascii_strcasecmp (composer_mode, "text/html") == 0) {
+ e_editor_widget_set_html_mode (
+ editor_widget, TRUE);
+ } else {
+ e_editor_widget_set_html_mode (
+ editor_widget, FALSE);
+ }
} else if (g_ascii_strcasecmp (flags[i], "pgp-sign") == 0) {
action = GTK_TOGGLE_ACTION (ACTION (PGP_SIGN));
gtk_toggle_action_set_active (action, TRUE);
@@ -4795,8 +4807,11 @@ e_msg_composer_get_message_draft (EMsgComposer *composer,
editor = e_msg_composer_get_editor (composer);
editor_widget = e_editor_get_editor_widget (editor);
+ /* We need to remember composer mode */
if (e_editor_widget_get_html_mode (editor_widget))
- flags |= COMPOSER_FLAG_HTML_CONTENT;
+ flags |= COMPOSER_FLAG_HTML_MODE;
+ /* We want to save HTML content everytime when we save as draft */
+ flags |= COMPOSER_FLAG_SAVE_DRAFT;
action = ACTION (PRIORITIZE_MESSAGE);
if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]