OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 void sendContentAreaScrolledTimerFired(Timer<ScrollAnimatorMac>*); | 87 void sendContentAreaScrolledTimerFired(Timer<ScrollAnimatorMac>*); |
88 Timer<ScrollAnimatorMac> m_sendContentAreaScrolledTimer; | 88 Timer<ScrollAnimatorMac> m_sendContentAreaScrolledTimer; |
89 FloatSize m_contentAreaScrolledTimerScrollDelta; | 89 FloatSize m_contentAreaScrolledTimerScrollDelta; |
90 | 90 |
91 ScrollResultOneDimensional userScroll(ScrollbarOrientation, ScrollGranularit
y, float step, float delta) override; | 91 ScrollResultOneDimensional userScroll(ScrollbarOrientation, ScrollGranularit
y, float step, float delta) override; |
92 void scrollToOffsetWithoutAnimation(const FloatPoint&) override; | 92 void scrollToOffsetWithoutAnimation(const FloatPoint&) override; |
93 | 93 |
94 void handleWheelEventPhase(PlatformWheelEventPhase) override; | 94 void handleWheelEventPhase(PlatformWheelEventPhase) override; |
95 | 95 |
96 void cancelAnimation() override; | 96 void cancelAnimations() override; |
97 void setIsActive() override; | 97 void setIsActive() override; |
98 | 98 |
99 void contentAreaWillPaint() const override; | 99 void contentAreaWillPaint() const override; |
100 void mouseEnteredContentArea() const override; | 100 void mouseEnteredContentArea() const override; |
101 void mouseExitedContentArea() const override; | 101 void mouseExitedContentArea() const override; |
102 void mouseMovedInContentArea() const override; | 102 void mouseMovedInContentArea() const override; |
103 void mouseEnteredScrollbar(Scrollbar&) const override; | 103 void mouseEnteredScrollbar(Scrollbar&) const override; |
104 void mouseExitedScrollbar(Scrollbar&) const override; | 104 void mouseExitedScrollbar(Scrollbar&) const override; |
105 void willStartLiveResize() override; | 105 void willStartLiveResize() override; |
106 void contentsResized() const override; | 106 void contentsResized() const override; |
(...skipping 22 matching lines...) Expand all Loading... |
129 void immediateScrollTo(const FloatPoint&); | 129 void immediateScrollTo(const FloatPoint&); |
130 | 130 |
131 bool m_haveScrolledSincePageLoad; | 131 bool m_haveScrolledSincePageLoad; |
132 bool m_needsScrollerStyleUpdate; | 132 bool m_needsScrollerStyleUpdate; |
133 IntRect m_visibleScrollerThumbRect; | 133 IntRect m_visibleScrollerThumbRect; |
134 }; | 134 }; |
135 | 135 |
136 } // namespace blink | 136 } // namespace blink |
137 | 137 |
138 #endif // ScrollAnimatorMac_h | 138 #endif // ScrollAnimatorMac_h |
OLD | NEW |