X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodest-platform.h;h=a03746758251af43590d2e79d3edd23c795f5466;hb=54468304d70281e5847f1d92acd70c4a758e97a1;hp=f728f3e53b65c8b37fa58e5156e8db8ce38c0a69;hpb=627c4af6ac85444cc3256fa568baf4a8d62178ae;p=modest diff --git a/src/modest-platform.h b/src/modest-platform.h index f728f3e..a037467 100644 --- a/src/modest-platform.h +++ b/src/modest-platform.h @@ -34,6 +34,9 @@ #include "widgets/modest-window.h" #include "widgets/modest-folder-view.h" #include "widgets/modest-sort-criterium-view.h" +#ifndef MODEST_TOOLKIT_GTK +#include +#endif G_BEGIN_DECLS @@ -211,19 +214,6 @@ modest_platform_run_confirmation_dialog_with_buttons (GtkWindow *parent_window, const gchar *button_cancel); /** - * modest_platform_run_yes_no_dialog: - * @parent_window: the parent #GtkWindow of the dialog - * @message: the message to show to the user - * - * runs a dialog that offers yes and no buttons. - * - * Returns: GTK_RESPONSE_YES or GTK_RESPONSE_NO - **/ -gint modest_platform_run_yes_no_dialog (GtkWindow *parent_window, - const gchar *message); - - -/** * modest_platform_run_information_dialog: * @parent_window: the parent #GtkWindow of the dialog * @message: the message to show @@ -511,6 +501,39 @@ gboolean modest_platform_check_memory_low (ModestWindow *win, gboolean visuals); +/** + * modest_platform_run_folder_details_dialog: + * @parent_window: the parent #GtkWindow for the new dialog + * @folder: the #TnyFolder whose details will be shown + * + * Shows the folder details dialog + **/ +void modest_platform_run_folder_details_dialog (GtkWindow *parent_window, + TnyFolder *folder); + +/** + * modest_platform_run_header_details_dialog: + * @parent_window: the parent #GtkWindow for the new dialog + * @header: the #TnyHeader whose details will be shown + * + * Shows the header details dialog + **/ +void modest_platform_run_header_details_dialog (GtkWindow *parent_window, + TnyHeader *header); + +#ifndef MODEST_TOOLKIT_GTK +/** + * modest_platform_get_osso_context: + * + * Obtains the osso context pointer for the application + * + * Returns: the osso context pointer + */ +osso_context_t *modest_platform_get_osso_context (void); +#endif + + + G_END_DECLS #endif /* __MODEST_PLATFORM_UTILS_H__ */