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