2015-11-17 19:20:13 +01:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef/browser/native/menu_runner_mac.h"
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
#include "libcef/browser/alloy/alloy_browser_host_impl.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#import "base/mac/scoped_sending_event.h"
|
2020-08-29 00:39:23 +02:00
|
|
|
#include "base/task/current_thread.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
#import "ui/base/cocoa/menu_controller.h"
|
|
|
|
#include "ui/gfx/geometry/point.h"
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefMenuRunnerMac::CefMenuRunnerMac() {}
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefMenuRunnerMac::~CefMenuRunnerMac() {}
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
bool CefMenuRunnerMac::RunContextMenu(
|
2020-09-22 21:54:02 +02:00
|
|
|
AlloyBrowserHostImpl* browser,
|
2016-01-19 21:09:01 +01:00
|
|
|
CefMenuModelImpl* model,
|
2015-11-17 19:20:13 +01:00
|
|
|
const content::ContextMenuParams& params) {
|
|
|
|
// Create a menu controller based on the model.
|
2017-12-07 22:44:24 +01:00
|
|
|
menu_controller_.reset([[MenuControllerCocoa alloc]
|
|
|
|
initWithModel:model->model()
|
2020-08-29 00:39:23 +02:00
|
|
|
delegate:nil
|
2017-12-07 22:44:24 +01:00
|
|
|
useWithPopUpButtonCell:NO]);
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Keep the menu controller alive (by adding an additional retain) until after
|
|
|
|
// the menu has been dismissed. Otherwise it will crash if the browser is
|
|
|
|
// destroyed (and consequently the menu controller is destroyed) while the
|
|
|
|
// menu is still pending.
|
2017-12-07 22:44:24 +01:00
|
|
|
base::scoped_nsobject<MenuControllerCocoa> menu_controller_ref(
|
|
|
|
menu_controller_);
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Make sure events can be pumped while the menu is up.
|
2020-08-29 00:39:23 +02:00
|
|
|
base::CurrentThread::ScopedNestableTaskAllower allow;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// One of the events that could be pumped is |window.close()|.
|
|
|
|
// User-initiated event-tracking loops protect against this by
|
|
|
|
// setting flags in -[CrApplication sendEvent:], but since
|
|
|
|
// web-content menus are initiated by IPC message the setup has to
|
|
|
|
// be done manually.
|
|
|
|
base::mac::ScopedSendingEvent sendingEventScoper;
|
|
|
|
|
|
|
|
// Show the menu. Blocks until the menu is dismissed.
|
|
|
|
if (browser->IsWindowless()) {
|
|
|
|
// Don't show the menu unless a native window handle exists.
|
|
|
|
if (!browser->GetWindowHandle())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const gfx::Point& screen_point =
|
|
|
|
browser->GetScreenPoint(gfx::Point(params.x, params.y));
|
|
|
|
NSPoint screen_position = NSPointFromCGPoint(screen_point.ToCGPoint());
|
|
|
|
[[menu_controller_ menu] popUpMenuPositioningItem:nil
|
|
|
|
atLocation:screen_position
|
|
|
|
inView:nil];
|
|
|
|
} else {
|
2018-11-03 02:15:09 +01:00
|
|
|
NSView* parent_view =
|
|
|
|
browser->web_contents()->GetContentNativeView().GetNativeNSView();
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Synthesize an event for the click, as there is no certainty that
|
|
|
|
// [NSApp currentEvent] will return a valid event.
|
|
|
|
NSEvent* currentEvent = [NSApp currentEvent];
|
|
|
|
NSWindow* window = [parent_view window];
|
|
|
|
|
|
|
|
NSPoint position = [window mouseLocationOutsideOfEventStream];
|
|
|
|
|
|
|
|
NSTimeInterval eventTime = [currentEvent timestamp];
|
|
|
|
NSEvent* clickEvent = [NSEvent mouseEventWithType:NSRightMouseDown
|
|
|
|
location:position
|
|
|
|
modifierFlags:NSRightMouseDownMask
|
|
|
|
timestamp:eventTime
|
|
|
|
windowNumber:[window windowNumber]
|
|
|
|
context:nil
|
|
|
|
eventNumber:0
|
|
|
|
clickCount:1
|
|
|
|
pressure:1.0];
|
|
|
|
|
|
|
|
[NSMenu popUpContextMenu:[menu_controller_ menu]
|
|
|
|
withEvent:clickEvent
|
|
|
|
forView:parent_view];
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefMenuRunnerMac::CancelContextMenu() {
|
|
|
|
if (menu_controller_.get())
|
|
|
|
[menu_controller_ cancel];
|
|
|
|
}
|