Mercurial > pidgin
comparison src/request.h @ 7899:7b64108b8ae3
[gaim-migrate @ 8559]
I forgot to allow for the setting/retrieval of multiple selection in a
list. There we go.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sun, 21 Dec 2003 08:01:06 +0000 |
| parents | 9c0ea21997a9 |
| children | 4344f7fad009 |
comparison
equal
deleted
inserted
replaced
| 7898:9c0ea21997a9 | 7899:7b64108b8ae3 |
|---|---|
| 703 * @param items The items. | 703 * @param items The items. |
| 704 */ | 704 */ |
| 705 void gaim_request_field_list_set_items(GaimRequestField *field, GList *items); | 705 void gaim_request_field_list_set_items(GaimRequestField *field, GList *items); |
| 706 | 706 |
| 707 /** | 707 /** |
| 708 * Sets whether or not a list field allows multiple selection. | |
| 709 * | |
| 710 * @param field The list field. | |
| 711 * @param multi_select TRUE if multiple selection is enabled, | |
| 712 * or FALSE otherwise. | |
| 713 */ | |
| 714 void gaim_request_field_list_set_multi_select(GaimRequestField *field, | |
| 715 gboolean multi_select); | |
| 716 | |
| 717 /** | |
| 718 * Returns whether or not a list field allows multiple selection. | |
| 719 * | |
| 720 * @param field The list field. | |
| 721 * | |
| 722 * @return TRUE if multiple selection is enabled, or FALSE otherwise. | |
| 723 */ | |
| 724 gboolean gaim_request_field_list_get_multi_select( | |
| 725 const GaimRequestField *field); | |
| 726 | |
| 727 /** | |
| 708 * Adds an item to a list field. | 728 * Adds an item to a list field. |
| 709 * | 729 * |
| 710 * @param field The list field. | 730 * @param field The list field. |
| 711 * @param item The list item. | 731 * @param item The list item. |
| 712 */ | 732 */ |
