2013-05-06 12:27:09 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// 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
|
|
|
|
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"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/v8/native_type_conversions.h"
|
2013-05-14 08:50:56 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
#include "content/public/browser/web_contents_view.h"
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
MenuMac::MenuMac() {
|
2013-05-06 12:27:09 +00:00
|
|
|
}
|
|
|
|
|
2013-05-14 11:25:14 +00:00
|
|
|
void MenuMac::Popup(NativeWindow* native_window) {
|
2013-12-11 07:48:19 +00:00
|
|
|
base::scoped_nsobject<AtomMenuController> menu_controller(
|
2013-08-14 15:03:02 +00:00
|
|
|
[[AtomMenuController alloc] initWithModel:model_.get()]);
|
2013-05-14 11:25:14 +00:00
|
|
|
|
2013-05-14 08:50:56 +00:00
|
|
|
NSWindow* window = native_window->GetNativeWindow();
|
|
|
|
content::WebContents* web_contents = native_window->GetWebContents();
|
|
|
|
|
|
|
|
// Fake out a context menu event.
|
|
|
|
NSEvent* currentEvent = [NSApp currentEvent];
|
2013-05-14 11:25:14 +00:00
|
|
|
NSPoint position = [window mouseLocationOutsideOfEventStream];
|
2013-05-14 08:50:56 +00:00
|
|
|
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];
|
|
|
|
|
2014-03-25 08:56:02 +00:00
|
|
|
// Show the menu.
|
|
|
|
[NSMenu popUpContextMenu:[menu_controller menu]
|
|
|
|
withEvent:clickEvent
|
|
|
|
forView:web_contents->GetView()->GetContentNativeView()];
|
2013-05-14 08:50:56 +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);
|
2013-12-11 07:48:19 +00:00
|
|
|
base::scoped_nsobject<AtomMenuController> menu_controller(
|
2013-08-14 15:03:02 +00:00
|
|
|
[[AtomMenuController alloc] initWithModel:menu->model_.get()]);
|
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
|
2014-04-21 15:40:10 +00:00
|
|
|
mate::Wrappable* Menu::Create() {
|
|
|
|
return new MenuMac();
|
2013-05-06 12:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|