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

Unified Diff: ui/base/test/ui_controls_mac.mm

Issue 1747803003: MacViews: Implement Tab Dragging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove CGEvent-generating code from ui_controls_mac.mm Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ui/base/test/ui_controls_mac.mm
diff --git a/ui/base/test/ui_controls_mac.mm b/ui/base/test/ui_controls_mac.mm
index b7615b6c2fd78eab1ddbb87a351cf33f47c4efd1..f6de2f5058668c28ff3d30b8b3adaabf0c4f5e40 100644
--- a/ui/base/test/ui_controls_mac.mm
+++ b/ui/base/test/ui_controls_mac.mm
@@ -9,10 +9,14 @@
#include "base/bind.h"
#include "base/callback.h"
+#import "base/mac/foundation_util.h"
+#import "base/mac/scoped_objc_class_swizzler.h"
#include "base/message_loop/message_loop.h"
#include "ui/base/cocoa/cocoa_base_utils.h"
#include "ui/events/keycodes/keyboard_code_conversion_mac.h"
#import "ui/events/test/cocoa_test_event_utils.h"
+#include "ui/gfx/geometry/point.h"
+#import "ui/gfx/mac/coordinate_conversion.h"
// Implementation details: We use [NSApplication sendEvent:] instead
// of [NSApplication postEvent:atStart:] so that the event gets sent
@@ -52,6 +56,10 @@ namespace {
// when firing keyboard and mouse click events.
NSPoint g_mouse_location = { 0, 0 };
+// Stores the current pressed mouse buttons. Indexed by
+// ui_controls::MouseButton.
+bool g_mouse_button_down[3] = {false, false, false};
+
bool g_ui_controls_enabled = false;
// Creates the proper sequence of autoreleased key events for a key down + up.
@@ -125,6 +133,9 @@ void SynthesizeKeyEventsSequence(NSWindow* window,
// A helper function to watch for the event queue. The specific task will be
// fired when there is no more event in the queue.
void EventQueueWatcher(const base::Closure& task) {
+ DCHECK_EQ(dispatch_get_current_queue(), dispatch_get_main_queue())
tapted 2016/06/01 11:29:55 This DCHECK can probably go since we're not using
themblsha 2016/06/03 17:42:08 Done.
+ << "It should be run on the UI thread, as otherwise it will always "
+ "report there are no pending events";
NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask
untilDate:nil
inMode:NSDefaultRunLoopMode
@@ -173,6 +184,73 @@ NSWindow* WindowAtCurrentMouseLocation() {
} // namespace
+// Donates testing implementations of NSEvent methods.
+@interface FakeNSEventTestingDonor : NSObject
+@end
+
+@implementation FakeNSEventTestingDonor
++ (NSPoint)mouseLocation {
+ return g_mouse_location;
+}
+
++ (NSUInteger)pressedMouseButtons {
+ NSUInteger result = 0;
+ const int buttons[3] = {
+ ui_controls::LEFT, ui_controls::RIGHT, ui_controls::MIDDLE};
+ for (unsigned int i = 0; i < arraysize(buttons); ++i) {
tapted 2016/06/01 11:29:55 nit: unsigned int -> size_t (or just `int`, but th
themblsha 2016/06/03 17:42:08 Done.
+ if (g_mouse_button_down[buttons[i]])
+ result |= (1 << i);
+ }
+ return result;
+}
+@end
+
+// Donates testing implementations of NSWindow methods.
+@interface FakeNSWindowTestingDonor : NSObject
+@end
+
+@implementation FakeNSWindowTestingDonor
+- (NSPoint)mouseLocationOutsideOfEventStream {
tapted 2016/06/01 11:29:55 Is anything being tested that requires this? (remo
themblsha 2016/06/03 17:42:08 It's widely used in Chromium, and without this swi
tapted 2016/06/06 07:12:36 `git grep mouseLocationOutsideOfEventStream` shows
themblsha 2016/06/06 17:20:27 Done.
+ NSWindow* window = base::mac::ObjCCastStrict<NSWindow>(self);
+ return ui::ConvertPointFromWindowToScreen(window, g_mouse_location);
+}
+@end
+
+namespace {
tapted 2016/06/01 11:29:55 nit: blank line after
themblsha 2016/06/03 17:42:08 Done.
+class NSEventSwizzler {
tapted 2016/06/01 11:29:55 needs a comment
themblsha 2016/06/03 17:42:08 Done.
+ public:
+ static void Install() {
+ static NSEventSwizzler* swizzler = nullptr;
tapted 2016/06/01 11:29:55 I'm unsure about this -- the swizzler is "Scoped"
themblsha 2016/06/03 17:42:08 In tests the entire browser state gets reconstruct
tapted 2016/06/06 07:12:36 Not always -- there is `--single-process-tests` wh
themblsha 2016/06/06 17:20:27 If it's only installed in EnableUIControls() and n
+ if (!swizzler) {
+ swizzler = new NSEventSwizzler();
+ }
+ }
+
+ protected:
+ NSEventSwizzler()
+ : mouse_location_swizzler_(new base::mac::ScopedObjCClassSwizzler(
+ [NSEvent class],
+ [FakeNSEventTestingDonor class],
+ @selector(mouseLocation))),
+ pressed_mouse_buttons_swizzler_(new base::mac::ScopedObjCClassSwizzler(
+ [NSEvent class],
+ [FakeNSEventTestingDonor class],
+ @selector(pressedMouseButtons))),
+ mouse_location_outside_of_event_stream_swizzler_(
+ new base::mac::ScopedObjCClassSwizzler(
+ [NSWindow class],
+ [FakeNSWindowTestingDonor class],
+ @selector(mouseLocationOutsideOfEventStream))) {}
+
+ private:
+ std::unique_ptr<base::mac::ScopedObjCClassSwizzler> mouse_location_swizzler_;
+ std::unique_ptr<base::mac::ScopedObjCClassSwizzler>
+ pressed_mouse_buttons_swizzler_;
+ std::unique_ptr<base::mac::ScopedObjCClassSwizzler>
+ mouse_location_outside_of_event_stream_swizzler_;
+};
tapted 2016/06/01 11:29:55 nit: DISALLOW_COPY_AND_ASSIGN(..)
themblsha 2016/06/03 17:42:08 Done.
+} // namespace
tapted 2016/06/01 11:29:55 nit: blank line before
themblsha 2016/06/03 17:42:08 Done.
+
namespace ui_controls {
void EnableUIControls() {
@@ -239,9 +317,8 @@ bool SendMouseMove(long x, long y) {
// platforms. E.g. (0,0) is upper-left.
bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
CHECK(g_ui_controls_enabled);
- CGFloat screenHeight =
- [[[NSScreen screens] firstObject] frame].size.height;
- g_mouse_location = NSMakePoint(x, screenHeight - y); // flip!
+ g_mouse_location = gfx::ScreenPointToNSPoint(gfx::Point(x, y)); // flip!
+ NSEventSwizzler::Install();
NSWindow* window = WindowAtCurrentMouseLocation();
@@ -250,16 +327,25 @@ bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
pointInWindow = ui::ConvertPointFromScreenToWindow(window, pointInWindow);
NSTimeInterval timestamp = TimeIntervalSinceSystemStartup();
+ NSEventType event_type = NSMouseMoved;
+ if (g_mouse_button_down[LEFT]) {
+ event_type = NSLeftMouseDragged;
+ } else if (g_mouse_button_down[RIGHT]) {
+ event_type = NSRightMouseDragged;
+ } else if (g_mouse_button_down[MIDDLE]) {
+ event_type = NSOtherMouseDragged;
+ }
+
NSEvent* event =
- [NSEvent mouseEventWithType:NSMouseMoved
+ [NSEvent mouseEventWithType:event_type
location:pointInWindow
modifierFlags:0
timestamp:timestamp
windowNumber:[window windowNumber]
context:nil
eventNumber:0
- clickCount:0
- pressure:0.0];
+ clickCount:(event_type == NSMouseMoved ? 0 : 1)
tapted 2016/06/01 11:29:55 outer () parens not required, same below
themblsha 2016/06/03 17:42:08 Done. Although there are parens in SendMouseEvents
+ pressure:(event_type == NSMouseMoved ? 0.0 : 1.0)];
[[NSApplication sharedApplication] postEvent:event atStart:NO];
if (!task.is_null()) {
@@ -284,35 +370,40 @@ bool SendMouseEventsNotifyWhenDone(MouseButton type, int state,
return (SendMouseEventsNotifyWhenDone(type, DOWN, base::Closure()) &&
SendMouseEventsNotifyWhenDone(type, UP, task));
}
- NSEventType etype = NSLeftMouseDown;
+ NSEventType event_type = NSLeftMouseDown;
if (type == LEFT) {
if (state == UP) {
- etype = NSLeftMouseUp;
+ event_type = NSLeftMouseUp;
} else {
- etype = NSLeftMouseDown;
+ event_type = NSLeftMouseDown;
}
} else if (type == MIDDLE) {
if (state == UP) {
- etype = NSOtherMouseUp;
+ event_type = NSOtherMouseUp;
} else {
- etype = NSOtherMouseDown;
+ event_type = NSOtherMouseDown;
}
} else if (type == RIGHT) {
if (state == UP) {
- etype = NSRightMouseUp;
+ event_type = NSRightMouseUp;
} else {
- etype = NSRightMouseDown;
+ event_type = NSRightMouseDown;
}
} else {
+ NOTREACHED();
return false;
}
+ g_mouse_button_down[type] = state == DOWN;
+
NSWindow* window = WindowAtCurrentMouseLocation();
NSPoint pointInWindow = g_mouse_location;
if (window)
pointInWindow = ui::ConvertPointFromScreenToWindow(window, pointInWindow);
+ NSEventSwizzler::Install();
+
NSEvent* event =
- [NSEvent mouseEventWithType:etype
+ [NSEvent mouseEventWithType:event_type
location:pointInWindow
modifierFlags:0
timestamp:TimeIntervalSinceSystemStartup()

Powered by Google App Engine
This is Rietveld 408576698