Home | History | Annotate | Download | only in widget

Lines Matching defs:mouse

49 // A widget that assumes mouse capture always works. It won't on Aura in
86 // A view that always processes all mouse events.
269 // initiates a nested message-loop when it receives a mouse-press event.
300 // receives a mouse-release event.
516 // Tests mouse move outside of the window into the "resize controller" and back
1181 // Checks that if a mouse-press triggers a capture on a different widget (which
1182 // consumes the mouse-release event), then the target of the press does not have
1189 // The test sends a mouse-press event to |first|, and posts a task to send a
1229 MouseView* mouse = new MouseView;
1230 mouse->SetBounds(30, 0, 30, 30);
1231 container->AddChildView(mouse);
1245 // Now try to click on |mouse|. Since |gesture| will have capture, |mouse|
1256 EXPECT_EQ(0, mouse->pressed());
1258 // The end of the gesture should release the capture, and pressing on |mouse|
1259 // should now reach |mouse|.
1263 EXPECT_EQ(1, mouse->pressed());
1815 // In Aura, we suppress mouse events if mouse events are disabled.
2049 // A view that consumes mouse-pressed event and gesture-tap-down events.