| 57 * @param key The key of the int pref that will be represented by the spin button |
57 * @param key The key of the int pref that will be represented by the spin button |
| 58 * @param min The minimum value of the spin button |
58 * @param min The minimum value of the spin button |
| 59 * @param max The maximum value of the spin button |
59 * @param max The maximum value of the spin button |
| 60 * @param sg If not NULL, the size group to which the spin button will be added |
60 * @param sg If not NULL, the size group to which the spin button will be added |
| 61 * @return An hbox containing both the label and the spinner. Can be |
61 * @return An hbox containing both the label and the spinner. Can be |
| 62 * used to set the widgets to sensitive or insensitive based on the |
62 * used to set the widgets to sensitive or insensitive based on the |
| 63 * value of a checkbox. |
63 * value of a checkbox. |
| 64 */ |
64 */ |
| 65 GtkWidget *pidgin_prefs_labeled_spin_button(GtkWidget *page, |
65 GtkWidget *pidgin_prefs_labeled_spin_button(GtkWidget *page, |
| 66 const gchar *title, const char *key, int min, int max, GtkSizeGroup *sg); |
66 const gchar *title, const char *key, int min, int max, GtkSizeGroup *sg); |
| 67 |
67 |