X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-account.h;h=fdc73403cf50acc2983bf2b8908bb9307de7266a;hp=d4a2e3f46dac6785472341885fe0320230159066;hb=362784ce756b3f0e31cd451d9ac5e69b909d4053;hpb=1f6b01034793f771de0a833de4f58ce9e679a5f3 diff --git a/src/modest-tny-account.h b/src/modest-tny-account.h index d4a2e3f..fdc7340 100644 --- a/src/modest-tny-account.h +++ b/src/modest-tny-account.h @@ -95,13 +95,14 @@ TnyAccount* modest_tny_account_new_for_per_account_local_outbox_folder ( /** * modest_tny_account_new_from_server_account_name: * @account_mgr: a valid account mgr instance + * @session: a valid TnySessionCamel instance. * @server_account_name: the name of a server account in the configuration system. * * Returns: a new TnyAccount or NULL in case of error. */ TnyAccount* modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr, - const gchar* server_account_name); + TnySessionCamel *session, const gchar* server_account_name); /** * modest_tny_account_get_special_folder: @@ -114,7 +115,8 @@ modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr, * such as (for example) server-side Sent/Junk mail for IMAP accounts * * Returns: the tny folder corresponding to this special folder, or NULL in case - * of error, or if the special folder does not exist for this account + * of error, or if the special folder does not exist for this account. + * This must be unrefed with g_object_unref(). */ TnyFolder* modest_tny_account_get_special_folder (TnyAccount *self, TnyFolderType special_type); @@ -171,7 +173,28 @@ typedef void (*ModestTnyAccountGetMmcAccountNameCallback) (TnyStoreAccount* self * calling the callback (if not NULL) to notify that the name is changed. * if the name was changed. The callback will not be called if the name was not changed. */ -void modest_tny_account_get_mmc_account_name (TnyStoreAccount* self, ModestTnyAccountGetMmcAccountNameCallback callback, gpointer user_data); +void modest_tny_account_get_mmc_account_name (TnyStoreAccount* self, + ModestTnyAccountGetMmcAccountNameCallback callback, + gpointer user_data); + + +/** modest_tny_account_is_virtual_local_folders: + * @self A TnyAccount. + * + * A convenience function to identify whether TnyAccount + * is the virtual local folders account, containing the folders from local_folders/ + * and the outboxes from outboxes//. + **/ +gboolean modest_tny_account_is_virtual_local_folders (TnyAccount *self); + +/** modest_tny_account_is_memory_card_account: + * @self A TnyAccount. + * + * A convenience function to identify whether TnyAccount + * is the memory card account. + **/ +gboolean modest_tny_account_is_memory_card_account (TnyAccount *self); + G_END_DECLS