diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-20 02:49:01 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-20 02:49:01 +0800 |
commit | dddc124a9d32d349106803a04040a3edad2a3cbb (patch) | |
tree | fda6957a85330d2aeac5944521708c38b50f1ce6 /mail/component-factory.c | |
parent | 85698a3ff51a20052acd2d3b521c76285753481d (diff) | |
download | gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar.gz gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar.bz2 gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar.lz gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar.xz gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.tar.zst gsoc2013-evolution-dddc124a9d32d349106803a04040a3edad2a3cbb.zip |
Accept text/uri-list mime types - this allows us to drag messages from
2001-06-19 Jeffrey Stedfast <fejj@ximian.com>
* component-factory.c (destination_folder_handle_drop): Accept
text/uri-list mime types - this allows us to drag messages from
Nautilus into an Evolution folder.
* folder-browser.c (message_list_drag_data_get): Do cleanup and
better error handling.
svn path=/trunk/; revision=10296
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 58 |
1 files changed, 52 insertions, 6 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 303b29f443..e561a45c78 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -69,20 +69,22 @@ static GHashTable *storages_hash; enum { ACCEPTED_DND_TYPE_MESSAGE_RFC822, ACCEPTED_DND_TYPE_X_EVOLUTION_MESSAGE, + ACCEPTED_DND_TYPE_TEXT_URI_LIST, }; static char *accepted_dnd_types[] = { - "message/rfc822", /* if we drag from nautilus or something... */ - "x-evolution-message", /* if we drag from an evolution message list... */ + "message/rfc822", + "x-evolution-message", /* ...from an evolution message list... */ + "text/uri-list", /* ...from nautilus... */ NULL }; enum { - EXPORTED_DND_TYPE_TEXT_PLAIN, + EXPORTED_DND_TYPE_TEXT_URI_LIST, }; static char *exported_dnd_types[] = { - "text/plain", /* we have to export to nautilus as text/plain or a uri-list */ + "text/uri-list", /* we have to export to nautilus as text/uri-list */ NULL }; @@ -292,6 +294,7 @@ destination_folder_handle_motion (EvolutionShellComponentDndDestinationFolder *f static gboolean message_rfc822_dnd (CamelFolder *dest, CamelStream *stream) { + gboolean retval = FALSE; CamelMimeParser *mp; CamelException *ex; @@ -309,6 +312,9 @@ message_rfc822_dnd (CamelFolder *dest, CamelStream *stream) if (camel_mime_part_construct_from_parser (CAMEL_MIME_PART (msg), mp) == -1) { camel_object_unref (CAMEL_OBJECT (msg)); break; + } else { + /* we got at least 1 message so we will return TRUE */ + retval = TRUE; } /* append the message to the folder... */ @@ -324,7 +330,7 @@ message_rfc822_dnd (CamelFolder *dest, CamelStream *stream) camel_object_unref (CAMEL_OBJECT (mp)); camel_exception_free (ex); - return TRUE; + return retval; } static CORBA_boolean @@ -340,13 +346,53 @@ destination_folder_handle_drop (EvolutionShellComponentDndDestinationFolder *fol CamelFolder *source; CamelStream *stream; GPtrArray *uids; + CamelURL *uri; + int type, fd; if (action == GNOME_Evolution_ShellComponentDnd_ACTION_LINK) return FALSE; /* we can't create links */ g_print ("in destination_folder_handle_drop (%s)\n", physical_uri); - switch (data->format) { + for (type = 0; accepted_dnd_types[type]; type++) + if (!strcmp (destination_context->dndType, accepted_dnd_types[type])) + break; + + switch (type) { + case ACCEPTED_DND_TYPE_TEXT_URI_LIST: + source = mail_tool_uri_to_folder (physical_uri, NULL); + if (!source) + return FALSE; + + url = g_strndup (data->bytes._buffer, data->bytes._length); + inend = strchr (url, '\n'); + if (inend) + *inend = '\0'; + + /* get the path component */ + g_strstrip (url); + uri = camel_url_new (url, NULL); + g_free (url); + url = uri->path; + uri->path = NULL; + camel_url_free (uri); + + fd = open (url, O_RDONLY); + if (fd == -1) { + g_free (url); + return FALSE; + } + + stream = camel_stream_fs_new_with_fd (fd); + retval = message_rfc822_dnd (source, stream); + camel_object_unref (CAMEL_OBJECT (stream)); + camel_object_unref (CAMEL_OBJECT (source)); + + if (action == GNOME_Evolution_ShellComponentDnd_ACTION_MOVE) + unlink (url); + + g_free (url); + break; case ACCEPTED_DND_TYPE_MESSAGE_RFC822: source = mail_tool_uri_to_folder (physical_uri, NULL); if (!source) |