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

Side by Side Diff: samples/ui_lib/touch/ScrollWatcher.dart

Issue 10928139: Changed interfaces to abstract classes where possible in {lib,samples,pkg} (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 // 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698