2005-12-19 [cleroy] 1.9.100cvs95
[claws.git] / src / compose.h
index a85dfa988ee53119d828fd59b69ce6006f70b8a6..67913c074aec47a680442573ae82b1884985ab89 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 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
@@ -14,7 +14,7 @@
  *
  * 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__
@@ -33,6 +33,8 @@ typedef struct _AttachInfo    AttachInfo;
 #include "prefs_account.h"
 #include "undo.h"
 #include "toolbar.h"
+#include "messageview.h"
+#include "codeconv.h"
 
 #ifdef USE_ASPELL
 #include "gtkaspell.h"
@@ -161,6 +163,8 @@ struct _Compose
        gchar   *msgid;
        gchar   *boundary;
 
+       gboolean autowrap;
+
        gboolean use_to;
        gboolean use_cc;
        gboolean use_bcc;
@@ -169,11 +173,12 @@ struct _Compose
        gboolean use_followupto;
        gboolean use_attach;
 
+       CharSet out_encoding;
+
        /* privacy settings */
        gboolean use_signing;
        gboolean use_encryption;
-       
-       gint gnupg_mode;
+       gchar *privacy_system;
 
        gboolean modified;
 
@@ -191,10 +196,10 @@ struct _Compose
        gchar *sig_str;
 
        /* external editor */
-       gchar *exteditor_file;
-       pid_t  exteditor_pid;
-       gint   exteditor_readdes;
-       gint   exteditor_tag;
+       gchar      *exteditor_file;
+       pid_t       exteditor_pid;
+       GIOChannel *exteditor_ch;
+       gint        exteditor_tag;
 
 #if USE_ASPELL
         /* GNU/aspell spell checker */
@@ -207,6 +212,14 @@ struct _Compose
        gchar *redirect_filename;
        
        gboolean remove_references;
+
+       guint draft_timeout_tag;
+       
+       GtkTextTag *no_wrap_tag;
+       GtkTextTag *no_join_tag;
+       GMutex *mutex;
+       gchar *orig_charset;
+       gint set_cursor_pos;
 };
 
 struct _AttachInfo
@@ -227,16 +240,19 @@ Compose *compose_new                      (PrefsAccount   *account,
 Compose *compose_new_with_folderitem   (PrefsAccount   *account,
                                         FolderItem     *item);
 
-void compose_reply_mode                        (ComposeMode     mode, 
+Compose *compose_new_with_list         (PrefsAccount   *account,
+                                        GList          *listAddress);
+
+Compose *compose_reply_mode            (ComposeMode     mode, 
                                         GSList         *msginfo_list, 
                                         gchar          *body);
 /* remove */
-void compose_followup_and_reply_to     (MsgInfo        *msginfo,
+Compose *compose_followup_and_reply_to (MsgInfo        *msginfo,
                                         gboolean        quote,
                                         gboolean        to_all,
                                         gboolean        to_sender,
                                         const gchar    *body);
-void compose_reply                     (MsgInfo        *msginfo,
+Compose *compose_reply                 (MsgInfo        *msginfo,
                                         gboolean        quote,
                                         gboolean        to_all,
                                         gboolean        to_ml,
@@ -245,7 +261,8 @@ void compose_reply                  (MsgInfo        *msginfo,
 Compose *compose_forward               (PrefsAccount *account,
                                         MsgInfo        *msginfo,
                                         gboolean        as_attach,
-                                        const gchar    *body);
+                                        const gchar    *body,
+                                        gboolean        no_extedit);
 Compose *compose_forward_multiple      (PrefsAccount   *account, 
                                         GSList         *msginfo_list);
 /* remove end */
@@ -260,11 +277,13 @@ void compose_entry_append         (Compose          *compose,
                                         const gchar      *address,
                                         ComposeEntryType  type);
 
-void compose_entry_select              (Compose          *compose,
+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);
 
@@ -272,5 +291,9 @@ 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);
+void compose_action_cb                 (void           *data);
 
 #endif /* __COMPOSE_H__ */