* src/widgets/modest-details-dialog.c:
[modest] / src / modest-mail-operation.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_MAIL_OPERATION_H__
31 #define __MODEST_MAIL_OPERATION_H__
32
33 #include <tny-transport-account.h>
34 #include <tny-folder-store.h>
35
36 G_BEGIN_DECLS
37
38 /* convenience macros */
39 #define MODEST_TYPE_MAIL_OPERATION             (modest_mail_operation_get_type())
40 #define MODEST_MAIL_OPERATION(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_MAIL_OPERATION,ModestMailOperation))
41 #define MODEST_MAIL_OPERATION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_MAIL_OPERATION,GObject))
42 #define MODEST_IS_MAIL_OPERATION(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_MAIL_OPERATION))
43 #define MODEST_IS_MAIL_OPERATION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_MAIL_OPERATION))
44 #define MODEST_MAIL_OPERATION_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_MAIL_OPERATION,ModestMailOperationClass))
45
46 typedef struct _ModestMailOperation      ModestMailOperation;
47 typedef struct _ModestMailOperationClass ModestMailOperationClass;
48
49 /**
50  * ModestMailOperationStatus:
51  *
52  * The state of a mail operation
53  */
54 typedef enum _ModestMailOperationStatus {
55         MODEST_MAIL_OPERATION_STATUS_INVALID,
56         MODEST_MAIL_OPERATION_STATUS_SUCCESS,
57         MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS,
58         MODEST_MAIL_OPERATION_STATUS_FAILED,
59         MODEST_MAIL_OPERATION_STATUS_IN_PROGRESS,
60         MODEST_MAIL_OPERATION_STATUS_CANCELED
61 } ModestMailOperationStatus;
62
63 /**
64  * ModestMailOperationId:
65  *
66  * The id for identifying the type of mail operation
67  */
68 typedef enum {
69         MODEST_MAIL_OPERATION_TYPE_SEND,
70         MODEST_MAIL_OPERATION_TYPE_RECEIVE,
71         MODEST_MAIL_OPERATION_TYPE_OPEN,
72         MODEST_MAIL_OPERATION_TYPE_DELETE,
73         MODEST_MAIL_OPERATION_TYPE_INFO,
74         MODEST_MAIL_OPERATION_TYPE_UNKNOWN,
75 } ModestMailOperationTypeOperation;
76
77 /**
78  * ErrorCheckingAsyncUserCallback:
79  *
80  * @mail_op: the current mail operation.
81  * @user_data: generic data passed to user defined function.
82  *
83  * This function implements required actions to performs under error
84  * states.  
85  */
86 typedef void (*ErrorCheckingUserCallback) (ModestMailOperation *mail_op, gpointer user_data);
87
88 /**
89  * GetMsgAsyncUserCallback:
90  *
91  * @mail_op: the current #ModestMailOperation.
92  * @header: a #TnyHeader summary item.
93  * @msg: a #TnyMsg message retrieved by async operation.
94  * @user_data: generic data passed to user defined function.
95  *
96  * This function will be called after get_msg_cb private function, which is
97  * used as tinymail operation callback. The private function fills private 
98  * fields of mail operation and calls user defined callback if it exists.
99  */
100 typedef void (*GetMsgAsyncUserCallback) (ModestMailOperation *mail_op, 
101                                          TnyHeader *header, 
102                                          TnyMsg *msg, 
103                                          gpointer user_data);
104
105 /**
106  * XferMsgAsynUserCallback:
107  *
108  * @obj: a #GObject generic object which has created current mail operation.
109  * @user_data: generic data passed to user defined function.
110  *
111  * This function will be called after transfer_msgs_cb private function, which is
112  * used as tinymail operation callback. The private function fills private 
113  * fields of mail operation and calls user defined callback if it exists.
114  */
115 typedef void (*XferMsgsAsynUserCallback) (const GObject *obj, gpointer user_data);
116
117
118 /**
119  * RefreshAsyncUserCallback:
120  *
121  * @mail_op: the current #ModestMailOperation.
122  * @folder: a #TnyFolder which has been refreshed .
123  * @user_data: generic data passed to user defined function.
124  *
125  * This function will be called after refresh_folder_async_cb private function, which is
126  * used as tinymail operation callback. The private function fills private 
127  * fields of mail operation and calls user defined callback if it exists.
128  */
129 typedef void (*RefreshAsyncUserCallback) (ModestMailOperation *mail_op, 
130                                           TnyFolder *folder, 
131                                           gpointer user_data);
132
133 /**
134  * UpdateAccountCallback:
135  *
136  * @obj: a #GObject generic object which has created current mail operation.
137  * @new_messages: the amount of new messages received
138  * @user_data: generic data passed to user defined function.
139  *
140  * This is the callback of the update_account operation. It informs
141  * the caller about the amount of new messages that have been
142  * downloaded
143  */
144 typedef void (*UpdateAccountCallback) (ModestMailOperation *self, 
145                                        gint new_messages,
146                                        gpointer user_data);
147
148 /* This struct represents the internal state of a mail operation in a
149    given time */
150 typedef struct {
151         guint      done;
152         guint      total;
153         gdouble    bytes_done;
154         gdouble    bytes_total;
155         gboolean   finished;
156         ModestMailOperationStatus        status;
157         ModestMailOperationTypeOperation op_type;
158 } ModestMailOperationState;
159
160
161 struct _ModestMailOperation {
162          GObject parent;
163         /* insert public members, if any */
164 };
165
166 struct _ModestMailOperationClass {
167         GObjectClass parent_class;
168
169         /* Signals */
170         void (*progress_changed) (ModestMailOperation *self, ModestMailOperationState *state, gpointer user_data);
171 };
172
173 /* member functions */
174 GType        modest_mail_operation_get_type    (void) G_GNUC_CONST;
175
176 /**
177  * modest_mail_operation_new:
178  * @id: a #ModestMailOperationId identification of operation type.
179  * @source: a #GObject which creates this new operation.
180  * 
181  * Creates a new instance of class #ModestMailOperation, using parameters
182  * to initialize its private structure. @source parameter may be NULL.
183  **/
184 ModestMailOperation*    modest_mail_operation_new     (ModestMailOperationTypeOperation type,
185                                                        GObject *source);
186
187 /**
188  * modest_mail_operation_new_with_error_handling:
189  * @id: a #ModestMailOperationId identification of operation type.
190  * @source: a #GObject which creates this new operation.
191  * @error_handler: a #ErrorCheckingUserCallback function to performs operations when 
192  * an error occurs.
193  * 
194  * Creates a new instance of class #ModestMailOperation, using parameters
195  * to initialize its private structure. @source parameter may be NULL. 
196  * @error_handler can not be NULL, but it will be returned an mail operation
197  * object without error handling capability.
198  **/
199 ModestMailOperation*    modest_mail_operation_new_with_error_handling     (ModestMailOperationTypeOperation op_type,
200                                                                            GObject *source,
201                                                                            ErrorCheckingUserCallback error_handler,
202                                                                            gpointer user_data);
203 /**
204  * modest_mail_operation_execute_error_handler
205  * @self: a #ModestMailOperation
206  * 
207  * Executes error handler if exists. The error handler is the one that
208  * MUST free the user data passed to the
209  * modest_mail_operation_new_with_error_handling constructor
210  **/
211 void
212 modest_mail_operation_execute_error_handler (ModestMailOperation *self);
213
214 /**
215  * modest_mail_operation_get_type_operation
216  * @self: a #ModestMailOperation
217  * 
218  * Gets the private op_type field of mail operation. This op_type
219  * identifies the class/type of mail operation.
220  **/
221 ModestMailOperationTypeOperation
222 modest_mail_operation_get_type_operation (ModestMailOperation *self);
223
224 /**
225  * modest_mail_operation_is_mine
226  * @self: a #ModestMailOperation
227  * @source: a #GObject to check if it have created @self operation.
228  * 
229  * Check if @source object its owner of @self mail operation.
230  *
231  * returns: TRUE if source its owner, FALSE otherwise.
232  **/
233 gboolean 
234 modest_mail_operation_is_mine (ModestMailOperation *self, 
235                                GObject *me);
236
237 /**
238  * modest_mail_operation_get_source
239  * @self: a #ModestMailOperation
240  *
241  * returns a new reference to the object that created the mail
242  * operation passed to the constructor, or NULL if none. The caller
243  * must free the new reference
244  **/
245 GObject *
246 modest_mail_operation_get_source (ModestMailOperation *self);
247
248 /* fill in other public functions, eg.: */
249
250 /**
251  * modest_mail_operation_send_mail:
252  * @self: a #ModestMailOperation
253  * @transport_account: a non-NULL #TnyTransportAccount
254  * @msg: a non-NULL #TnyMsg
255  * 
256  * Sends and already existing message using the provided
257  * #TnyTransportAccount. This operation is synchronous, so the
258  * #ModestMailOperation should not be added to any
259  * #ModestMailOperationQueue
260   **/
261 void    modest_mail_operation_send_mail       (ModestMailOperation *self,
262                                                TnyTransportAccount *transport_account,
263                                                TnyMsg* msg);
264
265 /**
266  * modest_mail_operation_send_new_mail:
267  * @self: a #ModestMailOperation
268  * @transport_account: a non-NULL #TnyTransportAccount
269  * @draft_msg: a #TnyMsg of the origin draft message, if any
270  * @from: the email address of the mail sender
271  * @to: a non-NULL email address of the mail receiver
272  * @cc: a comma-separated list of email addresses where to send a carbon copy
273  * @bcc: a comma-separated list of email addresses where to send a blind carbon copy
274  * @subject: the subject of the new mail
275  * @plain_body: the plain text body of the new mail.
276  * @html_body: the html version of the body of the new mail. If NULL, the mail will
277  *             be sent with the plain body only.
278  * @attachments_list: a #GList of attachments, each attachment must be a #TnyMimePart
279  * 
280  * Sends a new mail message using the provided
281  * #TnyTransportAccount. This operation is synchronous, so the
282  * #ModestMailOperation should not be added to any
283  * #ModestMailOperationQueue
284   **/
285 void    modest_mail_operation_send_new_mail   (ModestMailOperation *self,
286                                                TnyTransportAccount *transport_account,
287                                                TnyMsg *draft_msg,
288                                                const gchar *from,
289                                                const gchar *to,
290                                                const gchar *cc,
291                                                const gchar *bcc,
292                                                const gchar *subject,
293                                                const gchar *plain_body,
294                                                const gchar *html_body,
295                                                const GList *attachments_list,
296                                                TnyHeaderFlags priority_flags);
297
298
299 /**
300  * modest_mail_operation_save_to_drafts:
301  * @self: a #ModestMailOperation
302  * @transport_account: a non-NULL #TnyTransportAccount
303  * @draft_msg: the previous draft message, in case it's an update
304  * to an existing draft.
305  * @from: the email address of the mail sender
306  * @to: a non-NULL email address of the mail receiver
307  * @cc: a comma-separated list of email addresses where to send a carbon copy
308  * @bcc: a comma-separated list of email addresses where to send a blind carbon copy
309  * @subject: the subject of the new mail
310  * @plain_body: the plain text body of the new mail.
311  * @html_body: the html version of the body of the new mail. If NULL, the mail will
312  *             be sent with the plain body only.
313  * @attachments_list: a #GList of attachments, each attachment must be a #TnyMimePart
314  * 
315  * Save a mail message to drafts using the provided
316  * #TnyTransportAccount. This operation is synchronous, so the
317  * #ModestMailOperation should not be added to any
318  * #ModestMailOperationQueue
319  *
320  * Returns: the newly created message with an own reference.
321   **/
322 TnyMsg* modest_mail_operation_save_to_drafts   (ModestMailOperation *self,
323                                                 TnyTransportAccount *transport_account,
324                                                 TnyMsg *draft_msg,
325                                                 const gchar *from,
326                                                 const gchar *to,
327                                                 const gchar *cc,
328                                                 const gchar *bcc,
329                                                 const gchar *subject,
330                                                 const gchar *plain_body,
331                                                 const gchar *html_body,
332                                                 const GList *attachments_list,
333                                                 TnyHeaderFlags priority_flags);
334 /**
335  * modest_mail_operation_update_account:
336  * @self: a #ModestMailOperation
337  * @account_name: the id of a Modest account
338  * 
339  * Asynchronously refreshes the root folders of the given store
340  * account. The caller should add the #ModestMailOperation to a
341  * #ModestMailOperationQueue and then free it. The caller will be
342  * notified by the "progress_changed" signal each time the progress of
343  * the operation changes.
344  *
345  * Example
346  * <informalexample><programlisting>
347  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact)
348  * mail_op = modest_mail_operation_new ();
349  * g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), NULL);
350  * modest_mail_operation_queue_add (queue, mail_op);
351  * modest_mail_operation_update_account (mail_op, account_name)
352  * g_object_unref (G_OBJECT (mail_op));
353  * </programlisting></informalexample>
354  *
355  * Note that the account_name *MUST* be a modest account name, not a
356  * tinymail store account name
357  * 
358  * Returns: TRUE if the mail operation could be started, or FALSE otherwise
359  **/
360 gboolean      modest_mail_operation_update_account (ModestMailOperation *self,
361                                                     const gchar *account_name,
362                                                     UpdateAccountCallback callback,
363                                                     gpointer user_data);
364
365 /* Functions that perform store operations */
366
367 /**
368  * modest_mail_operation_create_folder:
369  * @self: a #ModestMailOperation
370  * @parent: the #TnyFolderStore which is the parent of the new folder
371  * @name: the non-NULL new name for the new folder
372  * 
373  * Creates a new folder as a children of a existing one. If the store
374  * account supports subscriptions this method also sets the new folder
375  * as subscribed. This operation is synchronous, so the
376  * #ModestMailOperation should not be added to any
377  * #ModestMailOperationQueue
378  * 
379  * Returns: a newly created #TnyFolder or NULL in case of error.
380  **/
381 TnyFolder*    modest_mail_operation_create_folder  (ModestMailOperation *self,
382                                                     TnyFolderStore *parent,
383                                                     const gchar *name);
384
385 /**
386  * modest_mail_operation_remove_folder:
387  * @self: a #ModestMailOperation
388  * @folder: a #TnyFolder
389  * @remove_to_trash: TRUE to move it to trash or FALSE to delete
390  * permanently
391  * 
392  * Removes a folder. This operation is synchronous, so the
393  * #ModestMailOperation should not be added to any
394  * #ModestMailOperationQueue
395  **/
396 void          modest_mail_operation_remove_folder  (ModestMailOperation *self,
397                                                     TnyFolder *folder,
398                                                     gboolean remove_to_trash);
399
400 /**
401  * modest_mail_operation_rename_folder:
402  * @self: a #ModestMailOperation
403  * @folder: a #TnyFolder
404  * @name: a non-NULL name without "/"
405  * 
406  * Renames a given folder with the provided new name. This operation
407  * is synchronous, so the #ModestMailOperation should not be added to
408  * any #ModestMailOperationQueue
409  **/
410 void          modest_mail_operation_rename_folder  (ModestMailOperation *self,
411                                                     TnyFolder *folder, 
412                                                     const gchar *name);
413
414 /**
415  * modest_mail_operation_xfer_folder:
416  * @self: a #ModestMailOperation
417  * @folder: a #TnyFolder
418  * @parent: the new parent of the folder as #TnyFolderStore
419  * @delete_original: wheter or not delete the original folder
420  * @user_callback: a #XferMsgsAsynUserCallback function to call after tinymail callback execution.
421  * @user_data: generic user data which will be passed to @user_callback function.
422  * 
423  * Sets the given @folder as child of a provided #TnyFolderStore. This
424  * operation also transfers all the messages contained in the folder
425  * and all of his children folders with their messages as well. This
426  * operation is synchronous, so the #ModestMailOperation should not be
427  * added to any #ModestMailOperationQueue.
428  *
429  * If @delete_original is TRUE this function moves the original
430  * folder, if it is FALSE the it just copies it
431  *
432  **/
433 void          modest_mail_operation_xfer_folder    (ModestMailOperation *self,
434                                                     TnyFolder *folder,
435                                                     TnyFolderStore *parent,
436                                                     gboolean delete_original,
437                                                     XferMsgsAsynUserCallback user_callback,
438                                                     gpointer user_data);
439                                                     
440
441 /* Functions that performs msg operations */
442
443 /**
444  * modest_mail_operation_xfer_msgs:
445  * @self: a #ModestMailOperation
446  * @header_list: a #TnyList of #TnyHeader to transfer
447  * @folder: the #TnyFolder where the messages will be transferred
448  * @delete_original: whether or not delete the source messages
449  * @user_callback: a #XferMsgsAsynUserCallback function to call after tinymail callback execution.
450  * @user_data: generic user data which will be passed to @user_callback function.
451  * 
452  * Asynchronously transfers messages from their current folder to
453  * another one. The caller should add the #ModestMailOperation to a
454  * #ModestMailOperationQueue and then free it. The caller will be
455  * notified by the "progress_changed" when the operation is completed.
456  *
457  * If the @delete_original paramter is TRUE then this function moves
458  * the messages between folders, otherwise it copies them.
459  * 
460  * Example
461  * <informalexample><programlisting>
462  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact);
463  * mail_op = modest_mail_operation_new ();
464  * modest_mail_operation_queue_add (queue, mail_op);
465  * g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), queue);
466  *
467  * modest_mail_operation_xfer_msg (mail_op, headers, folder, TRUE);
468  * 
469  * g_object_unref (G_OBJECT (mail_op));
470  * </programlisting></informalexample>
471  *
472  **/
473 void          modest_mail_operation_xfer_msgs      (ModestMailOperation *self,
474                                                     TnyList *header_list, 
475                                                     TnyFolder *folder,
476                                                     gboolean delete_original,
477                                                     XferMsgsAsynUserCallback user_callback,
478                                                     gpointer user_data);
479
480 /**
481  * modest_mail_operation_remove_msg:
482  * @self: a #ModestMailOperation
483  * @header: the #TnyHeader of the message to move
484  * @remove_to_trash: TRUE to move it to trash or FALSE to delete it
485  * permanently
486  * 
487  * Deletes a message. This operation is synchronous, so the
488  * #ModestMailOperation should not be added to any
489  * #ModestMailOperationQueue
490  **/
491 void          modest_mail_operation_remove_msg     (ModestMailOperation *self,
492                                                     TnyHeader *header,
493                                                     gboolean remove_to_trash);
494
495 /**
496  * modest_mail_operation_get_msg:
497  * @self: a #ModestMailOperation
498  * @header_list: the #TnyHeader of the message to get
499  * @user_callback: a #GetMsgAsyncUserCallback function to call after tinymail callback execution.
500  * @user_data: generic user data which will be passed to @user_callback function.
501  * 
502  * Gets a message from header using an user defined @callback function
503  * pased as argument. This operation is asynchronous, so the
504  * #ModestMailOperation should be added to #ModestMailOperationQueue
505  **/
506 void          modest_mail_operation_get_msg     (ModestMailOperation *self,
507                                                  TnyHeader *header, 
508                                                  GetMsgAsyncUserCallback user_callback,
509                                                  gpointer user_data);
510 /**
511  * modest_mail_operation_get_msgs_full:
512  * @self: a #ModestMailOperation
513  * @header_list: a #TnyList of #TnyHeader objects to get and process
514  * @user_callback: a #TnyGetMsgCallback function to call after tinymail operation execution.
515  * @user_data: user data passed to both, user_callback and update_status_callback.
516  * 
517  * Gets messages from headers list and process hem using @callback function
518  * pased as argument. This operation is asynchronous, so the
519  * #ModestMailOperation should be added to #ModestMailOperationQueue
520  **/
521 void          modest_mail_operation_get_msgs_full   (ModestMailOperation *self,
522                                                      TnyList *headers_list,
523                                                      GetMsgAsyncUserCallback user_callback,
524                                                      gpointer user_data,
525                                                      GDestroyNotify notify);
526
527 /* Functions to control mail operations */
528 /**
529  * modest_mail_operation_get_task_done:
530  * @self: a #ModestMailOperation
531  * 
532  * Gets the amount of work done for a given mail operation. This
533  * amount of work is an absolute value.
534  * 
535  * Returns: the amount of work completed
536  **/
537 guint     modest_mail_operation_get_task_done      (ModestMailOperation *self);
538
539 /**
540  * modest_mail_operation_get_task_total:
541  * @self: a #ModestMailOperation
542  * 
543  * Gets the total amount of work that must be done to complete a given
544  * mail operation. This amount of work is an absolute value.
545  * 
546  * Returns: the total required amount of work
547  **/
548 guint     modest_mail_operation_get_task_total     (ModestMailOperation *self);
549
550
551 /**
552  * modest_mail_operation_is_finished:
553  * @self: a #ModestMailOperation
554  * 
555  * Checks if the operation is finished. A #ModestMailOperation is
556  * finished if it's in any of the following states:
557  * MODEST_MAIL_OPERATION_STATUS_SUCCESS,
558  * MODEST_MAIL_OPERATION_STATUS_FAILED,
559  * MODEST_MAIL_OPERATION_STATUS_CANCELED or
560  * MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS
561  * 
562  * Returns: TRUE if the operation is finished, FALSE otherwise
563  **/
564 gboolean  modest_mail_operation_is_finished        (ModestMailOperation *self);
565
566 /**
567  * modest_mail_operation_is_finished:
568  * @self: a #ModestMailOperation
569  * 
570  * Gets the current status of the given mail operation
571  *
572  * Returns: the current status or MODEST_MAIL_OPERATION_STATUS_INVALID in case of error
573  **/
574 ModestMailOperationStatus modest_mail_operation_get_status  (ModestMailOperation *self);
575
576 /**
577  * modest_mail_operation_get_error:
578  * @self: a #ModestMailOperation
579  * 
580  * Gets the error associated to the mail operation if exists
581  * 
582  * Returns: the #GError associated to the #ModestMailOperation if it
583  * exists or NULL otherwise
584  **/
585 const GError*             modest_mail_operation_get_error   (ModestMailOperation *self);
586
587 /**
588  * modest_mail_operation_cancel:
589  * @self: a #ModestMailOperation
590  *
591  * Cancels an active mail operation
592  * 
593  * Returns: TRUE if the operation was succesfully canceled, FALSE otherwise
594  **/
595 gboolean  modest_mail_operation_cancel          (ModestMailOperation *self);
596
597 /**
598  * modest_mail_operation_refresh_folder
599  * @self: a #ModestMailOperation
600  * @folder: the #TnyFolder to refresh
601  * @user_callback: the #RefreshAsyncUserCallback function to be called
602  * after internal refresh async callback was being executed.
603  * 
604  * Refreshes the contents of a folder. After internal callback was executed, 
605  * and all interna mail operation field were filled, if exists, it calls an 
606  * user callback function to make UI operations which must be done after folder
607  * was refreshed.
608  */
609 void      modest_mail_operation_refresh_folder  (ModestMailOperation *self,
610                                                  TnyFolder *folder,
611                                                  RefreshAsyncUserCallback user_callback,
612                                                  gpointer user_data);
613
614 guint     modest_mail_operation_get_id          (ModestMailOperation *self);
615
616 guint     modest_mail_operation_set_id          (ModestMailOperation *self,
617                                                  guint id);
618
619 G_END_DECLS
620
621 #endif /* __MODEST_MAIL_OPERATION_H__ */
622