* src/modest-tny-send-queue.c:
[modest] / src / modest-mail-operation.h
index 980b037..6b6ebcd 100644 (file)
@@ -32,6 +32,7 @@
 
 #include <tny-transport-account.h>
 #include <tny-folder-store.h>
+#include <widgets/modest-msg-edit-window.h>
 
 G_BEGIN_DECLS
 
@@ -103,6 +104,18 @@ typedef void (*GetMsgAsyncUserCallback) (ModestMailOperation *mail_op,
                                         gpointer user_data);
 
 /**
+ * GetMimePartSizeCallback:
+ *
+ * @mail_op: the current #ModestMailOperation.
+ * @size: size of the attachment
+ * @user_data: generic data passed to user defined function.
+ *
+ */
+typedef void (*GetMimePartSizeCallback) (ModestMailOperation *mail_op, 
+                                        gssize size,
+                                        gpointer user_data);
+
+/**
  * XferMsgAsynUserCallback:
  *
  * @obj: a #GObject generic object which has created current mail operation.
@@ -134,7 +147,7 @@ typedef void (*RefreshAsyncUserCallback) (ModestMailOperation *mail_op,
  * UpdateAccountCallback:
  *
  * @obj: a #GObject generic object which has created current mail operation.
- * @new_messages: the amount of new messages received
+ * @new_headers: the list of new headers received
  * @user_data: generic data passed to user defined function.
  *
  * This is the callback of the update_account operation. It informs
@@ -142,7 +155,7 @@ typedef void (*RefreshAsyncUserCallback) (ModestMailOperation *mail_op,
  * downloaded
  */
 typedef void (*UpdateAccountCallback) (ModestMailOperation *self, 
-                                      gint new_messages,
+                                      TnyList *new_headers,
                                       gpointer user_data);
 
 /* This struct represents the internal state of a mail operation in a
@@ -317,20 +330,20 @@ void    modest_mail_operation_send_new_mail   (ModestMailOperation *self,
  * #ModestMailOperation should not be added to any
  * #ModestMailOperationQueue
  *
- * Returns: the newly created message with an own reference.
   **/
-TnyMsg* modest_mail_operation_save_to_drafts   (ModestMailOperation *self,
-                                               TnyTransportAccount *transport_account,
-                                               TnyMsg *draft_msg,
-                                               const gchar *from,
-                                               const gchar *to,
-                                               const gchar *cc,
-                                               const gchar *bcc,
-                                               const gchar *subject,
-                                               const gchar *plain_body,
-                                               const gchar *html_body,
-                                               const GList *attachments_list,
-                                               TnyHeaderFlags priority_flags);
+void modest_mail_operation_save_to_drafts   (ModestMailOperation *self,
+                                            TnyTransportAccount *transport_account,
+                                            TnyMsg *draft_msg,
+                                            ModestMsgEditWindow *edit_window,
+                                            const gchar *from,
+                                            const gchar *to,
+                                            const gchar *cc,
+                                            const gchar *bcc,
+                                            const gchar *subject,
+                                            const gchar *plain_body,
+                                            const gchar *html_body,
+                                            const GList *attachments_list,
+                                            TnyHeaderFlags priority_flags);
 /**
  * modest_mail_operation_update_account:
  * @self: a #ModestMailOperation
@@ -493,6 +506,21 @@ void          modest_mail_operation_remove_msg     (ModestMailOperation *self,
                                                    gboolean remove_to_trash);
 
 /**
+ * modest_mail_operation_remove_msg:
+ * @self: a #ModestMailOperation
+ * @headers: the #TnyList of the messages to delete
+ * @remove_to_trash: TRUE to move it to trash or FALSE to delete it
+ * permanently
+ * 
+ * Deletes a list of messages. This operation is synchronous, so the
+ * #ModestMailOperation should not be added to any
+ * #ModestMailOperationQueue
+ **/
+void          modest_mail_operation_remove_msgs     (ModestMailOperation *self,
+                                                    TnyList *headers,
+                                                    gboolean remove_to_trash);
+
+/**
  * modest_mail_operation_get_msg:
  * @self: a #ModestMailOperation
  * @header_list: the #TnyHeader of the message to get