| 362 |
362 |
| 363 /** |
363 /** |
| 364 * Add autocompletion of screenames to an entry, supporting a filtering function. |
364 * Add autocompletion of screenames to an entry, supporting a filtering function. |
| 365 * |
365 * |
| 366 * @param entry The GtkEntry on which to setup autocomplete. |
366 * @param entry The GtkEntry on which to setup autocomplete. |
| 367 * @param optmenu A menu for accounts, returned by gaim_gtk_account_option_menu_new(). |
367 * @param optmenu A menu for accounts, returned by pidgin_account_option_menu_new(). |
| 368 * If @a optmenu is not @c NULL, it'll be updated when a username is chosen |
368 * If @a optmenu is not @c NULL, it'll be updated when a username is chosen |
| 369 * from the autocomplete list. |
369 * from the autocomplete list. |
| 370 * @param filter_func A function for checking if an autocomplete entry |
370 * @param filter_func A function for checking if an autocomplete entry |
| 371 * should be shown. This can be @c NULL. |
371 * should be shown. This can be @c NULL. |
| 372 * @param user_data The data to be passed to the filter_func function. |
372 * @param user_data The data to be passed to the filter_func function. |