/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderScrollbarTheme.h | 36 class RenderScrollbarTheme : public ScrollbarTheme { 40 …rollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scro… in scrollbarThickness() 42 …virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme… in buttonsPlacement() 48 …lient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shou… in shouldCenterOnThumb() 50 …virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->initialAut… in initialAutoscrollTimerDelay() 51 …virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::theme()->autoscrollTimerDe… in autoscrollTimerDelay() 53 …registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->regi… in registerScrollbar() 54 …registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unre… in unregisterScrollbar()
|
D | RenderScrollbarTheme.cpp | 143 ScrollbarTheme::theme()->paintTickmarks(context, scrollbar, rect); in paintTickmarks()
|
D | RenderScrollbarPart.cpp | 95 return ScrollbarTheme::theme()->scrollbarThickness(); in calcScrollbarThicknessUsing()
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollbarTheme.cpp | 36 ScrollbarTheme* ScrollbarTheme::theme() in theme() 38 if (ScrollbarTheme::mockScrollbarsEnabled()) { in theme() 50 bool ScrollbarTheme::gMockScrollbarsEnabled = false; 52 void ScrollbarTheme::setMockScrollbarsEnabled(bool flag) in setMockScrollbarsEnabled() 57 bool ScrollbarTheme::mockScrollbarsEnabled() in mockScrollbarsEnabled() 62 bool ScrollbarTheme::paint(ScrollbarThemeClient* scrollbar, GraphicsContext* graphicsContext, const… in paint() 137 ScrollbarPart ScrollbarTheme::hitTest(ScrollbarThemeClient* scrollbar, const IntPoint& position) in hitTest() 177 void ScrollbarTheme::invalidatePart(ScrollbarThemeClient* scrollbar, ScrollbarPart part) in invalidatePart() 217 void ScrollbarTheme::splitTrack(ScrollbarThemeClient* scrollbar, const IntRect& unconstrainedTrackR… in splitTrack() 244 int ScrollbarTheme::thumbPosition(ScrollbarThemeClient* scrollbar) in thumbPosition() [all …]
|
D | ScrollbarTheme.h | 40 class PLATFORM_EXPORT ScrollbarTheme { 41 WTF_MAKE_NONCOPYABLE(ScrollbarTheme); WTF_MAKE_FAST_ALLOCATED; 43 ScrollbarTheme() { } in ScrollbarTheme() function 44 virtual ~ScrollbarTheme() { } in ~ScrollbarTheme() 131 static ScrollbarTheme* theme(); 137 … static ScrollbarTheme* nativeTheme(); // Must be implemented to return the correct theme subclass.
|
D | ScrollbarThemeAndroid.cpp | 33 ScrollbarTheme* ScrollbarTheme::nativeTheme() in nativeTheme()
|
D | Scrollbar.h | 43 class ScrollbarTheme; variable 135 ScrollbarTheme* theme() const { return m_theme; } in theme() 154 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0); 170 ScrollbarTheme* m_theme;
|
D | ScrollbarThemeOverlay.cpp | 41 : ScrollbarTheme() in ScrollbarThemeOverlay() 130 return ScrollbarTheme::hitTest(scrollbar, position); in hitTest()
|
D | ScrollableArea.cpp | 68 static int maxOverlapBetweenPages = ScrollbarTheme::theme()->maxOverlapBetweenPages(); in maxOverlapBetweenPages() 313 ScrollbarTheme::theme()->updateScrollbarOverlayStyle(horizontalScrollbar()); in setScrollbarOverlayStyle() 318 ScrollbarTheme::theme()->updateScrollbarOverlayStyle(verticalScrollbar()); in setScrollbarOverlayStyle()
|
D | ScrollbarThemeNonMacCommon.h | 40 class PLATFORM_EXPORT ScrollbarThemeNonMacCommon : public ScrollbarTheme {
|
D | ScrollbarThemeMock.h | 34 class PLATFORM_EXPORT ScrollbarThemeMock : public ScrollbarTheme {
|
D | ScrollbarThemeOverlay.h | 35 class PLATFORM_EXPORT ScrollbarThemeOverlay : public ScrollbarTheme {
|
D | ScrollbarThemeGtkOrAura.cpp | 51 ScrollbarTheme* ScrollbarTheme::nativeTheme() in nativeTheme()
|
D | ScrollbarThemeMacCommon.h | 33 class PLATFORM_EXPORT ScrollbarThemeMacCommon : public ScrollbarTheme {
|
D | ScrollbarThemeWin.cpp | 44 ScrollbarTheme* ScrollbarTheme::nativeTheme() in nativeTheme()
|
D | ScrollView.cpp | 375 bool scrollbarsAreOverlay = ScrollbarTheme::theme()->usesOverlayScrollbars(); in updateScrollbars() 844 ScrollbarTheme::theme()->paintScrollCorner(context, cornerRect); in paintScrollCorner() 984 …ScrollbarTheme::theme()->paintOverhangBackground(context, horizontalOverhangRect, verticalOverhang… in paintOverhangAreas() 985 …ScrollbarTheme::theme()->paintOverhangShadows(context, scrollOffset(), horizontalOverhangRect, ver… in paintOverhangAreas() 1005 …ScrollbarTheme::theme()->paintOverhangBackground(context, horizontalOverhangRect, verticalOverhang… in calculateAndPaintOverhangBackground()
|
D | Scrollbar.cpp | 53 …bleArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) in Scrollbar() 75 m_theme = ScrollbarTheme::theme(); in Scrollbar()
|
/external/chromium_org/third_party/WebKit/Source/web/mac/ |
D | WebScrollbarTheme.cpp | 44 ScrollbarTheme* theme = ScrollbarTheme::theme(); in updateScrollbars() 48 static_cast<ScrollbarThemeMacCommon*>(ScrollbarTheme::theme())->preferencesChanged( in updateScrollbars()
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebScrollbarThemeGeometryNative.h | 35 class ScrollbarTheme; variable 44 static PassOwnPtr<WebScrollbarThemeGeometryNative> create(WebCore::ScrollbarTheme*); 66 explicit WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme*); 71 WebCore::ScrollbarTheme* m_theme;
|
D | WebScrollbarThemeClientImpl.cpp | 39 ScrollbarTheme::theme()->registerScrollbar(this); in WebScrollbarThemeClientImpl() 44 ScrollbarTheme::theme()->unregisterScrollbar(this); in ~WebScrollbarThemeClientImpl()
|
D | WebScrollbarThemeGeometryNative.cpp | 38 …rollbarThemeGeometryNative> WebScrollbarThemeGeometryNative::create(WebCore::ScrollbarTheme* theme) in create() 43 WebScrollbarThemeGeometryNative::WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme* theme) in WebScrollbarThemeGeometryNative()
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebScrollbarThemePainter.h | 32 class ScrollbarTheme; variable 66 WebScrollbarThemePainter(WebCore::ScrollbarTheme*, WebCore::Scrollbar*); 74 WebCore::ScrollbarTheme* m_theme;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | Settings.cpp | 150 ScrollbarTheme::setMockScrollbarsEnabled(flag); in setMockScrollbarsEnabled() 155 return ScrollbarTheme::mockScrollbarsEnabled(); in mockScrollbarsEnabled()
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | SpinButtonElement.cpp | 217 ScrollbarTheme* theme = ScrollbarTheme::theme(); in startRepeatingTimer()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebScrollbarThemePainter.cpp | 119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* theme, WebCore::Scrollb… in WebScrollbarThemePainter()
|