Home | History | Annotate | Download | only in gtk

Lines Matching defs:scrollBar

32 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollbarClient* client, ScrollbarOrientation orientation, ScrollbarControlSize size)
46 * wheel over a child scrollbar in most cases. */
52 : Scrollbar(client, orientation, controlSize)
55 GtkWidget* scrollBar = orientation == HorizontalScrollbar ?
58 gtk_widget_show(scrollBar);
61 g_signal_connect(scrollBar, "scroll-event", G_CALLBACK(gtkScrollEventCallback), this);
63 setPlatformWidget(scrollBar);
66 * assign a sane default width and height to the Scrollbar, otherwise
67 * we will end up with a 0 width scrollbar.
74 // GtkScrollbar on top of this adjustment. The goal is to have a WebCore::Scrollbar
79 : Scrollbar(client, orientation, RegularScrollbar)
120 // reset the values so that the surrounding scrollbar gets updated, or
121 // e.g. for a GtkScrolledWindow the scrollbar gets hidden.
191 Scrollbar::setEnabled(shouldEnable);