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);
50 "" : "Didn't get callback for scrollbar value change";
57 void TestScrollbar::ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
59 if (scrollbar == scrollbar_)
63 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.cpp 27 #include "platform/scroll/Scrollbar.h"
41 // The position of the scrollbar thumb affects the appearance of the steppers, so
48 PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
50 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
53 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
69 , m_scrollTimer(this, &Scrollbar::autoscrollTimerFired)
80 // scrollbar thickness and use it when sizing scrollbars (rather than leaving one dimension of the scrollbar
    [all...]
Scrollbar.h 46 class PLATFORM_EXPORT Scrollbar : public Widget,
50 static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
52 virtual ~Scrollbar();
125 // when the mouse went down in a scrollbar, since it is assumed the scrollbar will start
154 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
160 void autoscrollTimerFired(Timer<Scrollbar>*);
186 Timer<Scrollbar> m_scrollTimer;
199 inline Scrollbar* toScrollbar(Widget* widget)
202 return static_cast<Scrollbar*>(widget)
    [all...]

Completed in 241 milliseconds