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