comparison src/request.h @ 6720:41120df7ed94

[gaim-migrate @ 7247] Fixed documentation errors so Doxygen no longer complains. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 03 Sep 2003 05:21:04 +0000
parents 8c44020a958e
children feb3d21a7794
comparison
equal deleted inserted replaced
6719:3cc4d5e55a69 6720:41120df7ed94
515 gboolean default_value); 515 gboolean default_value);
516 516
517 /** 517 /**
518 * Sets the default value in an boolean field. 518 * Sets the default value in an boolean field.
519 * 519 *
520 * @param field The field. 520 * @param field The field.
521 * @param value The default value. 521 * @param default_value The default value.
522 */ 522 */
523 void gaim_request_field_bool_set_default_value(GaimRequestField *field, 523 void gaim_request_field_bool_set_default_value(GaimRequestField *field,
524 gboolean default_value); 524 gboolean default_value);
525 525
526 /** 526 /**
527 * Sets the value in an boolean field. 527 * Sets the value in an boolean field.
528 * 528 *
529 * @param field The field. 529 * @param field The field.
530 * @param default_value The default value. 530 * @param value The value.
531 */ 531 */
532 void gaim_request_field_bool_set_value(GaimRequestField *field, 532 void gaim_request_field_bool_set_value(GaimRequestField *field,
533 gboolean value); 533 gboolean value);
534 534
535 /** 535 /**
536 * Returns the default value in an boolean field. 536 * Returns the default value in an boolean field.
537 * 537 *
538 * @param field The field. 538 * @param field The field.
539 * 539 *
540 * @return The default value. 540 * @return The default value.
541 */ 541 */
542 gboolean gaim_request_field_bool_get_default_value( 542 gboolean gaim_request_field_bool_get_default_value(
543 const GaimRequestField *field); 543 const GaimRequestField *field);
544 544
671 * @param ok_cb The callback for the OK button. 671 * @param ok_cb The callback for the OK button.
672 * @param cancel_text The text for the cancel button. 672 * @param cancel_text The text for the cancel button.
673 * @param cancel_cb The callback for the cancel button. 673 * @param cancel_cb The callback for the cancel button.
674 * @param user_data The data to pass to the callback. 674 * @param user_data The data to pass to the callback.
675 * @param choice_count The number of choices. 675 * @param choice_count The number of choices.
676 * @param choice The choices. 676 * @param ... The choices.
677 * 677 *
678 * @return A UI-specific handle. 678 * @return A UI-specific handle.
679 */ 679 */
680 void *gaim_request_choice(void *handle, const char *title, 680 void *gaim_request_choice(void *handle, const char *title,
681 const char *primary, const char *secondary, 681 const char *primary, const char *secondary,
720 * @param primary The main point of the message. 720 * @param primary The main point of the message.
721 * @param secondary The secondary information. 721 * @param secondary The secondary information.
722 * @param default_action The default value. 722 * @param default_action The default value.
723 * @param user_data The data to pass to the callback. 723 * @param user_data The data to pass to the callback.
724 * @param action_count The number of actions. 724 * @param action_count The number of actions.
725 * @param action The first action. 725 * @param ... A list of actions.
726 * 726 *
727 * @return A UI-specific handle. 727 * @return A UI-specific handle.
728 */ 728 */
729 void *gaim_request_action(void *handle, const char *title, 729 void *gaim_request_action(void *handle, const char *title,
730 const char *primary, const char *secondary, 730 const char *primary, const char *secondary,
839 839
840 /** 840 /**
841 * Returns the UI operations structure to be used when displaying a 841 * Returns the UI operations structure to be used when displaying a
842 * request. 842 * request.
843 * 843 *
844 * @param ops The UI operations structure. 844 * @return The UI operations structure.
845 */ 845 */
846 GaimRequestUiOps *gaim_get_request_ui_ops(void); 846 GaimRequestUiOps *gaim_get_request_ui_ops(void);
847 847
848 /*@}*/ 848 /*@}*/
849 849