| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/events/gestures/gesture_point.h" | 5 #include "ui/events/gestures/gesture_point.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "ui/events/event.h" | 10 #include "ui/events/event.h" |
| 11 #include "ui/events/event_constants.h" | 11 #include "ui/events/event_constants.h" |
| 12 #include "ui/events/gestures/gesture_configuration.h" | 12 #include "ui/events/gestures/gesture_configuration.h" |
| 13 #include "ui/events/gestures/gesture_types.h" | 13 #include "ui/events/gestures/gesture_types.h" |
| 14 #include "ui/events/gestures/gesture_util.h" | 14 #include "ui/events/gestures/gesture_util.h" |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 | 17 |
| 18 GesturePoint::GesturePoint() | 18 GesturePoint::GesturePoint() |
| 19 : first_touch_time_(0.0), | 19 : first_touch_time_(0.0), |
| 20 second_last_touch_time_(0.0), | 20 second_last_touch_time_(0.0), |
| 21 last_touch_time_(0.0), | 21 last_touch_time_(0.0), |
| 22 second_last_tap_time_(0.0), | 22 second_last_tap_time_(0.0), |
| 23 last_tap_time_(0.0), | 23 last_tap_time_(0.0), |
| 24 velocity_calculator_( | 24 velocity_calculator_( |
| 25 GestureConfiguration::points_buffered_for_velocity()), | 25 GestureConfiguration::points_buffered_for_velocity()), |
| 26 point_id_(-1), | 26 point_id_(-1), |
| 27 touch_id_(-1), | 27 touch_id_(-1) { |
| 28 source_device_id_(-1) { | |
| 29 } | 28 } |
| 30 | 29 |
| 31 GesturePoint::~GesturePoint() {} | 30 GesturePoint::~GesturePoint() {} |
| 32 | 31 |
| 33 void GesturePoint::Reset() { | 32 void GesturePoint::Reset() { |
| 34 first_touch_time_ = second_last_touch_time_ = last_touch_time_ = 0.0; | 33 first_touch_time_ = second_last_touch_time_ = last_touch_time_ = 0.0; |
| 35 ResetVelocity(); | 34 ResetVelocity(); |
| 36 point_id_ = -1; | 35 point_id_ = -1; |
| 37 clear_enclosing_rectangle(); | 36 clear_enclosing_rectangle(); |
| 38 source_device_id_ = -1; | |
| 39 } | 37 } |
| 40 | 38 |
| 41 void GesturePoint::ResetVelocity() { | 39 void GesturePoint::ResetVelocity() { |
| 42 velocity_calculator_.ClearHistory(); | 40 velocity_calculator_.ClearHistory(); |
| 43 same_direction_count_ = gfx::Vector2d(); | 41 same_direction_count_ = gfx::Vector2d(); |
| 44 } | 42 } |
| 45 | 43 |
| 46 gfx::Vector2d GesturePoint::ScrollDelta() const { | 44 gfx::Vector2d GesturePoint::ScrollDelta() const { |
| 47 return last_touch_position_ - second_last_touch_position_; | 45 return last_touch_position_ - second_last_touch_position_; |
| 48 } | 46 } |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 event.location().y() - radius, | 221 event.location().y() - radius, |
| 224 radius * 2, | 222 radius * 2, |
| 225 radius * 2); | 223 radius * 2); |
| 226 if (IsInClickWindow(event)) | 224 if (IsInClickWindow(event)) |
| 227 enclosing_rect_.Union(rect); | 225 enclosing_rect_.Union(rect); |
| 228 else | 226 else |
| 229 enclosing_rect_ = rect; | 227 enclosing_rect_ = rect; |
| 230 } | 228 } |
| 231 | 229 |
| 232 } // namespace ui | 230 } // namespace ui |
| OLD | NEW |