summaryrefslogtreecommitdiff
path: root/gtk/gtkscalebutton.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-07-01 07:45:40 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-07-01 07:45:40 +0000
commit6281cec0abf3d9e41e3c9fd206ee787d4d1c405a (patch)
tree1b8811a8ee25317898774b843ace2506a2b03d99 /gtk/gtkscalebutton.h
parented158cc758e355d3cba6b9179f2f51faee05666f (diff)
downloadgtk+-6281cec0abf3d9e41e3c9fd206ee787d4d1c405a.tar.gz
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
Diffstat (limited to 'gtk/gtkscalebutton.h')
-rw-r--r--gtk/gtkscalebutton.h31
1 files changed, 17 insertions, 14 deletions
diff --git a/gtk/gtkscalebutton.h b/gtk/gtkscalebutton.h
index 0b4e2e5453..2465ecf57d 100644
--- a/gtk/gtkscalebutton.h
+++ b/gtk/gtkscalebutton.h
@@ -81,20 +81,23 @@ struct _GtkScaleButtonClass
void (*_gtk_reserved4) (void);
};
-GType gtk_scale_button_get_type (void) G_GNUC_CONST;
-GtkWidget* gtk_scale_button_new (GtkIconSize size,
- gdouble min,
- gdouble max,
- gdouble step,
- const gchar **icons);
-void gtk_scale_button_set_icons (GtkScaleButton *button,
- const gchar **icons);
-gdouble gtk_scale_button_get_value (GtkScaleButton *button);
-void gtk_scale_button_set_value (GtkScaleButton *button,
- gdouble value);
-GtkAdjustment* gtk_scale_button_get_adjustment (GtkScaleButton *button);
-void gtk_scale_button_set_adjustment (GtkScaleButton *button,
- GtkAdjustment *adjustment);
+GType gtk_scale_button_get_type (void) G_GNUC_CONST;
+GtkWidget * gtk_scale_button_new (GtkIconSize size,
+ gdouble min,
+ gdouble max,
+ gdouble step,
+ const gchar **icons);
+void gtk_scale_button_set_icons (GtkScaleButton *button,
+ const gchar **icons);
+gdouble gtk_scale_button_get_value (GtkScaleButton *button);
+void gtk_scale_button_set_value (GtkScaleButton *button,
+ gdouble value);
+GtkAdjustment * gtk_scale_button_get_adjustment (GtkScaleButton *button);
+void gtk_scale_button_set_adjustment (GtkScaleButton *button,
+ GtkAdjustment *adjustment);
+GtkOrientation gtk_scale_button_get_orientation (GtkScaleButton *button);
+void gtk_scale_button_set_orientation (GtkScaleButton *button,
+ GtkOrientation orientation);
G_END_DECLS