comparison src/gtkutils.h @ 5966:5fb6bd688a5b

[gaim-migrate @ 6413] I renamed file_is_dir to gaim_gtk_check_if_dir and moved it to gtkutils.c/h Chipster (or whoever) - Lemme know if that's notsogood, remember: I pretend not to know anything about gtk. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 27 Jun 2003 23:11:21 +0000
parents a4f2aba0848d
children 9dd4bb3cf1df
comparison
equal deleted inserted replaced
5965:cd8f8e5d697e 5966:5fb6bd688a5b
204 GtkWidget *gaim_gtk_account_option_menu_new(GaimAccount *default_account, 204 GtkWidget *gaim_gtk_account_option_menu_new(GaimAccount *default_account,
205 gboolean show_all, GCallback cb, 205 gboolean show_all, GCallback cb,
206 gpointer user_data); 206 gpointer user_data);
207 207
208 /** 208 /**
209 * Check if the given path is a directory or not. If it is, then modify
210 * the given GtkFileSelection dialog so that it displays the given path.
211 * If the given path is not a directory, then do nothing.
212 *
213 * @param path The path entered in the file selection window by the user.
214 * @param filesel The file selection window.
215 *
216 * @return TRUE if given path is a directory, FALSE otherwise.
217 */
218 gboolean gaim_gtk_check_if_dir(const char *path, GtkFileSelection *filesel);
219
220 /**
209 * Stylizes the specified text using HTML, according to the current 221 * Stylizes the specified text using HTML, according to the current
210 * font options. 222 * font options.
211 * 223 *
212 * @param text The text to stylize. 224 * @param text The text to stylize.
213 * @param len The intended length of the new buffer. 225 * @param len The intended length of the new buffer.