aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-attachment-store.c
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-3/+6
|
* Remove some unnecessary #includes.Matthew Barnes2011-11-181-1/+0
|
* Prefer g_simple_async_result_take_error().Matthew Barnes2011-10-061-12/+6
| | | | | | | | | Slightly more efficient and convenient than: g_simple_async_result_set_from_error (simple, error); g_error_free (error); One less GError to copy and destroy.
* Let GtkFileChooser track its own last-used-folder.Matthew Barnes2011-10-061-121/+2
| | | | | | GtkFileChooser in GTK+ 3.2 now keeps track of the last-used-folder itself, even across applications, so get out of its way and let it handle it.
* Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-271-4/+7
| | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
* Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-261-58/+87
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-1/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+2
|
* Do not leak attachments in a mail viewMilan Crha2011-03-021-5/+31
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-7/+3
|
* Remove NULL checks for GObject methods.Matthew Barnes2011-02-131-2/+2
| | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-061-0/+3
|
* Bug 633471 - EAttachmentStore store folder name where uri is expectedMatthew Barnes2010-10-301-27/+32
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-251-33/+8
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-3/+0
|
* Fix some details in our asynchronous functions.Matthew Barnes2009-11-211-56/+26
| | | | | | | | | | Don't unref the GAsyncResult in finish functions. Do it after calling g_simple_async_result_complete(). This allows the GAsyncReadyCallback to be optional, and we'll still clean up resources properly. Also, don't call g_simple_async_result_complete_in_idle() unless we're completing an operation from a separate thread, which we're not in any of the current cases.
* Add e_attachment_store_load_async().Matthew Barnes2009-11-201-17/+166
| | | | | | | This is a convenience function for adding multiple attachments to a store and loading them concurrently. Also included: e_attachment_store_load_finish()
* Bug 601219 - Transient dialogs in composer window blocks main windowMatthew Barnes2009-11-101-0/+17
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-081-1/+1
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Bug 581280 – Wrong attachment name in eventMatthew Barnes2009-06-031-1/+326
|
* Bug 583991 – "Suggest automatic display of attachment" does not workMatthew Barnes2009-05-291-0/+1
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-291-1/+1
|
* Add e_attachment_store_get_attachments().Matthew Barnes2009-05-151-34/+42
|
* Bug 582144 – Evolution not showing proper attachment filenameMatthew Barnes2009-05-131-1/+4
|
* Fix an error extracting URIs from local attachments.Matthew Barnes2009-05-051-0/+19
|
* Bug 516933 – Rewrite attachment UIMatthew Barnes2009-04-281-0/+874
Rewrite the attachment UI to better utilize GIO and also to migrate from GnomeIconList to GtkIconView. This also introduces a "List View" option similar to Nautilus, as well as the EAttachmentHandler framework for extending attachment handling (may eventually replace EMFormatHook). This commit also fixes a number of secondary attachment bugs: Bug 311609 – new attachment bar should use regular gtk+ expander Bug 314923 – Drag and Drop in attachment window is inconsistent and requires additional click Bug 338179 – attachment saving ... Bug 350364 – Action to get info about attachments Bug 383047 – Viewing mail attachments Bug 427235 – Can't copy attachment mime type string Bug 454091 – Cannot save multiple attachments who have the same name Bug 494629 – Rethink composer's attachment UI Bug 553970 – Evolution ignores umask when saving attachments Bug 577375 – mailto: and attach doesn't URL un-escape