// Copyright (c) 2014 GitHub, Inc. // 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 #include #include "base/callback.h" #include "chrome/browser/extensions/global_shortcut_listener.h" #include "native_mate/wrappable.h" #include "native_mate/handle.h" #include "ui/base/accelerators/accelerator.h" namespace atom { namespace api { class GlobalShortcut : public extensions::GlobalShortcutListener::Observer, public mate::Wrappable { public: static mate::Handle Create(v8::Isolate* isolate); protected: GlobalShortcut(); virtual ~GlobalShortcut(); // mate::Wrappable implementations: virtual mate::ObjectTemplateBuilder GetObjectTemplateBuilder( v8::Isolate* isolate) OVERRIDE; private: typedef std::map AcceleratorCallbackMap; bool Register(const ui::Accelerator& accelerator, const base::Closure& callback); bool IsRegistered(const ui::Accelerator& accelerator); void Unregister(const ui::Accelerator& accelerator); void UnregisterAll(); // GlobalShortcutListener::Observer implementation. virtual void OnKeyPressed(const ui::Accelerator& accelerator) OVERRIDE; AcceleratorCallbackMap accelerator_callback_map_; DISALLOW_COPY_AND_ASSIGN(GlobalShortcut); }; } // namespace api } // namespace atom #endif // ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_