HomeSort by relevance Sort by last modified time
    Searched refs:ScrollbarTheme (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumAndroid.cpp 28 #include "core/platform/ScrollbarTheme.h"
34 ScrollbarTheme* ScrollbarTheme::nativeTheme()
ScrollbarThemeChromium.h 34 #include "core/platform/ScrollbarTheme.h"
42 class ScrollbarThemeChromium : public ScrollbarTheme {
ScrollbarThemeChromiumOverlay.h 29 #include "core/platform/ScrollbarTheme.h"
35 class ScrollbarThemeChromiumOverlay : public ScrollbarTheme {
ScrollbarThemeChromiumDefault.cpp 45 ScrollbarTheme* ScrollbarTheme::nativeTheme()
ScrollbarThemeChromiumWin.cpp 44 ScrollbarTheme* ScrollbarTheme::nativeTheme()
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 29 #include "core/platform/ScrollbarTheme.h"
37 class RenderScrollbarTheme : public ScrollbarTheme {
41 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
43 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); }
49 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
51 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->initialAutoscrollTimerDelay(); }
52 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->autoscrollTimerDelay(); }
54 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
55 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
RenderScrollbarTheme.cpp 143 ScrollbarTheme::theme()->paintTickmarks(context, scrollbar, rect);
RenderScrollbarPart.cpp 94 return ScrollbarTheme::theme()->scrollbarThickness();
RenderTextControl.cpp 26 #include "core/platform/ScrollbarTheme.h"
115 return ScrollbarTheme::theme()->scrollbarThickness();
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarThemePainter.h 32 class ScrollbarTheme;
66 WebScrollbarThemePainter(WebCore::ScrollbarTheme*, WebCore::Scrollbar*);
74 WebCore::ScrollbarTheme* m_theme;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebScrollbarThemeGeometryNative.h 34 class ScrollbarTheme;
43 static PassOwnPtr<WebScrollbarThemeGeometryNative> create(WebCore::ScrollbarTheme*);
65 explicit WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme*);
70 WebCore::ScrollbarTheme* m_theme;
WebScrollbarThemeClientImpl.cpp 29 #include "core/platform/ScrollbarTheme.h"
38 ScrollbarTheme::theme()->registerScrollbar(this);
43 ScrollbarTheme::theme()->unregisterScrollbar(this);
WebScrollbarThemeGeometryNative.cpp 30 #include "core/platform/ScrollbarTheme.h"
38 PassOwnPtr<WebKit::WebScrollbarThemeGeometryNative> WebScrollbarThemeGeometryNative::create(WebCore::ScrollbarTheme* theme)
43 WebScrollbarThemeGeometryNative::WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme* theme)
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.h 43 class ScrollbarTheme {
44 WTF_MAKE_NONCOPYABLE(ScrollbarTheme); WTF_MAKE_FAST_ALLOCATED;
46 ScrollbarTheme() { }
47 virtual ~ScrollbarTheme() { }
134 static ScrollbarTheme* theme();
137 static ScrollbarTheme* nativeTheme(); // Must be implemented to return the correct theme subclass.
ScrollbarTheme.cpp 27 #include "core/platform/ScrollbarTheme.h"
36 ScrollbarTheme* ScrollbarTheme::theme()
45 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const IntRect& damageRect)
120 ScrollbarPart ScrollbarTheme::hitTest(ScrollbarThemeClient* scrollbar, const IntPoint& position)
164 void ScrollbarTheme::invalidatePart(ScrollbarThemeClient* scrollbar, ScrollbarPart part)
204 void ScrollbarTheme::splitTrack(ScrollbarThemeClient* scrollbar, const IntRect& unconstrainedTrackRect, IntRect& beforeThumbRect, IntRect& thumbRect, IntRect& afterThumbRect)
232 int ScrollbarTheme::thumbPosition(ScrollbarThemeClient* scrollbar)
245 int ScrollbarTheme::thumbLength(ScrollbarThemeClient* scrollbar)
264 int ScrollbarTheme::minimumThumbLength(ScrollbarThemeClient* scrollbar
    [all...]
Scrollbar.h 43 class ScrollbarTheme;
130 ScrollbarTheme* theme() const { return m_theme; }
149 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
165 ScrollbarTheme* m_theme;
ScrollableArea.cpp 36 #include "core/platform/ScrollbarTheme.h"
69 static int maxOverlapBetweenPages = ScrollbarTheme::theme()->maxOverlapBetweenPages();
324 ScrollbarTheme::theme()->updateScrollbarOverlayStyle(horizontalScrollbar());
329 ScrollbarTheme::theme()->updateScrollbarOverlayStyle(verticalScrollbar());
Scrollbar.cpp 34 #include "core/platform/ScrollbarTheme.h"
59 ScrollbarTheme* theme)
81 m_theme = ScrollbarTheme::theme();
ScrollView.cpp 32 #include "core/platform/ScrollbarTheme.h"
402 bool scrollbarsAreOverlay = ScrollbarTheme::theme()->usesOverlayScrollbars();
869 ScrollbarTheme::theme()->paintScrollCorner(this, context, cornerRect);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/mock/
ScrollbarThemeMock.h 29 #include "core/platform/ScrollbarTheme.h"
34 class ScrollbarThemeMock : public ScrollbarTheme {
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMac.h 29 #include "core/platform/ScrollbarTheme.h"
33 class ScrollbarThemeMacCommon : public ScrollbarTheme {
ScrollbarThemeMac.mm 90 ScrollbarTheme* theme = ScrollbarTheme::theme();
94 static_cast<ScrollbarThemeMacCommon*>(ScrollbarTheme::theme())->preferencesChanged();
108 ScrollbarTheme* theme = ScrollbarTheme::theme();
112 static_cast<ScrollbarThemeMacCommon*>(ScrollbarTheme::theme())->preferencesChanged();
129 ScrollbarTheme* ScrollbarTheme::nativeTheme()
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SpinButtonElement.cpp 39 #include "core/platform/ScrollbarTheme.h"
217 ScrollbarTheme* theme = ScrollbarTheme::theme();
  /external/chromium_org/third_party/WebKit/Source/web/
WebScrollbarThemePainter.cpp 31 #include "core/platform/ScrollbarTheme.h"
119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* theme, WebCore::Scrollbar* scrollbar)
WebPluginScrollbarImpl.cpp 37 #include "core/platform/ScrollbarTheme.h"
59 return ScrollbarTheme::theme()->scrollbarThickness();

Completed in 430 milliseconds

1 2