sync with 0.8.5
[claws.git] / src / compose.h
index 89199b959034a6015b903ecc2b9a59a519953313..b1c289823bffe0b66a767dc58b02865ec326b370 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2001 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2002 Hiroyuki Yamamoto
  *
  * 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
 #include <gtk/gtkitemfactory.h>
 
 typedef struct _Compose                Compose;
+typedef struct _ComposeToolbar  ComposeToolbar;
 typedef struct _AttachInfo     AttachInfo;
 
 #include "procmsg.h"
 #include "procmime.h"
 #include "addressbook.h"
 #include "prefs_account.h"
+#include "undo.h"
+
+#ifdef USE_ASPELL
+#include "gtkaspell.h"
+#endif
 
 typedef enum
 {
        COMPOSE_TO,
        COMPOSE_CC,
        COMPOSE_BCC,
-       COMPOSE_NEWSGROUPS
+       COMPOSE_REPLYTO,
+       COMPOSE_NEWSGROUPS,
+       COMPOSE_FOLLOWUPTO
 } ComposeEntryType;
 
 typedef enum
@@ -52,39 +60,47 @@ typedef enum
        COMPOSE_REPLY_TO_ALL,
        COMPOSE_REPLY_TO_ALL_WITH_QUOTE,
        COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
+       COMPOSE_REPLY_TO_LIST,
+       COMPOSE_REPLY_TO_LIST_WITH_QUOTE,
+       COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE,
        COMPOSE_FORWARD,
        COMPOSE_FORWARD_AS_ATTACH,
+       COMPOSE_FORWARD_INLINE,
        COMPOSE_NEW,
+       COMPOSE_REDIRECT,
        COMPOSE_REEDIT
 } ComposeMode;
 
+typedef struct {
+       guint headernum;
+       Compose *compose;
+       GtkWidget *combo;
+       GtkWidget *entry;
+} ComposeHeaderEntry;
+
 struct _Compose
 {
        GtkWidget *window;
        GtkWidget *vbox;
        GtkWidget *menubar;
-
+       
+       /* Toolbar handlebox */
        GtkWidget *handlebox;
-       GtkWidget *toolbar;
-       GtkWidget *send_btn;
-       GtkWidget *sendl_btn;
-       GtkWidget *draft_btn;
-       GtkWidget *insert_btn;
-       GtkWidget *attach_btn;
-       GtkWidget *sig_btn;
-       GtkWidget *exteditor_btn;
-       GtkWidget *linewrap_btn;
-       GtkWidget *addrbook_btn;
+       ComposeToolbar *toolbar;
 
        GtkWidget *vbox2;
 
+       /* Header */
        GtkWidget *table_vbox;
        GtkWidget *table;
+/*
        GtkWidget *to_hbox;
        GtkWidget *to_entry;
        GtkWidget *newsgroups_hbox;
        GtkWidget *newsgroups_entry;
+*/
        GtkWidget *subject_entry;
+/*
        GtkWidget *cc_hbox;
        GtkWidget *cc_entry;
        GtkWidget *bcc_hbox;
@@ -93,12 +109,18 @@ struct _Compose
        GtkWidget *reply_entry;
        GtkWidget *followup_hbox;
        GtkWidget *followup_entry;
-
+*/
        GtkWidget *paned;
 
+       /* Attachments */
        GtkWidget *attach_scrwin;
        GtkWidget *attach_clist;
 
+       /* Others */
+       GtkWidget *savemsg_checkbtn;
+       GtkWidget *savemsg_entry;
+
+       /* Textedit */
        GtkWidget *edit_vbox;
        GtkWidget *ruler_hbox;
        GtkWidget *ruler;
@@ -111,17 +133,26 @@ struct _Compose
 
        GtkItemFactory *popupfactory;
 
+       GtkWidget *tmpl_menu;
+
        ComposeMode mode;
 
        MsgInfo *targetinfo;
        MsgInfo *replyinfo;
 
+       GtkWidget *header_table;
+       GSList    *header_list;
+       guint      header_nextrow;
+       ComposeHeaderEntry *header_last;
+
        gchar   *replyto;
        gchar   *cc;
        gchar   *bcc;
        gchar   *newsgroups;
        gchar   *followup_to;
 
+       gchar   *ml_post;
+
        gchar   *inreplyto;
        gchar   *references;
        gchar   *msgid;
@@ -131,6 +162,7 @@ struct _Compose
        gboolean use_cc;
        gboolean use_bcc;
        gboolean use_replyto;
+       gboolean use_newsgroups;
        gboolean use_followupto;
        gboolean use_attach;
 
@@ -140,19 +172,51 @@ struct _Compose
 
        gboolean modified;
 
+       gboolean sending;
+       
        gboolean return_receipt;
+       gboolean paste_as_quotation;
 
        GSList *to_list;
        GSList *newsgroup_list;
 
        PrefsAccount *account;
-       PrefsAccount *orig_account;
+
+       UndoMain *undostruct;
 
        /* external editor */
        gchar *exteditor_file;
        pid_t  exteditor_pid;
        gint   exteditor_readdes;
        gint   exteditor_tag;
+
+#if USE_ASPELL
+        /* GNU/aspell spell checker */
+        GtkAspell *gtkaspell;
+#endif
+
+       /* Priority */
+       gint priority;
+
+       gchar *redirect_filename;
+};
+
+struct _ComposeToolbar {
+
+       GtkWidget *toolbar;
+
+       GtkWidget *send_btn;
+       GtkWidget *sendl_btn;
+       GtkWidget *draft_btn;
+       GtkWidget *insert_btn;
+       GtkWidget *attach_btn;
+       GtkWidget *sig_btn;
+       GtkWidget *exteditor_btn;
+       GtkWidget *linewrap_btn;
+       GtkWidget *addrbook_btn;
+
+       GSList    *t_action_list;
+       GSList    *t_item_list;
 };
 
 struct _AttachInfo
@@ -164,35 +228,48 @@ struct _AttachInfo
        off_t size;
 };
 
-Compose * compose_new          (PrefsAccount   *account);
-
-Compose * compose_new_with_recipient   (PrefsAccount   *account,
-                                        const gchar    *to);
+Compose *compose_new                   (PrefsAccount   *account,
+                                        const gchar    *mailto,
+                                        GPtrArray      *attach_files);
 
-Compose * compose_new_with_folderitem  (PrefsAccount   *account,
+Compose *compose_new_with_folderitem   (PrefsAccount   *account,
                                         FolderItem     *item);
 
-void compose_followup_and_reply_to (MsgInfo    *msginfo,
-                                   gboolean     quote,
-                                   gboolean     to_all,
-                                   gboolean     ignore_replyto);
-void compose_reply             (MsgInfo        *msginfo,
-                                gboolean        quote,
-                                gboolean        to_all,
-                                gboolean        ignore_replyto);
-Compose * compose_forward      (PrefsAccount *account,
-                                MsgInfo        *msginfo,
-                                gboolean        as_attach);
-Compose * compose_forward_multiple(PrefsAccount * account, 
-                         GSList *msginfo_list);
-                         
-void compose_reedit            (MsgInfo        *msginfo);
-
-GList *compose_get_compose_list        (void);
-
-void compose_entry_append      (Compose          *compose,
-                                const gchar      *address,
-                                ComposeEntryType  type);
-gint compose_send(Compose *compose);
+void compose_followup_and_reply_to     (MsgInfo        *msginfo,
+                                        gboolean        quote,
+                                        gboolean        to_all,
+                                        gboolean        ignore_replyto,
+                                        const gchar    *body);
+void compose_reply                     (MsgInfo        *msginfo,
+                                        gboolean        quote,
+                                        gboolean        to_all,
+                                        gboolean        to_ml,
+                                        gboolean        ignore_replyto,
+                                        const gchar    *body);
+Compose *compose_forward               (PrefsAccount *account,
+                                        MsgInfo        *msginfo,
+                                        gboolean        as_attach,
+                                        const gchar    *body);
+Compose *compose_forward_multiple      (PrefsAccount   *account, 
+                                        GSList         *msginfo_list);
+Compose *compose_redirect              (PrefsAccount   *account,
+                                        MsgInfo        *msginfo);
+void compose_reedit                    (MsgInfo        *msginfo);
+
+GList *compose_get_compose_list                (void);
+
+void compose_entry_append              (Compose          *compose,
+                                        const gchar      *address,
+                                        ComposeEntryType  type);
+
+void compose_entry_select              (Compose          *compose,
+                                        const gchar      *address);
+
+gint compose_send                      (Compose          *compose);
+
+void compose_reflect_prefs_all                 (void);
+void compose_reflect_prefs_pixmap_theme        (void);
+
+void compose_destroy_all                (void);
 
 #endif /* __COMPOSE_H__ */