X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-platform.h;h=00f4010855a1f9f6a09cd0d5e1728adfc994ae0d;hp=8268d732ba9981b241c14b0529665c2a34c0837b;hb=e1c8c19034a3cb13d6c467442a1dafa0b12a4c60;hpb=b48954c32882b59110f8f1926c04b9a391289c90 diff --git a/src/modest-platform.h b/src/modest-platform.h index 8268d73..00f4010 100644 --- a/src/modest-platform.h +++ b/src/modest-platform.h @@ -189,6 +189,24 @@ gint modest_platform_run_rename_folder_dialog (GtkWindow *parent_win gint modest_platform_run_confirmation_dialog (GtkWindow *parent_window, const gchar *message); + +/** + * modest_platform_run_confirmation_dialog_with_buttons: + * @parent_window: the parent #GtkWindow of the dialog + * @message: the message to show to the user + * @button_accept: the text to show in the label of the accept button + * @button_cancel: the text to show in the label of the cancel button + * + * runs a confirmation dialog with the given values for the buttons + * + * Returns: GTK_RESPONSE_OK or GTK_RESPONSE_CANCEL + **/ +gint +modest_platform_run_confirmation_dialog_with_buttons (GtkWindow *parent_window, + const gchar *message, + const gchar *button_accept, + const gchar *button_cancel); + /** * modest_platform_run_yes_no_dialog: * @parent_window: the parent #GtkWindow of the dialog @@ -419,6 +437,26 @@ void modest_platform_connect_if_remote_and_perform (GtkWindow *parent_window, ModestConnectedPerformer callback, gpointer user_data); +/** + * modest_platform_get_account_settings_dialog: + * @settings: a #ModestAccountSettings + * + * creates a dialog for editing @settings + * + * Returns: the newly created dialog. + */ +GtkWidget *modest_platform_get_account_settings_dialog (ModestAccountSettings *settings); + +/** + * modest_platform_get_account_settings_wizard: + * @settings: a #ModestAccountSettings + * + * creates a dialog for editing @settings + * + * Returns: the newly created dialog. + */ +GtkWidget *modest_platform_get_account_settings_wizard (); + G_END_DECLS #endif /* __MODEST_PLATFORM_UTILS_H__ */