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

Side by Side Diff: ui/events/blink/blink_event_util.cc

Issue 1152463004: Fix motion event orientation handling for styluses. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 5 years, 6 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 | « no previous file | ui/events/gesture_detection/motion_event.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 // MSVC++ requires this to be set before any other includes to get M_PI. 5 // MSVC++ requires this to be set before any other includes to get M_PI.
6 #define _USE_MATH_DEFINES 6 #define _USE_MATH_DEFINES
7 7
8 #include "ui/events/blink/blink_event_util.h" 8 #include "ui/events/blink/blink_event_util.h"
9 9
10 #include <cmath> 10 #include <cmath>
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 float major_radius = event.GetTouchMajor(pointer_index) / 2.f; 96 float major_radius = event.GetTouchMajor(pointer_index) / 2.f;
97 float minor_radius = event.GetTouchMinor(pointer_index) / 2.f; 97 float minor_radius = event.GetTouchMinor(pointer_index) / 2.f;
98 98
99 DCHECK_LE(minor_radius, major_radius); 99 DCHECK_LE(minor_radius, major_radius);
100 DCHECK_IMPLIES(major_radius, minor_radius); 100 DCHECK_IMPLIES(major_radius, minor_radius);
101 101
102 float orientation_deg = event.GetOrientation(pointer_index) * 180.f / M_PI; 102 float orientation_deg = event.GetOrientation(pointer_index) * 180.f / M_PI;
103 DCHECK_GE(major_radius, 0); 103 DCHECK_GE(major_radius, 0);
104 DCHECK_GE(minor_radius, 0); 104 DCHECK_GE(minor_radius, 0);
105 DCHECK_GE(major_radius, minor_radius); 105 DCHECK_GE(major_radius, minor_radius);
106 // Allow a small bound tolerance to account for floating point conversion. 106 if (event.GetToolType(pointer_index) == MotionEvent::TOOL_TYPE_STYLUS) {
107 DCHECK_GT(orientation_deg, -90.01f); 107 // Orientation lies in [-180, 180] for a stylus. Normalise to [-90, 90).
108 DCHECK_LT(orientation_deg, 90.01f); 108 // Allow a small bound tolerance to account for floating point conversion.
109 // TODO(e_hakkinen): crbug.com/493728: Pass also unaltered orientation
110 // to touch in order not to lose quadrant information.
111 DCHECK_GT(orientation_deg, -180.01f);
112 DCHECK_LT(orientation_deg, 180.01f);
113 if (orientation_deg >= 90.f)
114 orientation_deg -= 180.f;
115 else if (orientation_deg < -90.f)
116 orientation_deg += 180.f;
117 } else {
118 // Orientation lies in [-90, 90] for a touch. Normalise to [-90, 90).
119 // Allow a small bound tolerance to account for floating point conversion.
120 DCHECK_GT(orientation_deg, -90.01f);
121 DCHECK_LT(orientation_deg, 90.01f);
122 if (orientation_deg >= 90.f)
123 orientation_deg -= 180.f;
124 }
109 if (orientation_deg >= 0) { 125 if (orientation_deg >= 0) {
110 // The case orientation_deg == 0 is handled here on purpose: although the 126 // The case orientation_deg == 0 is handled here on purpose: although the
111 // 'else' block is equivalent in this case, we want to pass the 0 value 127 // 'else' block is equivalent in this case, we want to pass the 0 value
112 // unchanged (and 0 is the default value for many devices that don't 128 // unchanged (and 0 is the default value for many devices that don't
113 // report elliptical touches). 129 // report elliptical touches).
114 touch.radiusX = minor_radius; 130 touch.radiusX = minor_radius;
115 touch.radiusY = major_radius; 131 touch.radiusY = major_radius;
116 touch.rotationAngle = orientation_deg; 132 touch.rotationAngle = orientation_deg;
117 } else { 133 } else {
118 touch.radiusX = major_radius; 134 touch.radiusX = major_radius;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 } 310 }
295 311
296 WebGestureEvent CreateWebGestureEventFromGestureEventData( 312 WebGestureEvent CreateWebGestureEventFromGestureEventData(
297 const GestureEventData& data) { 313 const GestureEventData& data) {
298 return CreateWebGestureEvent(data.details, data.time - base::TimeTicks(), 314 return CreateWebGestureEvent(data.details, data.time - base::TimeTicks(),
299 gfx::PointF(data.x, data.y), 315 gfx::PointF(data.x, data.y),
300 gfx::PointF(data.raw_x, data.raw_y), data.flags); 316 gfx::PointF(data.raw_x, data.raw_y), data.flags);
301 } 317 }
302 318
303 } // namespace ui 319 } // namespace ui
OLDNEW
« no previous file with comments | « no previous file | ui/events/gesture_detection/motion_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698