* Allow opening multiple viewers in nested messages
[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 #include "widgets/modest-sort-criterium-view.h"
37 #ifndef MODEST_TOOLKIT_GTK
38 #include <libosso.h>
39 #endif
40
41 G_BEGIN_DECLS
42
43 typedef enum _ModestConfirmationDialogType {
44         MODEST_CONFIRMATION_DELETE_FOLDER,
45 } ModestConfirmationDialogType;
46
47 typedef enum _ModestConnectedVia {
48         MODEST_CONNECTED_VIA_WLAN_OR_WIMAX = 1,
49         MODEST_CONNECTED_VIA_ANY,
50 } ModestConnectedVia;
51
52 /**
53  * modest_platform_platform_init:
54  *
55  * platform specific initialization function
56  * 
57  * Returns: TRUE if succeeded, FALSE otherwise
58  */
59 gboolean modest_platform_init (int argc, char *argv[]);
60
61
62 /**
63  * modest_platform_platform_init:
64  *
65  * platform specific un-initialization function
66  * 
67  * Returns: TRUE if succeeded, FALSE otherwise
68  */
69 gboolean modest_platform_uninit (void);
70
71
72 /**
73  * modest_platform_get_new_device:
74  *
75  * platform specific initialization function
76  * 
77  * Returns: TRUE if succeeded, FALSE otherwise
78  */
79 TnyDevice*  modest_platform_get_new_device (void);
80
81
82 /**
83  * modest_platform_get_file_icon_name:
84  * @name: the name of the file, or NULL
85  * @mime_type: the mime-type, or NULL
86  * @effective_mime_type: out-param which receives the 'effective mime-type', ie., the mime type
87  * that will be used. May be NULL if you're not interested in this. Note: the returned string
88  * is newly allocated, and should be g_free'd when done with it.
89  *
90  * this function gets the icon for the file, based on the file name and/or the mime type,
91  * using the following strategy:
92  * (1) if mime_type != NULL and mime_type != application/octet-stream, find the
93  *     the icon name for this mime type
94  * (2) otherwise, guess the icon type from the file name, and then goto (1)
95  *
96  * Returns: the icon name
97  */
98 gchar*  modest_platform_get_file_icon_name (const gchar* name, const gchar* mime_type,
99                                             gchar **effective_mime_type);
100
101 /**
102  * modest_platform_activate_uri:
103  * @uri: the uri to activate
104  *
105  * This function activates an URI
106  *
107  * Returns: %TRUE if successful, %FALSE if not.
108  **/
109 gboolean modest_platform_activate_uri (const gchar *uri);
110
111 /**
112  * modest_platform_activate_file:
113  * @path: the path to activate
114  * @mime_type: the mime type of the path, or %NULL to guess
115  *
116  * This function activates a file
117  *
118  * Returns: %TRUE if successful, %FALSE if not.
119  **/
120 gboolean modest_platform_activate_file (const gchar *path, const gchar *mime_type);
121
122 /**
123  * modest_platform_show_uri_popup:
124  * @uri: an URI with the string
125  *
126  * This function show the popup of actions for an URI
127  *
128  * Returns: %TRUE if successful, %FALSE if not.
129  **/
130 gboolean modest_platform_show_uri_popup (const gchar *uri);
131
132 /**
133  * modest_platform_get_icon:
134  * @name: the name of the icon
135  * @size: the icon size, use MODEST_ICON_SMALL or MODEST_ICON_BIG
136  *
137  * this function returns an icon, or NULL in case of error 
138  */
139 GdkPixbuf* modest_platform_get_icon (const gchar *name, guint icon_size);
140
141
142 /**
143  * modest_platform_get_app_name:
144  *
145  * this function returns the name of the application. Do not modify.
146  */
147 const gchar* modest_platform_get_app_name (void);
148
149
150 /**
151  * modest_platform_run_new_folder_dialog:
152  * @parent_window: a #GtkWindow
153  * @parent: the parent of the new folder
154  * @suggested_name: the suggested name for the new folder
155  * @folder_name: the folder name selected by the user for the new folder
156  * 
157  * runs a "new folder" confirmation dialog. The dialog will suggest a
158  * folder name which depends of the platform if the #suggested_name
159  * parametter is NULL. If the user input a valid folder name it's
160  * returned in the #folder_name attribute.
161  * 
162  * Returns: the #GtkResponseType returned by the dialog
163  **/
164 gint      modest_platform_run_new_folder_dialog        (GtkWindow *parent_window,
165                                                         TnyFolderStore *parent,
166                                                         gchar *suggested_name,
167                                                         gchar **folder_name);
168
169 /**
170  * modest_platform_run_rename_folder_dialog:
171  * @parent_window: a #GtkWindow
172  * @parent: the parent of the folder
173  * @suggested_name: current name of the folder
174  * @folder_name: the new folder name selected by the user for the folder
175  * 
176  * runs a "rename folder" confirmation dialog. If the user input a valid folder name it's
177  * returned in the #folder_name attribute.
178  * 
179  * Returns: the #GtkResponseType returned by the dialog
180  **/
181 gint      modest_platform_run_rename_folder_dialog        (GtkWindow *parent_window,
182                                                            TnyFolderStore *parent,
183                                                            const gchar *current_name,
184                                                            gchar **folder_name);
185
186 /**
187  * modest_platform_run_confirmation_dialog:
188  * @parent_window: the parent #GtkWindow of the dialog
189  * @message: the message to show to the user
190  * 
191  * runs a confirmation dialog
192  * 
193  * Returns: GTK_RESPONSE_OK or GTK_RESPONSE_CANCEL
194  **/
195 gint      modest_platform_run_confirmation_dialog      (GtkWindow *parent_window,
196                                                         const gchar *message);
197
198
199 /**
200  * modest_platform_run_confirmation_dialog_with_buttons:
201  * @parent_window: the parent #GtkWindow of the dialog
202  * @message: the message to show to the user
203  * @button_accept: the text to show in the label of the accept button
204  * @button_cancel: the text to show in the label of the cancel button
205  * 
206  * runs a confirmation dialog with the given values for the buttons
207  * 
208  * Returns: GTK_RESPONSE_OK or GTK_RESPONSE_CANCEL
209  **/
210 gint
211 modest_platform_run_confirmation_dialog_with_buttons (GtkWindow *parent_window,
212                                                       const gchar *message,
213                                                       const gchar *button_accept,
214                                                       const gchar *button_cancel);
215
216 /**
217  * modest_platform_run_information_dialog:
218  * @parent_window: the parent #GtkWindow of the dialog
219  * @message: the message to show
220  * @block: whether or not the dialog should block the main loop or not while running
221  * 
222  * shows an information dialog
223  **/
224 void      modest_platform_run_information_dialog       (GtkWindow *parent_window,
225                                                         const gchar *message,
226                                                         gboolean block);
227
228 /**
229  * modest_platform_create_sort_dialog:
230  * @parent_window: the parent #GtkWindow of the dialog
231  * 
232  * creates a proper sort dialog for the platform
233  *
234  * Returns: a #GtkDialog implementing #ModestSortCriteriumView interface
235  **/
236 GtkWidget *modest_platform_create_sort_dialog       (GtkWindow *parent_window);
237                 
238 /*
239  * modest_platform_connect_and_wait:
240  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
241  * @account: The account to be used.
242  * @return value: Whether a connection was made.
243  * 
244  * Attempts to make a connection, possibly showing interactive UI to achieve this.
245  * This will return TRUE immediately if a connection is already open.
246  * Otherwise, this function blocks until the connection attempt has either succeded or failed.
247  * This also sets the account to online, if it is a store account, in case it has been set to offline mode.
248  */             
249 gboolean modest_platform_connect_and_wait (GtkWindow *parent_window, TnyAccount *account);
250
251                 
252 /*
253  * modest_platform_connect_and_wait_if_network_account:
254  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
255  * @account: The account that might need a connection in subsequent operations.
256  * @return value: Whether a connection was made. Also returns TRUE if no connection is necessary.
257  * 
258  * Like modest_platform_connect_and_wait(), but only attempts to make a connection if the 
259  * account uses the network. For instance, this just returns TRUE for local maildir accounts. 
260  */
261 gboolean modest_platform_connect_and_wait_if_network_account (GtkWindow *parent_window, TnyAccount *account);
262
263 /*
264  * modest_platform_connect_and_wait_if_network_account:
265  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
266  * @folder_store: The folder store (folder or account) that might need a connection in subsequent operations.
267  * @return value: Whether a connection was made. Also returns TRUE if no connection is necessary.
268  * 
269  * Like modest_platform_connect_and_wait(), but only attempts to make a connection if the 
270  * folder store uses the network. For instance, this just returns TRUE for local maildir folders. 
271  */
272 gboolean modest_platform_connect_and_wait_if_network_folderstore (GtkWindow *parent_window, TnyFolderStore *folder_store);
273
274 /**
275  * modest_platform_set_update_interval:
276  * @minutes: The number of minutes between updates, or 0 for no updates.
277  * 
278  * Set the number of minutes between automatic updates of email accounts.
279  * The platform will cause the send/receive action to happen repeatedly.
280  **/
281 gboolean modest_platform_set_update_interval (guint minutes);
282
283 /**
284  * modest_platform_get_global_settings_dialog:
285  * @void: 
286  * 
287  * returns the global settings dialog
288  * 
289  * Return value: a new #ModestGlobalSettingsDialog dialog
290  **/
291 GtkWidget* modest_platform_get_global_settings_dialog (void);
292
293 /**
294  * modest_platform_push_email_notification:
295  *
296  * Notify the user when new e-mail arrives by playing a sound, making
297  * a light blink, etc.
298  */
299 void modest_platform_push_email_notification(void);
300
301 /**
302  * modest_platform_on_new_headers_received:
303  * @header_list: the list of new received headers
304  * @show_visual: adds a visual notification 
305  *
306  * Performs the required actions when new headers are
307  * received. Tipically it's useful for showing new email notifications
308  **/
309 void modest_platform_on_new_headers_received (TnyList *header_list,
310                                               gboolean show_visual);
311
312 /**
313  * modest_platform_show_help:
314  * @parent_window: 
315  * @help_id: the help topic id to be shown in the help dialog
316  * 
317  * shows the application help dialog
318  **/
319 void modest_platform_show_help (GtkWindow *parent_window, 
320                                 const gchar *help_id);
321
322 /**
323  * modest_platform_show_search_messages:
324  * @parent_window: window the dialog will be child of
325  *
326  * shows the search messages dialog
327  **/
328 void modest_platform_show_search_messages (GtkWindow *parent_window);
329
330 /**
331  * modest_platform_show_addressbook:
332  * @parent_window: window the dialog will be child of
333  *
334  * shows the addressbook
335  **/
336 void modest_platform_show_addressbook (GtkWindow *parent_window);
337
338
339 GtkWidget* modest_platform_create_folder_view (TnyFolderStoreQuery *query);
340
341 void modest_platform_information_banner (GtkWidget *widget,
342                                          const gchar *icon_name,
343                                          const gchar *text);
344
345 /* Timeout is in miliseconds */
346 void modest_platform_information_banner_with_timeout (GtkWidget *parent,
347                                                       const gchar *icon_name,
348                                                       const gchar *text,
349                                                       gint timeout);
350
351 GtkWidget *
352 modest_platform_animation_banner (GtkWidget *parent,
353                                   const gchar *annimation_name,
354                                   const gchar *text);
355                                   
356 /* TODO: This isn't platform-dependent, so this isn't the best place for this. */
357 /* Return TRUE immediately if the account is already online,
358  * otherwise check every second for NUMBER_OF_TRIES seconds and return TRUE as 
359  * soon as the account is online, or FALSE if the account does 
360  * not become online in the NUMBER_OF_TRIES seconds.
361  * This is useful when the D-Bus method was run immediately after 
362  * the application was started (when using D-Bus activation), 
363  * because the account usually takes a short time to go online.
364  * The return value is maybe not very useful.
365  */
366 gboolean modest_platform_check_and_wait_for_account_is_online(TnyAccount *account);
367
368
369
370 /**
371  * modest_platform_run_certificate_confirmation_dialog:
372  * @server_name: name of the server we get this dialog for
373  * @certificate: the text representation of the certificate
374  *
375  * show the unknown-certificate confirmation dialog
376  *
377  *  Returns: TRUE (Ok-pressed) or FALSE (cancel pressed)
378  **/
379 gboolean modest_platform_run_certificate_confirmation_dialog (const gchar* server_name,
380                                                               const gchar *certificate);
381
382
383 /**
384  * modest_platform_run_alert_dialog:
385  * @prompt: prompt for the dialog
386  * @is_question: is it a question dialog? 
387  *
388  * show the alert dialog for TnyAlerts
389  * if it's a aquest
390  *
391  *  Returns: TRUE (Ok-pressed) or FALSE (cancel pressed)
392  **/
393 gboolean modest_platform_run_alert_dialog (const gchar* prompt, gboolean is_question);
394
395
396 /**
397  * modest_platform_remove_new_mail_notifications:
398  * @only_visuals: remove only the visual notifications (like LEDs)
399  *
400  * Removes all the active new mail notifications
401  **/
402 void modest_platform_remove_new_mail_notifications (gboolean only_visuals);
403
404 /* ModestConnectedPerformer:
405  * @canceled: whether or not the user canceled
406  * @err: whether an error occured during connecting, or NULL of not
407  * @parent_window: the parent window or NULL
408  * @account: the account or NULL
409  * @user_data: your own user data
410  * 
411  * This is the callback for the modest_platform_connect_and_perform* functions
412  */
413 typedef void (*ModestConnectedPerformer) (gboolean canceled, 
414                                           GError *err,
415                                           GtkWindow *parent_window, 
416                                           TnyAccount *account, 
417                                           gpointer user_data);
418
419 typedef struct {
420         TnyAccount *dst_account;
421         ModestConnectedPerformer callback;
422         gpointer data;
423 } DoubleConnectionInfo;
424
425 /*
426  * modest_platform_connect_and_perform:
427  * @force: force the device to connect if we're offline, if FALSE then it does not connect if required
428  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
429  * @account: The account to be used.
430  * @callback: will be called when finished, can be NULL
431  * @user_data: user data for @callback
432  * 
433  * Attempts to make a connection, possibly showing interactive UI to achieve this.
434  * This will return immediately if a connection is already open, which results in an instant
435  * call of @callback. While making a connection, @account, if not NULL, will go online too. If
436  * @account is NULL, only a network connection is made using the platform's device.
437  */             
438 void modest_platform_connect_and_perform (GtkWindow *parent_window, 
439                                           gboolean force,
440                                           TnyAccount *account, 
441                                           ModestConnectedPerformer callback, 
442                                           gpointer user_data);
443                 
444 /*
445  * modest_platform_connect_if_remote_and_perform:
446  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
447  * @folder_store: The folder store (folder or account) that might need a connection in subsequent operations.
448  * @callback: will be called when finished, can be NULL
449  * @user_data: user data for @callback
450  * 
451  * Like modest_platform_connect_and_perform(), but only attempts to make a connection if the 
452  * folder store uses the network. For instance, this just returns for local maildir folders. It
453  * will in that case synchronously and instantly perform the @callback
454  */
455 void modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window, 
456                                                     gboolean force,
457                                                     TnyFolderStore *folder_store,
458                                                     ModestConnectedPerformer callback, 
459                                                     gpointer user_data);
460
461 /*
462  * modest_platform_double_connect_and_perform:
463  * @parent_window: the parent #GtkWindow for any interactive or progress feedback UI.
464  * @folder_store: The folder store (folder or account) that might need a connection in subsequent operations.
465  * @callback: will be called when finished, can be NULL
466  * @info: 
467  * 
468  */
469 void modest_platform_double_connect_and_perform (GtkWindow *parent_window, 
470                                                  gboolean force,
471                                                  TnyFolderStore *folder_store,
472                                                  DoubleConnectionInfo *info);
473
474 /**
475  * modest_platform_get_account_settings_wizard:
476  * @settings: a #ModestAccountSettings
477  *
478  * creates a dialog for editing @settings
479  *
480  * Returns: the newly created dialog.
481  */
482 GtkWidget *modest_platform_get_account_settings_wizard (void);
483
484 ModestConnectedVia modest_platform_get_current_connection (void);
485
486
487
488
489 /**
490  * modest_platform_check_memory_low:
491  * 
492  * @win: a ModestWindow, or NULL
493  * @visuals: whether or not show visual information
494  *
495  * see if memory is too low for big memory consuming operations
496  * optionally show a warning dialog if @win was provided
497  *
498  * Returns: TRUE if we're in lowmem state, FALSE otherwise
499  */
500 gboolean modest_platform_check_memory_low (ModestWindow *win,
501                                            gboolean visuals);
502
503
504 /**
505  * modest_platform_run_folder_details_dialog:
506  * @parent_window: the parent #GtkWindow for the new dialog
507  * @folder: the #TnyFolder whose details will be shown
508  * 
509  * Shows the folder details dialog
510  **/
511 void     modest_platform_run_folder_details_dialog (GtkWindow *parent_window,
512                                                     TnyFolder *folder);
513
514 /**
515  * modest_platform_run_header_details_dialog:
516  * @parent_window: the parent #GtkWindow for the new dialog
517  * @header: the #TnyHeader whose details will be shown
518  * 
519  * Shows the header details dialog
520  **/
521 void     modest_platform_run_header_details_dialog (GtkWindow *parent_window,
522                                                     TnyHeader *header);
523
524 #ifndef MODEST_TOOLKIT_GTK
525 /**
526  * modest_platform_get_osso_context:
527  *
528  * Obtains the osso context pointer for the application
529  *
530  * Returns: the osso context pointer
531  */
532 osso_context_t *modest_platform_get_osso_context (void);
533 #endif
534
535
536
537 G_END_DECLS
538
539 #endif /* __MODEST_PLATFORM_UTILS_H__ */
540