2001-04-19 14:21:46 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2002-02-11 14:43:37 +01:00
|
|
|
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
|
2001-04-19 14:21:46 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COMPOSE_H__
|
|
|
|
#define __COMPOSE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <gtk/gtkwidget.h>
|
|
|
|
#include <gtk/gtkitemfactory.h>
|
|
|
|
|
|
|
|
typedef struct _Compose Compose;
|
|
|
|
typedef struct _AttachInfo AttachInfo;
|
|
|
|
|
|
|
|
#include "procmsg.h"
|
|
|
|
#include "procmime.h"
|
|
|
|
#include "addressbook.h"
|
|
|
|
#include "prefs_account.h"
|
2001-11-23 20:43:29 +01:00
|
|
|
#include "undo.h"
|
2002-11-28 23:50:47 +01:00
|
|
|
#include "toolbar.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-08-28 15:04:15 +02:00
|
|
|
#ifdef USE_ASPELL
|
|
|
|
#include "gtkaspell.h"
|
2001-09-18 18:43:10 +02:00
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
COMPOSE_TO,
|
|
|
|
COMPOSE_CC,
|
2001-05-18 05:39:01 +02:00
|
|
|
COMPOSE_BCC,
|
2001-09-18 13:24:00 +02:00
|
|
|
COMPOSE_REPLYTO,
|
|
|
|
COMPOSE_NEWSGROUPS,
|
|
|
|
COMPOSE_FOLLOWUPTO
|
2001-04-19 14:21:46 +02:00
|
|
|
} ComposeEntryType;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
COMPOSE_REPLY,
|
|
|
|
COMPOSE_REPLY_WITH_QUOTE,
|
|
|
|
COMPOSE_REPLY_WITHOUT_QUOTE,
|
2001-06-06 15:05:23 +02:00
|
|
|
COMPOSE_REPLY_TO_SENDER,
|
2001-06-18 02:50:21 +02:00
|
|
|
COMPOSE_FOLLOWUP_AND_REPLY_TO,
|
2001-06-06 15:05:23 +02:00
|
|
|
COMPOSE_REPLY_TO_SENDER_WITH_QUOTE,
|
|
|
|
COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE,
|
2001-04-19 14:21:46 +02:00
|
|
|
COMPOSE_REPLY_TO_ALL,
|
|
|
|
COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
|
|
|
|
COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
|
2002-09-26 12:26:16 +02:00
|
|
|
COMPOSE_REPLY_TO_LIST,
|
|
|
|
COMPOSE_REPLY_TO_LIST_WITH_QUOTE,
|
|
|
|
COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE,
|
2001-04-19 14:21:46 +02:00
|
|
|
COMPOSE_FORWARD,
|
|
|
|
COMPOSE_FORWARD_AS_ATTACH,
|
2001-12-07 20:53:31 +01:00
|
|
|
COMPOSE_FORWARD_INLINE,
|
2001-04-19 14:21:46 +02:00
|
|
|
COMPOSE_NEW,
|
2002-06-22 19:49:39 +02:00
|
|
|
COMPOSE_REDIRECT,
|
2001-08-30 14:59:38 +02:00
|
|
|
COMPOSE_REEDIT
|
2001-09-13 15:38:32 +02:00
|
|
|
} ComposeMode;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-09-18 13:24:00 +02:00
|
|
|
typedef struct {
|
|
|
|
guint headernum;
|
|
|
|
Compose *compose;
|
|
|
|
GtkWidget *combo;
|
|
|
|
GtkWidget *entry;
|
2001-11-20 07:37:29 +01:00
|
|
|
} ComposeHeaderEntry;
|
2001-09-18 13:24:00 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
struct _Compose
|
|
|
|
{
|
2002-11-28 23:50:47 +01:00
|
|
|
/* start with window widget don`t change order */
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *menubar;
|
2002-11-28 23:50:47 +01:00
|
|
|
|
2002-09-22 16:31:45 +02:00
|
|
|
/* Toolbar handlebox */
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *handlebox;
|
2002-11-28 23:50:47 +01:00
|
|
|
Toolbar *toolbar;
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *vbox2;
|
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
/* Header */
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *table_vbox;
|
|
|
|
GtkWidget *table;
|
2001-09-18 13:24:00 +02:00
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *to_hbox;
|
|
|
|
GtkWidget *to_entry;
|
|
|
|
GtkWidget *newsgroups_hbox;
|
|
|
|
GtkWidget *newsgroups_entry;
|
2001-09-18 13:24:00 +02:00
|
|
|
*/
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *subject_entry;
|
2001-09-18 13:24:00 +02:00
|
|
|
/*
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *cc_hbox;
|
|
|
|
GtkWidget *cc_entry;
|
|
|
|
GtkWidget *bcc_hbox;
|
|
|
|
GtkWidget *bcc_entry;
|
|
|
|
GtkWidget *reply_hbox;
|
|
|
|
GtkWidget *reply_entry;
|
|
|
|
GtkWidget *followup_hbox;
|
|
|
|
GtkWidget *followup_entry;
|
2001-09-18 13:24:00 +02:00
|
|
|
*/
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *paned;
|
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
/* Attachments */
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *attach_scrwin;
|
|
|
|
GtkWidget *attach_clist;
|
|
|
|
|
2001-12-03 17:04:12 +01:00
|
|
|
/* Others */
|
|
|
|
GtkWidget *savemsg_checkbtn;
|
|
|
|
GtkWidget *savemsg_entry;
|
|
|
|
|
|
|
|
/* Textedit */
|
2001-04-19 14:21:46 +02:00
|
|
|
GtkWidget *edit_vbox;
|
|
|
|
GtkWidget *ruler_hbox;
|
|
|
|
GtkWidget *ruler;
|
|
|
|
GtkWidget *scrolledwin;
|
|
|
|
GtkWidget *text;
|
|
|
|
|
|
|
|
GtkWidget *focused_editable;
|
|
|
|
|
|
|
|
GtkWidget *popupmenu;
|
|
|
|
|
|
|
|
GtkItemFactory *popupfactory;
|
|
|
|
|
2001-11-07 11:29:45 +01:00
|
|
|
GtkWidget *tmpl_menu;
|
|
|
|
|
2001-09-13 15:38:32 +02:00
|
|
|
ComposeMode mode;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
MsgInfo *targetinfo;
|
2001-08-22 16:36:10 +02:00
|
|
|
MsgInfo *replyinfo;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-09-18 13:24:00 +02:00
|
|
|
GtkWidget *header_table;
|
2001-11-20 07:37:29 +01:00
|
|
|
GSList *header_list;
|
|
|
|
guint header_nextrow;
|
|
|
|
ComposeHeaderEntry *header_last;
|
2001-09-18 13:24:00 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *replyto;
|
|
|
|
gchar *cc;
|
|
|
|
gchar *bcc;
|
|
|
|
gchar *newsgroups;
|
|
|
|
gchar *followup_to;
|
2002-09-26 12:26:16 +02:00
|
|
|
|
|
|
|
gchar *ml_post;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
gchar *inreplyto;
|
|
|
|
gchar *references;
|
|
|
|
gchar *msgid;
|
|
|
|
gchar *boundary;
|
|
|
|
|
|
|
|
gboolean use_to;
|
|
|
|
gboolean use_cc;
|
|
|
|
gboolean use_bcc;
|
|
|
|
gboolean use_replyto;
|
2002-10-04 17:35:49 +02:00
|
|
|
gboolean use_newsgroups;
|
2001-04-19 14:21:46 +02:00
|
|
|
gboolean use_followupto;
|
|
|
|
gboolean use_attach;
|
|
|
|
|
|
|
|
/* privacy settings */
|
|
|
|
gboolean use_signing;
|
|
|
|
gboolean use_encryption;
|
2002-11-06 11:30:41 +01:00
|
|
|
|
2002-11-08 12:51:15 +01:00
|
|
|
gint gnupg_mode;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
gboolean modified;
|
|
|
|
|
2002-09-24 14:10:26 +02:00
|
|
|
gboolean sending;
|
|
|
|
|
2001-05-02 16:16:51 +02:00
|
|
|
gboolean return_receipt;
|
2002-06-22 19:49:39 +02:00
|
|
|
gboolean paste_as_quotation;
|
2001-05-02 16:16:51 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
GSList *to_list;
|
|
|
|
GSList *newsgroup_list;
|
|
|
|
|
|
|
|
PrefsAccount *account;
|
|
|
|
|
2001-12-18 08:36:38 +01:00
|
|
|
UndoMain *undostruct;
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
/* external editor */
|
|
|
|
gchar *exteditor_file;
|
|
|
|
pid_t exteditor_pid;
|
|
|
|
gint exteditor_readdes;
|
|
|
|
gint exteditor_tag;
|
2001-09-18 18:43:10 +02:00
|
|
|
|
2002-08-28 15:04:15 +02:00
|
|
|
#if USE_ASPELL
|
|
|
|
/* GNU/aspell spell checker */
|
|
|
|
GtkAspell *gtkaspell;
|
2001-09-18 18:43:10 +02:00
|
|
|
#endif
|
2001-11-14 08:37:32 +01:00
|
|
|
|
2002-05-12 17:47:48 +02:00
|
|
|
/* Priority */
|
|
|
|
gint priority;
|
|
|
|
|
2002-05-23 10:18:33 +02:00
|
|
|
gchar *redirect_filename;
|
2001-04-19 14:21:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _AttachInfo
|
|
|
|
{
|
|
|
|
gchar *file;
|
|
|
|
gchar *content_type;
|
|
|
|
EncodingType encoding;
|
|
|
|
gchar *name;
|
|
|
|
off_t size;
|
|
|
|
};
|
|
|
|
|
2002-07-30 11:49:51 +02:00
|
|
|
Compose *compose_new (PrefsAccount *account,
|
|
|
|
const gchar *mailto,
|
|
|
|
GPtrArray *attach_files);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2001-11-20 07:37:29 +01:00
|
|
|
Compose *compose_new_with_folderitem (PrefsAccount *account,
|
2001-07-24 22:30:26 +02:00
|
|
|
FolderItem *item);
|
|
|
|
|
2001-11-20 07:37:29 +01:00
|
|
|
void compose_followup_and_reply_to (MsgInfo *msginfo,
|
|
|
|
gboolean quote,
|
|
|
|
gboolean to_all,
|
2002-02-07 10:26:39 +01:00
|
|
|
gboolean ignore_replyto,
|
2002-02-11 14:43:37 +01:00
|
|
|
const gchar *body);
|
2001-11-20 07:37:29 +01:00
|
|
|
void compose_reply (MsgInfo *msginfo,
|
|
|
|
gboolean quote,
|
|
|
|
gboolean to_all,
|
2002-09-26 12:26:16 +02:00
|
|
|
gboolean to_ml,
|
2002-02-07 10:26:39 +01:00
|
|
|
gboolean ignore_replyto,
|
2002-02-11 14:43:37 +01:00
|
|
|
const gchar *body);
|
2001-11-20 07:37:29 +01:00
|
|
|
Compose *compose_forward (PrefsAccount *account,
|
|
|
|
MsgInfo *msginfo,
|
2002-02-07 10:26:39 +01:00
|
|
|
gboolean as_attach,
|
2002-02-11 14:43:37 +01:00
|
|
|
const gchar *body);
|
2001-11-20 07:37:29 +01:00
|
|
|
Compose *compose_forward_multiple (PrefsAccount *account,
|
|
|
|
GSList *msginfo_list);
|
2002-05-23 10:18:33 +02:00
|
|
|
Compose *compose_redirect (PrefsAccount *account,
|
2001-11-20 07:37:29 +01:00
|
|
|
MsgInfo *msginfo);
|
|
|
|
void compose_reedit (MsgInfo *msginfo);
|
|
|
|
|
|
|
|
GList *compose_get_compose_list (void);
|
|
|
|
|
|
|
|
void compose_entry_append (Compose *compose,
|
|
|
|
const gchar *address,
|
|
|
|
ComposeEntryType type);
|
|
|
|
|
2002-06-23 01:37:14 +02:00
|
|
|
void compose_entry_select (Compose *compose,
|
|
|
|
const gchar *address);
|
|
|
|
|
2001-11-20 07:37:29 +01:00
|
|
|
gint compose_send (Compose *compose);
|
|
|
|
|
2002-02-11 20:46:04 +01:00
|
|
|
void compose_reflect_prefs_all (void);
|
|
|
|
void compose_reflect_prefs_pixmap_theme (void);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-09-22 16:31:45 +02:00
|
|
|
void compose_destroy_all (void);
|
2002-11-05 16:55:32 +01:00
|
|
|
void compose_draft (gpointer data);
|
2002-09-22 16:31:45 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#endif /* __COMPOSE_H__ */
|