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
|
|
|
|
|
|
|
#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.
|
2023-05-05 13:17:14 +02:00
|
|
|
MenuControllerCocoa* menu_controller =
|
|
|
|
[[MenuControllerCocoa alloc] initWithModel:model->model()
|
|
|
|
delegate:nil
|
|
|
|
useWithPopUpButtonCell:NO];
|
|
|
|
|
|
|
|
menu_controller_ = menu_controller;
|
2015-11-17 19:20:13 +01:00
|
|
|
|
|
|
|
// Make sure events can be pumped while the menu is up.
|
2023-01-03 00:34:43 +01:00
|
|
|
base::CurrentThread::ScopedAllowApplicationTasksInNativeNestedLoop 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.
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!browser->GetWindowHandle()) {
|
2015-11-17 19:20:13 +01:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2022-05-13 13:38:41 +02:00
|
|
|
const gfx::Point& screen_point = browser->GetScreenPoint(
|
|
|
|
gfx::Point(params.x, params.y), /*want_dip_coords=*/true);
|
2015-11-17 19:20:13 +01:00
|
|
|
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];
|
2022-06-17 15:28:55 +02:00
|
|
|
NSEvent* clickEvent = [NSEvent mouseEventWithType:NSEventTypeRightMouseDown
|
2015-11-17 19:20:13 +01:00
|
|
|
location:position
|
2021-09-20 11:06:23 +02:00
|
|
|
modifierFlags:0
|
2015-11-17 19:20:13 +01:00
|
|
|
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() {
|
2023-05-05 13:17:14 +02:00
|
|
|
if (menu_controller_) {
|
|
|
|
menu_controller_ = nil;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2015-11-17 19:20:13 +01:00
|
|
|
}
|