remove 'Compiled-plugins' section from about.c; slight change to description text...
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 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 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25 #include <gtk/gtkitemfactory.h>
26
27 typedef struct _Compose         Compose;
28 typedef struct _AttachInfo      AttachInfo;
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 use_to;
165         gboolean use_cc;
166         gboolean use_bcc;
167         gboolean use_replyto;
168         gboolean use_newsgroups;
169         gboolean use_followupto;
170         gboolean use_attach;
171
172         /* privacy settings */
173         gboolean use_signing;
174         gboolean use_encryption;
175         
176         gint gnupg_mode;
177
178         gboolean modified;
179
180         gboolean sending;
181         
182         gboolean return_receipt;
183         gboolean paste_as_quotation;
184
185         GSList *to_list;
186         GSList *newsgroup_list;
187
188         PrefsAccount *account;
189
190         UndoMain *undostruct;
191
192         /* external editor */
193         gchar *exteditor_file;
194         pid_t  exteditor_pid;
195         gint   exteditor_readdes;
196         gint   exteditor_tag;
197
198 #if USE_ASPELL
199         /* GNU/aspell spell checker */
200         GtkAspell *gtkaspell;
201 #endif
202
203         /* Priority */
204         gint priority;
205
206         gchar *redirect_filename;
207 };
208
209 struct _AttachInfo
210 {
211         gchar *file;
212         gchar *content_type;
213         EncodingType encoding;
214         gchar *name;
215         off_t size;
216 };
217
218 Compose *compose_new                    (PrefsAccount   *account,
219                                          const gchar    *mailto,
220                                          GPtrArray      *attach_files);
221
222 Compose *compose_new_with_folderitem    (PrefsAccount   *account,
223                                          FolderItem     *item);
224
225 void compose_reply_mode                 (ComposeMode     mode, 
226                                          GSList         *msginfo_list, 
227                                          gchar          *body);
228 /* remove */
229 void compose_followup_and_reply_to      (MsgInfo        *msginfo,
230                                          gboolean        quote,
231                                          gboolean        to_all,
232                                          gboolean        to_sender,
233                                          const gchar    *body);
234 void compose_reply                      (MsgInfo        *msginfo,
235                                          gboolean        quote,
236                                          gboolean        to_all,
237                                          gboolean        to_ml,
238                                          gboolean        to_sender,
239                                          const gchar    *body);
240 Compose *compose_forward                (PrefsAccount *account,
241                                          MsgInfo        *msginfo,
242                                          gboolean        as_attach,
243                                          const gchar    *body);
244 Compose *compose_forward_multiple       (PrefsAccount   *account, 
245                                          GSList         *msginfo_list);
246 /* remove end */
247
248 Compose *compose_redirect               (PrefsAccount   *account,
249                                          MsgInfo        *msginfo);
250 void compose_reedit                     (MsgInfo        *msginfo);
251
252 GList *compose_get_compose_list         (void);
253
254 void compose_entry_append               (Compose          *compose,
255                                          const gchar      *address,
256                                          ComposeEntryType  type);
257
258 void compose_entry_select               (Compose          *compose,
259                                          const gchar      *address);
260
261 gint compose_send                       (Compose          *compose);
262
263 void compose_reflect_prefs_all                  (void);
264 void compose_reflect_prefs_pixmap_theme (void);
265
266 void compose_destroy_all                (void);
267 void compose_draft                      (gpointer data);
268 void compose_toolbar_cb                 (gint           action, 
269                                          gpointer       data);
270
271 #endif /* __COMPOSE_H__ */