| 246 GtkWidget *gaim_gtk_account_option_menu_new(GaimAccount *default_account, |
246 GtkWidget *gaim_gtk_account_option_menu_new(GaimAccount *default_account, |
| 247 gboolean show_all, GCallback cb, |
247 gboolean show_all, GCallback cb, |
| 248 GaimFilterAccountFunc filter_func, gpointer user_data); |
248 GaimFilterAccountFunc filter_func, gpointer user_data); |
| 249 |
249 |
| 250 /** |
250 /** |
| |
251 * Gets the currently selected account from an account drop down box. |
| |
252 * |
| |
253 * @param optmenu The GtkOptionMenu created by |
| |
254 * gaim_gtk_account_option_menu_new. |
| |
255 * @return Returns the GaimAccount that is currently selected. |
| |
256 */ |
| |
257 GaimAccount *gaim_gtk_account_option_menu_get_selected(GtkWidget *optmenu); |
| |
258 |
| |
259 /** |
| 251 * Check if the given path is a directory or not. If it is, then modify |
260 * Check if the given path is a directory or not. If it is, then modify |
| 252 * the given GtkFileSelection dialog so that it displays the given path. |
261 * the given GtkFileSelection dialog so that it displays the given path. |
| 253 * If the given path is not a directory, then do nothing. |
262 * If the given path is not a directory, then do nothing. |
| 254 * |
263 * |
| 255 * @param path The path entered in the file selection window by the user. |
264 * @param path The path entered in the file selection window by the user. |