Use selected text on reply/forward.
[claws.git] / src / compose.h
index e885eaddc7b6b173e69cfd6a5a814c09b1df4c86..169a3e4a3ce4087a59eea2a3d5e2391814c977c7 100644 (file)
@@ -31,19 +31,20 @@ typedef struct _AttachInfo  AttachInfo;
 #include "procmime.h"
 #include "addressbook.h"
 #include "prefs_account.h"
+#include "undo.h"
 
-typedef enum
-{
-       COMPOSE_MAIL,
-       COMPOSE_NEWS
-} ComposeMode;
+#ifdef USE_PSPELL
+#include "gtkspell.h"
+#endif
 
 typedef enum
 {
        COMPOSE_TO,
        COMPOSE_CC,
        COMPOSE_BCC,
-       COMPOSE_NEWSGROUPS
+       COMPOSE_REPLYTO,
+       COMPOSE_NEWSGROUPS,
+       COMPOSE_FOLLOWUPTO
 } ComposeEntryType;
 
 typedef enum
@@ -60,9 +61,18 @@ typedef enum
        COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE,
        COMPOSE_FORWARD,
        COMPOSE_FORWARD_AS_ATTACH,
+       COMPOSE_FORWARD_INLINE,
+       COMPOSE_BOUNCE,
        COMPOSE_NEW,
-       COMPOSE_REEDIT_DRAFT
-} ComposeReplyMode;
+       COMPOSE_REEDIT
+} ComposeMode;
+
+typedef struct {
+       guint headernum;
+       Compose *compose;
+       GtkWidget *combo;
+       GtkWidget *entry;
+} ComposeHeaderEntry;
 
 struct _Compose
 {
@@ -84,13 +94,17 @@ struct _Compose
 
        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;
@@ -99,12 +113,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;
@@ -117,15 +137,24 @@ struct _Compose
 
        GtkItemFactory *popupfactory;
 
-       ComposeReplyMode mode;
+       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   *mailinglist;
 
        gchar   *inreplyto;
        gchar   *references;
@@ -137,6 +166,7 @@ struct _Compose
        gboolean use_bcc;
        gboolean use_replyto;
        gboolean use_followupto;
+       gboolean use_mailinglist;
        gboolean use_attach;
 
        /* privacy settings */
@@ -153,11 +183,20 @@ struct _Compose
        PrefsAccount *account;
        PrefsAccount *orig_account;
 
+       UndoMain *undostruct;
+
        /* external editor */
        gchar *exteditor_file;
        pid_t  exteditor_pid;
        gint   exteditor_readdes;
        gint   exteditor_tag;
+
+#if USE_PSPELL
+        /* Pspell spell checker */
+        GtkPspell *gtkpspell;
+#endif
+
+       gchar *bounce_filename;
 };
 
 struct _AttachInfo
@@ -169,32 +208,42 @@ struct _AttachInfo
        off_t size;
 };
 
-Compose * compose_new          (PrefsAccount   *account);
+Compose *compose_new                   (PrefsAccount   *account);
 
-Compose * compose_new_with_recipient   (PrefsAccount   *account,
+Compose *compose_new_with_recipient    (PrefsAccount   *account,
                                         const gchar    *to);
 
-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);
+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,
+                                        const gchar    *seltext);
+void compose_reply                     (MsgInfo        *msginfo,
+                                        gboolean        quote,
+                                        gboolean        to_all,
+                                        gboolean        ignore_replyto,
+                                        const gchar    *seltext);
+Compose *compose_forward               (PrefsAccount *account,
+                                        MsgInfo        *msginfo,
+                                        gboolean        as_attach,
+                                        const gchar    *seltext);
+Compose *compose_forward_multiple      (PrefsAccount   *account, 
+                                        GSList         *msginfo_list);
+Compose *compose_bounce                        (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);
+
+gint compose_send                      (Compose          *compose);
+
+void compose_reflect_prefs_all         (void);
 
 #endif /* __COMPOSE_H__ */