diff options
Diffstat (limited to 'mail/folder-browser.h')
-rw-r--r-- | mail/folder-browser.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/mail/folder-browser.h b/mail/folder-browser.h index 054d64b8c7..41d282b7e5 100644 --- a/mail/folder-browser.h +++ b/mail/folder-browser.h @@ -35,7 +35,20 @@ struct _FolderBrowser { */ char *uri; CamelFolder *folder; - + + /* async loading stuff */ + char *loading_uid;/* what uid am i loading now */ + char *pending_uid; /* what uid should i load next */ + char *new_uid; /* place to save the next uid during idle timeout */ + char *loaded_uid; /* what we have loaded */ + guint loading_id, seen_id; + + /* a folder we are expunging, dont use other than to compare the pointer value */ + CamelFolder *expunging; + + /* set to true when we are reconfiguring stuff == can't do much else */ + int reconfigure; + MessageList *message_list; MailDisplay *mail_display; GtkWidget *vpaned; |