electron/shell/browser/api/atom_api_menu.h

149 lines
4.9 KiB
C
Raw Normal View History

// 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>
#include "base/callback.h"
#include "gin/arguments.h"
#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
namespace electron {
2013-05-06 12:27:09 +00:00
namespace api {
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:
static mate::WrappableBase* New(gin::Arguments* args);
2013-05-06 12:27:09 +00:00
2014-04-21 15:40:10 +00:00
static void BuildPrototype(v8::Isolate* isolate,
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:
explicit Menu(gin::Arguments* args);
~Menu() override;
// mate::Wrappable:
void AfterInit(v8::Isolate* isolate) override;
2015-08-10 04:39:05 +00:00
// ui::SimpleMenuModel::Delegate:
bool IsCommandIdChecked(int command_id) const override;
bool IsCommandIdEnabled(int command_id) const override;
bool IsCommandIdVisible(int command_id) const override;
bool ShouldCommandIdWorkWhenHidden(int command_id) const override;
bool GetAcceleratorForCommandIdWithParams(
int command_id,
bool use_default_accelerator,
ui::Accelerator* accelerator) const override;
bool ShouldRegisterAcceleratorForCommandId(int command_id) const override;
void ExecuteCommand(int command_id, int event_flags) override;
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
std::unique_ptr<AtomMenuModel> model_;
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);
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;
base::string16 GetToolTipAt(int index) const;
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;
bool WorksWhenHiddenAt(int index) const;
2013-05-14 08:50:56 +00:00
// Stored delegate methods.
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)>
get_accelerator_;
base::RepeatingCallback<bool(v8::Local<v8::Value>, int)>
should_register_accelerator_;
base::RepeatingCallback<void(v8::Local<v8::Value>, v8::Local<v8::Value>, int)>
execute_command_;
base::RepeatingCallback<void(v8::Local<v8::Value>)> menu_will_show_;
2013-05-06 12:27:09 +00:00
DISALLOW_COPY_AND_ASSIGN(Menu);
};
} // namespace api
} // namespace electron
2013-05-06 12:27:09 +00:00
namespace mate {
2018-04-18 01:44:10 +00:00
template <>
struct Converter<electron::AtomMenuModel*> {
2018-04-18 01:44:10 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
electron::AtomMenuModel** out) {
// null would be tranfered to NULL.
if (val->IsNull()) {
*out = nullptr;
return true;
}
electron::api::Menu* menu;
if (!Converter<electron::api::Menu*>::FromV8(isolate, val, &menu))
return false;
*out = menu->model();
return true;
}
};
} // namespace mate
2019-06-19 20:56:58 +00:00
#endif // SHELL_BROWSER_API_ATOM_API_MENU_H_