X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-platform.h;h=0bb795281f9870e840b61775597f952a7d593771;hb=b994012b9333d384da0ea9af77713cd1852b5b85;hp=b2024eb9cd996ce4d2869dacdf18a02f44919b17;hpb=559eb056f86c05494e9c6c657c11a09ab9b78cc4;p=modest diff --git a/src/modest-platform.h b/src/modest-platform.h index b2024eb..0bb7952 100644 --- a/src/modest-platform.h +++ b/src/modest-platform.h @@ -95,12 +95,13 @@ gboolean modest_platform_activate_uri (const gchar *uri); /** * modest_platform_activate_file: * @path: the path to activate + * @mime_type: the mime type of the path, or %NULL to guess * * This function activates a file * * Returns: %TRUE if successful, %FALSE if not. **/ -gboolean modest_platform_activate_file (const gchar *path); +gboolean modest_platform_activate_file (const gchar *path, const gchar *mime_type); /** * modest_platform_show_uri_popup: @@ -122,7 +123,7 @@ GdkPixbuf* modest_platform_get_icon (const gchar *name); /** - * modest_platform_get_application_name: + * modest_platform_get_app_name: * * this function returns the name of the application. Do not modify. */ @@ -213,6 +214,33 @@ GtkWidget* modest_platform_get_global_settings_dialog (void); void modest_platform_on_new_msg (void); + +/** + * modest_platform_show_help: + * @parent_window: + * @help_id: the help topic id to be shown in the help dialog + * + * shows the application help dialog + **/ +void modest_platform_show_help (GtkWindow *parent_window, + const gchar *help_id); + +/** + * modest_platform_show_search_messages: + * @parent_window: window the dialog will be child of + * + * shows the search messages dialog + **/ +void modest_platform_show_search_messages (GtkWindow *parent_window); + +/** + * modest_platform_show_addressbook: + * @parent_window: window the dialog will be child of + * + * shows the addressbook + **/ +void modest_platform_show_addressbook (GtkWindow *parent_window); + G_END_DECLS #endif /* __MODEST_PLATFORM_UTILS_H__ */