X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-folder.h;h=c2c812e47fcbff96d55efcccd477fda7fda8e2a5;hp=909691193a5e0a6ee941bc1f2da72383c04fd056;hb=bb515e94c04fe931befaebe40d91fa3e9217b7d6;hpb=96d9a8c787c693406a0f26e3d3a00065c7236fe5 diff --git a/src/modest-tny-folder.h b/src/modest-tny-folder.h index 9096911..c2c812e 100644 --- a/src/modest-tny-folder.h +++ b/src/modest-tny-folder.h @@ -95,6 +95,16 @@ TnyFolderType modest_tny_folder_guess_folder_type_from_name (const gchar *fol */ gboolean modest_tny_folder_is_local_folder (TnyFolder *folder); +/** + * modest_tny_folder_is_memory_card_folder: + * @folder: a valid tnymail folder + * + * checks if the folder is part of the memory card account. + * + * Returns: TRUE if it's a memory card folder, FALSE otherwise + */ +gboolean +modest_tny_folder_is_memory_card_folder (TnyFolder *folder); /** * modest_tny_folder_get_local_folder_type: @@ -129,7 +139,35 @@ ModestTnyFolderRules modest_tny_folder_get_rules (TnyFolder *folder); * Returns: TRUE if this folder is the per-account outbox for the account. */ gboolean modest_tny_folder_is_outbox_for_account (TnyFolder *folder, - TnyAccount *account); + TnyAccount *account); + +/** + * modest_tny_folder_get_account: + * @folder: a folder + * + * Get the parent account of the folder or, for TnyMergeFolder + * instances, get the local-folders account. + * + * Returns: the account. You should call g_object_unref() on this. + */ +TnyAccount *modest_tny_folder_get_account (TnyFolder *folder); + +/** + * modest_tny_msg_get_header_unique_id: + * @header: a #TnyHeader + * + * this function returns a unique id for a message summary, that's it + * a TnyHeader retrieved with tny_folder_get_headers (you can not use + * the TnyHeader returned by tny_msg_get_header because it has not an + * uid). + * + * This uid is built from the folder URL string and the header uid, + * the caller of the function must free the unique id when no longer + * needed + * + * Returns: a unique identificator for a header object + **/ +gchar* modest_tny_folder_get_header_unique_id (TnyHeader *header); G_END_DECLS