2014-10-31 18:17:05 +00:00
|
|
|
// 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 ATOM_BROWSER_API_ATOM_API_MENU_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_MENU_H_
|
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-04-22 15:07:21 +00:00
|
|
|
#include "atom/browser/api/atom_api_window.h"
|
2015-02-13 03:47:22 +00:00
|
|
|
#include "base/callback.h"
|
2013-05-06 12:27:09 +00:00
|
|
|
#include "base/memory/scoped_ptr.h"
|
|
|
|
#include "ui/base/models/simple_menu_model.h"
|
2014-04-21 15:40:10 +00:00
|
|
|
#include "native_mate/wrappable.h"
|
2013-05-06 12:27:09 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
class Menu : public mate::Wrappable,
|
2013-05-06 12:27:09 +00:00
|
|
|
public ui::SimpleMenuModel::Delegate {
|
|
|
|
public:
|
2014-04-21 15:40:10 +00:00
|
|
|
static mate::Wrappable* Create();
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Handle<v8::ObjectTemplate> prototype);
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Set the global menubar.
|
|
|
|
static void SetApplicationMenu(Menu* menu);
|
|
|
|
|
|
|
|
// Fake sending an action from the application menu.
|
|
|
|
static void SendActionToFirstResponder(const std::string& action);
|
|
|
|
#endif
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2014-05-30 15:57:54 +00:00
|
|
|
ui::SimpleMenuModel* model() const { return model_.get(); }
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
protected:
|
2014-04-21 15:40:10 +00:00
|
|
|
Menu();
|
|
|
|
virtual ~Menu();
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2015-02-13 03:47:22 +00:00
|
|
|
// mate::Wrappable:
|
|
|
|
void AfterInit(v8::Isolate* isolate) override;
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
// ui::SimpleMenuModel::Delegate implementations:
|
2014-11-16 02:45:53 +00:00
|
|
|
bool IsCommandIdChecked(int command_id) const override;
|
|
|
|
bool IsCommandIdEnabled(int command_id) const override;
|
|
|
|
bool IsCommandIdVisible(int command_id) const override;
|
2015-02-13 04:11:50 +00:00
|
|
|
bool GetAcceleratorForCommandId(int command_id,
|
|
|
|
ui::Accelerator* accelerator) override;
|
2014-11-16 02:45:53 +00:00
|
|
|
void ExecuteCommand(int command_id, int event_flags) override;
|
|
|
|
void MenuWillShow(ui::SimpleMenuModel* source) override;
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2014-07-04 08:54:10 +00:00
|
|
|
virtual void AttachToWindow(Window* window);
|
2014-04-22 15:07:21 +00:00
|
|
|
virtual void Popup(Window* window) = 0;
|
2014-11-25 15:47:41 +00:00
|
|
|
virtual void PopupAt(Window* window, int x, int y) = 0;
|
2013-05-14 08:50:56 +00:00
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
scoped_ptr<ui::SimpleMenuModel> model_;
|
2014-05-26 03:34:36 +00:00
|
|
|
Menu* parent_;
|
2013-05-06 12:27:09 +00:00
|
|
|
|
|
|
|
private:
|
2014-04-21 15:40:10 +00:00
|
|
|
void InsertItemAt(int index, int command_id, const base::string16& label);
|
|
|
|
void InsertSeparatorAt(int index);
|
|
|
|
void InsertCheckItemAt(int index,
|
|
|
|
int command_id,
|
|
|
|
const base::string16& label);
|
|
|
|
void InsertRadioItemAt(int index,
|
|
|
|
int command_id,
|
|
|
|
const base::string16& label,
|
|
|
|
int group_id);
|
|
|
|
void InsertSubMenuAt(int index,
|
|
|
|
int command_id,
|
|
|
|
const base::string16& label,
|
|
|
|
Menu* menu);
|
2015-02-13 04:11:50 +00:00
|
|
|
void SetIcon(int index, const gfx::Image& image);
|
2014-04-21 15:40:10 +00:00
|
|
|
void SetSublabel(int index, const base::string16& sublabel);
|
|
|
|
void Clear();
|
|
|
|
int GetIndexOfCommandId(int command_id);
|
|
|
|
int GetItemCount() const;
|
|
|
|
int GetCommandIdAt(int index) const;
|
|
|
|
base::string16 GetLabelAt(int index) const;
|
|
|
|
base::string16 GetSublabelAt(int index) const;
|
|
|
|
bool IsItemCheckedAt(int index) const;
|
|
|
|
bool IsEnabledAt(int index) const;
|
|
|
|
bool IsVisibleAt(int index) const;
|
2013-05-14 08:50:56 +00:00
|
|
|
|
2015-02-13 03:47:22 +00:00
|
|
|
// Stored delegate methods.
|
|
|
|
base::Callback<bool(int)> is_checked_;
|
|
|
|
base::Callback<bool(int)> is_enabled_;
|
|
|
|
base::Callback<bool(int)> is_visible_;
|
|
|
|
base::Callback<v8::Handle<v8::Value>(int)> get_accelerator_;
|
|
|
|
base::Callback<void(int)> execute_command_;
|
|
|
|
base::Callback<void()> menu_will_show_;
|
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Menu);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_MENU_H_
|