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