HomeSort by relevance Sort by last modified time
    Searched defs:Scrollbar (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/cc/input/
scrollbar.h 22 class Scrollbar {
24 virtual ~Scrollbar() {}
  /external/chromium_org/ppapi/tests/
test_scrollbar.cc 15 REGISTER_TEST_CASE(Scrollbar);
51 "" : "Didn't get callback for scrollbar value change";
58 void TestScrollbar::ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
60 if (scrollbar == scrollbar_)
64 void TestScrollbar::ScrollbarOverlayChanged(pp::Scrollbar_Dev scrollbar,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
ttk.py 21 "PanedWindow", "Progressbar", "Radiobutton", "Scale", "Scrollbar",
    [all...]
Tkinter.py 6 Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
ttk.py 21 "PanedWindow", "Progressbar", "Radiobutton", "Scale", "Scrollbar",
    [all...]
Tkinter.py 6 Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.h 46 class PLATFORM_EXPORT Scrollbar : public Widget,
50 static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
52 virtual ~Scrollbar();
124 // when the mouse went down in a scrollbar, since it is assumed the scrollbar will start
153 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
159 void autoscrollTimerFired(Timer<Scrollbar>*);
185 Timer<Scrollbar> m_scrollTimer;
198 DEFINE_TYPE_CASTS(Scrollbar, Widget, widget, widget->isScrollbar(), widget.isScrollbar());
Scrollbar.cpp 27 #include "platform/scroll/Scrollbar.h"
39 // The position of the scrollbar thumb affects the appearance of the steppers, so
46 PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
48 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
51 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
67 , m_scrollTimer(this, &Scrollbar::autoscrollTimerFired)
78 // scrollbar thickness and use it when sizing scrollbars (rather than leaving one dimension of the scrollbar
    [all...]

Completed in 293 milliseconds