2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2001 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 #include "mainwindow.h"
30 #include "progressdialog.h"
31 #include "prefs_account.h"
33 #include "automaton.h"
36 typedef struct _IncProgressDialog IncProgressDialog
;
37 typedef struct _IncSession IncSession
;
38 typedef struct _Pop3State Pop3State
;
50 struct _IncProgressDialog
52 ProgressDialog
*dialog
;
58 GList
*queue_list
; /* list of IncSession */
63 Pop3State
*pop3_state
;
72 PrefsAccount
*ac_prefs
;
73 GHashTable
*folder_table
;
101 #define TIMEOUT_ITV 200
103 void inc_mail (MainWindow
*mainwin
);
104 void inc_all_account_mail (MainWindow
*mainwin
);
105 void inc_progress_update (Pop3State
*state
,
107 gint
inc_drop_message (const gchar
*file
,
110 void inc_lock (void);
111 void inc_unlock (void);
113 void inc_autocheck_timer_init (MainWindow
*mainwin
);
114 void inc_autocheck_timer_set (void);
115 void inc_autocheck_timer_remove (void);
117 #endif /* __INC_H__ */