comparison finch/libgnt/gntutils.h @ 19171:9f7587b86b0d

propagate from branch 'tmpbranch' (head e6743aa2d424749cd40350df703d079ef61fd5ce) to branch 'im.pidgin.soc.2007.finchfeat' (head a87f346863ddc48e5705c2c555c7ed842325a9a3)
author Eric Polino <aluink@pidgin.im>
date Sun, 22 Jul 2007 01:28:19 +0000
parents b25cb0775be3 7ee0e0597a26
children c8f9584e3221
comparison
equal deleted inserted replaced
19170:315fd66bb08f 19171:9f7587b86b0d
129 * @param string The XML string. 129 * @param string The XML string.
130 * @param num The number of widgets to return, followed by 'num' GntWidget ** 130 * @param num The number of widgets to return, followed by 'num' GntWidget **
131 */ 131 */
132 void gnt_util_parse_widgets(const char *string, int num, ...); 132 void gnt_util_parse_widgets(const char *string, int num, ...);
133 133
134 /**
135 * Make some keypress activate a button when some key is pressed with 'wid' in focus.
136 *
137 * @param widget The widget
138 * @param key The key to trigger the button
139 * @param button The button to trigger
140 */
141 void gnt_util_set_trigger_widget(GntWidget *wid, const char *text, GntWidget *button);
142