// 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. #include "browser/api/atom_api_menu_win.h" #include "browser/native_window_win.h" #include "browser/ui/win/menu_2.h" #include "common/v8_conversions.h" #include "ui/gfx/point.h" namespace atom { namespace api { MenuWin::MenuWin(v8::Handle wrapper) : Menu(wrapper) { } MenuWin::~MenuWin() { } void MenuWin::Popup(NativeWindow* native_window) { menu_.reset(new atom::Menu2(model_.get())); menu_->RunContextMenuAt(gfx::Point(0, 0)); } // static v8::Handle Menu::AttachToWindow(const v8::Arguments& args) { v8::HandleScope scope; Menu* self = ObjectWrap::Unwrap(args.This()); if (self == NULL) return node::ThrowError("Menu is already destroyed"); NativeWindow* native_window; if (!FromV8Arguments(args, &native_window)) return node::ThrowTypeError("Bad argument"); static_cast(native_window)->SetMenu(self->model_.get()); return v8::Undefined(); } // static Menu* Menu::Create(v8::Handle wrapper) { return new MenuWin(wrapper); } } // namespace api } // namespace atom