| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 interface ScrollListener { | 5 abstract class ScrollListener { |
| 6 /** | 6 /** |
| 7 * The callback invoked for a scroll event. | 7 * The callback invoked for a scroll event. |
| 8 * [decelerating] specifies whether or not the content is moving due | 8 * [decelerating] specifies whether or not the content is moving due |
| 9 * to deceleration. It should be false if the content is moving because the | 9 * to deceleration. It should be false if the content is moving because the |
| 10 * user is dragging the content. | 10 * user is dragging the content. |
| 11 */ | 11 */ |
| 12 void onScrollerMoved(double scrollX, double scrollY, bool decelerating); | 12 void onScrollerMoved(double scrollX, double scrollY, bool decelerating); |
| 13 } | 13 } |
| 14 | 14 |
| 15 /** | 15 /** |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 /** | 55 /** |
| 56 * This callback is invoked any time the scroller content offset changes. | 56 * This callback is invoked any time the scroller content offset changes. |
| 57 */ | 57 */ |
| 58 void _onContentMoved(Event e) { | 58 void _onContentMoved(Event e) { |
| 59 num scrollX = _scroller.getHorizontalOffset(); | 59 num scrollX = _scroller.getHorizontalOffset(); |
| 60 num scrollY = _scroller.getVerticalOffset(); | 60 num scrollY = _scroller.getVerticalOffset(); |
| 61 _dispatchScroll(scrollX, scrollY); | 61 _dispatchScroll(scrollX, scrollY); |
| 62 } | 62 } |
| 63 } | 63 } |
| OLD | NEW |