2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
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.
|
|
|
|
|
2014-07-10 04:07:01 +00:00
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2017-02-16 19:04:42 +00:00
|
|
|
#include <map>
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/api/atom_api_menu.h"
|
2017-02-15 20:44:39 +00:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "ui/display/screen.h"
|
2017-02-15 20:44:39 +00:00
|
|
|
#include "ui/views/controls/menu/menu_runner.h"
|
2014-07-10 04:07:01 +00:00
|
|
|
|
2014-02-14 13:41:20 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-07-10 04:07:01 +00:00
|
|
|
class MenuViews : public Menu {
|
2014-04-23 04:45:48 +00:00
|
|
|
public:
|
2016-08-02 06:15:40 +00:00
|
|
|
MenuViews(v8::Isolate* isolate, v8::Local<v8::Object> wrapper);
|
2014-04-23 04:45:48 +00:00
|
|
|
|
2014-02-14 13:41:20 +00:00
|
|
|
protected:
|
2017-02-15 23:57:36 +00:00
|
|
|
void PopupAt(
|
|
|
|
Window* window, int x, int y, int positioning_item, bool async) override;
|
2017-02-16 19:04:42 +00:00
|
|
|
void ClosePopupAt(int32_t window_id);
|
2014-02-14 13:41:20 +00:00
|
|
|
|
|
|
|
private:
|
2017-02-16 19:04:42 +00:00
|
|
|
std::map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
|
2017-02-15 20:44:39 +00:00
|
|
|
base::WeakPtrFactory<MenuViews> weak_factory_;
|
|
|
|
|
2014-07-10 04:07:01 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(MenuViews);
|
2014-02-14 13:41:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-07-10 04:07:01 +00:00
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_
|