aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-06-22 02:35:24 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-06-22 02:35:24 +0800
commit49ccbcf14e4d34d8b2686134c646b5b66ec7919f (patch)
tree56954be18d8d2d3d8eb18375a641922fea030e8f /composer
parent7c46a40c7c2bfda7264a14f7d2f2d1ec85322b4a (diff)
downloadgsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar.gz
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar.bz2
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar.lz
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar.xz
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.tar.zst
gsoc2013-evolution-49ccbcf14e4d34d8b2686134c646b5b66ec7919f.zip
Emit the POSTPONE signal if we are offline. (setup_ui): If we are offline,
2001-06-21 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (menu_file_send_cb): Emit the POSTPONE signal if we are offline. (setup_ui): If we are offline, change the Control+Enter accel to be on the SendLater menu item. svn path=/trunk/; revision=10372
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog7
-rw-r--r--composer/e-msg-composer.c40
2 files changed, 34 insertions, 13 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index cccf6fe538..4e436528b3 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,10 @@
+2001-06-21 Jeffrey Stedfast <fejj@ximian.com>
+
+ * e-msg-composer.c (menu_file_send_cb): Emit the POSTPONE signal
+ if we are offline.
+ (setup_ui): If we are offline, change the Control+Enter accel to
+ be on the SendLater menu item.
+
2001-06-20 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer.c (save_draft): Save the formatting preference
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index b4ed5b741f..41cd2298f4 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -64,13 +64,15 @@
#include <gtkhtml/gtkhtml.h>
#include "camel/camel.h"
-#include "camel-charset-map.h"
+#include "camel/camel-charset-map.h"
+#include "camel/camel-session.h"
#include "mail/mail.h"
#include "mail/mail-crypto.h"
#include "mail/mail-tools.h"
#include "mail/mail-ops.h"
#include "mail/mail-mt.h"
+#include "mail/mail-session.h"
#include "e-util/e-html-utils.h"
@@ -154,10 +156,10 @@ best_encoding (GByteArray *buf, const char *charset)
size_t inlen, outlen;
int status, count = 0;
iconv_t cd;
-
+
cd = iconv_open (charset, "utf-8");
g_return_val_if_fail (cd != (iconv_t)-1, -1);
-
+
in = buf->data;
inlen = buf->len;
do {
@@ -170,10 +172,10 @@ best_encoding (GByteArray *buf, const char *charset)
}
} while (status == -1 && errno == E2BIG);
iconv_close (cd);
-
+
if (status == -1)
return -1;
-
+
if (count == 0)
return CAMEL_MIME_PART_ENCODING_7BIT;
else if (count <= buf->len * 0.17)
@@ -372,7 +374,7 @@ build_message (EMsgComposer *composer)
current = CAMEL_DATA_WRAPPER (body);
} else
current = plain;
-
+
if (e_msg_composer_attachment_bar_get_num_attachments (attachment_bar)) {
CamelMultipart *multipart = camel_multipart_new ();
@@ -1054,7 +1056,10 @@ menu_file_send_cb (BonoboUIComponent *uic,
void *data,
const char *path)
{
- gtk_signal_emit (GTK_OBJECT (data), signals[SEND]);
+ if (camel_session_is_online (session))
+ gtk_signal_emit (GTK_OBJECT (data), signals[SEND]);
+ else
+ gtk_signal_emit (GTK_OBJECT (data), signals[POSTPONE]);
}
static void
@@ -1461,12 +1466,22 @@ setup_ui (EMsgComposer *composer)
composer->uic, bonobo_object_corba_objref (BONOBO_OBJECT (container)));
bonobo_ui_component_add_verb_list_with_data (
- composer->uic, verbs, composer);
+ composer->uic, verbs, composer);
bonobo_ui_util_set_ui (composer->uic, EVOLUTION_DATADIR,
"evolution-message-composer.xml",
"evolution-message-composer");
+ if (!camel_session_is_online (session)) {
+ /* Move the accelerator from Send to Send Later */
+ bonobo_ui_component_set_prop (
+ composer->uic, "/commands/FileSend",
+ "accel", NULL, NULL);
+ bonobo_ui_component_set_prop (
+ composer->uic, "/commands/FileSendLater",
+ "accel", "*Ctrl*Return", NULL);
+ }
+
/* Format -> HTML */
bonobo_ui_component_set_prop (
composer->uic, "/commands/FormatHtml",
@@ -1474,7 +1489,7 @@ setup_ui (EMsgComposer *composer)
bonobo_ui_component_add_listener (
composer->uic, "FormatHtml",
menu_format_html_cb, composer);
-
+
/* View/From */
bonobo_ui_component_set_prop (
composer->uic, "/commands/ViewFrom",
@@ -1482,7 +1497,7 @@ setup_ui (EMsgComposer *composer)
bonobo_ui_component_add_listener (
composer->uic, "ViewFrom",
menu_view_from_cb, composer);
-
+
/* View/ReplyTo */
bonobo_ui_component_set_prop (
composer->uic, "/commands/ViewReplyTo",
@@ -1490,7 +1505,7 @@ setup_ui (EMsgComposer *composer)
bonobo_ui_component_add_listener (
composer->uic, "ViewReplyTo",
menu_view_replyto_cb, composer);
-
+
/* View/BCC */
bonobo_ui_component_set_prop (
composer->uic, "/commands/ViewBCC",
@@ -1498,7 +1513,7 @@ setup_ui (EMsgComposer *composer)
bonobo_ui_component_add_listener (
composer->uic, "ViewBCC",
menu_view_bcc_cb, composer);
-
+
/* View/CC */
bonobo_ui_component_set_prop (
composer->uic, "/commands/ViewCC",
@@ -1507,7 +1522,6 @@ setup_ui (EMsgComposer *composer)
composer->uic, "ViewCC",
menu_view_cc_cb, composer);
-
/* Security -> PGP Sign */
bonobo_ui_component_set_prop (
composer->uic, "/commands/SecurityPGPSign",