gtk: Implement popup menu.

This commit is contained in:
Cheng Zhao 2014-03-14 20:59:11 +08:00
parent a941c20af4
commit 6939e325df
2 changed files with 25 additions and 1 deletions

View file

@ -4,6 +4,11 @@
#include "browser/api/atom_api_menu_gtk.h"
#include "browser/native_window.h"
#include "content/public/browser/render_widget_host_view.h"
#include "ui/gfx/point.h"
#include "ui/gfx/screen.h"
namespace atom {
namespace api {
@ -16,6 +21,21 @@ MenuGtk::~MenuGtk() {
}
void MenuGtk::Popup(NativeWindow* native_window) {
uint32_t triggering_event_time;
gfx::Point point;
GdkEventButton* event = native_window->GetWebContents()->
GetRenderWidgetHostView()->GetLastMouseDown();
if (event) {
triggering_event_time = event->time;
point = gfx::Point(event->x_root, event->y_root);
} else {
triggering_event_time = GDK_CURRENT_TIME;
point = gfx::Screen::GetNativeScreen()->GetCursorScreenPoint();
}
menu_gtk_.reset(new ::MenuGtk(this, model_.get()));
menu_gtk_->PopupAsContext(point, triggering_event_time);
}
// static