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 part of touch; | 5 part of touch; |
6 | 6 |
7 /** | 7 /** |
8 * Touch Handler. Class that handles all touch events and | 8 * Touch Handler. Class that handles all touch events and |
9 * uses them to interpret higher level gestures and behaviors. TouchEvent is a | 9 * uses them to interpret higher level gestures and behaviors. TouchEvent is a |
10 * built in mobile safari type: | 10 * built in mobile safari type: |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 assert (len % 2 == 0); | 344 assert (len % 2 == 0); |
345 while (count < len && | 345 while (count < len && |
346 recentTime - recentTouches[count + 1] > _MAX_TRACKING_TIME || | 346 recentTime - recentTouches[count + 1] > _MAX_TRACKING_TIME || |
347 (len - count) > _MAX_TRACKING_TOUCHES * 2) { | 347 (len - count) > _MAX_TRACKING_TOUCHES * 2) { |
348 count += 2; | 348 count += 2; |
349 } | 349 } |
350 return count == 0 ? recentTouches : _removeFirstN(recentTouches, count); | 350 return count == 0 ? recentTouches : _removeFirstN(recentTouches, count); |
351 } | 351 } |
352 | 352 |
353 static List<int> _removeFirstN(List<int> list, int n) { | 353 static List<int> _removeFirstN(List<int> list, int n) { |
354 return list.getRange(n, list.length - n); | 354 return list.sublist(n); |
355 } | 355 } |
356 | 356 |
357 /** | 357 /** |
358 * Filters the provided recent touches list to remove all touches except the | 358 * Filters the provided recent touches list to remove all touches except the |
359 * last if the move direction has changed. | 359 * last if the move direction has changed. |
360 * [recentTouches] specifies a list of tuples where the first item is the x | 360 * [recentTouches] specifies a list of tuples where the first item is the x |
361 * or y component of the recent touch and the second item is the touch time | 361 * or y component of the recent touch and the second item is the touch time |
362 * stamp. The x or y component of the most recent move is specified by | 362 * stamp. The x or y component of the most recent move is specified by |
363 * [recentMove]. | 363 * [recentMove]. |
364 */ | 364 */ |
(...skipping 19 matching lines...) Expand all Loading... |
384 | 384 |
385 /** | 385 /** |
386 * Call this method to enable drag behavior on a draggable delegate. | 386 * Call this method to enable drag behavior on a draggable delegate. |
387 * The [draggable] object can be the same as the [_touchable] object, they are | 387 * The [draggable] object can be the same as the [_touchable] object, they are |
388 * assigned to different members to allow for strong typing with interfaces. | 388 * assigned to different members to allow for strong typing with interfaces. |
389 */ | 389 */ |
390 void setDraggable(Draggable draggable) { | 390 void setDraggable(Draggable draggable) { |
391 _draggable = draggable; | 391 _draggable = draggable; |
392 } | 392 } |
393 } | 393 } |
OLD | NEW |