2006-02-24 [wwp] 2.0.0cvs81
[claws.git] / src / compose.h
index b678658eb050b3fbc19dfccb944fdb752701a257..0e434501c6b47c527bdade01b25c9c29cb2995a4 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-2006 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,10 @@ typedef struct _AttachInfo   AttachInfo;
 #include "prefs_account.h"
 #include "undo.h"
 #include "toolbar.h"
+#include "messageview.h"
+#include "codeconv.h"
+#include "template.h"
+#include "textview.h"
 
 #ifdef USE_ASPELL
 #include "gtkaspell.h"
@@ -161,6 +165,8 @@ struct _Compose
        gchar   *msgid;
        gchar   *boundary;
 
+       gboolean autowrap;
+
        gboolean use_to;
        gboolean use_cc;
        gboolean use_bcc;
@@ -169,11 +175,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;
 
@@ -181,6 +188,8 @@ struct _Compose
        
        gboolean return_receipt;
 
+       gboolean batch;
+       
        GSList *to_list;
        GSList *newsgroup_list;
 
@@ -191,10 +200,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 */
@@ -209,6 +218,12 @@ struct _Compose
        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
@@ -232,16 +247,16 @@ Compose *compose_new_with_folderitem      (PrefsAccount   *account,
 Compose *compose_new_with_list         (PrefsAccount   *account,
                                         GList          *listAddress);
 
-void compose_reply_mode                        (ComposeMode     mode, 
+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,
@@ -251,17 +266,21 @@ Compose *compose_forward          (PrefsAccount *account,
                                         MsgInfo        *msginfo,
                                         gboolean        as_attach,
                                         const gchar    *body,
-                                        gboolean        no_extedit);
+                                        gboolean        no_extedit,
+                                        gboolean        batch);
 Compose *compose_forward_multiple      (PrefsAccount   *account, 
                                         GSList         *msginfo_list);
 /* remove end */
 
 Compose *compose_redirect              (PrefsAccount   *account,
-                                        MsgInfo        *msginfo);
+                                        MsgInfo        *msginfo,
+                                        gboolean        batch);
 void compose_reedit                    (MsgInfo        *msginfo);
 
 GList *compose_get_compose_list                (void);
 
+void compose_template_apply_fields(Compose *compose, Template *tmpl);
+
 void compose_entry_append              (Compose          *compose,
                                         const gchar      *address,
                                         ComposeEntryType  type);
@@ -272,7 +291,7 @@ void compose_entry_mark_default_to  (Compose          *compose,
 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);
 
@@ -280,5 +299,18 @@ 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);
+
+void compose_set_position                              (Compose        *compose,
+                                                gint            pos);
+gboolean compose_search_string                 (Compose        *compose,
+                                                const gchar    *str,
+                                                gboolean        case_sens);
+gboolean compose_search_string_backward        (Compose        *compose,
+                                                const gchar    *str,
+                                                gboolean        case_sens);
 
 #endif /* __COMPOSE_H__ */