keep attachement when forwarding or reediting mails
[claws.git] / src / compose.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 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
35 typedef enum
36 {
37         COMPOSE_MAIL,
38         COMPOSE_NEWS
39 } ComposeMode;
40
41 typedef enum
42 {
43         COMPOSE_TO,
44         COMPOSE_CC,
45         COMPOSE_BCC,
46         COMPOSE_NEWSGROUPS
47 } ComposeEntryType;
48
49 typedef enum
50 {
51         COMPOSE_REPLY,
52         COMPOSE_REPLY_WITH_QUOTE,
53         COMPOSE_REPLY_WITHOUT_QUOTE,
54         COMPOSE_REPLY_TO_ALL,
55         COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
56         COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
57         COMPOSE_REPLY_TO_AUTHOR,
58         COMPOSE_REPLY_TO_AUTHOR_WITH_QUOTE,
59         COMPOSE_REPLY_TO_AUTHOR_WITHOUT_QUOTE,
60         COMPOSE_FORWARD,
61         COMPOSE_FORWARD_AS_ATTACH,
62         COMPOSE_NEW,
63         COMPOSE_REEDIT_DRAFT
64 } ComposeReplyMode;
65
66 struct _Compose
67 {
68         GtkWidget *window;
69         GtkWidget *vbox;
70         GtkWidget *menubar;
71
72         GtkWidget *handlebox;
73         GtkWidget *toolbar;
74         GtkWidget *send_btn;
75         GtkWidget *sendl_btn;
76         GtkWidget *draft_btn;
77         GtkWidget *insert_btn;
78         GtkWidget *attach_btn;
79         GtkWidget *sig_btn;
80         GtkWidget *exteditor_btn;
81         GtkWidget *linewrap_btn;
82         GtkWidget *addrbook_btn;
83
84         GtkWidget *vbox2;
85
86         GtkWidget *table_vbox;
87         GtkWidget *table;
88         GtkWidget *to_hbox;
89         GtkWidget *to_entry;
90         GtkWidget *newsgroups_hbox;
91         GtkWidget *newsgroups_entry;
92         GtkWidget *subject_entry;
93         GtkWidget *cc_hbox;
94         GtkWidget *cc_entry;
95         GtkWidget *bcc_hbox;
96         GtkWidget *bcc_entry;
97         GtkWidget *reply_hbox;
98         GtkWidget *reply_entry;
99         GtkWidget *followup_hbox;
100         GtkWidget *followup_entry;
101
102         GtkWidget *paned;
103
104         GtkWidget *attach_scrwin;
105         GtkWidget *attach_clist;
106
107         GtkWidget *edit_vbox;
108         GtkWidget *ruler_hbox;
109         GtkWidget *ruler;
110         GtkWidget *scrolledwin;
111         GtkWidget *text;
112
113         GtkWidget *focused_editable;
114
115         GtkWidget *popupmenu;
116
117         GtkItemFactory *popupfactory;
118
119         ComposeReplyMode mode;
120
121         MsgInfo *targetinfo;
122
123         gchar   *replyto;
124         gchar   *cc;
125         gchar   *bcc;
126         gchar   *newsgroups;
127         gchar   *followup_to;
128
129         gchar   *inreplyto;
130         gchar   *references;
131         gchar   *msgid;
132         gchar   *boundary;
133
134         gboolean use_to;
135         gboolean use_cc;
136         gboolean use_bcc;
137         gboolean use_replyto;
138         gboolean use_followupto;
139         gboolean use_attach;
140
141         /* privacy settings */
142         gboolean use_signing;
143         gboolean use_encryption;
144
145         gboolean modified;
146
147         gboolean return_receipt;
148
149         GSList *to_list;
150         GSList *newsgroup_list;
151
152         PrefsAccount *account;
153         PrefsAccount *orig_account;
154
155         /* external editor */
156         gchar *exteditor_file;
157         pid_t  exteditor_pid;
158         gint   exteditor_readdes;
159         gint   exteditor_tag;
160 };
161
162 struct _AttachInfo
163 {
164         gchar *file;
165         gchar *content_type;
166         EncodingType encoding;
167         gchar *name;
168         off_t size;
169 };
170
171 Compose * compose_new           (PrefsAccount   *account);
172
173 Compose * compose_new_with_recipient    (PrefsAccount   *account,
174                                          const gchar    *to);
175
176 void compose_reply              (MsgInfo        *msginfo,
177                                  gboolean        quote,
178                                  gboolean        to_all,
179                                  gboolean        to_author);
180 Compose * compose_forward       (PrefsAccount *account,
181                                  MsgInfo        *msginfo,
182                                  gboolean        as_attach);
183 void compose_reedit             (MsgInfo        *msginfo);
184
185 GList *compose_get_compose_list (void);
186
187 void compose_entry_append       (Compose          *compose,
188                                  const gchar      *address,
189                                  ComposeEntryType  type);
190 gint compose_send(Compose *compose);
191
192 #endif /* __COMPOSE_H__ */