electron/atom/browser/api/atom_api_menu_mac.mm

78 lines
2.3 KiB
Text
Raw Normal View History

// 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.
2014-03-16 00:30:26 +00:00
#import "atom/browser/api/atom_api_menu_mac.h"
2013-05-06 12:27:09 +00:00
#include "atom/browser/native_window.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/sys_string_conversions.h"
2013-05-14 08:50:56 +00:00
#include "content/public/browser/web_contents.h"
#include "atom/common/node_includes.h"
2013-05-06 12:27:09 +00:00
namespace atom {
namespace api {
2016-04-25 01:17:54 +00:00
MenuMac::MenuMac(v8::Isolate* isolate) : Menu(isolate) {
2013-05-06 12:27:09 +00:00
}
2016-01-22 17:51:51 +00:00
void MenuMac::PopupAt(Window* window, int x, int y, int positioning_item) {
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;
2015-06-25 06:54:00 +00:00
content::WebContents* web_contents = native_window->web_contents();
2014-11-28 07:59:03 +00:00
if (!web_contents)
return;
base::scoped_nsobject<AtomMenuController> menu_controller(
[[AtomMenuController alloc] initWithModel:model_.get()]);
2014-11-28 11:50:10 +00:00
NSMenu* menu = [menu_controller menu];
NSView* view = web_contents->GetContentNativeView();
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) {
NSWindow* nswindow = native_window->GetNativeWindow();
position = [view convertPoint:[nswindow mouseLocationOutsideOfEventStream]
fromView:nil];
} else {
position = NSMakePoint(x, [view frame].size.height - y);
}
2016-01-22 18:17:12 +00:00
// Show the menu.
[menu popUpMenuPositioningItem:item atLocation:position inView:view];
2014-11-25 15:47:41 +00:00
}
// static
2014-04-21 15:40:10 +00:00
void Menu::SetApplicationMenu(Menu* base_menu) {
MenuMac* menu = static_cast<MenuMac*>(base_menu);
base::scoped_nsobject<AtomMenuController> menu_controller(
2013-08-14 15:03:02 +00:00
[[AtomMenuController alloc] initWithModel:menu->model_.get()]);
[NSApp setMainMenu:[menu_controller menu]];
// Ensure the menu_controller_ is destroyed after main menu is set.
menu_controller.swap(menu->menu_controller_);
}
// 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-06 12:27:09 +00:00
// static
2016-04-25 01:17:54 +00:00
mate::WrappableBase* Menu::Create(v8::Isolate* isolate) {
return new MenuMac(isolate);
2013-05-06 12:27:09 +00:00
}
} // namespace api
} // namespace atom