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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2017-02-16 19:04:42 +00:00
|
|
|
|
2024-01-05 11:18:31 +00:00
|
|
|
#include "base/containers/flat_map.h"
|
2017-02-15 20:44:39 +00:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/electron_api_menu.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
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2014-07-10 04:07:01 +00:00
|
|
|
class MenuViews : public Menu {
|
2014-04-23 04:45:48 +00:00
|
|
|
public:
|
2019-10-15 01:15:23 +00:00
|
|
|
explicit MenuViews(gin::Arguments* args);
|
2018-04-17 23:37:22 +00:00
|
|
|
~MenuViews() override;
|
2014-04-23 04:45:48 +00:00
|
|
|
|
2014-02-14 13:41:20 +00:00
|
|
|
protected:
|
2020-06-29 07:06:20 +00:00
|
|
|
void PopupAt(BaseWindow* window,
|
2018-04-18 01:44:10 +00:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int positioning_item,
|
2023-06-29 22:54:06 +00:00
|
|
|
ui::MenuSourceType source_type,
|
2019-11-20 11:17:39 +00:00
|
|
|
base::OnceClosure callback) override;
|
2017-02-16 19:15:05 +00:00
|
|
|
void ClosePopupAt(int32_t window_id) override;
|
2014-02-14 13:41:20 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-20 11:17:39 +00:00
|
|
|
void OnClosed(int32_t window_id, base::OnceClosure callback);
|
2017-12-21 06:26:32 +00:00
|
|
|
|
2017-02-17 20:16:29 +00:00
|
|
|
// window ID -> open context menu
|
2024-01-05 11:18:31 +00:00
|
|
|
base::flat_map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
|
2017-02-17 20:16:29 +00:00
|
|
|
|
2021-01-26 18:16:21 +00:00
|
|
|
base::WeakPtrFactory<MenuViews> weak_factory_{this};
|
2014-02-14 13:41:20 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2014-02-14 13:41:20 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_
|