This will be used to scroll the scale in scale buttons.
{
return range->priv->slider_widget;
}
+
+void
+gtk_range_start_autoscroll (GtkRange *range,
+ GtkScrollType scroll_type)
+{
+ remove_autoscroll (range);
+ range->priv->autoscroll_mode = scroll_type;
+ add_autoscroll (range);
+}
+
+void
+gtk_range_stop_autoscroll (GtkRange *range)
+{
+ remove_autoscroll (range);
+}
GtkWidget *gtk_range_get_slider_widget (GtkRange *range);
+void gtk_range_start_autoscroll (GtkRange *range,
+ GtkScrollType scroll_type);
+void gtk_range_stop_autoscroll (GtkRange *range);
+
G_END_DECLS