* speed up modest_account_mgr_has_accounts by caching the status
[modest] / src / modest-platform.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_PLATFORM_H__
31 #define __MODEST_PLATFORM_H__
32
33 #include <tny-device.h>
34 #include "widgets/modest-window.h"
35 #include "widgets/modest-folder-view.h"
36
37 G_BEGIN_DECLS
38
39 typedef enum _ModestConfirmationDialogType {
40         MODEST_CONFIRMATION_DELETE_FOLDER,
41 } ModestConfirmationDialogType;
42
43 typedef enum _ModestSortDialogType {
44         MODEST_SORT_HEADERS,
45 } ModestSortDialogType;
46
47 /**
48  * modest_platform_platform_init:
49  *
50  * platform specific initialization function
51  * 
52  * Returns: TRUE if succeeded, FALSE otherwise
53  */
54 gboolean modest_platform_init (int argc, char *argv[]);
55
56
57 /**
58  * modest_platform_platform_init:
59  *
60  * platform specific un-initialization function
61  * 
62  * Returns: TRUE if succeeded, FALSE otherwise
63  */
64 gboolean modest_platform_uninit (void);
65
66
67 /**
68  * modest_platform_get_new_device:
69  *
70  * platform specific initialization function
71  * 
72  * Returns: TRUE if succeeded, FALSE otherwise
73  */
74 TnyDevice*  modest_platform_get_new_device (void);
75
76
77 /**
78  * modest_platform_get_file_icon_name:
79  * @name: the name of the file, or NULL
80  * @mime_type: the mime-type, or NULL
81  * @effective_mime_type: out-param which receives the 'effective mime-type', ie., the mime type
82  * that will be used. May be NULL if you're not interested in this. Note: the returned string
83  * is newly allocated, and should be g_free'd when done with it.
84  *
85  * this function gets the icon for the file, based on the file name and/or the mime type,
86  * using the following strategy:
87  * (1) if mime_type != NULL and mime_type != application/octet-stream, find the
88  *     the icon name for this mime type
89  * (2) otherwise, guess the icon type from the file name, and then goto (1)
90  *
91  * Returns: the icon name
92  */
93 gchar*  modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
94                                             gchar **effective_mime_type);
95
96 /**
97  * modest_platform_activate_uri:
98  * @uri: the uri to activate
99  *
100  * This function activates an URI
101  *
102  * Returns: %TRUE if successful, %FALSE if not.
103  **/
104 gboolean modest_platform_activate_uri (const gchar *uri);
105
106 /**
107  * modest_platform_activate_file:
108  * @path: the path to activate
109  * @mime_type: the mime type of the path, or %NULL to guess
110  *
111  * This function activates a file
112  *
113  * Returns: %TRUE if successful, %FALSE if not.
114  **/
115 gboolean modest_platform_activate_file (const gchar *path, const gchar *mime_type);
116
117 /**
118  * modest_platform_show_uri_popup:
119  * @uri: an URI with the string
120  *
121  * This function show the popup of actions for an URI
122  *
123  * Returns: %TRUE if successful, %FALSE if not.
124  **/
125 gboolean modest_platform_show_uri_popup (const gchar *uri);
126
127 /**
128  * modest_platform_get_icon:
129  * @name: the name of the icon
130  *
131  * this function returns an icon, or NULL in case of error 
132  */
133 GdkPixbuf* modest_platform_get_icon (const gchar *name);
134
135
136 /**
137  * modest_platform_get_app_name:
138  *
139  * this function returns the name of the application. Do not modify.
140  */
141 const gchar* modest_platform_get_app_name (void);
142
143
144 /**
145  * modest_platform_run_new_folder_dialog:
146  * @parent_window: a #GtkWindow
147  * @parent: the parent of the new folder
148  * @suggested_name: the suggested name for the new folder
149  * @folder_name: the folder name selected by the user for the new folder
150  * 
151  * runs a "new folder" confirmation dialog. The dialog will suggest a
152  * folder name which depends of the platform if the #suggested_name
153  * parametter is NULL. If the user input a valid folder name it's
154  * returned in the #folder_name attribute.
155  * 
156  * Returns: the #GtkResponseType returned by the dialog
157  **/
158 gint      modest_platform_run_new_folder_dialog        (GtkWindow *parent_window,
159                                                         TnyFolderStore *parent,
160                                                         gchar *suggested_name,
161                                                         gchar **folder_name);
162
163 /**
164  * modest_platform_run_rename_folder_dialog:
165  * @parent_window: a #GtkWindow
166  * @parent: the parent of the folder
167  * @suggested_name: current name of the folder
168  * @folder_name: the new folder name selected by the user for the folder
169  * 
170  * runs a "rename folder" confirmation dialog. If the user input a valid folder name it's
171  * returned in the #folder_name attribute.
172  * 
173  * Returns: the #GtkResponseType returned by the dialog
174  **/
175 gint      modest_platform_run_rename_folder_dialog        (GtkWindow *parent_window,
176                                                            TnyFolderStore *parent,
177                                                            const gchar *current_name,
178                                                            gchar **folder_name);
179
180 /**
181  * modest_platform_run_confirmation_dialog:
182  * @parent_window: the parent #GtkWindow of the dialog
183  * @message: the message to show to the user
184  * 
185  * runs a confirmation dialog
186  * 
187  * Returns: GTK_RESPONSE_OK or GTK_RESPONSE_CANCEL
188  **/
189 gint      modest_platform_run_confirmation_dialog      (GtkWindow *parent_window,
190                                                         const gchar *message);
191
192 /**
193  * modest_platform_run_yes_no_dialog:
194  * @parent_window: the parent #GtkWindow of the dialog
195  * @message: the message to show to the user
196  * 
197  * runs a dialog that offers yes and no buttons.
198  * 
199  * Returns: GTK_RESPONSE_YES or GTK_RESPONSE_NO
200  **/
201 gint      modest_platform_run_yes_no_dialog      (GtkWindow *parent_window,
202                                                   const gchar *message);
203
204
205 /**
206  * modest_platform_run_information_dialog:
207  * @parent_window: the parent #GtkWindow of the dialog
208  * @message: the message to show
209  * 
210  * shows an information dialog
211  **/
212 void      modest_platform_run_information_dialog       (GtkWindow *parent_window,
213                                                         const gchar *message);
214
215 /**
216  * modest_platform_run_sort_dialog:
217  * @parent_window: the parent #GtkWindow of the dialog
218  * @type: the sort dialog type.
219  * 
220  * shows a sort dialog
221  **/
222 void      modest_platform_run_sort_dialog       (GtkWindow *parent_window, 
223                                                  ModestSortDialogType type);
224                 
225 /*
226  * modest_platform_connect_and_wait:
227  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
228  * @account: The account to be used.
229  * @return value: Whether a connection was made.
230  * 
231  * Attempts to make a connection, possibly showing interactive UI to achieve this.
232  * This will return TRUE immediately if a connection is already open.
233  * Otherwise, this function blocks until the connection attempt has either succeded or failed.
234  * This also sets the account to online, if it is a store account, in case it has been set to offline mode.
235  */             
236 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window, TnyAccount *account);
237
238                 
239 /*
240  * modest_platform_connect_and_wait_if_network_account:
241  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
242  * @account: The account that might need a connection in subsequent operations.
243  * @return value: Whether a connection was made. Also returns TRUE if no connection is necessary.
244  * 
245  * Like modest_platform_connect_and_wait(), but only attempts to make a connection if the 
246  * account uses the network. For instance, this just returns TRUE for local maildir accounts. 
247  */
248 gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_window, TnyAccount *account);
249
250 /*
251  * modest_platform_connect_and_wait_if_network_account:
252  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
253  * @folder_store: The folder store (folder or account) that might need a connection in subsequent operations.
254  * @return value: Whether a connection was made. Also returns TRUE if no connection is necessary.
255  * 
256  * Like modest_platform_connect_and_wait(), but only attempts to make a connection if the 
257  * folder store uses the network. For instance, this just returns TRUE for local maildir folders. 
258  */
259 gboolean modest_platform_connect_and_wait_if_network_folderstore (GtkWindow *parent_window, TnyFolderStore *folder_store);
260
261 /**
262  * modest_platform_is_network_folderstore:
263  * @folder_store: The folder store (folder or account) that needs to
264  * decide if need a connection in subsequent operations.
265  * @return value: Whether a connection is necessary for this folder_store.
266  */
267 gboolean modest_platform_is_network_folderstore (TnyFolderStore *folder_store);
268
269 /**
270  * modest_platform_set_update_interval:
271  * @minutes: The number of minutes between updates, or 0 for no updates.
272  * 
273  * Set the number of minutes between automatic updates of email accounts.
274  * The platform will cause the send/receive action to happen repeatedly.
275  **/
276 gboolean modest_platform_set_update_interval (guint minutes);
277
278 /**
279  * modest_platform_get_global_settings_dialog:
280  * @void: 
281  * 
282  * returns the global settings dialog
283  * 
284  * Return value: a new #ModestGlobalSettingsDialog dialog
285  **/
286 GtkWidget* modest_platform_get_global_settings_dialog (void);
287
288 /**
289  * modest_platform_on_new_headers_received:
290  * @header_list: the list of new received headers
291  *
292  * Performs the required actions when new headers are
293  * received. Tipically it's useful for showing new email notifications
294  **/
295 void modest_platform_on_new_headers_received (TnyList *header_list);
296
297 /**
298  * modest_platform_show_help:
299  * @parent_window: 
300  * @help_id: the help topic id to be shown in the help dialog
301  * 
302  * shows the application help dialog
303  **/
304 void modest_platform_show_help (GtkWindow *parent_window, 
305                                 const gchar *help_id);
306
307 /**
308  * modest_platform_show_search_messages:
309  * @parent_window: window the dialog will be child of
310  *
311  * shows the search messages dialog
312  **/
313 void modest_platform_show_search_messages (GtkWindow *parent_window);
314
315 /**
316  * modest_platform_show_addressbook:
317  * @parent_window: window the dialog will be child of
318  *
319  * shows the addressbook
320  **/
321 void modest_platform_show_addressbook (GtkWindow *parent_window);
322
323
324 GtkWidget* modest_platform_create_folder_view (TnyFolderStoreQuery *query);
325
326 void modest_platform_information_banner (GtkWidget *widget,
327                                          const gchar *icon_name,
328                                          const gchar *text);
329
330 GtkWidget *
331 modest_platform_animation_banner (GtkWidget *parent,
332                                   const gchar *annimation_name,
333                                   const gchar *text);
334                                   
335 /* TODO: This isn't platform-dependent, so this isn't the best place for this. */
336 /* Return TRUE immediately if the account is already online,
337  * otherwise check every second for NUMBER_OF_TRIES seconds and return TRUE as 
338  * soon as the account is online, or FALSE if the account does 
339  * not become online in the NUMBER_OF_TRIES seconds.
340  * This is useful when the D-Bus method was run immediately after 
341  * the application was started (when using D-Bus activation), 
342  * because the account usually takes a short time to go online.
343  * The return value is maybe not very useful.
344  */
345 gboolean modest_platform_check_and_wait_for_account_is_online(TnyAccount *account);
346
347
348
349 /**
350  * modest_platform_run_certificate_confirmation_dialog:
351  * @server_name: name of the server we get this dialog for
352  * @certificate: the text representation of the certificate
353  *
354  * show the unknown-certificate confirmation dialog
355  *
356  *  Returns: TRUE (Ok-pressed) or FALSE (cancel pressed)
357  **/
358 gboolean modest_platform_run_certificate_confirmation_dialog (const gchar* server_name,
359                                                               const gchar *certificate);
360
361
362 /**
363  * modest_platform_run_alert_dialog:
364  * @prompt: prompt for the dialog
365  * @is_question: is it a question dialog? 
366  *
367  * show the alert dialog for TnyAlerts
368  * if it's a aquest
369  *
370  *  Returns: TRUE (Ok-pressed) or FALSE (cancel pressed)
371  **/
372 gboolean modest_platform_run_alert_dialog (const gchar* prompt, gboolean is_question);
373
374
375 /**
376  * modest_platform_remove_new_mail_notifications:
377  *
378  * Removes all the active new mail notifications
379  **/
380 void modest_platform_remove_new_mail_notifications (void);
381
382 /* ModestConnectedPerformer:
383  * @canceled: whether or not the user canceled
384  * @err: whether an error occured during connecting, or NULL of not
385  * @parent_window: the parent window or NULL
386  * @account: the account or NULL
387  * @user_data: your own user data
388  * 
389  * This is the callback for the modest_platform_connect_and_perform* functions
390  */
391 typedef void (*ModestConnectedPerformer) (gboolean canceled, 
392                                           GError *err,
393                                           GtkWindow *parent_window, 
394                                           TnyAccount *account, 
395                                           gpointer user_data);
396
397 /*
398  * modest_platform_connect_and_perform:
399  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
400  * @account: The account to be used.
401  * @callback: will be called when finished, can be NULL
402  * @user_data: user data for @callback
403  * 
404  * Attempts to make a connection, possibly showing interactive UI to achieve this.
405  * This will return immediately if a connection is already open, which results in an instant
406  * call of @callback. While making a connection, @account, if not NULL, will go online too. If
407  * @account is NULL, only a network connection is made using the platform's device.
408  */             
409 void modest_platform_connect_and_perform (GtkWindow *parent_window, 
410                                           TnyAccount *account, 
411                                           ModestConnectedPerformer callback, 
412                                           gpointer user_data);
413                 
414 /*
415  * modest_platform_connect_and_perform_if_network_account:
416  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
417  * @account: The account that might need a connection in subsequent operations.
418  * @callback: will be called when finished, can be NULL
419  * @user_data: user data for @callback
420  * 
421  * Like modest_platform_connect_and_perform(), but only attempts to make a connection if the 
422  * @account uses the network. For instance, this just returns for local maildir accounts. It
423  * will in that case instantly perform the @callback.
424  */
425 void modest_platform_connect_and_perform_if_network_account (GtkWindow *parent_window, 
426                                                              TnyAccount *account,
427                                                              ModestConnectedPerformer callback, 
428                                                              gpointer user_data);
429  
430 /*
431  * modest_platform_connect_and_perform_if_network_folderstore:
432  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
433  * @folder_store: The folder store (folder or account) that might need a connection in subsequent operations.
434  * @callback: will be called when finished, can be NULL
435  * @user_data: user data for @callback
436  * 
437  * Like modest_platform_connect_and_perform(), but only attempts to make a connection if the 
438  * folder store uses the network. For instance, this just returns for local maildir folders. It
439  * will in that case instantly perform the @callback
440  */
441 void modest_platform_connect_and_perform_if_network_folderstore (GtkWindow *parent_window, 
442                                                                  TnyFolderStore *folder_store,
443                                                                  ModestConnectedPerformer callback, 
444                                                                  gpointer user_data);
445
446 G_END_DECLS
447
448 #endif /* __MODEST_PLATFORM_UTILS_H__ */