mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
83 lines
3.0 KiB
C++
83 lines
3.0 KiB
C++
// 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 ELECTRON_SHELL_BROWSER_API_ELECTRON_API_GLOBAL_SHORTCUT_H_
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_GLOBAL_SHORTCUT_H_
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include "base/functional/callback_forward.h"
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "extensions/common/extension_id.h"
|
|
#include "gin/per_isolate_data.h"
|
|
#include "gin/weak_cell.h"
|
|
#include "gin/wrappable.h"
|
|
#include "shell/common/gin_helper/self_keep_alive.h"
|
|
#include "ui/base/accelerators/accelerator.h"
|
|
#include "ui/base/accelerators/global_accelerator_listener/global_accelerator_listener.h"
|
|
|
|
namespace electron::api {
|
|
|
|
class GlobalShortcut final : public gin::Wrappable<GlobalShortcut>,
|
|
private ui::GlobalAcceleratorListener::Observer,
|
|
public gin::PerIsolateData::DisposeObserver {
|
|
public:
|
|
static GlobalShortcut* Create(v8::Isolate* isolate);
|
|
|
|
// gin::Wrappable
|
|
static const gin::WrapperInfo kWrapperInfo;
|
|
void Trace(cppgc::Visitor* visitor) const override;
|
|
const gin::WrapperInfo* wrapper_info() const override;
|
|
const char* GetHumanReadableName() const override;
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate) override;
|
|
|
|
// gin::PerIsolateData::DisposeObserver
|
|
void OnBeforeDispose(v8::Isolate* isolate) override {}
|
|
void OnBeforeMicrotasksRunnerDispose(v8::Isolate* isolate) override;
|
|
void OnDisposed() override {}
|
|
|
|
// Make public for cppgc::MakeGarbageCollected.
|
|
explicit GlobalShortcut(v8::Isolate* isolate);
|
|
~GlobalShortcut() override;
|
|
|
|
// disable copy
|
|
GlobalShortcut(const GlobalShortcut&) = delete;
|
|
GlobalShortcut& operator=(const GlobalShortcut&) = delete;
|
|
|
|
private:
|
|
typedef std::map<ui::Accelerator, base::RepeatingClosure>
|
|
AcceleratorCallbackMap;
|
|
typedef std::map<std::string, base::RepeatingClosure> CommandCallbackMap;
|
|
|
|
void Dispose();
|
|
bool RegisterAll(const std::vector<ui::Accelerator>& accelerators,
|
|
const base::RepeatingClosure& callback);
|
|
bool Register(const ui::Accelerator& accelerator,
|
|
const base::RepeatingClosure& callback);
|
|
bool IsRegistered(const ui::Accelerator& accelerator);
|
|
void Unregister(const ui::Accelerator& accelerator);
|
|
void UnregisterSome(const std::vector<ui::Accelerator>& accelerators);
|
|
void UnregisterAll();
|
|
void UnregisterAllInternal();
|
|
|
|
// GlobalAcceleratorListener::Observer implementation.
|
|
void OnKeyPressed(const ui::Accelerator& accelerator) override;
|
|
void ExecuteCommand(const extensions::ExtensionId& extension_id,
|
|
const std::string& command_id) override;
|
|
|
|
AcceleratorCallbackMap accelerator_callback_map_;
|
|
CommandCallbackMap command_callback_map_;
|
|
bool is_disposed_ = false;
|
|
|
|
gin::WeakCellFactory<GlobalShortcut> weak_factory_{this};
|
|
|
|
gin_helper::SelfKeepAlive<GlobalShortcut> keep_alive_{this};
|
|
};
|
|
|
|
} // namespace electron::api
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_GLOBAL_SHORTCUT_H_
|