2008-10-02 [colin] 3.5.0cvs144
[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/gtk.h>
28
29 #include "procmsg.h"
30 #include "procmime.h"
31 #include "addressbook.h"
32 #include "prefs_account.h"
33 #include "undo.h"
34 #include "toolbar.h"
35 #include "messageview.h"
36 #include "codeconv.h"
37 #include "template.h"
38 #include "textview.h"
39 #include "folder.h"
40
41 #ifdef USE_ENCHANT
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         GtkWidget *attach_label;
110
111         /* Others */
112         GtkWidget *savemsg_checkbtn;
113         GtkWidget *savemsg_entry;
114
115         /* Headers notebook */
116         GtkWidget *notebook;
117
118         /* Textedit */
119         GtkWidget *edit_vbox;
120         GtkWidget *ruler_hbox;
121         GtkWidget *ruler;
122         GtkWidget *scrolledwin;
123         GtkWidget *text;
124         GtkWidget *from_name;
125 #if !GTK_CHECK_VERSION(2,12,0)
126         GtkTooltips *tooltips;
127 #endif
128
129         GtkWidget *focused_editable;
130
131         GtkWidget *popupmenu;
132
133         GtkWidget *tmpl_menu;
134
135         ComposeMode mode;
136
137         MsgInfo *targetinfo;
138         MsgInfo *replyinfo;
139         MsgInfo *autosaved_draft;
140         MsgInfo *fwdinfo;
141
142         GtkWidget *header_table;
143         GSList    *header_list;
144         guint      header_nextrow;
145         ComposeHeaderEntry *header_last;
146
147         gchar   *replyto;
148         gchar   *cc;
149         gchar   *bcc;
150         gchar   *newsgroups;
151         gchar   *followup_to;
152
153         gchar   *ml_post;
154
155         gchar   *inreplyto;
156         gchar   *references;
157         gchar   *msgid;
158         gchar   *boundary;
159
160         gboolean autowrap;
161         gboolean autoindent;
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_ENCHANT
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         GtkUIManager *ui_manager;
238 };
239
240 struct _AttachInfo
241 {
242         gchar *file;
243         gchar *content_type;
244         EncodingType encoding;
245         gchar *name;
246         goffset size;
247 };
248
249 typedef enum
250 {
251         COMPOSE_QUIT_EDITING,
252         COMPOSE_KEEP_EDITING,
253         COMPOSE_AUTO_SAVE,
254         COMPOSE_DRAFT_FOR_EXIT
255 } ComposeDraftAction;
256
257 /*#warning FIXME_GTK2 */
258 /* attache_files will be locale encode */
259 Compose *compose_new                    (PrefsAccount   *account,
260                                          const gchar    *mailto,
261                                          GPtrArray      *attach_files);
262
263 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
264                                          FolderItem     *item,
265                                          const gchar    *mailto);
266
267 Compose *compose_new_with_list          (PrefsAccount   *account,
268                                          GList          *listAddress);
269
270 Compose *compose_forward                (PrefsAccount *account,
271                                          MsgInfo        *msginfo,
272                                          gboolean        as_attach,
273                                          const gchar    *body,
274                                          gboolean        no_extedit,
275                                          gboolean        batch);
276
277 Compose *compose_redirect               (PrefsAccount   *account,
278                                          MsgInfo        *msginfo,
279                                          gboolean        batch);
280 Compose *compose_reedit                 (MsgInfo        *msginfo,
281                                          gboolean        batch);
282
283 GList *compose_get_compose_list         (void);
284
285 void compose_entry_append               (Compose          *compose,
286                                          const gchar      *address,
287                                          ComposeEntryType  type);
288
289
290 gint compose_send                       (Compose          *compose);
291
292 void compose_update_actions_menu        (Compose        *compose);
293 void compose_reflect_prefs_all                  (void);
294 void compose_reflect_prefs_pixmap_theme (void);
295
296 void compose_destroy_all                (void);
297 gboolean compose_draft                  (gpointer data, guint action);
298 void compose_toolbar_cb                 (gint           action, 
299                                          gpointer       data);
300 void compose_reply_from_messageview     (MessageView    *msgview, 
301                                          GSList         *msginfo_list, 
302                                          guint           action);
303 void compose_action_cb                  (void           *data);
304
305 void compose_set_position                               (Compose        *compose,
306                                                  gint            pos);
307 gboolean compose_search_string                  (Compose        *compose,
308                                                  const gchar    *str,
309                                                  gboolean        case_sens);
310 gboolean compose_search_string_backward (Compose        *compose,
311                                                  const gchar    *str,
312                                                  gboolean        case_sens);
313 gint compose_queue                      (Compose *compose, 
314                                          gint *msgnum, 
315                                          FolderItem **item, 
316                                          gchar **msgpath,
317                                          gboolean remove_reedit_target);
318 gboolean compose_close                  (Compose *compose);
319 void compose_close_toolbar              (Compose *compose);
320 void compose_clear_exit_drafts          (void);
321 void compose_reopen_exit_drafts         (void);
322 #endif /* __COMPOSE_H__ */