2005-09-27 [colin] 1.9.14cvs56
[claws.git] / src / compose.h
index 22fb594de20f1a951e781a5d298b68009df6401c..d4f87e4b18b533a7d92f155ad6439b67697cf5fb 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-2005 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
  *
  * 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef __COMPOSE_H__
 #define __COMPOSE_H__
 
+typedef struct _Compose                Compose;
+typedef struct _AttachInfo     AttachInfo;
+
 #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"
+#include "undo.h"
+#include "toolbar.h"
+#include "messageview.h"
+#include "codeconv.h"
 
-#ifdef USE_PSPELL
-#include "gtkspell.h"
+#ifdef USE_ASPELL
+#include "gtkaspell.h"
 #endif
 
 typedef enum
@@ -58,9 +62,14 @@ 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;
 
@@ -69,28 +78,22 @@ typedef struct {
        Compose *compose;
        GtkWidget *combo;
        GtkWidget *entry;
-} compose_headerentry;
+} ComposeHeaderEntry;
 
 struct _Compose
 {
+       /* start with window widget don`t change order */
        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;
-
+       Toolbar *toolbar;
+       
        GtkWidget *vbox2;
 
+       /* Header */
        GtkWidget *table_vbox;
        GtkWidget *table;
 /*
@@ -112,9 +115,15 @@ struct _Compose
 */
        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;
@@ -133,56 +142,82 @@ struct _Compose
 
        MsgInfo *targetinfo;
        MsgInfo *replyinfo;
+       MsgInfo *autosaved_draft;
+       MsgInfo *fwdinfo;
 
        GtkWidget *header_table;
-       GSList *header_list;
-       guint header_nextrow;
-       compose_headerentry *header_last;
+       GSList    *header_list;
+       guint      header_nextrow;
+       ComposeHeaderEntry *header_last;
 
        gchar   *replyto;
        gchar   *cc;
        gchar   *bcc;
        gchar   *newsgroups;
        gchar   *followup_to;
-       gchar   *mailinglist;
+
+       gchar   *ml_post;
 
        gchar   *inreplyto;
        gchar   *references;
        gchar   *msgid;
        gchar   *boundary;
 
+       gboolean autowrap;
+
        gboolean use_to;
        gboolean use_cc;
        gboolean use_bcc;
        gboolean use_replyto;
+       gboolean use_newsgroups;
        gboolean use_followupto;
-       gboolean use_mailinglist;
        gboolean use_attach;
 
+       CharSet out_encoding;
+
        /* privacy settings */
        gboolean use_signing;
        gboolean use_encryption;
+       gchar *privacy_system;
 
        gboolean modified;
 
+       gboolean sending;
+       
        gboolean return_receipt;
 
        GSList *to_list;
        GSList *newsgroup_list;
 
        PrefsAccount *account;
-       PrefsAccount *orig_account;
+
+       UndoMain *undostruct;
+
+       gchar *sig_str;
 
        /* external editor */
-       gchar *exteditor_file;
-       pid_t  exteditor_pid;
-       gint   exteditor_readdes;
-       gint   exteditor_tag;
-
-#if USE_PSPELL
-        /* Pspell spell checker */
-        GtkPspell *gtkpspell;
+       gchar      *exteditor_file;
+       pid_t       exteditor_pid;
+       GIOChannel *exteditor_ch;
+       gint        exteditor_tag;
+
+#if USE_ASPELL
+        /* GNU/aspell spell checker */
+        GtkAspell *gtkaspell;
 #endif
+
+       /* Priority */
+       gint priority;
+
+       gchar *redirect_filename;
+       
+       gboolean remove_references;
+
+       guint draft_timeout_tag;
+       
+       GtkTextTag *no_wrap_tag;
+       GMutex *mutex;
+       gchar *orig_charset;
 };
 
 struct _AttachInfo
@@ -194,36 +229,68 @@ struct _AttachInfo
        off_t size;
 };
 
-Compose * compose_new          (PrefsAccount   *account);
-
-Compose * compose_new_with_recipient   (PrefsAccount   *account,
-                                        const gchar    *to);
+/*#warning FIXME_GTK2 */
+/* attache_files will be locale encode */
+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_reflect_prefs_all (void);
+Compose *compose_new_with_list         (PrefsAccount   *account,
+                                        GList          *listAddress);
+
+void compose_reply_mode                        (ComposeMode     mode, 
+                                        GSList         *msginfo_list, 
+                                        gchar          *body);
+/* remove */
+void compose_followup_and_reply_to     (MsgInfo        *msginfo,
+                                        gboolean        quote,
+                                        gboolean        to_all,
+                                        gboolean        to_sender,
+                                        const gchar    *body);
+void compose_reply                     (MsgInfo        *msginfo,
+                                        gboolean        quote,
+                                        gboolean        to_all,
+                                        gboolean        to_ml,
+                                        gboolean        to_sender,
+                                        const gchar    *body);
+Compose *compose_forward               (PrefsAccount *account,
+                                        MsgInfo        *msginfo,
+                                        gboolean        as_attach,
+                                        const gchar    *body,
+                                        gboolean        no_extedit);
+Compose *compose_forward_multiple      (PrefsAccount   *account, 
+                                        GSList         *msginfo_list);
+/* remove end */
+
+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_mark_default_to     (Compose          *compose,
+                                        const gchar      *address);
+
+gint compose_send                      (Compose          *compose);
+
+void compose_update_actions_menu       (Compose        *compose);
+void compose_update_privacy_systems_menu(Compose       *compose);
+void compose_reflect_prefs_all                 (void);
+void compose_reflect_prefs_pixmap_theme        (void);
+
+void compose_destroy_all                (void);
+void compose_draft                     (gpointer data);
+void compose_toolbar_cb                        (gint           action, 
+                                        gpointer       data);
+void compose_reply_from_messageview    (MessageView    *msgview, 
+                                        GSList         *msginfo_list, 
+                                        guint           action);
 
 #endif /* __COMPOSE_H__ */