2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2021 the Claws Mail team and Hiroyuki Yamamoto
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 typedef struct _Compose Compose
;
24 typedef struct _AttachInfo AttachInfo
;
31 #include "prefs_account.h"
36 #include "viewtypes.h"
40 #include "gtkaspell.h"
43 #define COMPOSE_CHECK_BEFORE_SEND_HOOKLIST "compose_check_before_send"
44 #define COMPOSE_CREATED_HOOKLIST "compose_created"
60 COMPOSE_REPLY_WITH_QUOTE
,
61 COMPOSE_REPLY_WITHOUT_QUOTE
,
62 COMPOSE_REPLY_TO_SENDER
,
63 COMPOSE_REPLY_TO_ADDRESS
,
64 COMPOSE_FOLLOWUP_AND_REPLY_TO
,
65 COMPOSE_REPLY_TO_SENDER_WITH_QUOTE
,
66 COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE
,
68 COMPOSE_REPLY_TO_ALL_WITH_QUOTE
,
69 COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE
,
70 COMPOSE_REPLY_TO_LIST
,
71 COMPOSE_REPLY_TO_LIST_WITH_QUOTE
,
72 COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE
,
74 COMPOSE_FORWARD_AS_ATTACH
,
75 COMPOSE_FORWARD_INLINE
,
83 COMPOSE_QUEUE_SUCCESS
= 0,
84 COMPOSE_QUEUE_ERROR_NO_MSG
= -1,
85 COMPOSE_QUEUE_ERROR_WITH_ERRNO
= -2,
86 COMPOSE_QUEUE_ERROR_SIGNING_FAILED
= -3,
87 COMPOSE_QUEUE_ERROR_ENCRYPT_FAILED
= -4,
88 COMPOSE_QUEUE_ERROR_CHAR_CONVERSION
= -5,
89 COMPOSE_QUEUE_ERROR_NO_ENCRYPTION_KEY
= -6,
90 COMPOSE_QUEUE_SIGNING_CANCELLED
= -7
109 ComposePrefType type
;
110 } ComposeHeaderEntry
;
114 /* start with window widget don`t change order */
119 /* Toolbar handlebox */
120 GtkWidget
*handlebox
;
126 GtkWidget
*table_vbox
;
128 GtkWidget
*account_combo
;
129 GtkWidget
*subject_entry
;
133 GtkWidget
*attach_scrwin
;
134 GtkWidget
*attach_clist
;
135 GtkWidget
*attach_label
;
138 GtkWidget
*savemsg_checkbtn
;
139 GtkWidget
*savemsg_combo
;
141 /* Headers notebook */
145 GtkWidget
*edit_vbox
;
146 GtkWidget
*ruler_hbox
;
148 GtkWidget
*scrolledwin
;
150 GtkWidget
*from_name
;
152 GtkWidget
*focused_editable
;
154 GtkWidget
*popupmenu
;
156 GtkWidget
*tmpl_menu
;
162 MsgInfo
*autosaved_draft
;
165 GtkWidget
*header_table
;
167 guint header_nextrow
;
168 ComposeHeaderEntry
*header_last
;
170 GHashTable
*email_hashtable
;
191 gboolean use_replyto
;
192 gboolean use_newsgroups
;
193 gboolean use_followupto
;
196 CharSet out_encoding
;
198 /* privacy settings */
199 gboolean use_signing
;
200 gboolean use_encryption
;
201 gchar
*privacy_system
;
208 gboolean return_receipt
;
213 GSList
*newsgroup_list
;
215 PrefsAccount
*account
;
218 UndoMain
*undostruct
;
221 gboolean sig_inserted
;
223 /* external editor */
224 gchar
*exteditor_file
;
227 GtkWidget
*exteditor_socket
;
232 gchar
*redirect_filename
;
234 gboolean remove_references
;
236 gint64 draft_timeout_tag
;
238 GtkTextTag
*no_wrap_tag
;
239 GtkTextTag
*no_join_tag
;
240 GtkTextTag
*signature_tag
;
241 GtkTextTag
*quote0_tag
;
242 GtkTextTag
*quote1_tag
;
243 GtkTextTag
*quote2_tag
;
246 gboolean automatic_break
;
248 gint close_timeout_tag
;
253 gboolean deferred_destroy
;
255 GtkWidget
*first_combo
;
256 GtkWidget
*first_entry
;
258 GtkUIManager
*ui_manager
;
260 gint folder_update_callback_id
;
262 /* GNU/aspell spell checker */
263 GtkAspell
*gtkaspell
;
264 GtkWidget
*aspell_options_menu
;
268 /* List of addressbook ifaces which we disabled, and will
269 * enable in compose_destroy. */
270 GSList
*passworded_ldap_servers
;
278 EncodingType encoding
;
287 COMPOSE_QUIT_EDITING
,
288 COMPOSE_KEEP_EDITING
,
290 COMPOSE_DRAFT_FOR_EXIT
291 } ComposeDraftAction
;
293 /*#warning FIXME_GTK2 */
294 /* attach_files will be locale encode */
295 Compose
*compose_new (PrefsAccount
*account
,
297 GList
*attach_files
);
299 Compose
*compose_new_with_folderitem (PrefsAccount
*account
,
301 const gchar
*mailto
);
303 Compose
*compose_new_with_list (PrefsAccount
*account
,
306 Compose
*compose_forward (PrefsAccount
*account
,
313 Compose
*compose_redirect (PrefsAccount
*account
,
316 Compose
*compose_reedit (MsgInfo
*msginfo
,
319 const GList
*compose_get_compose_list (void);
321 void compose_entry_append (Compose
*compose
,
322 const gchar
*address
,
323 ComposeEntryType type
,
324 ComposePrefType pref_type
);
327 gint
compose_send (Compose
*compose
);
329 void compose_update_actions_menu (Compose
*compose
);
330 void compose_reflect_prefs_all (void);
331 void compose_reflect_prefs_pixmap_theme (void);
333 void compose_destroy_all (void);
334 gboolean
compose_draft (gpointer data
, guint action
);
335 void compose_toolbar_cb (gint action
,
337 void compose_reply_to_address (MessageView
*msgview
,
339 const gchar
*address
);
340 void compose_reply_from_messageview (MessageView
*msgview
,
341 GSList
*msginfo_list
,
343 void compose_action_cb (void *data
);
345 void compose_set_position (Compose
*compose
,
347 gboolean
compose_search_string (Compose
*compose
,
350 gboolean
compose_search_string_backward (Compose
*compose
,
353 ComposeQueueResult
compose_queue (Compose
*compose
,
357 gboolean remove_reedit_target
);
358 gboolean
compose_close (Compose
*compose
);
359 void compose_close_toolbar (Compose
*compose
);
360 void compose_clear_exit_drafts (void);
361 void compose_reopen_exit_drafts (void);
362 void compose_attach_from_list (Compose
*compose
, GList
*file_list
, gboolean free_data
);
363 void compose_check_for_email_account(Compose
*compose
);
365 void compose_use_signing(Compose
*compose
, gboolean use_signing
);
366 void compose_use_encryption(Compose
*compose
, gboolean use_encryption
);
368 #endif /* __COMPOSE_H__ */