OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/event.h" | 5 #include "ui/events/event.h" |
6 #include "ui/events/event_utils.h" | 6 #include "ui/events/event_utils.h" |
7 #include "ui/events/keycodes/dom/dom_code.h" | 7 #include "ui/events/keycodes/dom/dom_code.h" |
8 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" | 8 #include "ui/events/ozone/evdev/cursor_delegate_evdev.h" |
9 #include "ui/events/ozone/evdev/device_event_dispatcher_evdev.h" | 9 #include "ui/events/ozone/evdev/device_event_dispatcher_evdev.h" |
10 #include "ui/events/ozone/evdev/event_modifiers_evdev.h" | 10 #include "ui/events/ozone/evdev/event_modifiers_evdev.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 break; | 40 break; |
41 case EF_MIDDLE_MOUSE_BUTTON: | 41 case EF_MIDDLE_MOUSE_BUTTON: |
42 code = BTN_MIDDLE; | 42 code = BTN_MIDDLE; |
43 default: | 43 default: |
44 LOG(WARNING) << "Invalid flag: " << button << " for the button parameter"; | 44 LOG(WARNING) << "Invalid flag: " << button << " for the button parameter"; |
45 return; | 45 return; |
46 } | 46 } |
47 | 47 |
48 dispatcher_->DispatchMouseButtonEvent(MouseButtonEventParams( | 48 dispatcher_->DispatchMouseButtonEvent(MouseButtonEventParams( |
49 kDeviceIdForInjection, cursor_->GetLocation(), code, down, | 49 kDeviceIdForInjection, cursor_->GetLocation(), code, down, |
50 false /* allow_remap */, EventTimeForNow())); | 50 false /* allow_remap */, EventPointerType::POINTER_TYPE_MOUSE, |
| 51 /* force */ 0.0f, /* tilt_x */ 0.0f, /* tilt_y */ 0.0f, |
| 52 EventTimeForNow())); |
51 } | 53 } |
52 | 54 |
53 void InputInjectorEvdev::InjectMouseWheel(int delta_x, int delta_y) { | 55 void InputInjectorEvdev::InjectMouseWheel(int delta_x, int delta_y) { |
54 dispatcher_->DispatchMouseWheelEvent(MouseWheelEventParams( | 56 dispatcher_->DispatchMouseWheelEvent(MouseWheelEventParams( |
55 kDeviceIdForInjection, cursor_->GetLocation(), | 57 kDeviceIdForInjection, cursor_->GetLocation(), |
56 gfx::Vector2d(delta_x, delta_y), EventTimeForNow())); | 58 gfx::Vector2d(delta_x, delta_y), EventTimeForNow())); |
57 } | 59 } |
58 | 60 |
59 void InputInjectorEvdev::MoveCursorTo(const gfx::PointF& location) { | 61 void InputInjectorEvdev::MoveCursorTo(const gfx::PointF& location) { |
60 if (!cursor_) | 62 if (!cursor_) |
61 return; | 63 return; |
62 | 64 |
63 cursor_->MoveCursorTo(location); | 65 cursor_->MoveCursorTo(location); |
64 | 66 |
65 dispatcher_->DispatchMouseMoveEvent(MouseMoveEventParams( | 67 dispatcher_->DispatchMouseMoveEvent( |
66 kDeviceIdForInjection, cursor_->GetLocation(), EventTimeForNow())); | 68 MouseMoveEventParams(kDeviceIdForInjection, cursor_->GetLocation(), |
| 69 EventPointerType::POINTER_TYPE_MOUSE, |
| 70 /* force */ 0.0f, /* tilt_x */ 0.0f, |
| 71 /* tilt_y */ 0.0f, EventTimeForNow())); |
67 } | 72 } |
68 | 73 |
69 void InputInjectorEvdev::InjectKeyEvent(DomCode physical_key, | 74 void InputInjectorEvdev::InjectKeyEvent(DomCode physical_key, |
70 bool down, | 75 bool down, |
71 bool suppress_auto_repeat) { | 76 bool suppress_auto_repeat) { |
72 if (physical_key == DomCode::NONE) | 77 if (physical_key == DomCode::NONE) |
73 return; | 78 return; |
74 | 79 |
75 int native_keycode = KeycodeConverter::DomCodeToNativeKeycode(physical_key); | 80 int native_keycode = KeycodeConverter::DomCodeToNativeKeycode(physical_key); |
76 int evdev_code = NativeCodeToEvdevCode(native_keycode); | 81 int evdev_code = NativeCodeToEvdevCode(native_keycode); |
77 | 82 |
78 dispatcher_->DispatchKeyEvent( | 83 dispatcher_->DispatchKeyEvent( |
79 KeyEventParams(kDeviceIdForInjection, evdev_code, down, | 84 KeyEventParams(kDeviceIdForInjection, evdev_code, down, |
80 suppress_auto_repeat, EventTimeForNow())); | 85 suppress_auto_repeat, EventTimeForNow())); |
81 } | 86 } |
82 | 87 |
83 } // namespace ui | 88 } // namespace ui |
84 | 89 |
OLD | NEW |