2007-03-29 [colin] 2.8.1cvs66
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __COMPOSE_H__
21 #define __COMPOSE_H__
22
23 typedef struct _Compose         Compose;
24 typedef struct _AttachInfo      AttachInfo;
25
26 #include <glib.h>
27 #include <gtk/gtkwidget.h>
28 #include <gtk/gtkitemfactory.h>
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 #include "messageview.h"
37 #include "codeconv.h"
38 #include "template.h"
39 #include "textview.h"
40
41 #ifdef USE_ASPELL
42 #include "gtkaspell.h"
43 #endif
44
45 #define COMPOSE_CHECK_BEFORE_SEND_HOOKLIST "compose_check_before_send"
46
47 typedef enum
48 {
49         COMPOSE_TO,
50         COMPOSE_CC,
51         COMPOSE_BCC,
52         COMPOSE_REPLYTO,
53         COMPOSE_NEWSGROUPS,
54         COMPOSE_FOLLOWUPTO
55 } ComposeEntryType;
56
57 typedef enum
58 {
59         COMPOSE_REPLY,
60         COMPOSE_REPLY_WITH_QUOTE,
61         COMPOSE_REPLY_WITHOUT_QUOTE,
62         COMPOSE_REPLY_TO_SENDER,
63         COMPOSE_FOLLOWUP_AND_REPLY_TO,
64         COMPOSE_REPLY_TO_SENDER_WITH_QUOTE,
65         COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE,
66         COMPOSE_REPLY_TO_ALL,
67         COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
68         COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
69         COMPOSE_REPLY_TO_LIST,
70         COMPOSE_REPLY_TO_LIST_WITH_QUOTE,
71         COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE,
72         COMPOSE_FORWARD,
73         COMPOSE_FORWARD_AS_ATTACH,
74         COMPOSE_FORWARD_INLINE,
75         COMPOSE_NEW,
76         COMPOSE_REDIRECT,
77         COMPOSE_REEDIT
78 } ComposeMode;
79
80 typedef struct {
81         guint headernum;
82         Compose *compose;
83         GtkWidget *combo;
84         GtkWidget *entry;
85 } ComposeHeaderEntry;
86
87 struct _Compose
88 {
89         /* start with window widget don`t change order */
90         GtkWidget *window;
91         GtkWidget *vbox;
92         GtkWidget *menubar;
93
94         /* Toolbar handlebox */
95         GtkWidget *handlebox;
96         Toolbar *toolbar;
97         
98         GtkWidget *vbox2;
99
100         /* Header */
101         GtkWidget *table_vbox;
102         GtkWidget *table;
103         GtkWidget *subject_entry;
104         GtkWidget *paned;
105
106         /* Attachments */
107         GtkWidget *attach_scrwin;
108         GtkWidget *attach_clist;
109
110         /* Others */
111         GtkWidget *savemsg_checkbtn;
112         GtkWidget *savemsg_entry;
113
114         /* Headers notebook */
115         GtkWidget *notebook;
116
117         /* Textedit */
118         GtkWidget *edit_vbox;
119         GtkWidget *ruler_hbox;
120         GtkWidget *ruler;
121         GtkWidget *scrolledwin;
122         GtkWidget *text;
123         GtkWidget *from_name;
124         GtkTooltips *tooltips;
125
126         GtkWidget *focused_editable;
127
128         GtkWidget *popupmenu;
129
130         GtkItemFactory *popupfactory;
131
132         GtkWidget *tmpl_menu;
133
134         ComposeMode mode;
135
136         MsgInfo *targetinfo;
137         MsgInfo *replyinfo;
138         MsgInfo *autosaved_draft;
139         MsgInfo *fwdinfo;
140
141         GtkWidget *header_table;
142         GSList    *header_list;
143         guint      header_nextrow;
144         ComposeHeaderEntry *header_last;
145
146         gchar   *replyto;
147         gchar   *cc;
148         gchar   *bcc;
149         gchar   *newsgroups;
150         gchar   *followup_to;
151
152         gchar   *ml_post;
153
154         gchar   *inreplyto;
155         gchar   *references;
156         gchar   *msgid;
157         gchar   *boundary;
158
159         gboolean autowrap;
160
161         gboolean use_to;
162         gboolean use_cc;
163         gboolean use_bcc;
164         gboolean use_replyto;
165         gboolean use_newsgroups;
166         gboolean use_followupto;
167         gboolean use_attach;
168
169         CharSet out_encoding;
170
171         /* privacy settings */
172         gboolean use_signing;
173         gboolean use_encryption;
174         gchar *privacy_system;
175
176         gboolean modified;
177
178         gboolean sending;
179         
180         gboolean return_receipt;
181
182         gboolean batch;
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         GIOChannel *exteditor_ch;
197         gint        exteditor_tag;
198
199 #if USE_ASPELL
200         /* GNU/aspell spell checker */
201         GtkAspell *gtkaspell;
202         GtkWidget *aspell_options_menu;
203 #endif
204
205         /* Priority */
206         gint priority;
207
208         gchar *redirect_filename;
209         
210         gboolean remove_references;
211
212         guint draft_timeout_tag;
213         
214         GtkTextTag *no_wrap_tag;
215         GtkTextTag *no_join_tag;
216         GMutex *mutex;
217         gchar *orig_charset;
218         gint set_cursor_pos;
219         
220         gboolean updating;
221         gboolean deferred_destroy;
222         ComposeMode rmode;
223 };
224
225 struct _AttachInfo
226 {
227         gchar *file;
228         gchar *content_type;
229         EncodingType encoding;
230         gchar *name;
231         off_t size;
232 };
233
234 typedef enum
235 {
236         COMPOSE_QUIT_EDITING,
237         COMPOSE_KEEP_EDITING,
238         COMPOSE_AUTO_SAVE,
239         COMPOSE_DRAFT_FOR_EXIT
240 } ComposeDraftAction;
241
242 /*#warning FIXME_GTK2 */
243 /* attache_files will be locale encode */
244 Compose *compose_new                    (PrefsAccount   *account,
245                                          const gchar    *mailto,
246                                          GPtrArray      *attach_files);
247
248 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
249                                          FolderItem     *item,
250                                          const gchar    *mailto);
251
252 Compose *compose_new_with_list          (PrefsAccount   *account,
253                                          GList          *listAddress);
254
255 Compose *compose_forward                (PrefsAccount *account,
256                                          MsgInfo        *msginfo,
257                                          gboolean        as_attach,
258                                          const gchar    *body,
259                                          gboolean        no_extedit,
260                                          gboolean        batch);
261
262 Compose *compose_redirect               (PrefsAccount   *account,
263                                          MsgInfo        *msginfo,
264                                          gboolean        batch);
265 Compose *compose_reedit                 (MsgInfo        *msginfo,
266                                          gboolean        batch);
267
268 GList *compose_get_compose_list         (void);
269
270 void compose_entry_append               (Compose          *compose,
271                                          const gchar      *address,
272                                          ComposeEntryType  type);
273
274
275 gint compose_send                       (Compose          *compose);
276
277 void compose_update_actions_menu        (Compose        *compose);
278 void compose_reflect_prefs_all                  (void);
279 void compose_reflect_prefs_pixmap_theme (void);
280
281 void compose_destroy_all                (void);
282 void compose_draft                      (gpointer data, guint action);
283 void compose_toolbar_cb                 (gint           action, 
284                                          gpointer       data);
285 void compose_reply_from_messageview     (MessageView    *msgview, 
286                                          GSList         *msginfo_list, 
287                                          guint           action);
288 void compose_action_cb                  (void           *data);
289
290 void compose_set_position                               (Compose        *compose,
291                                                  gint            pos);
292 gboolean compose_search_string                  (Compose        *compose,
293                                                  const gchar    *str,
294                                                  gboolean        case_sens);
295 gboolean compose_search_string_backward (Compose        *compose,
296                                                  const gchar    *str,
297                                                  gboolean        case_sens);
298 gint compose_queue                      (Compose *compose, 
299                                          gint *msgnum, 
300                                          FolderItem **item, 
301                                          gchar **msgpath,
302                                          gboolean remove_reedit_target);
303 gboolean compose_close                  (Compose *compose);
304 void compose_close_toolbar              (Compose *compose);
305 void compose_clear_exit_drafts          (void);
306 void compose_reopen_exit_drafts         (void);
307 #endif /* __COMPOSE_H__ */