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.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_API_ATOM_API_MENU_H_
|
|
|
|
#define SHELL_BROWSER_API_ATOM_API_MENU_H_
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2016-07-04 06:08:55 +00:00
|
|
|
#include <memory>
|
2014-04-21 15:40:10 +00:00
|
|
|
#include <string>
|
|
|
|
|
2015-02-13 03:47:22 +00:00
|
|
|
#include "base/callback.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/atom_api_top_level_window.h"
|
|
|
|
#include "shell/browser/api/trackable_object.h"
|
|
|
|
#include "shell/browser/ui/atom_menu_model.h"
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-05-06 12:27:09 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2015-11-04 10:21:03 +00:00
|
|
|
class Menu : public mate::TrackableObject<Menu>,
|
2018-04-18 01:44:10 +00:00
|
|
|
public AtomMenuModel::Delegate,
|
|
|
|
public AtomMenuModel::Observer {
|
2013-05-06 12:27:09 +00:00
|
|
|
public:
|
2016-08-02 06:15:40 +00:00
|
|
|
static mate::WrappableBase* New(mate::Arguments* args);
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2014-04-21 15:40:10 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> 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
|
|
|
|
2015-08-10 04:39:05 +00:00
|
|
|
AtomMenuModel* model() const { return model_.get(); }
|
2014-05-30 15:57:54 +00:00
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
protected:
|
2016-08-02 06:15:40 +00:00
|
|
|
Menu(v8::Isolate* isolate, v8::Local<v8::Object> wrapper);
|
2015-11-04 10:21:03 +00:00
|
|
|
~Menu() override;
|
|
|
|
|
2015-02-13 03:47:22 +00:00
|
|
|
// mate::Wrappable:
|
|
|
|
void AfterInit(v8::Isolate* isolate) override;
|
|
|
|
|
2015-08-10 04:39:05 +00:00
|
|
|
// ui::SimpleMenuModel::Delegate:
|
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;
|
2019-02-28 17:00:54 +00:00
|
|
|
bool ShouldCommandIdWorkWhenHidden(int command_id) const override;
|
2016-07-02 02:47:40 +00:00
|
|
|
bool GetAcceleratorForCommandIdWithParams(
|
|
|
|
int command_id,
|
|
|
|
bool use_default_accelerator,
|
|
|
|
ui::Accelerator* accelerator) const override;
|
2018-11-26 18:43:55 +00:00
|
|
|
bool ShouldRegisterAcceleratorForCommandId(int command_id) const override;
|
2014-11-16 02:45:53 +00:00
|
|
|
void ExecuteCommand(int command_id, int event_flags) override;
|
2018-10-25 14:56:59 +00:00
|
|
|
void OnMenuWillShow(ui::SimpleMenuModel* source) override;
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2018-04-17 08:14:49 +00:00
|
|
|
virtual 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) = 0;
|
2017-02-16 18:58:02 +00:00
|
|
|
virtual void ClosePopupAt(int32_t window_id) = 0;
|
2013-05-14 08:50:56 +00:00
|
|
|
|
2019-06-26 17:18:53 +00:00
|
|
|
std::unique_ptr<AtomMenuModel> model_;
|
2018-05-21 22:18:38 +00:00
|
|
|
Menu* parent_ = nullptr;
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2018-01-27 14:35:58 +00:00
|
|
|
// Observable:
|
|
|
|
void OnMenuWillClose() override;
|
|
|
|
void OnMenuWillShow() override;
|
|
|
|
|
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);
|
2019-07-11 08:56:22 +00:00
|
|
|
void SetToolTip(int index, const base::string16& toolTip);
|
2015-09-01 11:48:11 +00:00
|
|
|
void SetRole(int index, const base::string16& role);
|
2014-04-21 15:40:10 +00:00
|
|
|
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;
|
2019-07-11 08:56:22 +00:00
|
|
|
base::string16 GetToolTipAt(int index) const;
|
2018-10-31 14:13:44 +00:00
|
|
|
base::string16 GetAcceleratorTextAt(int index) const;
|
2014-04-21 15:40:10 +00:00
|
|
|
bool IsItemCheckedAt(int index) const;
|
|
|
|
bool IsEnabledAt(int index) const;
|
|
|
|
bool IsVisibleAt(int index) const;
|
2019-02-28 17:00:54 +00:00
|
|
|
bool WorksWhenHiddenAt(int index) const;
|
2013-05-14 08:50:56 +00:00
|
|
|
|
2015-02-13 03:47:22 +00:00
|
|
|
// Stored delegate methods.
|
2019-05-29 20:02:15 +00:00
|
|
|
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)> is_checked_;
|
|
|
|
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)> is_enabled_;
|
|
|
|
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)> is_visible_;
|
|
|
|
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)> works_when_hidden_;
|
|
|
|
base::RepeatingCallback<v8::Local<v8::Value>(v8::Local<v8::Value>, int, bool)>
|
2018-02-20 16:11:35 +00:00
|
|
|
get_accelerator_;
|
2019-05-29 20:02:15 +00:00
|
|
|
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)>
|
|
|
|
should_register_accelerator_;
|
|
|
|
base::RepeatingCallback<void(v8::Local<v8::Value>, v8::Local<v8::Value>, int)>
|
2018-02-20 16:11:35 +00:00
|
|
|
execute_command_;
|
2019-05-29 20:02:15 +00:00
|
|
|
base::RepeatingCallback<void(v8::Local<v8::Value>)> menu_will_show_;
|
2015-02-13 03:47:22 +00:00
|
|
|
|
2013-05-06 12:27:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Menu);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-05-06 12:27:09 +00:00
|
|
|
|
2015-06-04 07:32:33 +00:00
|
|
|
namespace mate {
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
template <>
|
2019-06-19 21:23:04 +00:00
|
|
|
struct Converter<electron::AtomMenuModel*> {
|
2018-04-18 01:44:10 +00:00
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::AtomMenuModel** out) {
|
2015-06-04 07:32:33 +00:00
|
|
|
// null would be tranfered to NULL.
|
|
|
|
if (val->IsNull()) {
|
|
|
|
*out = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::api::Menu* menu;
|
|
|
|
if (!Converter<electron::api::Menu*>::FromV8(isolate, val, &menu))
|
2015-06-04 07:32:33 +00:00
|
|
|
return false;
|
|
|
|
*out = menu->model();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
namespace gin {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Converter<electron::AtomMenuModel*> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
electron::AtomMenuModel** out) {
|
|
|
|
return mate::ConvertFromV8(isolate, val, out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-19 15:09:15 +00:00
|
|
|
// TODO(zcbenz): Remove this after converting Menu to gin::Wrapper.
|
|
|
|
template <>
|
|
|
|
struct Converter<electron::api::Menu*> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
electron::api::Menu** out) {
|
|
|
|
return mate::ConvertFromV8(isolate, val, out);
|
|
|
|
}
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
|
|
|
electron::api::Menu* in) {
|
|
|
|
return mate::ConvertToV8(isolate, in);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
} // namespace gin
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_API_ATOM_API_MENU_H_
|