updated translations
[claws.git] / src / inc.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 Hiroyuki Yamamoto
4  *
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.
9  *
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.
14  *
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.
18  */
19
20 #ifndef __INC_H__
21 #define __INC_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28
29 #include "mainwindow.h"
30 #include "progressdialog.h"
31 #include "prefs_account.h"
32 #include "pop.h"
33 #include "automaton.h"
34 #include "socket.h"
35
36 typedef struct _IncProgressDialog       IncProgressDialog;
37 typedef struct _IncSession              IncSession;
38 typedef struct _Pop3State               Pop3State;
39
40 typedef enum
41 {
42         INC_SUCCESS,
43         INC_CONNECT_ERROR,
44         INC_AUTH_FAILED,
45         INC_ERROR,
46         INC_NOSPACE,
47         INC_CANCEL
48 } IncState;
49
50 struct _IncProgressDialog
51 {
52         ProgressDialog *dialog;
53
54         MainWindow *mainwin;
55
56         GList *queue_list;      /* list of IncSession */
57 };
58
59 struct _IncSession
60 {
61         Pop3State *pop3_state;
62         Automaton *atm;
63
64         gpointer data;
65 };
66
67 struct _Pop3State
68 {
69         gboolean cancelled;
70         PrefsAccount *ac_prefs;
71         GHashTable *folder_table;
72
73         gchar *prev_folder;
74
75         SockInfo *sockinfo;
76
77         gchar *greeting;
78         gchar *user;
79         gchar *pass;
80         gint count;
81         gint new;
82         gint total_bytes;
83         gint cur_msg;
84         gint cur_total_bytes;
85         gint *sizes;
86
87         /* UIDL */
88         GHashTable *id_table;
89         GSList *id_list;
90         GSList *new_id_list;
91
92         gint error_val;
93         IncState inc_state;
94
95         IncSession *session;
96 };
97
98 #define TIMEOUT_ITV     200
99
100 void inc_mail                   (MainWindow     *mainwin);
101 void inc_all_account_mail       (MainWindow     *mainwin);
102 void inc_progress_update        (Pop3State      *state,
103                                  Pop3Phase       phase);
104 gint inc_drop_message           (const gchar    *file,
105                                  Pop3State      *state);
106 void inc_autocheck_timer_init   (MainWindow     *mainwin);
107 void inc_autocheck_timer_set    (void);
108 void inc_autocheck_timer_remove (void);
109
110 #endif /* __INC_H__ */