tests: Add checkbox to enable kinetic scrolling in scrolled window test

This commit is contained in:
Carlos Garcia Campos 2011-02-11 13:45:21 +01:00 committed by Matthias Clasen
parent 42c75d28b8
commit 8cde1e38a2

View File

@ -53,6 +53,16 @@ content_height_changed (GtkSpinButton *spin_button,
gtk_scrolled_window_set_min_content_height (swindow, (gint)value);
}
static void
kinetic_scrolling_changed (GtkToggleButton *toggle_button,
gpointer data)
{
GtkScrolledWindow *swindow = data;
gboolean enabled = gtk_toggle_button_get_active (toggle_button);
gtk_scrolled_window_set_kinetic_scrolling (swindow, enabled);
}
static void
scrollable_policy (void)
{
@ -199,6 +209,13 @@ scrollable_policy (void)
g_signal_connect (G_OBJECT (widget), "changed",
G_CALLBACK (label_flip_changed), label);
/* Add Kinetic scrolling control here */
widget = gtk_check_button_new_with_label ("Kinetic scrolling");
gtk_widget_show (widget);
gtk_box_pack_start (GTK_BOX (cntl), widget, TRUE, TRUE, 0);
g_signal_connect (G_OBJECT (widget), "toggled",
G_CALLBACK (kinetic_scrolling_changed), swindow);
gtk_widget_show (window);
}