X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-text-utils.h;h=f10562f4ba8bbbddc9e286df96d0d69c1951334c;hp=503c4a78fe3056bdd69ee0bc5a473e053d682bf8;hb=dab3a3a59ed13e9e66d82cb9a42be9710d7719d3;hpb=a6f2014ab1650908e8ee043223ed7090c7928e2a diff --git a/src/modest-text-utils.h b/src/modest-text-utils.h index 503c4a7..f10562f 100644 --- a/src/modest-text-utils.h +++ b/src/modest-text-utils.h @@ -44,6 +44,7 @@ #define _HL(str) dgettext("hildon-libs",str) #define _MD(str) dgettext("maemo-af-desktop",str) #define _AB(str) dgettext("osso-addressbook",str) +#define _KR(str) dgettext("ke-recv",str) /* Forbidden char arrays */ extern const gchar account_title_forbidden_chars[]; @@ -153,7 +154,6 @@ gchar* modest_text_utils_remove_address (const gchar *address_list, * in case of error or the original @address_list was NULL */ gchar* modest_text_utils_remove_duplicate_addresses (const gchar *address_list); - /** @@ -176,14 +176,14 @@ void modest_text_utils_address_range_at_position (const gchar *recipients_li /** * modest_text_utils_hyperlinkify_begin: * - * begin a linkify block, compiling the caches to be reused. + * begin a linkify block, compiling the caches to be reused. Use it in mainloop. */ void modest_text_utils_hyperlinkify_begin (void); /** * modest_text_utils_hyperlinkify_end: * - * end a linkify block, freeing the caches to be reused. + * end a linkify block, freeing the caches to be reused. Use it in mainloop. */ void modest_text_utils_hyperlinkify_end (void); @@ -474,5 +474,18 @@ gboolean modest_text_utils_buffer_selection_is_valid (GtkTextBuffer *buffer) */ gchar *modest_text_utils_escape_mnemonics (const gchar *text); +/** + * modest_text_utils_simplify_recipients: + * @recipients: a list of recipients + * + * returns a list of simplified recipients: + * * a@b converted to a@b + * * NULL converted to "" + * + * It's mainly intended for printing in screen addresses, but it can + * also be used for reply/forward. + */ +gchar *modest_text_utils_simplify_recipients (const gchar *recipient); + #endif /* __MODEST_TEXT_UTILS_H__ */