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