fix erroneous debug text, debug output (and style)
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2012 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 "prefs_account.h"
32 #include "undo.h"
33 #include "toolbar.h"
34 #include "codeconv.h"
35 #include "template.h"
36 #include "viewtypes.h"
37 #include "folder.h"
38
39 #ifdef USE_ENCHANT
40 #include "gtkaspell.h"
41 #endif
42
43 #define COMPOSE_CHECK_BEFORE_SEND_HOOKLIST "compose_check_before_send"
44 #define COMPOSE_CREATED_HOOKLIST "compose_created"
45
46 typedef enum
47 {
48         COMPOSE_TO,
49         COMPOSE_CC,
50         COMPOSE_BCC,
51         COMPOSE_REPLYTO,
52         COMPOSE_NEWSGROUPS,
53         COMPOSE_FOLLOWUPTO,
54         COMPOSE_INREPLYTO
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_REPLY_TO_ADDRESS,
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 enum {
82         PREF_ACCOUNT,
83         PREF_FOLDER,
84         PREF_TEMPLATE,
85         PREF_ML,
86         PREF_MAILTO,
87         PREF_NONE
88 } ComposePrefType;
89
90 typedef struct {
91         guint headernum;
92         Compose *compose;
93         GtkWidget *combo;
94         GtkWidget *entry;
95         GtkWidget *button;
96         GtkWidget *hbox;
97         ComposePrefType type;
98 } ComposeHeaderEntry;
99
100 struct _Compose
101 {
102         /* start with window widget don`t change order */
103         GtkWidget *window;
104         GtkWidget *vbox;
105         GtkWidget *menubar;
106
107         /* Toolbar handlebox */
108         GtkWidget *handlebox;
109         Toolbar *toolbar;
110         
111         GtkWidget *vbox2;
112
113         /* Header */
114         GtkWidget *table_vbox;
115         GtkWidget *table;
116         GtkWidget *account_combo;
117         GtkWidget *subject_entry;
118         GtkWidget *paned;
119
120         /* Attachments */
121         GtkWidget *attach_scrwin;
122         GtkWidget *attach_clist;
123         GtkWidget *attach_label;
124
125         /* Others */
126         GtkWidget *savemsg_checkbtn;
127         GtkWidget *savemsg_combo;
128
129         /* Headers notebook */
130         GtkWidget *notebook;
131
132         /* Textedit */
133         GtkWidget *edit_vbox;
134         GtkWidget *ruler_hbox;
135         GtkWidget *ruler;
136         GtkWidget *scrolledwin;
137         GtkWidget *text;
138         GtkWidget *from_name;
139
140         GtkWidget *focused_editable;
141
142         GtkWidget *popupmenu;
143
144         GtkWidget *tmpl_menu;
145
146         ComposeMode mode;
147
148         MsgInfo *targetinfo;
149         MsgInfo *replyinfo;
150         MsgInfo *autosaved_draft;
151         MsgInfo *fwdinfo;
152
153         GtkWidget *header_table;
154         GSList    *header_list;
155         guint      header_nextrow;
156         ComposeHeaderEntry *header_last;
157
158         GHashTable *email_hashtable;
159
160         gchar   *replyto;
161         gchar   *cc;
162         gchar   *bcc;
163         gchar   *newsgroups;
164         gchar   *followup_to;
165
166         gchar   *ml_post;
167
168         gchar   *inreplyto;
169         gchar   *references;
170         gchar   *msgid;
171         gchar   *boundary;
172
173         gboolean autowrap;
174         gboolean autoindent;
175
176         gboolean use_to;
177         gboolean use_cc;
178         gboolean use_bcc;
179         gboolean use_replyto;
180         gboolean use_newsgroups;
181         gboolean use_followupto;
182         gboolean use_attach;
183
184         CharSet out_encoding;
185
186         /* privacy settings */
187         gboolean use_signing;
188         gboolean use_encryption;
189         gchar *privacy_system;
190         gchar *encdata;
191
192         gboolean modified;
193
194         gboolean sending;
195         
196         gboolean return_receipt;
197
198         gboolean batch;
199         
200         GSList *to_list;
201         GSList *newsgroup_list;
202
203         PrefsAccount *account;
204         FolderItem *folder;
205
206         UndoMain *undostruct;
207
208         gchar *sig_str;
209         gboolean sig_inserted;
210
211         /* external editor */
212         gchar      *exteditor_file;
213         pid_t       exteditor_pid;
214         GIOChannel *exteditor_ch;
215         gint        exteditor_tag;
216
217         /* Priority */
218         gint priority;
219
220         gchar *redirect_filename;
221         
222         gboolean remove_references;
223
224         gint64 draft_timeout_tag;
225         
226         GtkTextTag *no_wrap_tag;
227         GtkTextTag *no_join_tag;
228         GtkTextTag *signature_tag;
229         GtkTextTag *quote0_tag;
230         GtkTextTag *quote1_tag;
231         GtkTextTag *quote2_tag;
232         GtkTextTag *uri_tag;
233
234         gboolean automatic_break;
235         GMutex *mutex;
236         gint close_timeout_tag;
237         gchar *orig_charset;
238         gint set_cursor_pos;
239
240         gboolean updating;
241         gboolean deferred_destroy;
242         ComposeMode rmode;
243         GtkWidget *first_combo;
244         GtkWidget *first_entry;
245
246         GtkUIManager *ui_manager;
247
248         gint folder_update_callback_id;
249 #if USE_ENCHANT
250         /* GNU/aspell spell checker */
251         GtkAspell *gtkaspell;
252         GtkWidget *aspell_options_menu;
253 #endif
254 };
255
256 struct _AttachInfo
257 {
258         gchar *file;
259         gchar *content_type;
260         EncodingType encoding;
261         gchar *name;
262         goffset size;
263         gchar *charset;
264 };
265
266 typedef enum
267 {
268         COMPOSE_QUIT_EDITING,
269         COMPOSE_KEEP_EDITING,
270         COMPOSE_AUTO_SAVE,
271         COMPOSE_DRAFT_FOR_EXIT
272 } ComposeDraftAction;
273
274 /*#warning FIXME_GTK2 */
275 /* attache_files will be locale encode */
276 Compose *compose_new                    (PrefsAccount   *account,
277                                          const gchar    *mailto,
278                                          GList          *attach_files);
279
280 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
281                                          FolderItem     *item,
282                                          const gchar    *mailto);
283
284 Compose *compose_new_with_list          (PrefsAccount   *account,
285                                          GList          *listAddress);
286
287 Compose *compose_forward                (PrefsAccount *account,
288                                          MsgInfo        *msginfo,
289                                          gboolean        as_attach,
290                                          const gchar    *body,
291                                          gboolean        no_extedit,
292                                          gboolean        batch);
293
294 Compose *compose_redirect               (PrefsAccount   *account,
295                                          MsgInfo        *msginfo,
296                                          gboolean        batch);
297 Compose *compose_reedit                 (MsgInfo        *msginfo,
298                                          gboolean        batch);
299
300 const GList *compose_get_compose_list   (void);
301
302 void compose_entry_append               (Compose          *compose,
303                                          const gchar      *address,
304                                          ComposeEntryType  type,
305                                          ComposePrefType   pref_type);
306
307
308 gint compose_send                       (Compose          *compose);
309
310 void compose_update_actions_menu        (Compose        *compose);
311 void compose_reflect_prefs_all                  (void);
312 void compose_reflect_prefs_pixmap_theme (void);
313
314 void compose_destroy_all                (void);
315 gboolean compose_draft                  (gpointer data, guint action);
316 void compose_toolbar_cb                 (gint           action, 
317                                          gpointer       data);
318 void compose_reply_to_address           (MessageView    *msgview,
319                                          MsgInfo        *msginfo,
320                                          const gchar    *address);
321 void compose_reply_from_messageview     (MessageView    *msgview, 
322                                          GSList         *msginfo_list, 
323                                          guint           action);
324 void compose_action_cb                  (void           *data);
325
326 void compose_set_position                               (Compose        *compose,
327                                                  gint            pos);
328 gboolean compose_search_string                  (Compose        *compose,
329                                                  const gchar    *str,
330                                                  gboolean        case_sens);
331 gboolean compose_search_string_backward (Compose        *compose,
332                                                  const gchar    *str,
333                                                  gboolean        case_sens);
334 gint compose_queue                      (Compose *compose, 
335                                          gint *msgnum, 
336                                          FolderItem **item, 
337                                          gchar **msgpath,
338                                          gboolean remove_reedit_target);
339 gboolean compose_close                  (Compose *compose);
340 void compose_close_toolbar              (Compose *compose);
341 void compose_clear_exit_drafts          (void);
342 void compose_reopen_exit_drafts         (void);
343 void compose_attach_from_list (Compose *compose, GList *file_list, gboolean free_data);
344 void compose_check_for_email_account(Compose *compose);
345
346 #endif /* __COMPOSE_H__ */