summaryrefslogtreecommitdiff
path: root/gtk/gtkhscale.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2001-06-05 20:07:02 +0000
committerHavoc Pennington <hp@src.gnome.org>2001-06-05 20:07:02 +0000
commitb32e7c9bb82396e4930957bb649a2e1cd57f00c1 (patch)
treeb95893653c899c31699a91803eebeb1e934e7f1e /gtk/gtkhscale.h
parent451b224324864047842dfe009834a0fe53728147 (diff)
downloadgdk-pixbuf-b32e7c9bb82396e4930957bb649a2e1cd57f00c1.tar.gz
clamp the value to the range that was set
2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value to the range that was set * gtk/gtkrange.c: add value_changed signal, primarily intended for use with GtkScale (gtk_range_set_increments): new function (gtk_range_set_range): new function with weird name (gtk_range_set_value): new function (gtk_range_get_value): new function * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename from gtk_spin_button_get_value_as_float(). Compat #define added for get_value_as_float. * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function 2001-06-05 Havoc Pennington <hp@redhat.com> * test-loaders.c (main): use putenv not setenv, reported by Armin Theissen
Diffstat (limited to 'gtk/gtkhscale.h')
-rw-r--r--gtk/gtkhscale.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/gtkhscale.h b/gtk/gtkhscale.h
index b4a49648e..18b96e6ae 100644
--- a/gtk/gtkhscale.h
+++ b/gtk/gtkhscale.h
@@ -59,8 +59,11 @@ struct _GtkHScaleClass
};
-GtkType gtk_hscale_get_type (void) G_GNUC_CONST;
-GtkWidget* gtk_hscale_new (GtkAdjustment *adjustment);
+GtkType gtk_hscale_get_type (void) G_GNUC_CONST;
+GtkWidget* gtk_hscale_new (GtkAdjustment *adjustment);
+GtkWidget* gtk_hscale_new_with_range (gdouble min,
+ gdouble max,
+ gdouble step);
#ifdef __cplusplus