comparison src/gtkutils.h @ 7078:acd2a66e59ed

[gaim-migrate @ 7643] robot101 gave us images in notify_formatted windows. very cool. This lets what I committed earlier (which was support for images in jabber vcards) to work. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 30 Sep 2003 18:41:28 +0000
parents 41120df7ed94
children c4faffdc0862
comparison
equal deleted inserted replaced
7077:6d10bf28be0e 7078:acd2a66e59ed
257 * @return TRUE if given path is a directory, FALSE otherwise. 257 * @return TRUE if given path is a directory, FALSE otherwise.
258 */ 258 */
259 gboolean gaim_gtk_check_if_dir(const char *path, GtkFileSelection *filesel); 259 gboolean gaim_gtk_check_if_dir(const char *path, GtkFileSelection *filesel);
260 260
261 /** 261 /**
262 * Parses a message to find <IMG> tags with valid ID attributes that
263 * refer to images in Gaim's image store, and load them into a list
264 * of GdkPixbufs. Image tags with missing ID paramaters, or those that
265 * refer to images that are not in the store will have a corresponding
266 * NULL entry on the list.
267 *
268 * @param message The message to parse for image tags.
269 * @param list A pointer to the GSList of GdkPixbufs that will be created.
270 */
271 void gaim_gtk_find_images(const char *message, GSList **list);
272
273 /**
262 * Stylizes the specified text using HTML, according to the current 274 * Stylizes the specified text using HTML, according to the current
263 * font options. 275 * font options.
264 * 276 *
265 * @param text The text to stylize. 277 * @param text The text to stylize.
266 * @param len The intended length of the new buffer. 278 * @param len The intended length of the new buffer.