X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-account.h;h=75f67ea00f09af4a4e78d4c04f1b8bbbd7052b33;hp=8cbcc72bcf2b3441efe1b48c8845c6dd9bada994;hb=HEAD;hpb=04fa8f60ad3ce55f41e650558c56f210e0d87143 diff --git a/src/modest-tny-account.h b/src/modest-tny-account.h index 8cbcc72..75f67ea 100644 --- a/src/modest-tny-account.h +++ b/src/modest-tny-account.h @@ -42,9 +42,12 @@ G_BEGIN_DECLS - - - +typedef struct +{ + guint local_size; + guint msg_count; + guint folders; +} ModestFolderStats; /** * modest_tny_account_new_from_account: @@ -70,17 +73,15 @@ modest_tny_account_new_from_account (ModestAccountMgr *account_mgr, const gchar /** * modest_tny_account_update_from_account: * @tny_account: a valid tny_account - * @account_mgr: a valid account mgr instance - * @account_name: the modest account name for which to create a corresponding tny account of the given type. - * @type: the type of account to create (TNY_ACCOUNT_TYPE_STORE or TNY_ACCOUNT_TYPE_TRANSPORT) * * update a tnyaccount corresponding to the server_accounts (store or transport) for this account. * * Returns: a TRUE or FALSE in case of error. */ gboolean -modest_tny_account_update_from_account (TnyAccount *tny_account, ModestAccountMgr *account_mgr, - const gchar *account_name, TnyAccountType type); +modest_tny_account_update_from_account (TnyAccount *tny_account, + TnyGetPassFunc get_pass_func, + TnyForgetPassFunc forget_pass_func); /** @@ -122,22 +123,9 @@ TnyAccount* modest_tny_account_new_for_per_account_local_outbox_folder ( TnyAccount* modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr, TnySessionCamel *session, - const gchar* server_account_name); - -/** - * modest_tny_account_new_from_server_account_name: - * @tny_account: a valid tny account - * @account_mgr: a valid account mgr instance - * @server_account_name: the name of a server account in the configuration system. - * - * update the given tny account; note that you cannot change the protocol type - * - * Returns: a new TnyAccount or NULL in case of error. - */ -gboolean modest_tny_account_update_from_server_account_name (TnyAccount *tny_account, - ModestAccountMgr *account_mgr, - const gchar *server_account_name); - + const gchar* server_account_name, + TnyGetPassFunc get_pass_func, + TnyForgetPassFunc forget_pass_func); /** * modest_tny_account_get_special_folder: @@ -157,36 +145,27 @@ TnyFolder* modest_tny_account_get_special_folder (TnyAccount *self, TnyFolderType special_type); -/** - * modest_tny_folder_store_get_folder_count: - * @self: a #TnyFolderStore - * - * gets the number of folders of the account - * - * Returns: the number of folder, or -1 in case of error - **/ -gint modest_tny_folder_store_get_folder_count (TnyFolderStore *self); +typedef void (*GetFolderStatsCallback) (ModestFolderStats stats, + gpointer user_data); /** - * modest_tny_folder_store_get_message_count: - * @self: - * - * gets the number of messages in the account + * modest_tny_folder_store_get_folder_stats: + * @self: a #TnyFolderStore * - * Returns: the number of messages, or -1 in case of error **/ -gint modest_tny_folder_store_get_message_count (TnyFolderStore *self); +void +modest_tny_folder_store_get_folder_stats (TnyFolderStore *self, + GetFolderStatsCallback callback, + GetFolderStatsCallback status_callback, + gpointer user_data); /** - * modest_tny_folder_store_get_local_size: - * @self: - * - * gets the total size occupied by the account in the local storage - * device - * - * Returns: the total size in bytes, or -1 in case of error - **/ -gint modest_tny_folder_store_get_local_size (TnyFolderStore *self); + * modest_tny_folder_store_is_remote: + * @folder_store: The folder store (folder or account) that needs to + * decide if need a connection in subsequent operations. + * @return value: Whether a connection is necessary for this folder_store. + */ +gboolean modest_tny_folder_store_is_remote (TnyFolderStore *self); /** modest_tny_account_get_parent_modest_account_name_for_server_account: * Get the name of the parent modest account of which the server account is a part. @@ -230,6 +209,16 @@ gboolean modest_tny_account_is_virtual_local_folders (TnyAccount *self); **/ gboolean modest_tny_account_is_memory_card_account (TnyAccount *self); +/** + * modest_tny_account_get_protocol_type: + * @self: a #TnyAccount + * + * obtains the transport/store protocol type of @self + * + * Returns: a #ModestProtocolType + */ +ModestProtocolType modest_tny_account_get_protocol_type (TnyAccount *self); + G_END_DECLS