comparison src/prpl.h @ 5493:3e8487580024

[gaim-migrate @ 5889] Everything is now moved to the new gaim_request_input(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 22 May 2003 20:50:30 +0000
parents fc0441fbf159
children cce2d7868c78
comparison
equal deleted inserted replaced
5492:a75a952d78db 5493:3e8487580024
368 void do_ask_dialog(const char *prim, const char *sec, void *data, 368 void do_ask_dialog(const char *prim, const char *sec, void *data,
369 char *yestext, void *doit, char *notext, void *dont, 369 char *yestext, void *doit, char *notext, void *dont,
370 GModule *handle, gboolean modal); 370 GModule *handle, gboolean modal);
371 371
372 /** 372 /**
373 * Prompts the user for data.
374 *
375 * @param text The text to present to the user.
376 * @param def The default data, or @c NULL.
377 * @param data The data to be passed to the callback.
378 * @param doit The callback function to call when the Accept button is clicked.
379 * @param dont The callback function to call when the Cancel button is clicked.
380 */
381 void do_prompt_dialog(const char *text, const char *sdef, void *data,
382 void *doit, void *dont);
383
384 /**
385 * Called to notify the user that the account has new mail. 373 * Called to notify the user that the account has new mail.
386 * 374 *
387 * If @a count is less than 0, the dialog will display the the sender 375 * If @a count is less than 0, the dialog will display the the sender
388 * and the subject, if available. If @a count is greater than 0, it will 376 * and the subject, if available. If @a count is greater than 0, it will
389 * display how many messages the user has. 377 * display how many messages the user has.