2007-06-08 [wwp] 2.9.2cvs50
[claws.git] / src / compose.h
index e186c865d764c065fc645fb7c8ebd12f7920f355..4d1b48d7783b0e98897fa4a99f4a77855e9feac8 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-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
  *
  * 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"
-
-#ifdef USE_PSPELL
-#include "gtkspell.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,
@@ -59,10 +67,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_BOUNCE,
+       COMPOSE_FORWARD_INLINE,
        COMPOSE_NEW,
+       COMPOSE_REDIRECT,
        COMPOSE_REEDIT
 } ComposeMode;
 
@@ -75,44 +87,21 @@ typedef struct {
 
 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;
-/*
-       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 */
@@ -123,12 +112,17 @@ struct _Compose
        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;
 
@@ -142,6 +136,8 @@ struct _Compose
 
        MsgInfo *targetinfo;
        MsgInfo *replyinfo;
+       MsgInfo *autosaved_draft;
+       MsgInfo *fwdinfo;
 
        GtkWidget *header_table;
        GSList    *header_list;
@@ -153,49 +149,81 @@ struct _Compose
        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;
 
+       gboolean batch;
+       
        GSList *to_list;
        GSList *newsgroup_list;
 
        PrefsAccount *account;
-       PrefsAccount *orig_account;
-
-       /* external editor */
-       gchar *exteditor_file;
-       pid_t  exteditor_pid;
-       gint   exteditor_readdes;
-       gint   exteditor_tag;
+       FolderItem *folder;
 
        UndoMain *undostruct;
 
-#if USE_PSPELL
-        /* Pspell spell checker */
-        GtkPspell *gtkpspell;
+       gchar *sig_str;
+
+       /* external editor */
+       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
 
-       gchar *bounce_filename;
+       /* Priority */
+       gint priority;
+
+       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;
+       
+       gboolean updating;
+       gboolean deferred_destroy;
+       ComposeMode rmode;
+       GtkWidget *first_combo;
+       GtkWidget *first_entry;
 };
 
 struct _AttachInfo
@@ -207,30 +235,39 @@ struct _AttachInfo
        off_t size;
 };
 
-Compose *compose_new                   (PrefsAccount   *account);
-
-Compose *compose_new_with_recipient    (PrefsAccount   *account,
-                                        const gchar    *to);
+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,
+                                        const gchar    *mailto,
+                                        GPtrArray      *attach_files);
 
 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);
+                                        FolderItem     *item,
+                                        const gchar    *mailto);
+
+Compose *compose_new_with_list         (PrefsAccount   *account,
+                                        GList          *listAddress);
+
 Compose *compose_forward               (PrefsAccount *account,
                                         MsgInfo        *msginfo,
-                                        gboolean        as_attach);
-Compose *compose_forward_multiple      (PrefsAccount   *account, 
-                                        GSList         *msginfo_list);
-Compose *compose_bounce                        (PrefsAccount   *account,
-                                        MsgInfo        *msginfo);
-void compose_reedit                    (MsgInfo        *msginfo);
+                                        gboolean        as_attach,
+                                        const gchar    *body,
+                                        gboolean        no_extedit,
+                                        gboolean        batch);
+
+Compose *compose_redirect              (PrefsAccount   *account,
+                                        MsgInfo        *msginfo,
+                                        gboolean        batch);
+Compose *compose_reedit                        (MsgInfo        *msginfo,
+                                        gboolean        batch);
 
 GList *compose_get_compose_list                (void);
 
@@ -238,8 +275,37 @@ void compose_entry_append          (Compose          *compose,
                                         const gchar      *address,
                                         ComposeEntryType  type);
 
-gint compose_send                      (Compose          *compose);
 
-void compose_reflect_prefs_all         (void);
+gint compose_send                      (Compose          *compose);
 
+void compose_update_actions_menu       (Compose        *compose);
+void compose_reflect_prefs_all                 (void);
+void compose_reflect_prefs_pixmap_theme        (void);
+
+void compose_destroy_all                (void);
+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__ */