2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 17:49:37 +08: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.
|
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#ifndef SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|
|
|
|
#define SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2017-02-16 11:04:42 -08:00
|
|
|
#include <map>
|
2018-09-12 19:25:56 -05:00
|
|
|
#include <memory>
|
2017-02-16 11:04:42 -08:00
|
|
|
|
2017-02-15 12:44:39 -08:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2020-02-04 12:19:40 -08:00
|
|
|
#include "shell/browser/api/electron_api_menu.h"
|
2016-07-04 15:08:55 +09:00
|
|
|
#include "ui/display/screen.h"
|
2017-02-15 12:44:39 -08:00
|
|
|
#include "ui/views/controls/menu/menu_runner.h"
|
2014-07-10 12:07:01 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2014-02-14 13:41:20 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-07-10 12:07:01 +08:00
|
|
|
class MenuViews : public Menu {
|
2014-04-23 12:45:48 +08:00
|
|
|
public:
|
2019-10-15 10:15:23 +09:00
|
|
|
explicit MenuViews(gin::Arguments* args);
|
2018-04-17 16:37:22 -07:00
|
|
|
~MenuViews() override;
|
2014-04-23 12:45:48 +08:00
|
|
|
|
2014-02-14 13:41:20 +00:00
|
|
|
protected:
|
2018-04-17 17:14:49 +09:00
|
|
|
void PopupAt(TopLevelWindow* window,
|
2018-04-17 21:44:10 -04:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int positioning_item,
|
2019-11-20 20:17:39 +09:00
|
|
|
base::OnceClosure callback) override;
|
2017-02-16 11:15:05 -08:00
|
|
|
void ClosePopupAt(int32_t window_id) override;
|
2014-02-14 13:41:20 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-20 20:17:39 +09:00
|
|
|
void OnClosed(int32_t window_id, base::OnceClosure callback);
|
2017-12-21 15:26:32 +09:00
|
|
|
|
2017-02-17 12:16:29 -08:00
|
|
|
// window ID -> open context menu
|
2017-02-16 11:04:42 -08:00
|
|
|
std::map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
|
2017-02-17 12:16:29 -08:00
|
|
|
|
2017-02-15 12:44:39 -08:00
|
|
|
base::WeakPtrFactory<MenuViews> weak_factory_;
|
|
|
|
|
2014-07-10 12:07:01 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(MenuViews);
|
2014-02-14 13:41:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2020-02-04 12:19:40 -08:00
|
|
|
#endif // SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|