electron/atom/browser/api/atom_api_menu_views.h

34 lines
739 B
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
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_menu.h"
2014-11-25 15:47:41 +00:00
#include "ui/gfx/screen.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();
2014-04-23 04:45:48 +00:00
2014-02-14 13:41:20 +00:00
protected:
2015-01-10 01:24:36 +00:00
void Popup(Window* window) override;
void PopupAt(Window* window, int x, int y, int positioningItem = 0) override;
2014-02-14 13:41:20 +00:00
private:
2014-11-28 07:59:03 +00:00
void PopupAtPoint(Window* window, const gfx::Point& point);
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_