2007-11-19 [wwp] 3.1.0cvs4
[claws.git] / src / compose.h
index d9423e3217912028e797376094bf91ee0f8d2d5b..5fe568cb4b93f1ef11d71aea5941c11052518e77 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2004 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2007 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
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
@@ -13,8 +13,8 @@
  * GNU General Public License for more details.
  *
  * 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.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef __COMPOSE_H__
@@ -34,11 +34,17 @@ typedef struct _AttachInfo  AttachInfo;
 #include "undo.h"
 #include "toolbar.h"
 #include "messageview.h"
+#include "codeconv.h"
+#include "template.h"
+#include "textview.h"
+#include "folder.h"
 
 #ifdef USE_ASPELL
 #include "gtkaspell.h"
 #endif
 
+#define COMPOSE_CHECK_BEFORE_SEND_HOOKLIST "compose_check_before_send"
+
 typedef enum
 {
        COMPOSE_TO,
@@ -95,39 +101,29 @@ struct _Compose
        /* 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;
-       GtkWidget *bcc_entry;
-       GtkWidget *reply_hbox;
-       GtkWidget *reply_entry;
-       GtkWidget *followup_hbox;
-       GtkWidget *followup_entry;
-*/
        GtkWidget *paned;
 
        /* Attachments */
        GtkWidget *attach_scrwin;
        GtkWidget *attach_clist;
+       GtkWidget *attach_label;
 
        /* Others */
        GtkWidget *savemsg_checkbtn;
        GtkWidget *savemsg_entry;
 
+       /* Headers notebook */
+       GtkWidget *notebook;
+
        /* Textedit */
        GtkWidget *edit_vbox;
        GtkWidget *ruler_hbox;
        GtkWidget *ruler;
        GtkWidget *scrolledwin;
        GtkWidget *text;
+       GtkWidget *from_name;
+       GtkTooltips *tooltips;
 
        GtkWidget *focused_editable;
 
@@ -172,6 +168,8 @@ struct _Compose
        gboolean use_followupto;
        gboolean use_attach;
 
+       CharSet out_encoding;
+
        /* privacy settings */
        gboolean use_signing;
        gboolean use_encryption;
@@ -183,24 +181,28 @@ struct _Compose
        
        gboolean return_receipt;
 
+       gboolean batch;
+       
        GSList *to_list;
        GSList *newsgroup_list;
 
        PrefsAccount *account;
+       FolderItem *folder;
 
        UndoMain *undostruct;
 
        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 */
         GtkAspell *gtkaspell;
+       GtkWidget *aspell_options_menu;
 #endif
 
        /* Priority */
@@ -211,6 +213,25 @@ struct _Compose
        gboolean remove_references;
 
        guint draft_timeout_tag;
+       
+       GtkTextTag *no_wrap_tag;
+       GtkTextTag *no_join_tag;
+       GtkTextTag *signature_tag;
+       GtkTextTag *quote0_tag;
+       GtkTextTag *quote1_tag;
+       GtkTextTag *quote2_tag;
+       GtkTextTag *uri_tag;
+
+       gboolean automatic_break;
+       GMutex *mutex;
+       gchar *orig_charset;
+       gint set_cursor_pos;
+       
+       gboolean updating;
+       gboolean deferred_destroy;
+       ComposeMode rmode;
+       GtkWidget *first_combo;
+       GtkWidget *first_entry;
 };
 
 struct _AttachInfo
@@ -222,6 +243,14 @@ struct _AttachInfo
        off_t size;
 };
 
+typedef enum
+{
+       COMPOSE_QUIT_EDITING,
+       COMPOSE_KEEP_EDITING,
+       COMPOSE_AUTO_SAVE,
+       COMPOSE_DRAFT_FOR_EXIT
+} ComposeDraftAction;
+
 /*#warning FIXME_GTK2 */
 /* attache_files will be locale encode */
 Compose *compose_new                   (PrefsAccount   *account,
@@ -229,38 +258,24 @@ Compose *compose_new                      (PrefsAccount   *account,
                                         GPtrArray      *attach_files);
 
 Compose *compose_new_with_folderitem   (PrefsAccount   *account,
-                                        FolderItem     *item);
+                                        FolderItem     *item,
+                                        const gchar    *mailto);
 
 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 */
+                                        gboolean        no_extedit,
+                                        gboolean        batch);
 
 Compose *compose_redirect              (PrefsAccount   *account,
-                                        MsgInfo        *msginfo);
-void compose_reedit                    (MsgInfo        *msginfo);
+                                        MsgInfo        *msginfo,
+                                        gboolean        batch);
+Compose *compose_reedit                        (MsgInfo        *msginfo,
+                                        gboolean        batch);
 
 GList *compose_get_compose_list                (void);
 
@@ -268,22 +283,37 @@ 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);
+gboolean compose_draft                 (gpointer data, guint action);
 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);
+gint compose_queue                     (Compose *compose, 
+                                        gint *msgnum, 
+                                        FolderItem **item, 
+                                        gchar **msgpath,
+                                        gboolean remove_reedit_target);
+gboolean compose_close                 (Compose *compose);
+void compose_close_toolbar             (Compose *compose);
+void compose_clear_exit_drafts         (void);
+void compose_reopen_exit_drafts                (void);
 #endif /* __COMPOSE_H__ */