2007-11-19 [wwp] 3.1.0cvs4
[claws.git] / src / compose.h
index dd9237798fbf18ace3386882cfbf8aa782a116fb..5fe568cb4b93f1ef11d71aea5941c11052518e77 100644 (file)
@@ -4,7 +4,7 @@
  *
  * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef __COMPOSE_H__
@@ -37,6 +37,7 @@ typedef struct _AttachInfo    AttachInfo;
 #include "codeconv.h"
 #include "template.h"
 #include "textview.h"
+#include "folder.h"
 
 #ifdef USE_ASPELL
 #include "gtkaspell.h"
@@ -106,11 +107,15 @@ struct _Compose
        /* 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;
@@ -182,6 +187,7 @@ struct _Compose
        GSList *newsgroup_list;
 
        PrefsAccount *account;
+       FolderItem *folder;
 
        UndoMain *undostruct;
 
@@ -210,6 +216,13 @@ struct _Compose
        
        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;
@@ -217,6 +230,8 @@ struct _Compose
        gboolean updating;
        gboolean deferred_destroy;
        ComposeMode rmode;
+       GtkWidget *first_combo;
+       GtkWidget *first_entry;
 };
 
 struct _AttachInfo
@@ -228,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,
@@ -268,7 +291,7 @@ 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, 
@@ -290,4 +313,7 @@ gint compose_queue                  (Compose *compose,
                                         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__ */