X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-account.h;h=75f67ea00f09af4a4e78d4c04f1b8bbbd7052b33;hp=1816541360c534134f6f1cf0ee2af2cfa3bdf1db;hb=1e47ed7af2fdfa9a59c41b57bb68c00699e40726;hpb=ff1c10570c382523c3f9c414159a6eb4a6dd4c0f diff --git a/src/modest-tny-account.h b/src/modest-tny-account.h index 1816541..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: @@ -142,36 +145,19 @@ 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); - -/** - * modest_tny_folder_store_get_message_count: - * @self: - * - * gets the number of messages in the account - * - * Returns: the number of messages, or -1 in case of error - **/ -gint modest_tny_folder_store_get_message_count (TnyFolderStore *self); +typedef void (*GetFolderStatsCallback) (ModestFolderStats stats, + gpointer user_data); /** - * modest_tny_folder_store_get_local_size: - * @self: - * - * gets the total size occupied by the account in the local storage - * device + * modest_tny_folder_store_get_folder_stats: + * @self: a #TnyFolderStore * - * Returns: the total size in bytes, or -1 in case of error **/ -gint modest_tny_folder_store_get_local_size (TnyFolderStore *self); +void +modest_tny_folder_store_get_folder_stats (TnyFolderStore *self, + GetFolderStatsCallback callback, + GetFolderStatsCallback status_callback, + gpointer user_data); /** * modest_tny_folder_store_is_remote: @@ -223,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