electron/atom/browser/api/atom_api_menu_gtk.h

35 lines
766 B
C
Raw Normal View History

2014-02-14 13:41:20 +00:00
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2014-02-14 13:41:20 +00:00
// 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-04-23 04:45:48 +00:00
public:
MenuGtk();
2014-02-14 13:41:20 +00:00
protected:
virtual void Popup(Window* window) OVERRIDE;
virtual void AttachToWindow(Window* window) OVERRIDE;
2014-02-14 13:41:20 +00:00
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_