comparison src/gtkprefs.h @ 8238:32625c0dbba6

[gaim-migrate @ 8961] Make some spin boxes gray when the preference for them is not active... committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 12 Feb 2004 17:02:35 +0000
parents fa6395637e2c
children 543b19a96ac5
comparison
equal deleted inserted replaced
8237:9200bee593e8 8238:32625c0dbba6
71 * @param title The text to be displayed as the spin button label 71 * @param title The text to be displayed as the spin button label
72 * @param key The key of the int pref that will be represented by the spin button 72 * @param key The key of the int pref that will be represented by the spin button
73 * @param min The minimum value of the spin button 73 * @param min The minimum value of the spin button
74 * @param max The maximum value of the spin button 74 * @param max The maximum value of the spin button
75 * @param sg If not NULL, the size group to which the spin button will be added 75 * @param sg If not NULL, the size group to which the spin button will be added
76 * @return An hbox containing both the label and the spinner. Can be
77 * used to set the widgets to sensitive or insensitve based on the
78 * value of a checkbox.
76 */ 79 */
77 GtkWidget *gaim_gtk_prefs_labeled_spin_button(GtkWidget *page, 80 GtkWidget *gaim_gtk_prefs_labeled_spin_button(GtkWidget *page,
78 const gchar *title, char *key, int min, int max, GtkSizeGroup *sg); 81 const gchar *title, char *key, int min, int max, GtkSizeGroup *sg);
79 82
80 /** 83 /**