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

Side by Side Diff: sky/engine/platform/scroll/ScrollAnimator.cpp

Issue 879993004: Remove ScrollableArea and Scrollbar (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « sky/engine/platform/scroll/ScrollAnimator.h ('k') | sky/engine/platform/scroll/ScrollTypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "sky/engine/config.h"
32 #include "sky/engine/platform/scroll/ScrollAnimator.h"
33
34 #include <algorithm>
35 #include "sky/engine/platform/geometry/FloatPoint.h"
36 #include "sky/engine/platform/scroll/ScrollableArea.h"
37 #include "sky/engine/wtf/PassOwnPtr.h"
38
39 namespace blink {
40
41 ScrollAnimator::ScrollAnimator(ScrollableArea* scrollableArea)
42 : m_scrollableArea(scrollableArea)
43 , m_currentPosX(0)
44 , m_currentPosY(0)
45 {
46 }
47
48 ScrollAnimator::~ScrollAnimator()
49 {
50 }
51
52 PassOwnPtr<ScrollAnimator> ScrollAnimator::create(ScrollableArea* scrollableArea )
53 {
54 return adoptPtr(new ScrollAnimator(scrollableArea));
55 }
56
57 bool ScrollAnimator::scroll(ScrollbarOrientation orientation, ScrollGranularity, float step, float delta)
58 {
59 float& currentPos = (orientation == HorizontalScrollbar) ? m_currentPosX : m _currentPosY;
60 float newPos = clampScrollPosition(orientation, currentPos + step * delta);
61 if (currentPos == newPos)
62 return false;
63 currentPos = newPos;
64
65 notifyPositionChanged();
66
67 return true;
68 }
69
70 void ScrollAnimator::scrollToOffsetWithoutAnimation(const FloatPoint& offset)
71 {
72 m_currentPosX = offset.x();
73 m_currentPosY = offset.y();
74 notifyPositionChanged();
75 }
76
77 void ScrollAnimator::setCurrentPosition(const FloatPoint& position)
78 {
79 m_currentPosX = position.x();
80 m_currentPosY = position.y();
81 }
82
83 FloatPoint ScrollAnimator::currentPosition() const
84 {
85 return FloatPoint(m_currentPosX, m_currentPosY);
86 }
87
88 void ScrollAnimator::notifyPositionChanged()
89 {
90 m_scrollableArea->setScrollOffsetFromAnimation(IntPoint(m_currentPosX, m_cur rentPosY));
91 }
92
93 float ScrollAnimator::clampScrollPosition(ScrollbarOrientation orientation, floa t pos)
94 {
95 float maxScrollPos = m_scrollableArea->maximumScrollPosition(orientation);
96 float minScrollPos = m_scrollableArea->minimumScrollPosition(orientation);
97 return std::max(std::min(pos, maxScrollPos), minScrollPos);
98 }
99
100 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/platform/scroll/ScrollAnimator.h ('k') | sky/engine/platform/scroll/ScrollTypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698