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