2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-06 12:27:09 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#import "shell/browser/api/electron_api_menu_mac.h"
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2019-05-02 12:05:37 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
2017-02-15 19:44:25 +00:00
|
|
|
#include "base/mac/scoped_sending_event.h"
|
2013-05-16 09:25:02 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2020-07-22 05:34:34 +00:00
|
|
|
#include "base/task/current_thread.h"
|
2023-02-03 11:43:42 +00:00
|
|
|
#include "base/task/sequenced_task_runner.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2024-07-29 17:42:57 +00:00
|
|
|
#include "shell/browser/api/electron_api_base_window.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/native_window.h"
|
2021-06-29 23:28:16 +00:00
|
|
|
#include "shell/common/keyboard_util.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2013-05-14 08:50:56 +00:00
|
|
|
|
2018-05-17 01:19:28 +00:00
|
|
|
namespace {
|
|
|
|
|
2023-07-18 22:26:27 +00:00
|
|
|
static NSMenu* __strong applicationMenu_;
|
2018-05-17 01:19:28 +00:00
|
|
|
|
2021-06-29 23:28:16 +00:00
|
|
|
ui::Accelerator GetAcceleratorFromKeyEquivalentAndModifierMask(
|
|
|
|
NSString* key_equivalent,
|
|
|
|
NSUInteger modifier_mask) {
|
2024-01-10 22:23:35 +00:00
|
|
|
std::optional<char16_t> shifted_char;
|
2021-06-29 23:28:16 +00:00
|
|
|
ui::KeyboardCode code = electron::KeyboardCodeFromStr(
|
|
|
|
base::SysNSStringToUTF8(key_equivalent), &shifted_char);
|
|
|
|
int modifiers = 0;
|
|
|
|
if (modifier_mask & NSEventModifierFlagShift)
|
|
|
|
modifiers |= ui::EF_SHIFT_DOWN;
|
|
|
|
if (modifier_mask & NSEventModifierFlagControl)
|
|
|
|
modifiers |= ui::EF_CONTROL_DOWN;
|
|
|
|
if (modifier_mask & NSEventModifierFlagOption)
|
|
|
|
modifiers |= ui::EF_ALT_DOWN;
|
|
|
|
if (modifier_mask & NSEventModifierFlagCommand)
|
|
|
|
modifiers |= ui::EF_COMMAND_DOWN;
|
|
|
|
return ui::Accelerator(code, modifiers);
|
|
|
|
}
|
|
|
|
|
2018-05-17 01:19:28 +00:00
|
|
|
} // namespace
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2021-01-26 18:16:21 +00:00
|
|
|
MenuMac::MenuMac(gin::Arguments* args) : Menu(args) {}
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2018-04-17 23:37:22 +00:00
|
|
|
MenuMac::~MenuMac() = default;
|
|
|
|
|
2020-06-29 07:06:20 +00:00
|
|
|
void MenuMac::PopupAt(BaseWindow* window,
|
2018-04-18 10:09:45 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int positioning_item,
|
2023-06-29 22:54:06 +00:00
|
|
|
ui::MenuSourceType source_type,
|
2019-11-20 11:17:39 +00:00
|
|
|
base::OnceClosure callback) {
|
2014-11-25 15:47:41 +00:00
|
|
|
NativeWindow* native_window = window->window();
|
2014-11-28 07:59:03 +00:00
|
|
|
if (!native_window)
|
|
|
|
return;
|
2017-02-15 19:44:25 +00:00
|
|
|
|
2019-11-20 11:17:39 +00:00
|
|
|
// Make sure the Menu object would not be garbage-collected until the callback
|
|
|
|
// has run.
|
|
|
|
base::OnceClosure callback_with_ref = BindSelfToClosure(std::move(callback));
|
|
|
|
|
2019-04-28 01:03:06 +00:00
|
|
|
auto popup =
|
|
|
|
base::BindOnce(&MenuMac::PopupOnUI, weak_factory_.GetWeakPtr(),
|
|
|
|
native_window->GetWeakPtr(), window->weak_map_id(), x, y,
|
2019-11-20 11:17:39 +00:00
|
|
|
positioning_item, std::move(callback_with_ref));
|
2023-02-03 11:43:42 +00:00
|
|
|
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(FROM_HERE,
|
|
|
|
std::move(popup));
|
2017-02-15 19:44:25 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 23:28:16 +00:00
|
|
|
v8::Local<v8::Value> Menu::GetUserAcceleratorAt(int command_id) const {
|
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
|
|
if (![NSMenuItem usesUserKeyEquivalents])
|
|
|
|
return v8::Null(isolate);
|
|
|
|
|
2023-07-18 22:26:27 +00:00
|
|
|
auto controller = [[ElectronMenuController alloc] initWithModel:model()
|
|
|
|
useDefaultAccelerator:NO];
|
2021-06-29 23:28:16 +00:00
|
|
|
|
|
|
|
int command_index = GetIndexOfCommandId(command_id);
|
|
|
|
if (command_index == -1)
|
|
|
|
return v8::Null(isolate);
|
|
|
|
|
2023-07-18 22:26:27 +00:00
|
|
|
NSMenuItem* item = [controller makeMenuItemForIndex:command_index
|
|
|
|
fromModel:model()];
|
2021-06-29 23:28:16 +00:00
|
|
|
if ([[item userKeyEquivalent] length] == 0)
|
|
|
|
return v8::Null(isolate);
|
|
|
|
|
|
|
|
NSString* user_key_equivalent = [item keyEquivalent];
|
|
|
|
NSUInteger user_modifier_mask = [item keyEquivalentModifierMask];
|
|
|
|
ui::Accelerator accelerator = GetAcceleratorFromKeyEquivalentAndModifierMask(
|
|
|
|
user_key_equivalent, user_modifier_mask);
|
|
|
|
|
|
|
|
return gin::ConvertToV8(isolate, accelerator.GetShortcutText());
|
|
|
|
}
|
|
|
|
|
2017-02-15 19:44:25 +00:00
|
|
|
void MenuMac::PopupOnUI(const base::WeakPtr<NativeWindow>& native_window,
|
2017-09-13 21:13:45 +00:00
|
|
|
int32_t window_id,
|
|
|
|
int x,
|
|
|
|
int y,
|
2018-01-01 07:26:19 +00:00
|
|
|
int positioning_item,
|
2019-11-20 11:17:39 +00:00
|
|
|
base::OnceClosure callback) {
|
2017-02-15 19:44:25 +00:00
|
|
|
if (!native_window)
|
|
|
|
return;
|
2019-01-09 20:25:19 +00:00
|
|
|
NSWindow* nswindow = native_window->GetNativeWindow().GetNativeNSWindow();
|
2014-11-28 07:59:03 +00:00
|
|
|
|
2019-11-20 11:17:39 +00:00
|
|
|
base::OnceClosure close_callback =
|
|
|
|
base::BindOnce(&MenuMac::OnClosed, weak_factory_.GetWeakPtr(), window_id,
|
|
|
|
std::move(callback));
|
2023-07-18 22:26:27 +00:00
|
|
|
popup_controllers_[window_id] =
|
2019-05-01 19:27:55 +00:00
|
|
|
[[ElectronMenuController alloc] initWithModel:model()
|
2023-07-18 22:26:27 +00:00
|
|
|
useDefaultAccelerator:NO];
|
2017-02-16 18:58:02 +00:00
|
|
|
NSMenu* menu = [popup_controllers_[window_id] menu];
|
2018-03-06 07:12:10 +00:00
|
|
|
NSView* view = [nswindow contentView];
|
2014-11-25 15:47:41 +00:00
|
|
|
|
2016-01-22 18:17:12 +00:00
|
|
|
// Which menu item to show.
|
|
|
|
NSMenuItem* item = nil;
|
|
|
|
if (positioning_item < [menu numberOfItems] && positioning_item >= 0)
|
|
|
|
item = [menu itemAtIndex:positioning_item];
|
|
|
|
|
|
|
|
// (-1, -1) means showing on mouse location.
|
|
|
|
NSPoint position;
|
|
|
|
if (x == -1 || y == -1) {
|
|
|
|
position = [view convertPoint:[nswindow mouseLocationOutsideOfEventStream]
|
|
|
|
fromView:nil];
|
|
|
|
} else {
|
|
|
|
position = NSMakePoint(x, [view frame].size.height - y);
|
2016-01-22 02:18:04 +00:00
|
|
|
}
|
2016-01-22 18:17:12 +00:00
|
|
|
|
2016-05-13 13:06:52 +00:00
|
|
|
// If no preferred item is specified, try to show all of the menu items.
|
2021-03-18 20:37:14 +00:00
|
|
|
if (!item) {
|
2016-05-23 12:53:50 +00:00
|
|
|
CGFloat windowBottom = CGRectGetMinY([view window].frame);
|
2016-05-26 21:43:38 +00:00
|
|
|
CGFloat lowestMenuPoint = windowBottom + position.y - [menu size].height;
|
2022-08-03 08:52:42 +00:00
|
|
|
CGFloat screenBottom = CGRectGetMinY([view window].screen.visibleFrame);
|
2016-05-26 21:43:38 +00:00
|
|
|
CGFloat distanceFromBottom = lowestMenuPoint - screenBottom;
|
|
|
|
if (distanceFromBottom < 0)
|
|
|
|
position.y = position.y - distanceFromBottom + 4;
|
2016-05-13 13:06:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Place the menu left of cursor if it is overflowing off right of screen.
|
2016-05-23 12:53:50 +00:00
|
|
|
CGFloat windowLeft = CGRectGetMinX([view window].frame);
|
2016-05-26 21:43:38 +00:00
|
|
|
CGFloat rightmostMenuPoint = windowLeft + position.x + [menu size].width;
|
2022-08-03 08:52:42 +00:00
|
|
|
CGFloat screenRight = CGRectGetMaxX([view window].screen.visibleFrame);
|
2016-05-26 21:43:38 +00:00
|
|
|
if (rightmostMenuPoint > screenRight)
|
2016-05-13 13:06:52 +00:00
|
|
|
position.x = position.x - [menu size].width;
|
|
|
|
|
2019-11-20 11:17:39 +00:00
|
|
|
[popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];
|
2017-09-13 21:13:45 +00:00
|
|
|
// Make sure events can be pumped while the menu is up.
|
2022-12-05 22:59:19 +00:00
|
|
|
base::CurrentThread::ScopedAllowApplicationTasksInNativeNestedLoop allow;
|
2017-09-13 21:13:45 +00: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;
|
|
|
|
|
|
|
|
// Don't emit unresponsive event when showing menu.
|
|
|
|
[menu popUpMenuPositioningItem:item atLocation:position inView:view];
|
2014-11-25 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 18:58:02 +00:00
|
|
|
void MenuMac::ClosePopupAt(int32_t window_id) {
|
2019-09-05 20:37:09 +00:00
|
|
|
auto close_popup = base::BindOnce(&MenuMac::ClosePopupOnUI,
|
|
|
|
weak_factory_.GetWeakPtr(), window_id);
|
2023-02-03 11:43:42 +00:00
|
|
|
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
|
|
|
|
FROM_HERE, std::move(close_popup));
|
2019-09-05 20:37:09 +00:00
|
|
|
}
|
|
|
|
|
2021-06-02 07:32:48 +00:00
|
|
|
std::u16string MenuMac::GetAcceleratorTextAtForTesting(int index) const {
|
|
|
|
// A least effort to get the real shortcut text of NSMenuItem, the code does
|
|
|
|
// not need to be perfect since it is test only.
|
2023-07-18 22:26:27 +00:00
|
|
|
ElectronMenuController* controller =
|
2021-06-02 07:32:48 +00:00
|
|
|
[[ElectronMenuController alloc] initWithModel:model()
|
2023-07-18 22:26:27 +00:00
|
|
|
useDefaultAccelerator:NO];
|
2021-06-02 07:32:48 +00:00
|
|
|
NSMenuItem* item = [[controller menu] itemAtIndex:index];
|
|
|
|
std::u16string text;
|
|
|
|
NSEventModifierFlags modifiers = [item keyEquivalentModifierMask];
|
|
|
|
if (modifiers & NSEventModifierFlagControl)
|
|
|
|
text += u"Ctrl";
|
|
|
|
if (modifiers & NSEventModifierFlagShift) {
|
|
|
|
if (!text.empty())
|
|
|
|
text += u"+";
|
|
|
|
text += u"Shift";
|
|
|
|
}
|
|
|
|
if (modifiers & NSEventModifierFlagOption) {
|
|
|
|
if (!text.empty())
|
|
|
|
text += u"+";
|
|
|
|
text += u"Alt";
|
|
|
|
}
|
|
|
|
if (modifiers & NSEventModifierFlagCommand) {
|
|
|
|
if (!text.empty())
|
|
|
|
text += u"+";
|
|
|
|
text += u"Command";
|
|
|
|
}
|
|
|
|
if (!text.empty())
|
|
|
|
text += u"+";
|
|
|
|
auto key = base::ToUpperASCII(base::SysNSStringToUTF16([item keyEquivalent]));
|
|
|
|
if (key == u"\t")
|
|
|
|
text += u"Tab";
|
|
|
|
else
|
|
|
|
text += key;
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2019-09-05 20:37:09 +00:00
|
|
|
void MenuMac::ClosePopupOnUI(int32_t window_id) {
|
2018-01-01 06:39:43 +00:00
|
|
|
auto controller = popup_controllers_.find(window_id);
|
|
|
|
if (controller != popup_controllers_.end()) {
|
|
|
|
// Close the controller for the window.
|
|
|
|
[controller->second cancel];
|
2017-12-21 06:57:27 +00:00
|
|
|
} else if (window_id == -1) {
|
2018-01-01 06:39:43 +00:00
|
|
|
// Or just close all opened controllers.
|
|
|
|
for (auto it = popup_controllers_.begin();
|
|
|
|
it != popup_controllers_.end();) {
|
|
|
|
// The iterator is invalidated after the call.
|
|
|
|
[(it++)->second cancel];
|
|
|
|
}
|
2017-12-21 06:57:27 +00:00
|
|
|
}
|
2017-02-16 18:58:02 +00:00
|
|
|
}
|
|
|
|
|
2019-11-20 11:17:39 +00:00
|
|
|
void MenuMac::OnClosed(int32_t window_id, base::OnceClosure callback) {
|
2018-01-01 06:39:43 +00:00
|
|
|
popup_controllers_.erase(window_id);
|
2019-11-20 11:17:39 +00:00
|
|
|
std::move(callback).Run();
|
2018-01-01 06:39:43 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 09:25:02 +00:00
|
|
|
// static
|
2014-04-21 15:40:10 +00:00
|
|
|
void Menu::SetApplicationMenu(Menu* base_menu) {
|
|
|
|
MenuMac* menu = static_cast<MenuMac*>(base_menu);
|
2023-07-18 22:26:27 +00:00
|
|
|
ElectronMenuController* menu_controller =
|
2019-05-01 19:27:55 +00:00
|
|
|
[[ElectronMenuController alloc] initWithModel:menu->model_.get()
|
2023-07-18 22:26:27 +00:00
|
|
|
useDefaultAccelerator:YES];
|
2018-05-17 01:19:28 +00:00
|
|
|
|
|
|
|
NSRunLoop* currentRunLoop = [NSRunLoop currentRunLoop];
|
|
|
|
[currentRunLoop cancelPerformSelector:@selector(setMainMenu:)
|
|
|
|
target:NSApp
|
|
|
|
argument:applicationMenu_];
|
2023-07-18 22:26:27 +00:00
|
|
|
applicationMenu_ = [menu_controller menu];
|
2018-05-17 01:19:28 +00:00
|
|
|
[[NSRunLoop currentRunLoop]
|
|
|
|
performSelector:@selector(setMainMenu:)
|
|
|
|
target:NSApp
|
|
|
|
argument:applicationMenu_
|
|
|
|
order:0
|
|
|
|
modes:[NSArray arrayWithObject:NSDefaultRunLoopMode]];
|
2013-05-16 02:54:37 +00:00
|
|
|
|
2023-07-18 22:26:27 +00:00
|
|
|
menu->menu_controller_ = menu_controller;
|
2013-05-16 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
2013-05-16 09:25:02 +00:00
|
|
|
// static
|
2014-04-21 15:40:10 +00:00
|
|
|
void Menu::SendActionToFirstResponder(const std::string& action) {
|
|
|
|
SEL selector = NSSelectorFromString(base::SysUTF8ToNSString(action));
|
|
|
|
[NSApp sendAction:selector to:nil from:[NSApp mainMenu]];
|
2013-05-16 09:25:02 +00:00
|
|
|
}
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
// static
|
2020-04-02 23:07:56 +00:00
|
|
|
gin::Handle<Menu> Menu::New(gin::Arguments* args) {
|
|
|
|
auto handle =
|
|
|
|
gin::CreateHandle(args->isolate(), static_cast<Menu*>(new MenuMac(args)));
|
|
|
|
gin_helper::CallMethod(args->isolate(), handle.get(), "_init");
|
|
|
|
return handle;
|
2013-05-06 12:27:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|