javascript - 如何在 Electron 中注册多个全局快捷方式?

标签 javascript electron keyboard-shortcuts

我正在 https://github.com/electron/electron-quick-start 之上构建一个原型(prototype)

我在 ma​​in.js 中有以下代码,在其他文件中没有其他代码:

const electron = require('electron')
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow

const path = require('path')
const url = require('url')
const globalShortcut = electron.globalShortcut
const {clipboard} = require('electron')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow

function createWindow () {
  // Create the browser window.
  mainWindow = new BrowserWindow({width: 800, height: 600})

  // and load the index.html of the app.
  mainWindow.loadURL(url.format({
    pathname: path.join(__dirname, 'index.html'),
    protocol: 'file:',
    slashes: true
  }))

  // Open the DevTools.
  // mainWindow.webContents.openDevTools()

  // Emitted when the window is closed.
  mainWindow.on('closed', function () {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    mainWindow = null
    globalShortcut.unregisterAll();
  })
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', function() {
  createWindow();
  globalShortcut.register('Alt+h', () => {
    let date = new Date();
    clipboard.writeText(date.toLocaleString());
  });

  globalShortcut.register('Alt+c', function() {
    clipboard.writeText('Multitabler spin 2 tables');
  });
})

// Quit when all windows are closed.
app.on('window-all-closed', function () {
  // On OS X it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', function () {
  // On OS X it's common to re-create a window in the app when the
  // dock icon is clicked and there are no other windows open.
  if (mainWindow === null) {
    createWindow()
  }
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

在“就绪”事件中,我注册了两个快捷键:Alt+h 和 Alt+c。 Alt+h 的作用是将日期复制到剪贴板,但另一个快捷键不会向剪贴板产生任何输出。

我尝试过什么: 我尝试用 console.log 语句替换第二个快捷方式中的剪贴板写入事件。当我按下该组合键时,没有任何输出。

如何注册多个全局短代码,无论应用程序是聚焦还是最小化,这些短代码都会激活。

最佳答案

你的代码确实有效。我在 Windows 和 Mac 上进行了测试。可能是快捷键冲突,Alt+c可能被其他软件占用了。

此外,我建议您在 Windows Focus 上注册快捷方式,而不是在应用程序就绪时注册,因为 Electron 会阻止其他使用相同快捷键运行的软件。

const refreshCommand = process.platform === 'darwin' ? 'Cmd+R' : 'F5'

app.on('browser-window-focus', () => {
globalShortcut.register(refreshCommand, () => {
    // do something
})
})

app.on('browser-window-blur', () => {
globalShortcut.unregisterAll()
})

关于javascript - 如何在 Electron 中注册多个全局快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50229005/

相关文章:

javascript - typescript , Angular 1.x : How do lambda functions affect property resolution?

javascript - 通过document.evaluate获取nextsibling的文本值

webpack - 注册服务人员时,Electron无法打开窗口

javascript - 如何在 Aptana Studio 3 中快速移动到代码块的末尾

keyboard-shortcuts - Sublime Text、Atom 中是否有选择光标下单词的快捷方式

javascript - 安装 Jasmine 进行自动化测试

javascript - 在网络墨卡托中以任意浮点缩放级别转换纬度/经度和像素?

javascript - 在 javascript 中通过 D-click 将参数传递给应用程序

node.js - 从 npm 安装 Electron-Js 时出现 npm 错误

python - tkinter 快捷方式无法启用