fix bug where multipart/alternative messages would slip through without being scanned
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 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 __COMPOSE_H__
21 #define __COMPOSE_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25 #include <gtk/gtkitemfactory.h>
26
27 typedef struct _Compose         Compose;
28 typedef struct _AttachInfo      AttachInfo;
29
30 #include "procmsg.h"
31 #include "procmime.h"
32 #include "addressbook.h"
33 #include "prefs_account.h"
34 #include "undo.h"
35 #include "toolbar.h"
36
37 #ifdef USE_ASPELL
38 #include "gtkaspell.h"
39 #endif
40
41 typedef enum
42 {
43         COMPOSE_TO,
44         COMPOSE_CC,
45         COMPOSE_BCC,
46         COMPOSE_REPLYTO,
47         COMPOSE_NEWSGROUPS,
48         COMPOSE_FOLLOWUPTO
49 } ComposeEntryType;
50
51 typedef enum
52 {
53         COMPOSE_REPLY,
54         COMPOSE_REPLY_WITH_QUOTE,
55         COMPOSE_REPLY_WITHOUT_QUOTE,
56         COMPOSE_REPLY_TO_SENDER,
57         COMPOSE_FOLLOWUP_AND_REPLY_TO,
58         COMPOSE_REPLY_TO_SENDER_WITH_QUOTE,
59         COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE,
60         COMPOSE_REPLY_TO_ALL,
61         COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
62         COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
63         COMPOSE_REPLY_TO_LIST,
64         COMPOSE_REPLY_TO_LIST_WITH_QUOTE,
65         COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE,
66         COMPOSE_FORWARD,
67         COMPOSE_FORWARD_AS_ATTACH,
68         COMPOSE_FORWARD_INLINE,
69         COMPOSE_NEW,
70         COMPOSE_REDIRECT,
71         COMPOSE_REEDIT
72 } ComposeMode;
73
74 typedef struct {
75         guint headernum;
76         Compose *compose;
77         GtkWidget *combo;
78         GtkWidget *entry;
79 } ComposeHeaderEntry;
80
81 struct _Compose
82 {
83         /* start with window widget don`t change order */
84         GtkWidget *window;
85         GtkWidget *vbox;
86         GtkWidget *menubar;
87
88         /* Toolbar handlebox */
89         GtkWidget *handlebox;
90         Toolbar *toolbar;
91         
92         GtkWidget *vbox2;
93
94         /* Header */
95         GtkWidget *table_vbox;
96         GtkWidget *table;
97 /*
98         GtkWidget *to_hbox;
99         GtkWidget *to_entry;
100         GtkWidget *newsgroups_hbox;
101         GtkWidget *newsgroups_entry;
102 */
103         GtkWidget *subject_entry;
104 /*
105         GtkWidget *cc_hbox;
106         GtkWidget *cc_entry;
107         GtkWidget *bcc_hbox;
108         GtkWidget *bcc_entry;
109         GtkWidget *reply_hbox;
110         GtkWidget *reply_entry;
111         GtkWidget *followup_hbox;
112         GtkWidget *followup_entry;
113 */
114         GtkWidget *paned;
115
116         /* Attachments */
117         GtkWidget *attach_scrwin;
118         GtkWidget *attach_clist;
119
120         /* Others */
121         GtkWidget *savemsg_checkbtn;
122         GtkWidget *savemsg_entry;
123
124         /* Textedit */
125         GtkWidget *edit_vbox;
126         GtkWidget *ruler_hbox;
127         GtkWidget *ruler;
128         GtkWidget *scrolledwin;
129         GtkWidget *text;
130
131         GtkWidget *focused_editable;
132
133         GtkWidget *popupmenu;
134
135         GtkItemFactory *popupfactory;
136
137         GtkWidget *tmpl_menu;
138
139         ComposeMode mode;
140
141         MsgInfo *targetinfo;
142         MsgInfo *replyinfo;
143         MsgInfo *autosaved_draft;
144         MsgInfo *fwdinfo;
145
146         GtkWidget *header_table;
147         GSList    *header_list;
148         guint      header_nextrow;
149         ComposeHeaderEntry *header_last;
150
151         gchar   *replyto;
152         gchar   *cc;
153         gchar   *bcc;
154         gchar   *newsgroups;
155         gchar   *followup_to;
156
157         gchar   *ml_post;
158
159         gchar   *inreplyto;
160         gchar   *references;
161         gchar   *msgid;
162         gchar   *boundary;
163
164         gboolean use_to;
165         gboolean use_cc;
166         gboolean use_bcc;
167         gboolean use_replyto;
168         gboolean use_newsgroups;
169         gboolean use_followupto;
170         gboolean use_attach;
171
172         /* privacy settings */
173         gboolean use_signing;
174         gboolean use_encryption;
175         
176         gint gnupg_mode;
177
178         gboolean modified;
179
180         gboolean sending;
181         
182         gboolean return_receipt;
183
184         GSList *to_list;
185         GSList *newsgroup_list;
186
187         PrefsAccount *account;
188
189         UndoMain *undostruct;
190
191         gchar *sig_str;
192
193         /* external editor */
194         gchar *exteditor_file;
195         pid_t  exteditor_pid;
196         gint   exteditor_readdes;
197         gint   exteditor_tag;
198
199 #if USE_ASPELL
200         /* GNU/aspell spell checker */
201         GtkAspell *gtkaspell;
202 #endif
203
204         /* Priority */
205         gint priority;
206
207         gchar *redirect_filename;
208         
209         gboolean remove_references;
210 };
211
212 struct _AttachInfo
213 {
214         gchar *file;
215         gchar *content_type;
216         EncodingType encoding;
217         gchar *name;
218         off_t size;
219 };
220
221 Compose *compose_new                    (PrefsAccount   *account,
222                                          const gchar    *mailto,
223                                          GPtrArray      *attach_files);
224
225 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
226                                          FolderItem     *item);
227
228 void compose_reply_mode                 (ComposeMode     mode, 
229                                          GSList         *msginfo_list, 
230                                          gchar          *body);
231 /* remove */
232 void compose_followup_and_reply_to      (MsgInfo        *msginfo,
233                                          gboolean        quote,
234                                          gboolean        to_all,
235                                          gboolean        to_sender,
236                                          const gchar    *body);
237 void compose_reply                      (MsgInfo        *msginfo,
238                                          gboolean        quote,
239                                          gboolean        to_all,
240                                          gboolean        to_ml,
241                                          gboolean        to_sender,
242                                          const gchar    *body);
243 Compose *compose_forward                (PrefsAccount *account,
244                                          MsgInfo        *msginfo,
245                                          gboolean        as_attach,
246                                          const gchar    *body);
247 Compose *compose_forward_multiple       (PrefsAccount   *account, 
248                                          GSList         *msginfo_list);
249 /* remove end */
250
251 Compose *compose_redirect               (PrefsAccount   *account,
252                                          MsgInfo        *msginfo);
253 void compose_reedit                     (MsgInfo        *msginfo);
254
255 GList *compose_get_compose_list         (void);
256
257 void compose_entry_append               (Compose          *compose,
258                                          const gchar      *address,
259                                          ComposeEntryType  type);
260
261 void compose_entry_select               (Compose          *compose,
262                                          const gchar      *address);
263
264 gint compose_send                       (Compose          *compose);
265
266 void compose_reflect_prefs_all                  (void);
267 void compose_reflect_prefs_pixmap_theme (void);
268
269 void compose_destroy_all                (void);
270 void compose_draft                      (gpointer data);
271 void compose_toolbar_cb                 (gint           action, 
272                                          gpointer       data);
273
274 #endif /* __COMPOSE_H__ */