X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmaemo%2Fmodest-account-settings-dialog.h;h=e60df5c086a2741b6bfbffac61edd89e7084b975;hb=a472bd787a6d9bafb41d5e0f45815a1c61af77c3;hp=769d622518fbf97747582fb0cff26ff5a6948081;hpb=3f42b5ae96903964c4eddb9dcebd223ef5925d6b;p=modest diff --git a/src/maemo/modest-account-settings-dialog.h b/src/maemo/modest-account-settings-dialog.h index 769d622..e60df5c 100644 --- a/src/maemo/modest-account-settings-dialog.h +++ b/src/maemo/modest-account-settings-dialog.h @@ -6,9 +6,10 @@ #ifndef _MODEST_ACCOUNT_SETTINGS_DIALOG #define _MODEST_ACCOUNT_SETTINGS_DIALOG -#include +#include +#include #include "modest-account-mgr.h" -#include +#include "modest-hildon-includes.h" G_BEGIN_DECLS @@ -40,14 +41,23 @@ typedef struct { /* Used by derived widgets to query existing accounts, * and to create new accounts: */ ModestAccountMgr *account_manager; + ModestAccountSettings *settings; + gboolean modified; gchar * account_name; /* This may not change. It is not user visible. */ + ModestTransportStoreProtocol incoming_protocol; /* This may not change. */ + ModestTransportStoreProtocol outgoing_protocol; /* This may not change. */ gchar * original_account_title; + + ModestAuthProtocol protocol_authentication_incoming; + + GtkNotebook *notebook; GtkWidget *page_account_details; GtkWidget *entry_account_title; GtkWidget *combo_retrieve; GtkWidget *combo_limit_retrieve; + GtkWidget *caption_leave_messages; GtkWidget *checkbox_leave_messages; GtkWidget *page_user_details; @@ -78,6 +88,9 @@ typedef struct { GtkWidget *checkbox_outgoing_smtp_specific; GtkWidget *button_outgoing_smtp_servers; + GtkWidget *specific_window; + GtkWidget *signature_dialog; + } ModestAccountSettingsDialog; typedef struct { @@ -89,7 +102,9 @@ GType modest_account_settings_dialog_get_type (void); ModestAccountSettingsDialog* modest_account_settings_dialog_new (void); -void modest_account_settings_dialog_set_account_name (ModestAccountSettingsDialog *dialog, const gchar* account_name); +void modest_account_settings_dialog_set_account (ModestAccountSettingsDialog *dialog, ModestAccountSettings *settings); + +void modest_account_settings_dialog_switch_to_user_info (ModestAccountSettingsDialog *dialog); G_END_DECLS