electron/atom/browser/api/atom_api_menu.h

126 lines
3.7 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.
#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>
#include "atom/browser/api/atom_api_window.h"
#include "atom/browser/api/trackable_object.h"
2015-08-10 04:39:05 +00:00
#include "atom/browser/ui/atom_menu_model.h"
#include "base/callback.h"
2013-05-06 12:27:09 +00:00
#include "base/memory/scoped_ptr.h"
namespace atom {
namespace api {
class Menu : public mate::TrackableObject<Menu>,
2015-08-10 04:39:05 +00:00
public AtomMenuModel::Delegate {
2013-05-06 12:27:09 +00:00
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,
2015-05-22 11:11:22 +00:00
v8::Local<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
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:
2014-04-21 15:40:10 +00:00
Menu();
~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;
2015-02-13 04:11:50 +00:00
bool GetAcceleratorForCommandId(int command_id,
ui::Accelerator* accelerator) override;
void ExecuteCommand(int command_id, int event_flags) override;
void MenuWillShow(ui::SimpleMenuModel* source) override;
2013-05-06 12:27:09 +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
2015-08-10 04:39:05 +00:00
scoped_ptr<AtomMenuModel> model_;
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);
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;
bool IsItemCheckedAt(int index) const;
bool IsEnabledAt(int index) const;
bool IsVisibleAt(int index) const;
2013-05-14 08:50:56 +00:00
// Stored delegate methods.
base::Callback<bool(int)> is_checked_;
base::Callback<bool(int)> is_enabled_;
base::Callback<bool(int)> is_visible_;
2015-05-22 11:11:22 +00:00
base::Callback<v8::Local<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
namespace mate {
template<>
2015-08-10 04:39:05 +00:00
struct Converter<atom::AtomMenuModel*> {
static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
2015-08-10 04:39:05 +00:00
atom::AtomMenuModel** out) {
// null would be tranfered to NULL.
if (val->IsNull()) {
*out = nullptr;
return true;
}
atom::api::Menu* menu;
if (!Converter<atom::api::Menu*>::FromV8(isolate, val, &menu))
return false;
*out = menu->model();
return true;
}
};
} // namespace mate
2013-05-06 12:27:09 +00:00
#endif // ATOM_BROWSER_API_ATOM_API_MENU_H_