* src/maemo/modest-msg-edit-window.c: added support for rich editing
[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 struct _ModestMailOperation {
64          GObject parent;
65         /* insert public members, if any */
66 };
67
68 struct _ModestMailOperationClass {
69         GObjectClass parent_class;
70
71         /* Signals */
72         void (*progress_changed) (ModestMailOperation *self, gpointer user_data);
73 };
74
75 /* member functions */
76 GType        modest_mail_operation_get_type    (void) G_GNUC_CONST;
77
78 /* typical parameter-less _new function */
79 ModestMailOperation*    modest_mail_operation_new         (void);
80
81 /* fill in other public functions, eg.: */
82
83 /**
84  * modest_mail_operation_send_mail:
85  * @self: a #ModestMailOperation
86  * @transport_account: a non-NULL #TnyTransportAccount
87  * @msg: a non-NULL #TnyMsg
88  * 
89  * Sends and already existing message using the provided
90  * #TnyTransportAccount. This operation is synchronous, so the
91  * #ModestMailOperation should not be added to any
92  * #ModestMailOperationQueue
93   **/
94 void    modest_mail_operation_send_mail       (ModestMailOperation *self,
95                                                TnyTransportAccount *transport_account,
96                                                TnyMsg* msg);
97
98 /**
99  * modest_mail_operation_send_new_mail:
100  * @self: a #ModestMailOperation
101  * @transport_account: a non-NULL #TnyTransportAccount
102  * @from: the email address of the mail sender
103  * @to: a non-NULL email address of the mail receiver
104  * @cc: a comma-separated list of email addresses where to send a carbon copy
105  * @bcc: a comma-separated list of email addresses where to send a blind carbon copy
106  * @subject: the subject of the new mail
107  * @plain_body: the plain text body of the new mail.
108  * @html_body: the html version of the body of the new mail. If NULL, the mail will
109  *             be sent with the plain body only.
110  * @attachments_list: a #GList of attachments, each attachment must be a #TnyMimePart
111  * 
112  * Sends a new mail message using the provided
113  * #TnyTransportAccount. This operation is synchronous, so the
114  * #ModestMailOperation should not be added to any
115  * #ModestMailOperationQueue
116   **/
117 void    modest_mail_operation_send_new_mail   (ModestMailOperation *self,
118                                                TnyTransportAccount *transport_account,
119                                                const gchar *from,
120                                                const gchar *to,
121                                                const gchar *cc,
122                                                const gchar *bcc,
123                                                const gchar *subject,
124                                                const gchar *plain_body,
125                                                const gchar *html_body,
126                                                const GList *attachments_list);
127
128 /**
129  * modest_mail_operation_update_account:
130  * @self: a #ModestMailOperation
131  * @store_account: a #TnyStoreAccount
132  * 
133  * Asynchronously refreshes the root folders of the given store
134  * account. The caller should add the #ModestMailOperation to a
135  * #ModestMailOperationQueue and then free it. The caller will be
136  * notified by the "progress_changed" signal each time the progress of
137  * the operation changes.
138  * Example
139  * <informalexample><programlisting>
140  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact)
141  * mail_op = modest_mail_operation_new ();
142  * g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), queue);
143  * if (modest_mail_operation_update_account (mail_op, account))
144  * {
145  *     modest_mail_operation_queue_add (queue, mail_op);
146  * }
147  * g_object_unref (G_OBJECT (mail_op));
148  * </programlisting></informalexample>
149  * 
150  * Returns: TRUE if the mail operation could be started, or FALSE otherwise
151  **/
152 gboolean      modest_mail_operation_update_account (ModestMailOperation *self,
153                                                     TnyStoreAccount *store_account);
154
155 /* Functions that perform store operations */
156
157 /**
158  * modest_mail_operation_create_folder:
159  * @self: a #ModestMailOperation
160  * @parent: the #TnyFolderStore which is the parent of the new folder
161  * @name: the non-NULL new name for the new folder
162  * 
163  * Creates a new folder as a children of a existing one. If the store
164  * account supports subscriptions this method also sets the new folder
165  * as subscribed. This operation is synchronous, so the
166  * #ModestMailOperation should not be added to any
167  * #ModestMailOperationQueue
168  * 
169  * Returns: a newly created #TnyFolder or NULL in case of error.
170  **/
171 TnyFolder*    modest_mail_operation_create_folder  (ModestMailOperation *self,
172                                                     TnyFolderStore *parent,
173                                                     const gchar *name);
174
175 /**
176  * modest_mail_operation_remove_folder:
177  * @self: a #ModestMailOperation
178  * @folder: a #TnyFolder
179  * @remove_to_trash: TRUE to move it to trash or FALSE to delete
180  * permanently
181  * 
182  * Removes a folder. This operation is synchronous, so the
183  * #ModestMailOperation should not be added to any
184  * #ModestMailOperationQueue
185  **/
186 void          modest_mail_operation_remove_folder  (ModestMailOperation *self,
187                                                     TnyFolder *folder,
188                                                     gboolean remove_to_trash);
189
190 /**
191  * modest_mail_operation_rename_folder:
192  * @self: a #ModestMailOperation
193  * @folder: a #TnyFolder
194  * @name: a non-NULL name without "/"
195  * 
196  * Renames a given folder with the provided new name. This operation
197  * is synchronous, so the #ModestMailOperation should not be added to
198  * any #ModestMailOperationQueue
199  **/
200 void          modest_mail_operation_rename_folder  (ModestMailOperation *self,
201                                                     TnyFolder *folder, 
202                                                     const gchar *name);
203
204 /**
205  * modest_mail_operation_xfer_folder:
206  * @self: a #ModestMailOperation
207  * @folder: a #TnyFolder
208  * @parent: the new parent of the folder as #TnyFolderStore
209  * @delete_original: wheter or not delete the original folder
210  * 
211  * Sets the given @folder as child of a provided #TnyFolderStore. This
212  * operation also transfers all the messages contained in the folder
213  * and all of his children folders with their messages as well. This
214  * operation is synchronous, so the #ModestMailOperation should not be
215  * added to any #ModestMailOperationQueue.
216  *
217  * If @delete_original is TRUE this function moves the original
218  * folder, if it is FALSE the it just copies it
219  *
220  * Returns: the newly transfered folder
221  **/
222 TnyFolder*    modest_mail_operation_xfer_folder    (ModestMailOperation *self,
223                                                     TnyFolder *folder, 
224                                                     TnyFolderStore *parent,
225                                                     gboolean delete_original);
226
227
228 /* Functions that performs msg operations */
229
230 /**
231  * modest_mail_operation_xfer_msg:
232  * @self: a #ModestMailOperation
233  * @header: the #TnyHeader of the message to move
234  * @folder: the #TnyFolder where the message will be moved
235  * @delete_original: whether or not delete the source message
236  * 
237  * Asynchronously transfers a message from its current folder to
238  * another one. The caller should add the #ModestMailOperation to a
239  * #ModestMailOperationQueue and then free it. The caller will be
240  * notified by the "progress_changed" when the operation is completed.
241  *
242  * If the @delete_original paramter is TRUE then this function moves
243  * the message between folders, otherwise it copies it.
244  * 
245  * Example
246  * <informalexample><programlisting>
247  * queue = modest_tny_platform_factory_get_modest_mail_operation_queue_instance (fact);
248  * mail_op = modest_mail_operation_new ();
249  * if (modest_mail_operation_xfer_msg (mail_op, header, folder, TRUE))
250  * {
251  *     g_signal_connect (G_OBJECT (mail_op), "progress_changed", G_CALLBACK(on_progress_changed), queue);
252  *     modest_mail_operation_queue_add (queue, mail_op);
253  * }
254  * g_object_unref (G_OBJECT (mail_op));
255  * </programlisting></informalexample>
256  *
257  * Returns: TRUE if the mail operation could be started, or FALSE otherwise
258  **/
259 gboolean      modest_mail_operation_xfer_msg       (ModestMailOperation *self,
260                                                     TnyHeader *header, 
261                                                     TnyFolder *folder,
262                                                     gboolean delete_original);
263
264 /**
265  * modest_mail_operation_remove_msg:
266  * @self: a #ModestMailOperation
267  * @header: the #TnyHeader of the message to move
268  * @remove_to_trash: TRUE to move it to trash or FALSE to delete it
269  * permanently
270  * 
271  * Deletes a message. This operation is synchronous, so the
272  * #ModestMailOperation should not be added to any
273  * #ModestMailOperationQueue
274  **/
275 void          modest_mail_operation_remove_msg     (ModestMailOperation *self,
276                                                     TnyHeader *header,
277                                                     gboolean remove_to_trash);
278
279 /* Functions to control mail operations */
280 /**
281  * modest_mail_operation_get_task_done:
282  * @self: a #ModestMailOperation
283  * 
284  * Gets the amount of work done for a given mail operation. This
285  * amount of work is an absolute value.
286  * 
287  * Returns: the amount of work completed
288  **/
289 guint     modest_mail_operation_get_task_done      (ModestMailOperation *self);
290
291 /**
292  * modest_mail_operation_get_task_total:
293  * @self: a #ModestMailOperation
294  * 
295  * Gets the total amount of work that must be done to complete a given
296  * mail operation. This amount of work is an absolute value.
297  * 
298  * Returns: the total required amount of work
299  **/
300 guint     modest_mail_operation_get_task_total     (ModestMailOperation *self);
301
302
303 /**
304  * modest_mail_operation_is_finished:
305  * @self: a #ModestMailOperation
306  * 
307  * Checks if the operation is finished. A #ModestMailOperation is
308  * finished if it's in any of the following states:
309  * MODEST_MAIL_OPERATION_STATUS_SUCCESS,
310  * MODEST_MAIL_OPERATION_STATUS_FAILED,
311  * MODEST_MAIL_OPERATION_STATUS_CANCELED or
312  * MODEST_MAIL_OPERATION_STATUS_FINISHED_WITH_ERRORS
313  * 
314  * Returns: TRUE if the operation is finished, FALSE otherwise
315  **/
316 gboolean                  modest_mail_operation_is_finished (ModestMailOperation *self);
317
318 /**
319  * modest_mail_operation_is_finished:
320  * @self: a #ModestMailOperation
321  * 
322  * Gets the current status of the given mail operation
323  *
324  * Returns: the current status or MODEST_MAIL_OPERATION_STATUS_INVALID in case of error
325  **/
326 ModestMailOperationStatus modest_mail_operation_get_status  (ModestMailOperation *self);
327
328 /**
329  * modest_mail_operation_get_error:
330  * @self: a #ModestMailOperation
331  * 
332  * Gets the error associated to the mail operation if exists
333  * 
334  * Returns: the #GError associated to the #ModestMailOperation if it
335  * exists or NULL otherwise
336  **/
337 const GError*             modest_mail_operation_get_error   (ModestMailOperation *self);
338
339 /**
340  * modest_mail_operation_cancel:
341  * @self: a #ModestMailOperation
342  *
343  * Cancels an active mail operation
344  * 
345  * Returns: TRUE if the operation was succesfully canceled, FALSE otherwise
346  **/
347 gboolean                  modest_mail_operation_cancel      (ModestMailOperation *self);
348
349 G_END_DECLS
350
351 #endif /* __MODEST_MAIL_OPERATION_H__ */
352