diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 1999-11-09 04:48:32 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 1999-11-09 04:48:32 +0800 |
commit | 643a3d01716e1904d44b2dffca69219286df9d87 (patch) | |
tree | 82a6ae88b198c68d8d7747891cf6ad24149417da /widgets/e-msg-composer-address-dialog.h | |
parent | 0c3101c24a3bb76c57d545ba6071acee529ee3a8 (diff) | |
download | gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar.gz gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar.bz2 gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar.lz gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar.xz gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.tar.zst gsoc2013-evolution-643a3d01716e1904d44b2dffca69219286df9d87.zip |
Added cut/copy/paste support to the address editing dialog.
svn path=/trunk/; revision=1371
Diffstat (limited to 'widgets/e-msg-composer-address-dialog.h')
-rw-r--r-- | widgets/e-msg-composer-address-dialog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/widgets/e-msg-composer-address-dialog.h b/widgets/e-msg-composer-address-dialog.h index 5ff4723aa9..19ffeda703 100644 --- a/widgets/e-msg-composer-address-dialog.h +++ b/widgets/e-msg-composer-address-dialog.h @@ -46,6 +46,8 @@ struct _EMsgComposerAddressDialog { GnomeDialog parent; GladeXML *gui; + + gchar *cut_buffer; }; struct _EMsgComposerAddressDialogClass { @@ -58,6 +60,12 @@ struct _EMsgComposerAddressDialogClass { GtkType e_msg_composer_address_dialog_get_type (void); GtkWidget *e_msg_composer_address_dialog_new (void); void e_msg_composer_address_dialog_construct (EMsgComposerAddressDialog *dialog); +void e_msg_composer_address_dialog_set_to_list (EMsgComposerAddressDialog *dialog, GList *to_list); +void e_msg_composer_address_dialog_set_cc_list (EMsgComposerAddressDialog *dialog, GList *cc_list); +void e_msg_composer_address_dialog_set_bcc_list (EMsgComposerAddressDialog *dialog, GList *bcc_list); +GList *e_msg_composer_address_dialog_get_to_list (EMsgComposerAddressDialog *dialog); +GList *e_msg_composer_address_dialog_get_cc_list (EMsgComposerAddressDialog *dialog); +GList *e_msg_composer_address_dialog_get_bcc_list (EMsgComposerAddressDialog *dialog); #ifdef __cplusplus } |