X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-text-utils.h;h=f10562f4ba8bbbddc9e286df96d0d69c1951334c;hb=8170bb3987b5f26f1e3b268c90bc0ba34460e101;hp=9826348bdd5ea27d80c4aeac6c1d3cfd6a0d4a22;hpb=1b908acde049d391f1f94971e04d149852b4d2e5;p=modest diff --git a/src/modest-text-utils.h b/src/modest-text-utils.h index 9826348..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[]; @@ -175,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); @@ -473,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__ */