Fix stupid error introduced last night that was making things decidedly
Sun Jun 24 11:29:35 2001 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkimage-x11.c (gdk_image_new): Fix stupid error introduced last night that was making things decidedly not work. * gtk/*.[ch]: Patch from Kristian Rietveld adding 80 getters so that we have getter/setter pairing everywhere it makes sense. (#55767) * gtk/gtkradiobutton.[ch] gtk/gtktoolbar.c tests/testgtk.: Rename gtk_radio_button_group to gtk_radio_button_get_group, add a deprecated compat macro. (#55516) * gtk/gtklabel.[ch]: Add functions gtk_label_set/get_use_underline(), gtk_label_set/get_use_markup(), gtk_label_set_label(), which mirror the property API for GtkLabel. Make gtk_label_get_attributes() only reflect the attributes set by gtk_label_set_attributes. * gtk/gtknotebook.c (gtk_notebook_set_current_page) gtk/gtkcompat.h: Rename from gtk_notebook_set_page().
This commit is contained in:
@ -132,14 +132,21 @@ GtkAdjustment* gtk_spin_button_get_adjustment (GtkSpinButton *spin_button);
|
||||
|
||||
void gtk_spin_button_set_digits (GtkSpinButton *spin_button,
|
||||
guint digits);
|
||||
guint gtk_spin_button_get_digits (GtkSpinButton *spin_button);
|
||||
|
||||
void gtk_spin_button_set_increments (GtkSpinButton *spin_button,
|
||||
gdouble step,
|
||||
gdouble page);
|
||||
void gtk_spin_button_get_increments (GtkSpinButton *spin_button,
|
||||
gdouble *step,
|
||||
gdouble *page);
|
||||
|
||||
void gtk_spin_button_set_range (GtkSpinButton *spin_button,
|
||||
gdouble min,
|
||||
gdouble max);
|
||||
void gtk_spin_button_get_range (GtkSpinButton *spin_button,
|
||||
gdouble *min,
|
||||
gdouble *max);
|
||||
|
||||
gdouble gtk_spin_button_get_value (GtkSpinButton *spin_button);
|
||||
|
||||
@ -150,9 +157,11 @@ void gtk_spin_button_set_value (GtkSpinButton *spin_button,
|
||||
|
||||
void gtk_spin_button_set_update_policy (GtkSpinButton *spin_button,
|
||||
GtkSpinButtonUpdatePolicy policy);
|
||||
GtkSpinButtonUpdatePolicy gtk_spin_button_get_update_policy (GtkSpinButton *spin_button);
|
||||
|
||||
void gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
|
||||
gboolean numeric);
|
||||
gboolean gtk_spin_button_get_numeric (GtkSpinButton *spin_button);
|
||||
|
||||
void gtk_spin_button_spin (GtkSpinButton *spin_button,
|
||||
GtkSpinType direction,
|
||||
@ -160,9 +169,11 @@ void gtk_spin_button_spin (GtkSpinButton *spin_button,
|
||||
|
||||
void gtk_spin_button_set_wrap (GtkSpinButton *spin_button,
|
||||
gboolean wrap);
|
||||
gboolean gtk_spin_button_get_wrap (GtkSpinButton *spin_button);
|
||||
|
||||
void gtk_spin_button_set_snap_to_ticks (GtkSpinButton *spin_button,
|
||||
gboolean snap_to_ticks);
|
||||
gboolean gtk_spin_button_get_snap_to_ticks (GtkSpinButton *spin_button);
|
||||
void gtk_spin_button_update (GtkSpinButton *spin_button);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user