Thu, 25 Aug 2022 20:28:46 -0500
Fix up the add buddy dialog
Testing Done:
Opened the dialog and made sure everything works.
Reviewed at https://reviews.imfreedom.org/r/1646/
/* * Purple - Internet Messaging Library * Copyright (C) Pidgin Developers <devel@pidgin.im> * * Purple is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see <https://www.gnu.org/licenses/>. */ #if !defined(PURPLE_GLOBAL_HEADER_INSIDE) && !defined(PURPLE_COMPILATION) # error "only <purple.h> may be included directly" #endif #ifndef PURPLE_MARKUP_H #define PURPLE_MARKUP_H #include <glib.h> G_BEGIN_DECLS /** * purple_markup_escape_text: * @text: The text to escape * @length: The length of the text, or -1 if #NULL terminated * * Escapes special characters in a plain-text string so they display * correctly as HTML. For example, & is replaced with &amp; and < is * replaced with &lt; * * This is exactly the same as g_markup_escape_text(), except that it * does not change ' to &apos; because &apos; is not a valid HTML 4 entity, * and is displayed literally in IE7. */ gchar *purple_markup_escape_text(const gchar *text, gssize length); /** * purple_markup_find_tag: * @needle: The name of the tag * @haystack: The null-delimited string to search in * @start: A pointer to the start of the tag if found * @end: A pointer to the end of the tag if found * @attributes: The attributes, if the tag was found. This should * be freed with g_datalist_clear(). * * Finds an HTML tag matching the given name. * * This locates an HTML tag's start and end, and stores its attributes * in a GData hash table. The names of the attributes are lower-cased * in the hash table, and the name of the tag is case insensitive. * * Returns: TRUE if the tag was found */ gboolean purple_markup_find_tag(const char *needle, const char *haystack, const char **start, const char **end, GData **attributes); /** * purple_markup_html_to_xhtml: * @html: The HTML markup. * @dest_xhtml: The destination XHTML output. * @dest_plain: The destination plain-text output. * * Converts HTML markup to XHTML. */ void purple_markup_html_to_xhtml(const char *html, char **dest_xhtml, char **dest_plain); /** * purple_markup_strip_html: * @str: The string to strip HTML from. * * Strips HTML tags from a string. * * Returns: The new string without HTML. You must g_free this string * when finished with it. */ char *purple_markup_strip_html(const char *str); /** * purple_markup_linkify: * @str: The string to linkify. * * Adds the necessary HTML code to turn URIs into HTML links in a string. * * Returns: The new string with all URIs surrounded in standard * HTML <a href="whatever"></a> tags. You must g_free() * this string when finished with it. */ char *purple_markup_linkify(const char *str); /** * purple_unescape_text: * @text: The string in which to unescape any HTML entities * * Unescapes HTML entities to their literal characters in the text. * For example "&amp;" is replaced by '&' and so on. Also converts * numerical entities (e.g. "&\#38;" is also '&'). * * This function currently supports the following named entities: * "&amp;", "&lt;", "&gt;", "&copy;", "&quot;", * "&reg;", "&apos;" * * purple_unescape_html() is similar, but also converts "<br>" into "\n". * * See purple_unescape_html() * * Returns: The text with HTML entities literalized. You must g_free * this string when finished with it. */ char *purple_unescape_text(const char *text); /** * purple_unescape_html: * @html: The string in which to unescape any HTML entities * * Unescapes HTML entities to their literal characters and converts * "<br>" to "\n". See purple_unescape_text() for more details. * * See purple_unescape_text() * * Returns: The text with HTML entities literalized. You must g_free * this string when finished with it. */ char *purple_unescape_html(const char *html); /** * purple_markup_slice: * @str: The input NUL terminated, HTML, UTF-8 (or ASCII) string. * @x: The character offset into an unformatted version of str to begin at. * @y: The character offset (into an unformatted version of str) of one past * the last character to include in the slice. * * Returns a newly allocated substring of the HTML UTF-8 string "str". * The markup is preserved such that the substring will have the same * formatting as original string, even though some tags may have been * opened before "x", or may close after "y". All open tags are closed * at the end of the returned string, in the proper order. * * Note that x and y are in character offsets, not byte offsets, and * are offsets into an unformatted version of str. Because of this, * this function may be sensitive to changes in GtkIMHtml and may break * when used with other UI's. libpurple users are encouraged to report and * work out any problems encountered. * * Returns: The HTML slice of string, with all formatting retained. */ char *purple_markup_slice(const char *str, guint x, guint y); /** * purple_markup_get_tag_name: * @tag: The string starting a HTML tag. * * Returns a newly allocated string containing the name of the tag * located at "tag". Tag is expected to point to a '<', and contain * a '>' sometime after that. If there is no '>' and the string is * not NUL terminated, this function can be expected to segfault. * * Returns: A string containing the name of the tag. */ char *purple_markup_get_tag_name(const char *tag); /** * purple_markup_unescape_entity: * @text: A string containing an HTML entity. * @length: If not %NULL, the string length of the entity is stored in this location. * * Returns a constant string of the character representation of the HTML * entity pointed to by @text. For example, purple_markup_unescape_entity("&amp;") * will return "&". The @text variable is expected to point to an '&', * the first character of the entity. If given an unrecognized entity, the function * returns %NULL. * * Note that this function, unlike purple_unescape_html(), does not search * the string for the entity, does not replace the entity, and does not * return a newly allocated string. * * Returns: A constant string containing the character representation of the given entity. */ const char * purple_markup_unescape_entity(const char *text, int *length); /** * purple_markup_get_css_property: * @style: A string containing the inline CSS text. * @opt: The requested CSS property. * * Returns a newly allocated string containing the value of the CSS property specified * in opt. The @style argument is expected to point to a HTML inline CSS. * The function will seek for the CSS property and return its value. * * For example, purple_markup_get_css_property("direction:rtl;color:#dc4d1b;", * "color") would return "#dc4d1b". * * On error or if the requested property was not found, the function returns * %NULL. * * Returns: The value of the requested CSS property. */ char * purple_markup_get_css_property(const gchar *style, const gchar *opt); /** * purple_markup_is_rtl: * @html: The HTML text. * * Check if the given HTML contains RTL text. * * Returns: TRUE if the text contains RTL text, FALSE otherwise. */ gboolean purple_markup_is_rtl(const char *html); G_END_DECLS #endif /* PURPLE_MARKUP_H */