aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-06-19 00:06:34 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-06-19 00:06:34 +0800
commit60fe445b0c4b06329f5277a4881c203f6be38919 (patch)
treeb7988515ae2c5a6fd4b069ab0c4c906a553c85bb
parent588e18f2023cf8be70efba89e85cb2dc16ee99a0 (diff)
downloadgsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.gz
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.bz2
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.lz
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.xz
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.zst
gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.zip
Change the drop-type "x-evolution-dnd" to "x-evolution-message" since we
2001-06-18 Jeffrey Stedfast <fejj@ximian.com> * component-factory.c: Change the drop-type "x-evolution-dnd" to "x-evolution-message" since we want to be able to DnD more than one data type ;-) * folder-browser.c: Change supported DnD drop types to disclude URI_LIST as that seems to crash Nautilus and seems overly complicated. Since I am going to be supporting message/rfc822, hopefully Nautilus can handle that or else maybe something like text/plain. (message_list_drag_data_get): Remove the code for URI_LIST. svn path=/trunk/; revision=10264
-rw-r--r--mail/ChangeLog13
-rw-r--r--mail/component-factory.c4
-rw-r--r--mail/folder-browser.c91
3 files changed, 58 insertions, 50 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 13ed145dc6..816ed141dd 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,16 @@
+2001-06-18 Jeffrey Stedfast <fejj@ximian.com>
+
+ * component-factory.c: Change the drop-type "x-evolution-dnd" to
+ "x-evolution-message" since we want to be able to DnD more than
+ one data type ;-)
+
+ * folder-browser.c: Change supported DnD drop types to disclude
+ URI_LIST as that seems to crash Nautilus and seems overly
+ complicated. Since I am going to be supporting message/rfc822,
+ hopefully Nautilus can handle that or else maybe something like
+ text/plain.
+ (message_list_drag_data_get): Remove the code for URI_LIST.
+
2001-06-14 Not Zed <NotZed@Ximian.com>
* mail-tools.c (mail_tool_uri_to_folder): If we have a fragment in
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 4a7a4131a7..fc9c3649e7 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -68,7 +68,7 @@ static GHashTable *storages_hash;
static char *accepted_dnd_types[] = {
"message/rfc822", /* if we drag from nautilus or something... */
- "x-evolution-dnd", /* if we drag from an evolution folder... */
+ "x-evolution-message", /* if we drag from an evolution message list... */
NULL
};
@@ -344,7 +344,7 @@ destination_folder_handle_drop (EvolutionShellComponentDndDestinationFolder *fol
retval = message_rfc822_dnd (folder, stream);
camel_object_unref (CAMEL_OBJECT (stream));
} else {
- /* x-evolution-dnd */
+ /* x-evolution-message */
char *url, *name, *in, *inptr, *inend;
CamelFolder *source;
GPtrArray *uids;
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index ce419004a0..e9ce4df109 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -46,6 +46,8 @@
#include "mail-config.h"
#include <camel/camel-vtrash-folder.h>
+#include <camel/camel-mime-message.h>
+#include <camel/camel-stream-mem.h>
#define d(x) x
@@ -53,19 +55,16 @@
enum DndTargetType {
- DND_TARGET_TYPE_X_EVOLUTION_DND,
+ DND_TARGET_TYPE_X_EVOLUTION_MESSAGE,
DND_TARGET_TYPE_MESSAGE_RFC822,
- DND_TARGET_TYPE_URI_LIST,
};
-#define X_EVOLUTION_DND_TYPE "x-evolution-dnd"
-#define MESSAGE_RFC822_TYPE "message/rfc822"
-#define URI_LIST_TYPE "text/uri-list"
+#define X_EVOLUTION_MESSAGE_TYPE "x-evolution-message"
+#define MESSAGE_RFC822_TYPE "message/rfc822"
static GtkTargetEntry drag_types[] = {
- { X_EVOLUTION_DND_TYPE, 0, DND_TARGET_TYPE_X_EVOLUTION_DND },
+ { X_EVOLUTION_MESSAGE_TYPE, 0, DND_TARGET_TYPE_X_EVOLUTION_MESSAGE },
{ MESSAGE_RFC822_TYPE, 0, DND_TARGET_TYPE_MESSAGE_RFC822 },
- { URI_LIST_TYPE, 0, DND_TARGET_TYPE_URI_LIST },
};
static const int num_drag_types = sizeof (drag_types) / sizeof (drag_types[0]);
@@ -219,66 +218,58 @@ message_list_drag_data_get (ETree *tree,
{
FolderBrowser *fb = FOLDER_BROWSER (user_data);
GPtrArray *uids = NULL;
+ int i;
+
+ uids = g_ptr_array_new ();
+ message_list_foreach (fb->message_list, add_uid, uids);
switch (info) {
- case DND_TARGET_TYPE_URI_LIST:
+ case DND_TARGET_TYPE_MESSAGE_RFC822:
{
- char *tmpl, *tmpdir, *filename, *subject;
- CamelMessageInfo *minfo;
-
- /* drag & drop into nautilus */
- tmpl = g_strdup ("/tmp/evolution.XXXXXX");
-#ifdef HAVE_MKDTEMP
- tmpdir = mkdtemp (tmpl);
-#else
- tmpdir = mktemp (tmpl);
- if (tmpdir) {
- if (mkdir (tmpdir, S_IRWXU) == -1)
- tmpdir = NULL;
- }
-#endif
- if (!tmpdir) {
- g_free (tmpl);
- return;
- }
- g_free (tmpl);
+ /* FIXME: this'll be fucking slow for the user... pthread this? */
+ CamelStream *stream;
+ GByteArray *bytes;
- uids = g_ptr_array_new ();
- message_list_foreach (fb->message_list, add_uid, uids);
+ bytes = g_byte_array_new ();
+ stream = camel_stream_mem_new ();
+ camel_stream_mem_set_byte_array (CAMEL_STREAM_MEM (stream), bytes);
- minfo = camel_folder_get_message_info (fb->folder, uids->pdata[0]);
-
- subject = g_strdup (camel_message_info_subject (minfo));
- e_filename_make_safe (subject);
- filename = g_strdup_printf ("%s/%s.eml", tmpdir, subject);
- g_free (subject);
+ for (i = 0; i < uids->len; i++) {
+ CamelMimeMessage *message;
+
+ message = camel_folder_get_message (fb->folder, uids->pdata[i], NULL);
+ g_free (uids->pdata[i]);
+
+ if (message) {
+ camel_stream_write (stream, "From - \n", 8);
+ camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
+ camel_object_unref (CAMEL_OBJECT (message));
+ }
+ }
- mail_msg_wait (mail_save_messages (fb->folder, uids, filename, NULL, NULL));
+ g_ptr_array_free (uids, TRUE);
+ camel_object_unref (CAMEL_OBJECT (stream));
gtk_selection_data_set (selection_data, selection_data->target, 8,
- (guchar *) filename, strlen (filename));
+ bytes->data, bytes->len);
+
+ g_byte_array_free (bytes, FALSE);
}
break;
- case DND_TARGET_TYPE_MESSAGE_RFC822:
- break;
- case DND_TARGET_TYPE_X_EVOLUTION_DND:
+ case DND_TARGET_TYPE_X_EVOLUTION_MESSAGE:
{
GByteArray *array;
- char *uri;
- int i;
+ char *url;
/* format: "url folder_name uid1\0uid2\0uid3\0...\0uidn" */
- uids = g_ptr_array_new ();
- message_list_foreach (fb->message_list, add_uid, uids);
-
- uri = camel_url_to_string (CAMEL_SERVICE (camel_folder_get_parent_store (fb->folder))->url, 0);
+ url = camel_url_to_string (CAMEL_SERVICE (camel_folder_get_parent_store (fb->folder))->url, 0);
/* write the url portion */
array = g_byte_array_new ();
- g_byte_array_append (array, uri, strlen (uri));
+ g_byte_array_append (array, url, strlen (url));
g_byte_array_append (array, " ", 1);
- g_free (uri);
+ g_free (url);
/* write the folder_name portion */
g_byte_array_append (array, fb->folder->name, strlen (fb->folder->name));
@@ -302,6 +293,10 @@ message_list_drag_data_get (ETree *tree,
}
break;
default:
+ for (i = 0; i < uids->len; i++)
+ g_free (uids->pdata[i]);
+
+ g_ptr_array_free (uids, TRUE);
break;
}
}