electron/atom/browser/api/atom_api_menu.h

95 lines
3 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"
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 MenuMac;
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
// ui::SimpleMenuModel::Delegate implementations:
virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
2013-05-14 08:50:56 +00:00
virtual bool IsCommandIdVisible(int command_id) const OVERRIDE;
2013-05-06 12:27:09 +00:00
virtual bool GetAcceleratorForCommandId(
int command_id,
ui::Accelerator* accelerator) OVERRIDE;
2013-05-14 08:50:56 +00:00
virtual bool IsItemForCommandIdDynamic(int command_id) const OVERRIDE;
2014-06-28 11:36:57 +00:00
virtual base::string16 GetLabelForCommandId(int command_id) const OVERRIDE;
virtual base::string16 GetSublabelForCommandId(int command_id) const OVERRIDE;
2013-05-06 12:27:09 +00:00
virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
virtual 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);
virtual void Popup(Window* window) = 0;
2013-05-14 08:50:56 +00:00
2013-05-06 12:27:09 +00:00
scoped_ptr<ui::SimpleMenuModel> 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);
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
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_