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.
|
|
|
|
|
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
|
|
|
|
2014-04-21 15:49:53 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2016-07-11 06:31:24 +00:00
|
|
|
#include "atom/browser/unresponsive_suppressor.h"
|
2017-02-15 19:44:25 +00:00
|
|
|
#include "base/mac/scoped_sending_event.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "base/message_loop/message_loop.h"
|
2013-05-16 09:25:02 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2016-05-23 12:08:16 +00:00
|
|
|
#include "brightray/browser/inspectable_web_contents.h"
|
|
|
|
#include "brightray/browser/inspectable_web_contents_view.h"
|
2017-02-15 19:44:25 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2013-05-14 08:50:56 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
|
2014-04-21 15:49:53 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
|
2017-02-15 23:57:36 +00:00
|
|
|
using content::BrowserThread;
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2016-08-02 06:15:40 +00:00
|
|
|
MenuMac::MenuMac(v8::Isolate* isolate, v8::Local<v8::Object> wrapper)
|
2017-02-15 19:44:25 +00:00
|
|
|
: Menu(isolate, wrapper),
|
|
|
|
weak_factory_(this) {
|
2013-05-06 12:27:09 +00:00
|
|
|
}
|
|
|
|
|
2017-02-15 23:57:36 +00:00
|
|
|
void MenuMac::PopupAt(
|
|
|
|
Window* window, int x, int y, int positioning_item, bool async) {
|
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
|
|
|
|
2017-02-15 23:57:36 +00:00
|
|
|
auto popup = base::Bind(&MenuMac::PopupOnUI, weak_factory_.GetWeakPtr(),
|
2017-02-16 18:58:02 +00:00
|
|
|
native_window->GetWeakPtr(), window->ID(), x, y,
|
|
|
|
positioning_item, async);
|
2017-02-15 23:57:36 +00:00
|
|
|
if (async)
|
|
|
|
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, popup);
|
|
|
|
else
|
|
|
|
popup.Run();
|
2017-02-15 19:44:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MenuMac::PopupOnUI(const base::WeakPtr<NativeWindow>& native_window,
|
2017-02-16 18:58:02 +00:00
|
|
|
int32_t window_id, int x, int y, int positioning_item,
|
|
|
|
bool async) {
|
2017-02-15 19:44:25 +00:00
|
|
|
if (!native_window)
|
|
|
|
return;
|
2016-05-23 12:08:16 +00:00
|
|
|
brightray::InspectableWebContents* web_contents =
|
|
|
|
native_window->inspectable_web_contents();
|
2014-11-28 07:59:03 +00:00
|
|
|
if (!web_contents)
|
|
|
|
return;
|
|
|
|
|
2017-02-16 18:58:02 +00:00
|
|
|
auto close_callback = base::Bind(&MenuMac::ClosePopupAt,
|
|
|
|
weak_factory_.GetWeakPtr(), window_id);
|
|
|
|
popup_controllers_[window_id] = base::scoped_nsobject<AtomMenuController>(
|
|
|
|
[[AtomMenuController alloc] initWithModel:model()
|
2016-07-02 02:47:40 +00:00
|
|
|
useDefaultAccelerator:NO]);
|
2017-02-16 18:58:02 +00:00
|
|
|
NSMenu* menu = [popup_controllers_[window_id] menu];
|
2016-05-23 12:08:16 +00:00
|
|
|
NSView* view = web_contents->GetView()->GetNativeView();
|
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 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.
|
|
|
|
if (!positioning_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;
|
|
|
|
CGFloat screenBottom = CGRectGetMinY([view window].screen.frame);
|
|
|
|
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;
|
|
|
|
CGFloat screenRight = CGRectGetMaxX([view window].screen.frame);
|
|
|
|
if (rightmostMenuPoint > screenRight)
|
2016-05-13 13:06:52 +00:00
|
|
|
position.x = position.x - [menu size].width;
|
|
|
|
|
2017-02-15 23:57:36 +00:00
|
|
|
|
|
|
|
if (async) {
|
2017-02-16 18:58:02 +00:00
|
|
|
[popup_controllers_[window_id] setCloseCallback:close_callback];
|
2017-02-15 19:44:25 +00:00
|
|
|
// Make sure events can be pumped while the menu is up.
|
|
|
|
base::MessageLoop::ScopedNestableTaskAllower allow(
|
|
|
|
base::MessageLoop::current());
|
|
|
|
|
|
|
|
// 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;
|
2016-07-11 06:31:24 +00:00
|
|
|
|
2017-02-15 19:44:25 +00:00
|
|
|
// Don't emit unresponsive event when showing menu.
|
|
|
|
atom::UnresponsiveSuppressor suppressor;
|
2017-02-15 23:57:36 +00:00
|
|
|
[menu popUpMenuPositioningItem:item atLocation:position inView:view];
|
|
|
|
} else {
|
|
|
|
// Don't emit unresponsive event when showing menu.
|
|
|
|
atom::UnresponsiveSuppressor suppressor;
|
2017-02-15 19:44:25 +00:00
|
|
|
[menu popUpMenuPositioningItem:item atLocation:position inView:view];
|
2017-02-16 18:58:02 +00:00
|
|
|
close_callback.Run();
|
2017-02-15 19:44:25 +00:00
|
|
|
}
|
2014-11-25 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 18:58:02 +00:00
|
|
|
void MenuMac::ClosePopupAt(int32_t window_id) {
|
|
|
|
popup_controllers_.erase(window_id);
|
|
|
|
}
|
|
|
|
|
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);
|
2013-12-11 07:48:19 +00:00
|
|
|
base::scoped_nsobject<AtomMenuController> menu_controller(
|
2016-07-02 02:47:40 +00:00
|
|
|
[[AtomMenuController alloc] initWithModel:menu->model_.get()
|
|
|
|
useDefaultAccelerator:YES]);
|
2013-05-16 02:54:37 +00:00
|
|
|
[NSApp setMainMenu:[menu_controller menu]];
|
|
|
|
|
|
|
|
// Ensure the menu_controller_ is destroyed after main menu is set.
|
|
|
|
menu_controller.swap(menu->menu_controller_);
|
|
|
|
}
|
|
|
|
|
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
|
2016-08-02 06:15:40 +00:00
|
|
|
mate::WrappableBase* Menu::New(mate::Arguments* args) {
|
|
|
|
return new MenuMac(args->isolate(), args->GetThis());
|
2013-05-06 12:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|