diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-22 02:28:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-22 02:28:34 +0800 |
commit | 0fb08f3ff81575a4749d851404233f34252dd2f2 (patch) | |
tree | 7e03befedc3a76fd104921dbbc616810d87333be /mail/em-popup.h | |
parent | 0e19f2c16de592607a341eb9974d31e4e47e02b5 (diff) | |
download | gsoc2013-evolution-0fb08f3ff81575a4749d851404233f34252dd2f2.tar.gz gsoc2013-evolution-0fb08f3ff81575a4749d851404233f34252dd2f2.tar.zst gsoc2013-evolution-0fb08f3ff81575a4749d851404233f34252dd2f2.zip |
Merge new-ui-branch to the trunk.
svn path=/trunk/; revision=22964
Diffstat (limited to 'mail/em-popup.h')
-rw-r--r-- | mail/em-popup.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/em-popup.h b/mail/em-popup.h index 877b28fc28..0ad1d0015c 100644 --- a/mail/em-popup.h +++ b/mail/em-popup.h @@ -69,6 +69,7 @@ enum _em_popup_target_t { EM_POPUP_TARGET_SELECT, EM_POPUP_TARGET_URI, EM_POPUP_TARGET_PART, + EM_POPUP_TARGET_FOLDER, }; /* Flags that describe a TARGET_SELECT */ @@ -103,6 +104,13 @@ enum { EM_POPUP_PART_IMAGE = 1<<1, }; +/* Flags that describe TARGET_FOLDER */ +enum { + EM_POPUP_FOLDER_LOCAL = 1<<0, + EM_POPUP_FOLDER_REMOTE = 1<<1, + EM_POPUP_FOLDER_VFOLDER = 1<<2, +}; + struct _EMPopupTarget { enum _em_popup_target_t type; guint32 mask; /* depends on type, see above */ @@ -118,6 +126,9 @@ struct _EMPopupTarget { char *mime_type; struct _CamelMimePart *part; } part; + struct { + char *folder_uri; + } folder; } data; }; |