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
3 // found in the LICENSE file.
5 #include "ui/aura/window_event_dispatcher.h"
8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/trace_event/trace_event.h"
11 #include "ui/aura/client/capture_client.h"
12 #include "ui/aura/client/cursor_client.h"
13 #include "ui/aura/client/event_client.h"
14 #include "ui/aura/client/focus_client.h"
15 #include "ui/aura/client/screen_position_client.h"
16 #include "ui/aura/env.h"
17 #include "ui/aura/window.h"
18 #include "ui/aura/window_delegate.h"
19 #include "ui/aura/window_targeter.h"
20 #include "ui/aura/window_tracker.h"
21 #include "ui/aura/window_tree_host.h"
22 #include "ui/base/hit_test.h"
23 #include "ui/compositor/dip_util.h"
24 #include "ui/events/event.h"
25 #include "ui/events/event_utils.h"
26 #include "ui/events/gestures/gesture_recognizer.h"
27 #include "ui/events/gestures/gesture_types.h"
29 typedef ui::EventDispatchDetails DispatchDetails
;
35 // Returns true if |target| has a non-client (frame) component at |location|,
36 // in window coordinates.
37 bool IsNonClientLocation(Window
* target
, const gfx::Point
& location
) {
38 if (!target
->delegate())
40 int hit_test_code
= target
->delegate()->GetNonClientComponent(location
);
41 return hit_test_code
!= HTCLIENT
&& hit_test_code
!= HTNOWHERE
;
44 Window
* ConsumerToWindow(ui::GestureConsumer
* consumer
) {
45 return consumer
? static_cast<Window
*>(consumer
) : NULL
;
48 void SetLastMouseLocation(const Window
* root_window
,
49 const gfx::Point
& location_in_root
) {
50 client::ScreenPositionClient
* client
=
51 client::GetScreenPositionClient(root_window
);
53 gfx::Point location_in_screen
= location_in_root
;
54 client
->ConvertPointToScreen(root_window
, &location_in_screen
);
55 Env::GetInstance()->set_last_mouse_location(location_in_screen
);
57 Env::GetInstance()->set_last_mouse_location(location_in_root
);
61 bool IsEventCandidateForHold(const ui::Event
& event
) {
62 if (event
.type() == ui::ET_TOUCH_MOVED
)
64 if (event
.type() == ui::ET_MOUSE_DRAGGED
)
66 if (event
.IsMouseEvent() && (event
.flags() & ui::EF_IS_SYNTHESIZED
))
73 ////////////////////////////////////////////////////////////////////////////////
74 // WindowEventDispatcher, public:
76 WindowEventDispatcher::WindowEventDispatcher(WindowTreeHost
* host
)
79 mouse_pressed_handler_(NULL
),
80 mouse_moved_handler_(NULL
),
81 event_dispatch_target_(NULL
),
82 old_dispatch_target_(NULL
),
83 synthesize_mouse_move_(false),
85 dispatching_held_event_(nullptr),
86 observer_manager_(this),
87 repost_event_factory_(this),
88 held_event_factory_(this) {
89 ui::GestureRecognizer::Get()->AddGestureEventHelper(this);
90 Env::GetInstance()->AddObserver(this);
93 WindowEventDispatcher::~WindowEventDispatcher() {
94 TRACE_EVENT0("shutdown", "WindowEventDispatcher::Destructor");
95 Env::GetInstance()->RemoveObserver(this);
96 ui::GestureRecognizer::Get()->RemoveGestureEventHelper(this);
99 void WindowEventDispatcher::RepostEvent(const ui::LocatedEvent
& event
) {
100 DCHECK(event
.type() == ui::ET_MOUSE_PRESSED
||
101 event
.type() == ui::ET_GESTURE_TAP_DOWN
);
102 // We allow for only one outstanding repostable event. This is used
103 // in exiting context menus. A dropped repost request is allowed.
104 if (event
.type() == ui::ET_MOUSE_PRESSED
) {
105 held_repostable_event_
.reset(
107 static_cast<const ui::MouseEvent
&>(event
),
108 static_cast<aura::Window
*>(event
.target()),
110 base::MessageLoop::current()->PostNonNestableTask(
111 FROM_HERE
, base::Bind(
112 base::IgnoreResult(&WindowEventDispatcher::DispatchHeldEvents
),
113 repost_event_factory_
.GetWeakPtr()));
115 DCHECK(event
.type() == ui::ET_GESTURE_TAP_DOWN
);
116 held_repostable_event_
.reset();
117 // TODO(rbyers): Reposing of gestures is tricky to get
118 // right, so it's not yet supported. crbug.com/170987.
122 void WindowEventDispatcher::OnMouseEventsEnableStateChanged(bool enabled
) {
123 // Send entered / exited so that visual state can be updated to match
124 // mouse events state.
125 PostSynthesizeMouseMove();
126 // TODO(mazda): Add code to disable mouse events when |enabled| == false.
129 void WindowEventDispatcher::DispatchCancelModeEvent() {
130 ui::CancelModeEvent event
;
131 Window
* focused_window
= client::GetFocusClient(window())->GetFocusedWindow();
132 if (focused_window
&& !window()->Contains(focused_window
))
133 focused_window
= NULL
;
134 DispatchDetails details
=
135 DispatchEvent(focused_window
? focused_window
: window(), &event
);
136 if (details
.dispatcher_destroyed
)
140 void WindowEventDispatcher::DispatchGestureEvent(ui::GestureEvent
* event
) {
141 DispatchDetails details
= DispatchHeldEvents();
142 if (details
.dispatcher_destroyed
)
144 Window
* target
= GetGestureTarget(event
);
146 event
->ConvertLocationToTarget(window(), target
);
147 DispatchDetails details
= DispatchEvent(target
, event
);
148 if (details
.dispatcher_destroyed
)
153 DispatchDetails
WindowEventDispatcher::DispatchMouseExitAtPoint(
155 const gfx::Point
& point
) {
156 ui::MouseEvent
event(ui::ET_MOUSE_EXITED
, point
, point
, ui::EventTimeForNow(),
157 ui::EF_NONE
, ui::EF_NONE
);
158 return DispatchMouseEnterOrExit(window
, event
, ui::ET_MOUSE_EXITED
);
161 void WindowEventDispatcher::ProcessedTouchEvent(uint32 unique_event_id
,
163 ui::EventResult result
) {
164 scoped_ptr
<ui::GestureRecognizer::Gestures
> gestures(
165 ui::GestureRecognizer::Get()->AckTouchEvent(unique_event_id
, result
,
167 DispatchDetails details
= ProcessGestures(gestures
.get());
168 if (details
.dispatcher_destroyed
)
172 void WindowEventDispatcher::HoldPointerMoves() {
173 if (!move_hold_count_
)
174 held_event_factory_
.InvalidateWeakPtrs();
176 TRACE_EVENT_ASYNC_BEGIN0("ui", "WindowEventDispatcher::HoldPointerMoves",
180 void WindowEventDispatcher::ReleasePointerMoves() {
182 DCHECK_GE(move_hold_count_
, 0);
183 if (!move_hold_count_
&& held_move_event_
) {
184 // We don't want to call DispatchHeldEvents directly, because this might be
185 // called from a deep stack while another event, in which case dispatching
186 // another one may not be safe/expected. Instead we post a task, that we
187 // may cancel if HoldPointerMoves is called again before it executes.
188 base::MessageLoop::current()->PostNonNestableTask(
189 FROM_HERE
, base::Bind(
190 base::IgnoreResult(&WindowEventDispatcher::DispatchHeldEvents
),
191 held_event_factory_
.GetWeakPtr()));
193 TRACE_EVENT_ASYNC_END0("ui", "WindowEventDispatcher::HoldPointerMoves", this);
196 gfx::Point
WindowEventDispatcher::GetLastMouseLocationInRoot() const {
197 gfx::Point location
= Env::GetInstance()->last_mouse_location();
198 client::ScreenPositionClient
* client
=
199 client::GetScreenPositionClient(window());
201 client
->ConvertPointFromScreen(window(), &location
);
205 void WindowEventDispatcher::OnHostLostMouseGrab() {
206 mouse_pressed_handler_
= NULL
;
207 mouse_moved_handler_
= NULL
;
210 void WindowEventDispatcher::OnCursorMovedToRootLocation(
211 const gfx::Point
& root_location
) {
212 SetLastMouseLocation(window(), root_location
);
214 // Synthesize a mouse move in case the cursor's location in root coordinates
215 // changed but its position in WindowTreeHost coordinates did not.
216 PostSynthesizeMouseMove();
219 void WindowEventDispatcher::OnPostNotifiedWindowDestroying(Window
* window
) {
220 OnWindowHidden(window
, WINDOW_DESTROYED
);
223 ////////////////////////////////////////////////////////////////////////////////
224 // WindowEventDispatcher, private:
226 Window
* WindowEventDispatcher::window() {
227 return host_
->window();
230 const Window
* WindowEventDispatcher::window() const {
231 return host_
->window();
234 void WindowEventDispatcher::TransformEventForDeviceScaleFactor(
235 ui::LocatedEvent
* event
) {
236 event
->UpdateForRootTransform(host_
->GetInverseRootTransform());
239 void WindowEventDispatcher::DispatchMouseExitToHidingWindow(Window
* window
) {
240 // The mouse capture is intentionally ignored. Think that a mouse enters
241 // to a window, the window sets the capture, the mouse exits the window,
242 // and then it releases the capture. In that case OnMouseExited won't
243 // be called. So it is natural not to emit OnMouseExited even though
244 // |window| is the capture window.
245 gfx::Point last_mouse_location
= GetLastMouseLocationInRoot();
246 if (window
->Contains(mouse_moved_handler_
) &&
247 window
->ContainsPointInRoot(last_mouse_location
)) {
248 DispatchDetails details
=
249 DispatchMouseExitAtPoint(window
, last_mouse_location
);
250 if (details
.dispatcher_destroyed
)
255 ui::EventDispatchDetails
WindowEventDispatcher::DispatchMouseEnterOrExit(
257 const ui::MouseEvent
& event
,
258 ui::EventType type
) {
259 if (event
.type() != ui::ET_MOUSE_CAPTURE_CHANGED
&&
260 !(event
.flags() & ui::EF_IS_SYNTHESIZED
)) {
261 SetLastMouseLocation(window(), event
.root_location());
264 if (!mouse_moved_handler_
|| !mouse_moved_handler_
->delegate() ||
265 !window()->Contains(mouse_moved_handler_
))
266 return DispatchDetails();
268 // |event| may be an event in the process of being dispatched to a target (in
269 // which case its locations will be in the event's target's coordinate
270 // system), or a synthetic event created in root-window (in which case, the
271 // event's target will be NULL, and the event will be in the root-window's
272 // coordinate system.
275 ui::MouseEvent
translated_event(event
,
277 mouse_moved_handler_
,
279 event
.flags() | ui::EF_IS_SYNTHESIZED
);
280 return DispatchEvent(mouse_moved_handler_
, &translated_event
);
283 ui::EventDispatchDetails
WindowEventDispatcher::ProcessGestures(
284 ui::GestureRecognizer::Gestures
* gestures
) {
285 DispatchDetails details
;
286 if (!gestures
|| gestures
->empty())
289 Window
* target
= GetGestureTarget(gestures
->get().at(0));
293 for (size_t i
= 0; i
< gestures
->size(); ++i
) {
294 ui::GestureEvent
* event
= gestures
->get().at(i
);
295 event
->ConvertLocationToTarget(window(), target
);
296 details
= DispatchEvent(target
, event
);
297 if (details
.dispatcher_destroyed
|| details
.target_destroyed
)
303 void WindowEventDispatcher::OnWindowHidden(Window
* invisible
,
304 WindowHiddenReason reason
) {
305 // If the window the mouse was pressed in becomes invisible, it should no
306 // longer receive mouse events.
307 if (invisible
->Contains(mouse_pressed_handler_
))
308 mouse_pressed_handler_
= NULL
;
309 if (invisible
->Contains(mouse_moved_handler_
))
310 mouse_moved_handler_
= NULL
;
312 // If events are being dispatched from a nested message-loop, and the target
313 // of the outer loop is hidden or moved to another dispatcher during
314 // dispatching events in the inner loop, then reset the target for the outer
316 if (invisible
->Contains(old_dispatch_target_
))
317 old_dispatch_target_
= NULL
;
319 invisible
->CleanupGestureState();
321 // Do not clear the capture, and the |event_dispatch_target_| if the
322 // window is moving across hosts, because the target itself is actually still
323 // visible and clearing them stops further event processing, which can cause
324 // unexpected behaviors. See crbug.com/157583
325 if (reason
!= WINDOW_MOVING
) {
326 // We don't ask |invisible| here, because invisible may have been removed
327 // from the window hierarchy already by the time this function is called
328 // (OnWindowDestroyed).
329 client::CaptureClient
* capture_client
=
330 client::GetCaptureClient(host_
->window());
331 Window
* capture_window
=
332 capture_client
? capture_client
->GetCaptureWindow() : NULL
;
334 if (invisible
->Contains(event_dispatch_target_
))
335 event_dispatch_target_
= NULL
;
337 // If the ancestor of the capture window is hidden, release the capture.
338 // Note that this may delete the window so do not use capture_window
340 if (invisible
->Contains(capture_window
) && invisible
!= window())
341 capture_window
->ReleaseCapture();
345 Window
* WindowEventDispatcher::GetGestureTarget(ui::GestureEvent
* event
) {
346 return ConsumerToWindow(
347 ui::GestureRecognizer::Get()->GetTargetForGestureEvent(*event
));
350 bool WindowEventDispatcher::is_dispatched_held_event(
351 const ui::Event
& event
) const {
352 return dispatching_held_event_
== &event
;
355 ////////////////////////////////////////////////////////////////////////////////
356 // WindowEventDispatcher, aura::client::CaptureDelegate implementation:
358 void WindowEventDispatcher::UpdateCapture(Window
* old_capture
,
359 Window
* new_capture
) {
360 // |mouse_moved_handler_| may have been set to a Window in a different root
361 // (see below). Clear it here to ensure we don't end up referencing a stale
363 if (mouse_moved_handler_
&& !window()->Contains(mouse_moved_handler_
))
364 mouse_moved_handler_
= NULL
;
366 if (old_capture
&& old_capture
->GetRootWindow() == window() &&
367 old_capture
->delegate()) {
368 // Send a capture changed event with bogus location data.
369 ui::MouseEvent
event(ui::ET_MOUSE_CAPTURE_CHANGED
, gfx::Point(),
370 gfx::Point(), ui::EventTimeForNow(), 0, 0);
372 DispatchDetails details
= DispatchEvent(old_capture
, &event
);
373 if (details
.dispatcher_destroyed
)
376 if (!details
.target_destroyed
)
377 old_capture
->delegate()->OnCaptureLost();
381 // Make all subsequent mouse events go to the capture window. We shouldn't
382 // need to send an event here as OnCaptureLost() should take care of that.
383 if (mouse_moved_handler_
|| Env::GetInstance()->IsMouseButtonDown())
384 mouse_moved_handler_
= new_capture
;
386 // Make sure mouse_moved_handler gets updated.
387 DispatchDetails details
= SynthesizeMouseMoveEvent();
388 if (details
.dispatcher_destroyed
)
391 mouse_pressed_handler_
= NULL
;
394 void WindowEventDispatcher::OnOtherRootGotCapture() {
395 // Windows provides the TrackMouseEvents API which allows us to rely on the
396 // OS to send us the mouse exit events (WM_MOUSELEAVE). Additionally on
397 // desktop Windows, every top level window could potentially have its own
398 // root window, in which case this function will get called whenever those
399 // windows grab mouse capture. Sending mouse exit messages in these cases
400 // causes subtle bugs like (crbug.com/394672).
402 if (mouse_moved_handler_
) {
403 // Dispatch a mouse exit to reset any state associated with hover. This is
404 // important when going from no window having capture to a window having
405 // capture because we do not dispatch ET_MOUSE_CAPTURE_CHANGED in this case.
406 DispatchDetails details
=
407 DispatchMouseExitAtPoint(nullptr, GetLastMouseLocationInRoot());
408 if (details
.dispatcher_destroyed
)
413 mouse_moved_handler_
= NULL
;
414 mouse_pressed_handler_
= NULL
;
417 void WindowEventDispatcher::SetNativeCapture() {
421 void WindowEventDispatcher::ReleaseNativeCapture() {
422 host_
->ReleaseCapture();
425 ////////////////////////////////////////////////////////////////////////////////
426 // WindowEventDispatcher, ui::EventProcessor implementation:
427 ui::EventTarget
* WindowEventDispatcher::GetRootTarget() {
431 void WindowEventDispatcher::OnEventProcessingStarted(ui::Event
* event
) {
432 // The held events are already in |window()|'s coordinate system. So it is
433 // not necessary to apply the transform to convert from the host's
434 // coordinate system to |window()|'s coordinate system.
435 if (event
->IsLocatedEvent() && !is_dispatched_held_event(*event
))
436 TransformEventForDeviceScaleFactor(static_cast<ui::LocatedEvent
*>(event
));
439 ////////////////////////////////////////////////////////////////////////////////
440 // WindowEventDispatcher, ui::EventDispatcherDelegate implementation:
442 bool WindowEventDispatcher::CanDispatchToTarget(ui::EventTarget
* target
) {
443 return event_dispatch_target_
== target
;
446 ui::EventDispatchDetails
WindowEventDispatcher::PreDispatchEvent(
447 ui::EventTarget
* target
,
449 Window
* target_window
= static_cast<Window
*>(target
);
450 CHECK(window()->Contains(target_window
));
452 if (!dispatching_held_event_
) {
453 bool can_be_held
= IsEventCandidateForHold(*event
);
454 if (!move_hold_count_
|| !can_be_held
) {
456 held_move_event_
.reset();
457 DispatchDetails details
= DispatchHeldEvents();
458 if (details
.dispatcher_destroyed
|| details
.target_destroyed
)
463 if (event
->IsMouseEvent()) {
464 PreDispatchMouseEvent(target_window
, static_cast<ui::MouseEvent
*>(event
));
465 } else if (event
->IsScrollEvent()) {
466 PreDispatchLocatedEvent(target_window
,
467 static_cast<ui::ScrollEvent
*>(event
));
468 } else if (event
->IsTouchEvent()) {
469 PreDispatchTouchEvent(target_window
, static_cast<ui::TouchEvent
*>(event
));
471 old_dispatch_target_
= event_dispatch_target_
;
472 event_dispatch_target_
= static_cast<Window
*>(target
);
473 return DispatchDetails();
476 ui::EventDispatchDetails
WindowEventDispatcher::PostDispatchEvent(
477 ui::EventTarget
* target
,
478 const ui::Event
& event
) {
479 DispatchDetails details
;
480 if (!target
|| target
!= event_dispatch_target_
)
481 details
.target_destroyed
= true;
482 event_dispatch_target_
= old_dispatch_target_
;
483 old_dispatch_target_
= NULL
;
485 DCHECK(!event_dispatch_target_
|| window()->Contains(event_dispatch_target_
));
488 if (event
.IsTouchEvent() && !details
.target_destroyed
) {
489 // Do not let 'held' touch events contribute to any gestures unless it is
491 if (is_dispatched_held_event(event
) || !held_move_event_
||
492 !held_move_event_
->IsTouchEvent()) {
493 const ui::TouchEvent
& touchevent
=
494 static_cast<const ui::TouchEvent
&>(event
);
496 if (!touchevent
.synchronous_handling_disabled()) {
497 scoped_ptr
<ui::GestureRecognizer::Gestures
> gestures
;
499 // Once we've fully migrated to the eager gesture detector, we won't
500 // need to pass an event here.
501 gestures
.reset(ui::GestureRecognizer::Get()->AckTouchEvent(
502 touchevent
.unique_event_id(), event
.result(),
503 static_cast<Window
*>(target
)));
505 return ProcessGestures(gestures
.get());
513 ////////////////////////////////////////////////////////////////////////////////
514 // WindowEventDispatcher, ui::GestureEventHelper implementation:
516 bool WindowEventDispatcher::CanDispatchToConsumer(
517 ui::GestureConsumer
* consumer
) {
518 Window
* consumer_window
= ConsumerToWindow(consumer
);
519 return (consumer_window
&& consumer_window
->GetRootWindow() == window());
522 void WindowEventDispatcher::DispatchCancelTouchEvent(ui::TouchEvent
* event
) {
523 // The touchcancel event's location is based on the last known location of
524 // the pointer, in dips. OnEventFromSource expects events with co-ordinates
525 // in raw pixels, so we convert back to raw pixels here.
526 event
->UpdateForRootTransform(host_
->GetRootTransform());
527 DispatchDetails details
= OnEventFromSource(event
);
528 if (details
.dispatcher_destroyed
)
532 ////////////////////////////////////////////////////////////////////////////////
533 // WindowEventDispatcher, WindowObserver implementation:
535 void WindowEventDispatcher::OnWindowDestroying(Window
* window
) {
536 if (!host_
->window()->Contains(window
))
539 SynthesizeMouseMoveAfterChangeToWindow(window
);
542 void WindowEventDispatcher::OnWindowDestroyed(Window
* window
) {
543 // We observe all windows regardless of what root Window (if any) they're
545 observer_manager_
.Remove(window
);
548 void WindowEventDispatcher::OnWindowAddedToRootWindow(Window
* attached
) {
549 if (!observer_manager_
.IsObserving(attached
))
550 observer_manager_
.Add(attached
);
552 if (!host_
->window()->Contains(attached
))
555 SynthesizeMouseMoveAfterChangeToWindow(attached
);
558 void WindowEventDispatcher::OnWindowRemovingFromRootWindow(Window
* detached
,
560 if (!host_
->window()->Contains(detached
))
563 DCHECK(client::GetCaptureWindow(window()) != window());
565 DispatchMouseExitToHidingWindow(detached
);
566 SynthesizeMouseMoveAfterChangeToWindow(detached
);
568 // Hiding the window releases capture which can implicitly destroy the window
569 // so the window may no longer be valid after this call.
570 OnWindowHidden(detached
, new_root
? WINDOW_MOVING
: WINDOW_HIDDEN
);
573 void WindowEventDispatcher::OnWindowVisibilityChanging(Window
* window
,
575 if (!host_
->window()->Contains(window
))
578 DispatchMouseExitToHidingWindow(window
);
581 void WindowEventDispatcher::OnWindowVisibilityChanged(Window
* window
,
583 if (!host_
->window()->Contains(window
))
586 if (window
->ContainsPointInRoot(GetLastMouseLocationInRoot()))
587 PostSynthesizeMouseMove();
589 // Hiding the window releases capture which can implicitly destroy the window
590 // so the window may no longer be valid after this call.
592 OnWindowHidden(window
, WINDOW_HIDDEN
);
595 void WindowEventDispatcher::OnWindowBoundsChanged(Window
* window
,
596 const gfx::Rect
& old_bounds
,
597 const gfx::Rect
& new_bounds
) {
598 if (!host_
->window()->Contains(window
))
601 if (window
== host_
->window()) {
602 TRACE_EVENT1("ui", "WindowEventDispatcher::OnWindowBoundsChanged(root)",
603 "size", new_bounds
.size().ToString());
605 DispatchDetails details
= DispatchHeldEvents();
606 if (details
.dispatcher_destroyed
)
609 synthesize_mouse_move_
= false;
612 if (window
->IsVisible() && !window
->ignore_events()) {
613 gfx::Rect old_bounds_in_root
= old_bounds
, new_bounds_in_root
= new_bounds
;
614 Window::ConvertRectToTarget(window
->parent(), host_
->window(),
615 &old_bounds_in_root
);
616 Window::ConvertRectToTarget(window
->parent(), host_
->window(),
617 &new_bounds_in_root
);
618 gfx::Point last_mouse_location
= GetLastMouseLocationInRoot();
619 if (old_bounds_in_root
.Contains(last_mouse_location
) !=
620 new_bounds_in_root
.Contains(last_mouse_location
)) {
621 PostSynthesizeMouseMove();
626 void WindowEventDispatcher::OnWindowTransforming(Window
* window
) {
627 if (!host_
->window()->Contains(window
))
630 SynthesizeMouseMoveAfterChangeToWindow(window
);
633 void WindowEventDispatcher::OnWindowTransformed(Window
* window
) {
634 if (!host_
->window()->Contains(window
))
637 SynthesizeMouseMoveAfterChangeToWindow(window
);
640 ///////////////////////////////////////////////////////////////////////////////
641 // WindowEventDispatcher, EnvObserver implementation:
643 void WindowEventDispatcher::OnWindowInitialized(Window
* window
) {
644 observer_manager_
.Add(window
);
647 ////////////////////////////////////////////////////////////////////////////////
648 // WindowEventDispatcher, private:
650 ui::EventDispatchDetails
WindowEventDispatcher::DispatchHeldEvents() {
651 if (!held_repostable_event_
&& !held_move_event_
)
652 return DispatchDetails();
654 CHECK(!dispatching_held_event_
);
656 DispatchDetails dispatch_details
;
657 if (held_repostable_event_
) {
658 if (held_repostable_event_
->type() == ui::ET_MOUSE_PRESSED
) {
659 scoped_ptr
<ui::MouseEvent
> mouse_event(
660 static_cast<ui::MouseEvent
*>(held_repostable_event_
.release()));
661 dispatching_held_event_
= mouse_event
.get();
662 dispatch_details
= OnEventFromSource(mouse_event
.get());
664 // TODO(rbyers): GESTURE_TAP_DOWN not yet supported: crbug.com/170987.
667 if (dispatch_details
.dispatcher_destroyed
)
668 return dispatch_details
;
671 if (held_move_event_
) {
672 // If a mouse move has been synthesized, the target location is suspect,
673 // so drop the held mouse event.
674 if (held_move_event_
->IsTouchEvent() ||
675 (held_move_event_
->IsMouseEvent() && !synthesize_mouse_move_
)) {
676 dispatching_held_event_
= held_move_event_
.get();
677 dispatch_details
= OnEventFromSource(held_move_event_
.get());
679 if (!dispatch_details
.dispatcher_destroyed
)
680 held_move_event_
.reset();
683 if (!dispatch_details
.dispatcher_destroyed
)
684 dispatching_held_event_
= nullptr;
685 return dispatch_details
;
688 void WindowEventDispatcher::PostSynthesizeMouseMove() {
689 if (synthesize_mouse_move_
)
691 synthesize_mouse_move_
= true;
692 base::MessageLoop::current()->PostNonNestableTask(
694 base::Bind(base::IgnoreResult(
695 &WindowEventDispatcher::SynthesizeMouseMoveEvent
),
696 held_event_factory_
.GetWeakPtr()));
699 void WindowEventDispatcher::SynthesizeMouseMoveAfterChangeToWindow(
701 if (window
->IsVisible() &&
702 window
->ContainsPointInRoot(GetLastMouseLocationInRoot())) {
703 PostSynthesizeMouseMove();
707 ui::EventDispatchDetails
WindowEventDispatcher::SynthesizeMouseMoveEvent() {
708 DispatchDetails details
;
709 if (!synthesize_mouse_move_
)
711 synthesize_mouse_move_
= false;
713 // If one of the mouse buttons is currently down, then do not synthesize a
714 // mouse-move event. In such cases, aura could synthesize a DRAGGED event
715 // instead of a MOVED event, but in multi-display/multi-host scenarios, the
716 // DRAGGED event can be synthesized in the incorrect host. So avoid
717 // synthesizing any events at all.
718 if (Env::GetInstance()->mouse_button_flags())
721 gfx::Point root_mouse_location
= GetLastMouseLocationInRoot();
722 if (!window()->bounds().Contains(root_mouse_location
))
724 gfx::Point host_mouse_location
= root_mouse_location
;
725 host_
->ConvertPointToHost(&host_mouse_location
);
726 ui::MouseEvent
event(ui::ET_MOUSE_MOVED
, host_mouse_location
,
727 host_mouse_location
, ui::EventTimeForNow(),
728 ui::EF_IS_SYNTHESIZED
, 0);
729 return OnEventFromSource(&event
);
732 void WindowEventDispatcher::PreDispatchLocatedEvent(Window
* target
,
733 ui::LocatedEvent
* event
) {
734 int flags
= event
->flags();
735 if (IsNonClientLocation(target
, event
->location()))
736 flags
|= ui::EF_IS_NON_CLIENT
;
737 event
->set_flags(flags
);
739 if (!is_dispatched_held_event(*event
) &&
740 (event
->IsMouseEvent() || event
->IsScrollEvent()) &&
741 !(event
->flags() & ui::EF_IS_SYNTHESIZED
)) {
742 if (event
->type() != ui::ET_MOUSE_CAPTURE_CHANGED
)
743 SetLastMouseLocation(window(), event
->root_location());
744 synthesize_mouse_move_
= false;
748 void WindowEventDispatcher::PreDispatchMouseEvent(Window
* target
,
749 ui::MouseEvent
* event
) {
750 client::CursorClient
* cursor_client
= client::GetCursorClient(window());
751 // We allow synthesized mouse exit events through even if mouse events are
752 // disabled. This ensures that hover state, etc on controls like buttons is
755 !cursor_client
->IsMouseEventsEnabled() &&
756 (event
->flags() & ui::EF_IS_SYNTHESIZED
) &&
757 (event
->type() != ui::ET_MOUSE_EXITED
)) {
762 if (IsEventCandidateForHold(*event
) && !dispatching_held_event_
) {
763 if (move_hold_count_
) {
764 if (!(event
->flags() & ui::EF_IS_SYNTHESIZED
) &&
765 event
->type() != ui::ET_MOUSE_CAPTURE_CHANGED
) {
766 SetLastMouseLocation(window(), event
->root_location());
768 held_move_event_
.reset(new ui::MouseEvent(*event
, target
, window()));
772 // We may have a held event for a period between the time move_hold_count_
773 // fell to 0 and the DispatchHeldEvents executes. Since we're going to
774 // dispatch the new event directly below, we can reset the old one.
775 held_move_event_
.reset();
779 const int kMouseButtonFlagMask
= ui::EF_LEFT_MOUSE_BUTTON
|
780 ui::EF_MIDDLE_MOUSE_BUTTON
|
781 ui::EF_RIGHT_MOUSE_BUTTON
|
782 ui::EF_BACK_MOUSE_BUTTON
|
783 ui::EF_FORWARD_MOUSE_BUTTON
;
784 switch (event
->type()) {
785 case ui::ET_MOUSE_EXITED
:
786 if (!target
|| target
== window()) {
787 DispatchDetails details
=
788 DispatchMouseEnterOrExit(target
, *event
, ui::ET_MOUSE_EXITED
);
789 if (details
.dispatcher_destroyed
) {
793 mouse_moved_handler_
= NULL
;
796 case ui::ET_MOUSE_MOVED
:
797 // Send an exit to the current |mouse_moved_handler_| and an enter to
798 // |target|. Take care that both us and |target| aren't destroyed during
800 if (target
!= mouse_moved_handler_
) {
801 aura::Window
* old_mouse_moved_handler
= mouse_moved_handler_
;
802 WindowTracker live_window
;
803 live_window
.Add(target
);
804 DispatchDetails details
=
805 DispatchMouseEnterOrExit(target
, *event
, ui::ET_MOUSE_EXITED
);
806 if (details
.dispatcher_destroyed
) {
810 // If the |mouse_moved_handler_| changes out from under us, assume a
811 // nested message loop ran and we don't need to do anything.
812 if (mouse_moved_handler_
!= old_mouse_moved_handler
) {
816 if (!live_window
.Contains(target
) || details
.target_destroyed
) {
817 mouse_moved_handler_
= NULL
;
821 live_window
.Remove(target
);
823 mouse_moved_handler_
= target
;
825 DispatchMouseEnterOrExit(target
, *event
, ui::ET_MOUSE_ENTERED
);
826 if (details
.dispatcher_destroyed
|| details
.target_destroyed
) {
832 case ui::ET_MOUSE_PRESSED
:
833 // Don't set the mouse pressed handler for non client mouse down events.
834 // These are only sent by Windows and are not always followed with non
835 // client mouse up events which causes subsequent mouse events to be
836 // sent to the wrong target.
837 if (!(event
->flags() & ui::EF_IS_NON_CLIENT
) && !mouse_pressed_handler_
)
838 mouse_pressed_handler_
= target
;
839 Env::GetInstance()->set_mouse_button_flags(
840 event
->flags() & kMouseButtonFlagMask
);
842 case ui::ET_MOUSE_RELEASED
:
843 mouse_pressed_handler_
= NULL
;
844 Env::GetInstance()->set_mouse_button_flags(event
->flags() &
845 kMouseButtonFlagMask
& ~event
->changed_button_flags());
851 PreDispatchLocatedEvent(target
, event
);
854 void WindowEventDispatcher::PreDispatchTouchEvent(Window
* target
,
855 ui::TouchEvent
* event
) {
856 switch (event
->type()) {
857 case ui::ET_TOUCH_PRESSED
:
858 touch_ids_down_
|= (1 << event
->touch_id());
859 Env::GetInstance()->set_touch_down(touch_ids_down_
!= 0);
862 // Handle ET_TOUCH_CANCELLED only if it has a native event.
863 case ui::ET_TOUCH_CANCELLED
:
864 if (!event
->HasNativeEvent())
867 case ui::ET_TOUCH_RELEASED
:
868 touch_ids_down_
= (touch_ids_down_
| (1 << event
->touch_id())) ^
869 (1 << event
->touch_id());
870 Env::GetInstance()->set_touch_down(touch_ids_down_
!= 0);
873 case ui::ET_TOUCH_MOVED
:
874 if (move_hold_count_
&& !dispatching_held_event_
) {
875 held_move_event_
.reset(new ui::TouchEvent(*event
, target
, window()));
886 ui::TouchEvent
orig_event(*event
, target
, window());
887 if (!ui::GestureRecognizer::Get()->ProcessTouchEventPreDispatch(&orig_event
,
889 // The event is invalid - ignore it.
890 event
->StopPropagation();
891 event
->DisableSynchronousHandling();
895 // This flag is set depending on the gestures recognized in the call above,
896 // and needs to propagate with the forwarded event.
897 event
->set_may_cause_scrolling(orig_event
.may_cause_scrolling());
899 PreDispatchLocatedEvent(target
, event
);