2007-08-13 [wwp] 2.10.0cvs118
[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
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         GtkItemFactory *popupfactory;
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
195         /* external editor */
196         gchar      *exteditor_file;
197         pid_t       exteditor_pid;
198         GIOChannel *exteditor_ch;
199         gint        exteditor_tag;
200
201 #if USE_ASPELL
202         /* GNU/aspell spell checker */
203         GtkAspell *gtkaspell;
204         GtkWidget *aspell_options_menu;
205 #endif
206
207         /* Priority */
208         gint priority;
209
210         gchar *redirect_filename;
211         
212         gboolean remove_references;
213
214         guint draft_timeout_tag;
215         
216         GtkTextTag *no_wrap_tag;
217         GtkTextTag *no_join_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
235 struct _AttachInfo
236 {
237         gchar *file;
238         gchar *content_type;
239         EncodingType encoding;
240         gchar *name;
241         off_t size;
242 };
243
244 typedef enum
245 {
246         COMPOSE_QUIT_EDITING,
247         COMPOSE_KEEP_EDITING,
248         COMPOSE_AUTO_SAVE,
249         COMPOSE_DRAFT_FOR_EXIT
250 } ComposeDraftAction;
251
252 /*#warning FIXME_GTK2 */
253 /* attache_files will be locale encode */
254 Compose *compose_new                    (PrefsAccount   *account,
255                                          const gchar    *mailto,
256                                          GPtrArray      *attach_files);
257
258 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
259                                          FolderItem     *item,
260                                          const gchar    *mailto);
261
262 Compose *compose_new_with_list          (PrefsAccount   *account,
263                                          GList          *listAddress);
264
265 Compose *compose_forward                (PrefsAccount *account,
266                                          MsgInfo        *msginfo,
267                                          gboolean        as_attach,
268                                          const gchar    *body,
269                                          gboolean        no_extedit,
270                                          gboolean        batch);
271
272 Compose *compose_redirect               (PrefsAccount   *account,
273                                          MsgInfo        *msginfo,
274                                          gboolean        batch);
275 Compose *compose_reedit                 (MsgInfo        *msginfo,
276                                          gboolean        batch);
277
278 GList *compose_get_compose_list         (void);
279
280 void compose_entry_append               (Compose          *compose,
281                                          const gchar      *address,
282                                          ComposeEntryType  type);
283
284
285 gint compose_send                       (Compose          *compose);
286
287 void compose_update_actions_menu        (Compose        *compose);
288 void compose_reflect_prefs_all                  (void);
289 void compose_reflect_prefs_pixmap_theme (void);
290
291 void compose_destroy_all                (void);
292 gboolean compose_draft                  (gpointer data, guint action);
293 void compose_toolbar_cb                 (gint           action, 
294                                          gpointer       data);
295 void compose_reply_from_messageview     (MessageView    *msgview, 
296                                          GSList         *msginfo_list, 
297                                          guint           action);
298 void compose_action_cb                  (void           *data);
299
300 void compose_set_position                               (Compose        *compose,
301                                                  gint            pos);
302 gboolean compose_search_string                  (Compose        *compose,
303                                                  const gchar    *str,
304                                                  gboolean        case_sens);
305 gboolean compose_search_string_backward (Compose        *compose,
306                                                  const gchar    *str,
307                                                  gboolean        case_sens);
308 gint compose_queue                      (Compose *compose, 
309                                          gint *msgnum, 
310                                          FolderItem **item, 
311                                          gchar **msgpath,
312                                          gboolean remove_reedit_target);
313 gboolean compose_close                  (Compose *compose);
314 void compose_close_toolbar              (Compose *compose);
315 void compose_clear_exit_drafts          (void);
316 void compose_reopen_exit_drafts         (void);
317 #endif /* __COMPOSE_H__ */