forked from AuroraMiddleware/gtk
forgot to commit the header, fixed now.
2008-07-01 Michael Natterer <mitch@imendio.com> * gtk/gtkscalebutton.h: forgot to commit the header, fixed now. svn path=/trunk/; revision=20719
This commit is contained in:
parent
ed158cc758
commit
6281cec0ab
@ -1,3 +1,7 @@
|
|||||||
|
2008-07-01 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtkscalebutton.h: forgot to commit the header, fixed now.
|
||||||
|
|
||||||
2008-07-01 Matthias Clasen <mclasen@redhat.com>
|
2008-07-01 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
539790 – [PATCH] Please add three new settings to GtkSettings
|
539790 – [PATCH] Please add three new settings to GtkSettings
|
||||||
|
@ -81,20 +81,23 @@ struct _GtkScaleButtonClass
|
|||||||
void (*_gtk_reserved4) (void);
|
void (*_gtk_reserved4) (void);
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gtk_scale_button_get_type (void) G_GNUC_CONST;
|
GType gtk_scale_button_get_type (void) G_GNUC_CONST;
|
||||||
GtkWidget* gtk_scale_button_new (GtkIconSize size,
|
GtkWidget * gtk_scale_button_new (GtkIconSize size,
|
||||||
gdouble min,
|
gdouble min,
|
||||||
gdouble max,
|
gdouble max,
|
||||||
gdouble step,
|
gdouble step,
|
||||||
const gchar **icons);
|
const gchar **icons);
|
||||||
void gtk_scale_button_set_icons (GtkScaleButton *button,
|
void gtk_scale_button_set_icons (GtkScaleButton *button,
|
||||||
const gchar **icons);
|
const gchar **icons);
|
||||||
gdouble gtk_scale_button_get_value (GtkScaleButton *button);
|
gdouble gtk_scale_button_get_value (GtkScaleButton *button);
|
||||||
void gtk_scale_button_set_value (GtkScaleButton *button,
|
void gtk_scale_button_set_value (GtkScaleButton *button,
|
||||||
gdouble value);
|
gdouble value);
|
||||||
GtkAdjustment* gtk_scale_button_get_adjustment (GtkScaleButton *button);
|
GtkAdjustment * gtk_scale_button_get_adjustment (GtkScaleButton *button);
|
||||||
void gtk_scale_button_set_adjustment (GtkScaleButton *button,
|
void gtk_scale_button_set_adjustment (GtkScaleButton *button,
|
||||||
GtkAdjustment *adjustment);
|
GtkAdjustment *adjustment);
|
||||||
|
GtkOrientation gtk_scale_button_get_orientation (GtkScaleButton *button);
|
||||||
|
void gtk_scale_button_set_orientation (GtkScaleButton *button,
|
||||||
|
GtkOrientation orientation);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user