electron/shell/browser/api/atom_api_menu_views.h

49 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 ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_
#define ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_
2014-02-14 13:41:20 +00:00
#include <map>
#include <memory>
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_menu.h"
2017-02-15 20:44:39 +00:00
#include "base/memory/weak_ptr.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-02-14 13:41:20 +00:00
namespace atom {
namespace api {
class MenuViews : public Menu {
2014-04-23 04:45:48 +00:00
public:
MenuViews(v8::Isolate* isolate, v8::Local<v8::Object> wrapper);
~MenuViews() override;
2014-04-23 04:45:48 +00:00
2014-02-14 13:41:20 +00:00
protected:
2018-04-17 08:14:49 +00:00
void PopupAt(TopLevelWindow* window,
2018-04-18 01:44:10 +00:00
int x,
int y,
int positioning_item,
2018-01-01 07:26:19 +00:00
const base::Closure& 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::Closure callback);
2017-12-21 06:26:32 +00:00
// window ID -> open context menu
std::map<int32_t, std::unique_ptr<views::MenuRunner>> menu_runners_;
2017-02-15 20:44:39 +00:00
base::WeakPtrFactory<MenuViews> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(MenuViews);
2014-02-14 13:41:20 +00:00
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_