Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: Source/core/rendering/RenderScrollbarTheme.h

Issue 151483008: Re-add snap-back behavior (Blink side) (Closed) Base URL: svn://svn.chromium.org/blink/trunk/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 28 matching lines...) Expand all
39 39
40 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); } 40 virtual int scrollbarThickness(ScrollbarControlSize controlSize) OVERRIDE { return ScrollbarTheme::theme()->scrollbarThickness(controlSize); }
41 41
42 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); } 42 virtual ScrollbarButtonsPlacement buttonsPlacement() const OVERRIDE { return ScrollbarTheme::theme()->buttonsPlacement(); }
43 43
44 virtual bool supportsControlTints() const OVERRIDE { return true; } 44 virtual bool supportsControlTints() const OVERRIDE { return true; }
45 45
46 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect) OVERRIDE; 46 virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect) OVERRIDE;
47 47
48 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const Plat formMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOn Thumb(scrollbar, event); } 48 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const Plat formMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOn Thumb(scrollbar, event); }
49 virtual bool shouldSnapBackToDragOrigin(ScrollbarThemeClient* scrollbar, con st PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldS napBackToDragOrigin(scrollbar, event); }
Peter Kasting 2014/02/25 00:01:58 This is necessary so that CSS-styled scrollbars al
49 50
50 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarThem e::theme()->initialAutoscrollTimerDelay(); } 51 virtual double initialAutoscrollTimerDelay() OVERRIDE { return ScrollbarThem e::theme()->initialAutoscrollTimerDelay(); }
51 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::them e()->autoscrollTimerDelay(); } 52 virtual double autoscrollTimerDelay() OVERRIDE { return ScrollbarTheme::them e()->autoscrollTimerDelay(); }
52 53
53 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { r eturn ScrollbarTheme::theme()->registerScrollbar(scrollbar); } 54 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { r eturn ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
54 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); } 55 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
55 56
56 virtual int minimumThumbLength(ScrollbarThemeClient*) OVERRIDE; 57 virtual int minimumThumbLength(ScrollbarThemeClient*) OVERRIDE;
57 58
58 void buttonSizesAlongTrackAxis(ScrollbarThemeClient*, int& beforeSize, int& afterSize); 59 void buttonSizesAlongTrackAxis(ScrollbarThemeClient*, int& beforeSize, int& afterSize);
(...skipping 14 matching lines...) Expand all
73 virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntR ect&, ScrollbarPart) OVERRIDE; 74 virtual void paintButton(GraphicsContext*, ScrollbarThemeClient*, const IntR ect&, ScrollbarPart) OVERRIDE;
74 virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRe ct&) OVERRIDE; 75 virtual void paintThumb(GraphicsContext*, ScrollbarThemeClient*, const IntRe ct&) OVERRIDE;
75 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const I ntRect&) OVERRIDE; 76 virtual void paintTickmarks(GraphicsContext*, ScrollbarThemeClient*, const I ntRect&) OVERRIDE;
76 77
77 virtual IntRect constrainTrackRectToTrackPieces(ScrollbarThemeClient*, const IntRect&) OVERRIDE; 78 virtual IntRect constrainTrackRectToTrackPieces(ScrollbarThemeClient*, const IntRect&) OVERRIDE;
78 }; 79 };
79 80
80 } // namespace WebCore 81 } // namespace WebCore
81 82
82 #endif // RenderScrollbarTheme_h 83 #endif // RenderScrollbarTheme_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/scroll/ScrollbarTheme.h » ('j') | Source/platform/scroll/ScrollbarTheme.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698