2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-06 20:27:09 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_MAC_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_MAC_H_
|
2013-05-06 20:27:09 +08:00
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/api/electron_api_menu.h"
|
2013-05-06 20:27:09 +08:00
|
|
|
|
2017-02-16 10:58:02 -08:00
|
|
|
#include <map>
|
2014-03-16 09:13:06 +08:00
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#import "shell/browser/ui/cocoa/electron_menu_controller.h"
|
2013-05-16 10:54:37 +08:00
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
namespace electron::api {
|
2013-05-06 20:27:09 +08:00
|
|
|
|
|
|
|
class MenuMac : public Menu {
|
|
|
|
protected:
|
2019-10-15 10:15:23 +09:00
|
|
|
explicit MenuMac(gin::Arguments* args);
|
2018-04-17 16:37:22 -07:00
|
|
|
~MenuMac() override;
|
2014-04-21 23:40:10 +08:00
|
|
|
|
2020-06-29 16:06:20 +09:00
|
|
|
void PopupAt(BaseWindow* window,
|
2018-04-17 21:44:10 -04:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int positioning_item,
|
2023-06-29 15:54:06 -07:00
|
|
|
ui::MenuSourceType source_type,
|
2019-11-20 20:17:39 +09:00
|
|
|
base::OnceClosure callback) override;
|
2017-02-15 11:44:25 -08:00
|
|
|
void PopupOnUI(const base::WeakPtr<NativeWindow>& native_window,
|
2017-09-14 00:13:45 +03:00
|
|
|
int32_t window_id,
|
|
|
|
int x,
|
|
|
|
int y,
|
2018-01-01 16:26:19 +09:00
|
|
|
int positioning_item,
|
2019-11-20 20:17:39 +09:00
|
|
|
base::OnceClosure callback);
|
2017-02-16 10:58:02 -08:00
|
|
|
void ClosePopupAt(int32_t window_id) override;
|
2021-06-02 16:32:48 +09:00
|
|
|
std::u16string GetAcceleratorTextAtForTesting(int index) const override;
|
2013-05-06 20:27:09 +08:00
|
|
|
|
|
|
|
private:
|
2013-05-16 10:54:37 +08:00
|
|
|
friend class Menu;
|
|
|
|
|
2021-06-02 16:32:48 +09:00
|
|
|
void ClosePopupOnUI(int32_t window_id);
|
2019-11-20 20:17:39 +09:00
|
|
|
void OnClosed(int32_t window_id, base::OnceClosure callback);
|
2013-05-16 17:25:02 +08:00
|
|
|
|
2023-07-19 00:26:27 +02:00
|
|
|
ElectronMenuController* __strong menu_controller_;
|
2017-02-17 12:16:29 -08:00
|
|
|
|
|
|
|
// window ID -> open context menu
|
2023-07-19 00:26:27 +02:00
|
|
|
std::map<int32_t, ElectronMenuController*> popup_controllers_;
|
2017-02-17 12:16:29 -08:00
|
|
|
|
2021-01-26 19:16:21 +01:00
|
|
|
base::WeakPtrFactory<MenuMac> weak_factory_{this};
|
2013-05-06 20:27:09 +08:00
|
|
|
};
|
|
|
|
|
2022-06-29 12:55:47 -07:00
|
|
|
} // namespace electron::api
|
2013-05-06 20:27:09 +08:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_MAC_H_
|