electron/shell/browser/api/electron_api_menu_mac.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.6 KiB
C
Raw Normal View History

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