2005-01-24 [paul] 1.0.0cvs12.1
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
37 #ifdef USE_ASPELL
38 #include "gtkaspell.h"
39 #endif
40
41 typedef enum
42 {
43         COMPOSE_TO,
44         COMPOSE_CC,
45         COMPOSE_BCC,
46         COMPOSE_REPLYTO,
47         COMPOSE_NEWSGROUPS,
48         COMPOSE_FOLLOWUPTO
49 } ComposeEntryType;
50
51 typedef enum
52 {
53         COMPOSE_REPLY,
54         COMPOSE_REPLY_WITH_QUOTE,
55         COMPOSE_REPLY_WITHOUT_QUOTE,
56         COMPOSE_REPLY_TO_SENDER,
57         COMPOSE_FOLLOWUP_AND_REPLY_TO,
58         COMPOSE_REPLY_TO_SENDER_WITH_QUOTE,
59         COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE,
60         COMPOSE_REPLY_TO_ALL,
61         COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
62         COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
63         COMPOSE_REPLY_TO_LIST,
64         COMPOSE_REPLY_TO_LIST_WITH_QUOTE,
65         COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE,
66         COMPOSE_FORWARD,
67         COMPOSE_FORWARD_AS_ATTACH,
68         COMPOSE_FORWARD_INLINE,
69         COMPOSE_NEW,
70         COMPOSE_REDIRECT,
71         COMPOSE_REEDIT
72 } ComposeMode;
73
74 typedef struct {
75         guint headernum;
76         Compose *compose;
77         GtkWidget *combo;
78         GtkWidget *entry;
79 } ComposeHeaderEntry;
80
81 struct _Compose
82 {
83         /* start with window widget don`t change order */
84         GtkWidget *window;
85         GtkWidget *vbox;
86         GtkWidget *menubar;
87
88         /* Toolbar handlebox */
89         GtkWidget *handlebox;
90         Toolbar *toolbar;
91         
92         GtkWidget *vbox2;
93
94         /* Header */
95         GtkWidget *table_vbox;
96         GtkWidget *table;
97 /*
98         GtkWidget *to_hbox;
99         GtkWidget *to_entry;
100         GtkWidget *newsgroups_hbox;
101         GtkWidget *newsgroups_entry;
102 */
103         GtkWidget *subject_entry;
104 /*
105         GtkWidget *cc_hbox;
106         GtkWidget *cc_entry;
107         GtkWidget *bcc_hbox;
108         GtkWidget *bcc_entry;
109         GtkWidget *reply_hbox;
110         GtkWidget *reply_entry;
111         GtkWidget *followup_hbox;
112         GtkWidget *followup_entry;
113 */
114         GtkWidget *paned;
115
116         /* Attachments */
117         GtkWidget *attach_scrwin;
118         GtkWidget *attach_clist;
119
120         /* Others */
121         GtkWidget *savemsg_checkbtn;
122         GtkWidget *savemsg_entry;
123
124         /* Textedit */
125         GtkWidget *edit_vbox;
126         GtkWidget *ruler_hbox;
127         GtkWidget *ruler;
128         GtkWidget *scrolledwin;
129         GtkWidget *text;
130
131         GtkWidget *focused_editable;
132
133         GtkWidget *popupmenu;
134
135         GtkItemFactory *popupfactory;
136
137         GtkWidget *tmpl_menu;
138
139         ComposeMode mode;
140
141         MsgInfo *targetinfo;
142         MsgInfo *replyinfo;
143         MsgInfo *autosaved_draft;
144         MsgInfo *fwdinfo;
145
146         GtkWidget *header_table;
147         GSList    *header_list;
148         guint      header_nextrow;
149         ComposeHeaderEntry *header_last;
150
151         gchar   *replyto;
152         gchar   *cc;
153         gchar   *bcc;
154         gchar   *newsgroups;
155         gchar   *followup_to;
156
157         gchar   *ml_post;
158
159         gchar   *inreplyto;
160         gchar   *references;
161         gchar   *msgid;
162         gchar   *boundary;
163
164         gboolean autowrap;
165
166         gboolean use_to;
167         gboolean use_cc;
168         gboolean use_bcc;
169         gboolean use_replyto;
170         gboolean use_newsgroups;
171         gboolean use_followupto;
172         gboolean use_attach;
173
174         /* privacy settings */
175         gboolean use_signing;
176         gboolean use_encryption;
177         gchar *privacy_system;
178
179         gboolean modified;
180
181         gboolean sending;
182         
183         gboolean return_receipt;
184
185         GSList *to_list;
186         GSList *newsgroup_list;
187
188         PrefsAccount *account;
189
190         UndoMain *undostruct;
191
192         gchar *sig_str;
193
194         /* external editor */
195         gchar *exteditor_file;
196         pid_t  exteditor_pid;
197         gint   exteditor_readdes;
198         gint   exteditor_tag;
199
200 #if USE_ASPELL
201         /* GNU/aspell spell checker */
202         GtkAspell *gtkaspell;
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
215 struct _AttachInfo
216 {
217         gchar *file;
218         gchar *content_type;
219         EncodingType encoding;
220         gchar *name;
221         off_t size;
222 };
223
224 /*#warning FIXME_GTK2 */
225 /* attache_files will be locale encode */
226 Compose *compose_new                    (PrefsAccount   *account,
227                                          const gchar    *mailto,
228                                          GPtrArray      *attach_files);
229
230 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
231                                          FolderItem     *item);
232
233 Compose *compose_new_with_list          (PrefsAccount   *account,
234                                          GList          *listAddress);
235
236 void compose_reply_mode                 (ComposeMode     mode, 
237                                          GSList         *msginfo_list, 
238                                          gchar          *body);
239 /* remove */
240 void compose_followup_and_reply_to      (MsgInfo        *msginfo,
241                                          gboolean        quote,
242                                          gboolean        to_all,
243                                          gboolean        to_sender,
244                                          const gchar    *body);
245 void compose_reply                      (MsgInfo        *msginfo,
246                                          gboolean        quote,
247                                          gboolean        to_all,
248                                          gboolean        to_ml,
249                                          gboolean        to_sender,
250                                          const gchar    *body);
251 Compose *compose_forward                (PrefsAccount *account,
252                                          MsgInfo        *msginfo,
253                                          gboolean        as_attach,
254                                          const gchar    *body,
255                                          gboolean        no_extedit);
256 Compose *compose_forward_multiple       (PrefsAccount   *account, 
257                                          GSList         *msginfo_list);
258 /* remove end */
259
260 Compose *compose_redirect               (PrefsAccount   *account,
261                                          MsgInfo        *msginfo);
262 void compose_reedit                     (MsgInfo        *msginfo);
263
264 GList *compose_get_compose_list         (void);
265
266 void compose_entry_append               (Compose          *compose,
267                                          const gchar      *address,
268                                          ComposeEntryType  type);
269
270 void compose_entry_mark_default_to      (Compose          *compose,
271                                          const gchar      *address);
272
273 gint compose_send                       (Compose          *compose);
274
275 void compose_update_actions_menu        (Compose        *compose);
276 void compose_update_privacy_systems_menu(Compose        *compose);
277 void compose_reflect_prefs_all                  (void);
278 void compose_reflect_prefs_pixmap_theme (void);
279
280 void compose_destroy_all                (void);
281 void compose_draft                      (gpointer data);
282 void compose_toolbar_cb                 (gint           action, 
283                                          gpointer       data);
284
285 #endif /* __COMPOSE_H__ */