diff options
Diffstat (limited to 'mail/mail-account-gui.h')
-rw-r--r-- | mail/mail-account-gui.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mail/mail-account-gui.h b/mail/mail-account-gui.h index 2684dd934c..9950157ece 100644 --- a/mail/mail-account-gui.h +++ b/mail/mail-account-gui.h @@ -52,6 +52,10 @@ typedef struct { } MailAccountGuiService; typedef struct { + char *name, *uri; +} MailAccountGuiFolder; + +typedef struct { GtkWidget *top; MailConfigAccount *account; GladeXML *xml; @@ -77,6 +81,12 @@ typedef struct { /* account management */ GtkEntry *account_name; GtkToggleButton *default_account; + + /* special folders */ + GtkButton *drafts_folder_button; + MailAccountGuiFolder drafts_folder; + GtkButton *sent_folder_button; + MailAccountGuiFolder sent_folder; } MailAccountGui; |