comparison src/request.h @ 7902:3ca501305ac5

[gaim-migrate @ 8562] More list field API functions. The UI part is almost done. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 21 Dec 2003 08:50:34 +0000
parents 4344f7fad009
children 9b478c6e0bfa
comparison
equal deleted inserted replaced
7901:4344f7fad009 7902:3ca501305ac5
731 * @param item The list item. 731 * @param item The list item.
732 */ 732 */
733 void gaim_request_field_list_add(GaimRequestField *field, const char *item); 733 void gaim_request_field_list_add(GaimRequestField *field, const char *item);
734 734
735 /** 735 /**
736 * Adds a selected item to the list field.
737 *
738 * @param field The field.
739 * @param item The item to add.
740 */
741 void gaim_request_field_list_add_selected(GaimRequestField *field,
742 const char *item);
743
744 /**
745 * Clears the list of selected items in a list field.
746 *
747 * @param field The field.
748 */
749 void gaim_request_field_list_clear_selected(GaimRequestField *field);
750
751 /**
736 * Sets a list of selected items in a list field. 752 * Sets a list of selected items in a list field.
737 * 753 *
738 * @param field The field. 754 * @param field The field.
739 * @param items The list of selected items. 755 * @param items The list of selected items.
740 */ 756 */