electron/shell/browser/api/electron_api_menu_views.h

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

44 lines
1.2 KiB
C
Raw Normal View History

// 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.
#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
#include <memory>
#include "base/containers/flat_map.h"
2017-02-15 20:44:39 +00:00
#include "base/memory/weak_ptr.h"
#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"
2022-06-29 19:55:47 +00:00
namespace electron::api {
2014-02-14 13:41:20 +00:00
class MenuViews : public Menu {
2014-04-23 04:45:48 +00:00
public:
explicit MenuViews(gin::Arguments* args);
~MenuViews() override;
2014-04-23 04:45:48 +00:00
2014-02-14 13:41:20 +00:00
protected:
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;
void ClosePopupAt(int32_t window_id) override;
2014-02-14 13:41:20 +00:00
private:
void OnClosed(int32_t window_id, base::OnceClosure callback);
2017-12-21 06:26:32 +00:00
// window ID -> open context menu
base::flat_map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
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
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_MENU_VIEWS_H_