diff options
author | Meilof Veeningen <meilof@wanadoo.nl> | 2004-01-13 06:22:50 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-13 06:22:50 +0800 |
commit | 2505d230498c0f35822e7d10502bb3f899fdf876 (patch) | |
tree | 3f187bc063daa0f0a99b248c6a2c4b613a184c95 /mail/em-folder-selection-button.h | |
parent | 39a61d9ccdf9d19a30d07a49c8d4919689845465 (diff) | |
download | gsoc2013-evolution-2505d230498c0f35822e7d10502bb3f899fdf876.tar.gz gsoc2013-evolution-2505d230498c0f35822e7d10502bb3f899fdf876.tar.zst gsoc2013-evolution-2505d230498c0f35822e7d10502bb3f899fdf876.zip |
support for posting both to mail and to (multiple) folders
2004-01-12 Meilof Veeningen <meilof@wanadoo.nl>
* em-composer-utils.c: support for posting both to mail and to
(multiple) folders
* em-folder-browser.c: use em_utils_post_to_folder (works with NNTP)
* em-folder-selection-button.[ch]: added multiple selection mode
* em-folder-selector.[ch]: idem
* em-folder-tree.[ch]: added multiple selection mode, no longer show
disabled accounts
* em-utils.c: various changes to allow posting to (multiple) folders
* em-subscribe-editor.c: double-clicking a node in the editor updates
it directly
* mail-ops.c: for appending messages, set the "X-Mailer" header
svn path=/trunk/; revision=24182
Diffstat (limited to 'mail/em-folder-selection-button.h')
-rw-r--r-- | mail/em-folder-selection-button.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/em-folder-selection-button.h b/mail/em-folder-selection-button.h index b8f64a4383..194a453efa 100644 --- a/mail/em-folder-selection-button.h +++ b/mail/em-folder-selection-button.h @@ -62,6 +62,12 @@ GtkWidget *em_folder_selection_button_new (const char *title, const char *captio void em_folder_selection_button_set_selection (EMFolderSelectionButton *button, const char *uri); const char *em_folder_selection_button_get_selection (EMFolderSelectionButton *button); +void em_folder_selection_button_set_selection_mult (EMFolderSelectionButton *button, GList *uris); +GList *em_folder_selection_button_get_selection_mult (EMFolderSelectionButton *button); + +void em_folder_selection_button_set_multiselect (EMFolderSelectionButton *button, gboolean value); +gboolean em_folder_selection_button_get_multiselect (EMFolderSelectionButton *button); + #ifdef __cplusplus } #endif /* __cplusplus */ |