2014-02-14 13:41:20 +00:00
|
|
|
// Copyright (c) 2014 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.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_MENU_GTK_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_MENU_GTK_H_
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/api/atom_api_menu.h"
|
2014-03-16 00:39:43 +00:00
|
|
|
#include "chrome/browser/ui/gtk/menu_gtk.h"
|
2014-02-14 13:41:20 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-03-14 12:59:11 +00:00
|
|
|
class MenuGtk : public Menu,
|
|
|
|
public ::MenuGtk::Delegate {
|
2014-02-14 13:41:20 +00:00
|
|
|
public:
|
|
|
|
explicit MenuGtk(v8::Handle<v8::Object> wrapper);
|
|
|
|
virtual ~MenuGtk();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void Popup(NativeWindow* window) OVERRIDE;
|
|
|
|
|
|
|
|
private:
|
2014-03-14 12:59:11 +00:00
|
|
|
scoped_ptr<::MenuGtk> menu_gtk_;
|
|
|
|
|
2014-02-14 13:41:20 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(MenuGtk);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_MENU_GTK_H_
|