2008-07-29 [colin] 3.5.0cvs38
[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_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         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         GtkTooltips *tooltips;
126
127         GtkWidget *focused_editable;
128
129         GtkWidget *popupmenu;
130
131         GtkWidget *tmpl_menu;
132
133         ComposeMode mode;
134
135         MsgInfo *targetinfo;
136         MsgInfo *replyinfo;
137         MsgInfo *autosaved_draft;
138         MsgInfo *fwdinfo;
139
140         GtkWidget *header_table;
141         GSList    *header_list;
142         guint      header_nextrow;
143         ComposeHeaderEntry *header_last;
144
145         gchar   *replyto;
146         gchar   *cc;
147         gchar   *bcc;
148         gchar   *newsgroups;
149         gchar   *followup_to;
150
151         gchar   *ml_post;
152
153         gchar   *inreplyto;
154         gchar   *references;
155         gchar   *msgid;
156         gchar   *boundary;
157
158         gboolean autowrap;
159
160         gboolean use_to;
161         gboolean use_cc;
162         gboolean use_bcc;
163         gboolean use_replyto;
164         gboolean use_newsgroups;
165         gboolean use_followupto;
166         gboolean use_attach;
167
168         CharSet out_encoding;
169
170         /* privacy settings */
171         gboolean use_signing;
172         gboolean use_encryption;
173         gchar *privacy_system;
174
175         gboolean modified;
176
177         gboolean sending;
178         
179         gboolean return_receipt;
180
181         gboolean batch;
182         
183         GSList *to_list;
184         GSList *newsgroup_list;
185
186         PrefsAccount *account;
187         FolderItem *folder;
188
189         UndoMain *undostruct;
190
191         gchar *sig_str;
192         gboolean sig_inserted;
193
194         /* external editor */
195         gchar      *exteditor_file;
196         pid_t       exteditor_pid;
197         GIOChannel *exteditor_ch;
198         gint        exteditor_tag;
199
200 #if USE_ASPELL
201         /* GNU/aspell spell checker */
202         GtkAspell *gtkaspell;
203         GtkWidget *aspell_options_menu;
204 #endif
205
206         /* Priority */
207         gint priority;
208
209         gchar *redirect_filename;
210         
211         gboolean remove_references;
212
213         guint draft_timeout_tag;
214         
215         GtkTextTag *no_wrap_tag;
216         GtkTextTag *no_join_tag;
217         GtkTextTag *signature_tag;
218         GtkTextTag *quote0_tag;
219         GtkTextTag *quote1_tag;
220         GtkTextTag *quote2_tag;
221         GtkTextTag *uri_tag;
222
223         gboolean automatic_break;
224         GMutex *mutex;
225         gchar *orig_charset;
226         gint set_cursor_pos;
227         
228         gboolean updating;
229         gboolean deferred_destroy;
230         ComposeMode rmode;
231         GtkWidget *first_combo;
232         GtkWidget *first_entry;
233         
234         GtkUIManager *ui_manager;
235 };
236
237 struct _AttachInfo
238 {
239         gchar *file;
240         gchar *content_type;
241         EncodingType encoding;
242         gchar *name;
243         goffset size;
244 };
245
246 typedef enum
247 {
248         COMPOSE_QUIT_EDITING,
249         COMPOSE_KEEP_EDITING,
250         COMPOSE_AUTO_SAVE,
251         COMPOSE_DRAFT_FOR_EXIT
252 } ComposeDraftAction;
253
254 /*#warning FIXME_GTK2 */
255 /* attache_files will be locale encode */
256 Compose *compose_new                    (PrefsAccount   *account,
257                                          const gchar    *mailto,
258                                          GPtrArray      *attach_files);
259
260 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
261                                          FolderItem     *item,
262                                          const gchar    *mailto);
263
264 Compose *compose_new_with_list          (PrefsAccount   *account,
265                                          GList          *listAddress);
266
267 Compose *compose_forward                (PrefsAccount *account,
268                                          MsgInfo        *msginfo,
269                                          gboolean        as_attach,
270                                          const gchar    *body,
271                                          gboolean        no_extedit,
272                                          gboolean        batch);
273
274 Compose *compose_redirect               (PrefsAccount   *account,
275                                          MsgInfo        *msginfo,
276                                          gboolean        batch);
277 Compose *compose_reedit                 (MsgInfo        *msginfo,
278                                          gboolean        batch);
279
280 GList *compose_get_compose_list         (void);
281
282 void compose_entry_append               (Compose          *compose,
283                                          const gchar      *address,
284                                          ComposeEntryType  type);
285
286
287 gint compose_send                       (Compose          *compose);
288
289 void compose_update_actions_menu        (Compose        *compose);
290 void compose_reflect_prefs_all                  (void);
291 void compose_reflect_prefs_pixmap_theme (void);
292
293 void compose_destroy_all                (void);
294 gboolean compose_draft                  (gpointer data, guint action);
295 void compose_toolbar_cb                 (gint           action, 
296                                          gpointer       data);
297 void compose_reply_from_messageview     (MessageView    *msgview, 
298                                          GSList         *msginfo_list, 
299                                          guint           action);
300 void compose_action_cb                  (void           *data);
301
302 void compose_set_position                               (Compose        *compose,
303                                                  gint            pos);
304 gboolean compose_search_string                  (Compose        *compose,
305                                                  const gchar    *str,
306                                                  gboolean        case_sens);
307 gboolean compose_search_string_backward (Compose        *compose,
308                                                  const gchar    *str,
309                                                  gboolean        case_sens);
310 gint compose_queue                      (Compose *compose, 
311                                          gint *msgnum, 
312                                          FolderItem **item, 
313                                          gchar **msgpath,
314                                          gboolean remove_reedit_target);
315 gboolean compose_close                  (Compose *compose);
316 void compose_close_toolbar              (Compose *compose);
317 void compose_clear_exit_drafts          (void);
318 void compose_reopen_exit_drafts         (void);
319 #endif /* __COMPOSE_H__ */