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

  /external/webkit/Source/WebCore/platform/
Scrollbar.cpp 27 #include "Scrollbar.h"
44 // The position of the scrollbar thumb affects the appearance of the steppers, so
52 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
54 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
58 int Scrollbar::maxOverlapBetweenPages()
64 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize,
81 , m_scrollTimer(this, &Scrollbar::autoscrollTimerFired)
91 // scrollbar thickness and use it when sizing scrollbars (rather than leaving one dimension of the scrollba
    [all...]
Scrollbar.h 43 class Scrollbar : public Widget {
45 // Must be implemented by platforms that can't simply use the Scrollbar base class. Right now the only platform that is not using the base class is GTK.
46 static PassRefPtr<Scrollbar> createNativeScrollbar(ScrollableArea*, ScrollbarOrientation orientation, ScrollbarControlSize size);
48 virtual ~Scrollbar();
94 // when the mouse went down in a scrollbar, since it is assumed the scrollbar will start
107 // context menu. There's no reason why the scrollbar should have to do it.
130 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
136 void autoscrollTimerFired(Timer<Scrollbar>*);
164 Timer<Scrollbar> m_scrollTimer
    [all...]

Completed in 893 milliseconds