2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-07-31 04:22:29 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
2015-11-04 10:21:03 +00:00
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2014-07-31 04:22:29 +00:00
|
|
|
#include "base/callback.h"
|
|
|
|
#include "chrome/browser/extensions/global_shortcut_listener.h"
|
|
|
|
#include "native_mate/handle.h"
|
|
|
|
#include "ui/base/accelerators/accelerator.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
class GlobalShortcut : public extensions::GlobalShortcutListener::Observer,
|
2015-11-04 10:21:03 +00:00
|
|
|
public mate::TrackableObject<GlobalShortcut> {
|
2014-07-31 04:22:29 +00:00
|
|
|
public:
|
|
|
|
static mate::Handle<GlobalShortcut> Create(v8::Isolate* isolate);
|
|
|
|
|
2016-04-25 01:17:54 +00:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::ObjectTemplate> prototype);
|
|
|
|
|
2014-07-31 04:22:29 +00:00
|
|
|
protected:
|
2016-04-25 01:17:54 +00:00
|
|
|
explicit GlobalShortcut(v8::Isolate* isolate);
|
2015-11-04 10:21:03 +00:00
|
|
|
~GlobalShortcut() override;
|
|
|
|
|
2014-07-31 04:22:29 +00:00
|
|
|
private:
|
|
|
|
typedef std::map<ui::Accelerator, base::Closure> AcceleratorCallbackMap;
|
|
|
|
|
2014-08-04 16:00:39 +00:00
|
|
|
bool Register(const ui::Accelerator& accelerator,
|
|
|
|
const base::Closure& callback);
|
|
|
|
bool IsRegistered(const ui::Accelerator& accelerator);
|
|
|
|
void Unregister(const ui::Accelerator& accelerator);
|
2014-07-31 04:22:29 +00:00
|
|
|
void UnregisterAll();
|
|
|
|
|
|
|
|
// GlobalShortcutListener::Observer implementation.
|
2015-01-10 01:24:36 +00:00
|
|
|
void OnKeyPressed(const ui::Accelerator& accelerator) override;
|
2014-07-31 04:22:29 +00:00
|
|
|
|
|
|
|
AcceleratorCallbackMap accelerator_callback_map_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(GlobalShortcut);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_
|