電子-ショートカットの定義
私たちは通常、PCで毎日使用するすべてのアプリの特定のショートカットを記憶しています。アプリケーションを直感的でユーザーが簡単にアクセスできるようにするには、ユーザーがショートカットを使用できるようにする必要があります。
globalShortcutモジュールを使用して、アプリでショートカットを定義します。ご了承くださいAccelerators+文字で組み合わせた複数の修飾子とキーコードを含めることができる文字列です。これらのアクセラレータは、アプリケーション全体でキーボードショートカットを定義するために使用されます。
例を考えて、ショートカットを作成しましょう。このために、ファイルを開くためにダイアログボックスを開くを使用したダイアログボックスの例に従います。登録しますCommandOrControl+O ダイアログボックスを表示するためのショートカット。
私たちの main.jsコードは以前と同じままになります。だから新しいを作成するmain.js ファイルに次のコードを入力します-
const {app, BrowserWindow} = require('electron')
const url = require('url')
const path = require('path')
const {ipcMain} = require('electron')
let win
function createWindow() {
win = new BrowserWindow({width: 800, height: 600})
win.loadURL(url.format ({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
}
ipcMain.on('openFile', (event, path) => {
const {dialog} = require('electron')
const fs = require('fs')
dialog.showOpenDialog(function (fileNames) {
// fileNames is an array that contains all the selected
if(fileNames === undefined)
console.log("No file selected")
else
readFile(fileNames[0])
})
function readFile(filepath){
fs.readFile(filepath, 'utf-8', (err, data) => {
if(err){
alert("An error ocurred reading the file :" + err.message)
return
}
// handle the file content
event.sender.send('fileData', data)
})
}
})
app.on('ready', createWindow)
このコードは、メインプロセスがレンダラープロセスから「openFile」メッセージを受信するたびに、開くダイアログボックスをポップオープンします。以前は、このダイアログボックスはアプリが実行されるたびにポップアップしていました。を押したときにのみ開くように制限しましょうCommandOrControl+O。
今すぐ新しいを作成します index.html 次の内容のファイル-
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>File read using system dialogs</title>
</head>
<body>
<p>Press CTRL/CMD + O to open a file. </p>
<script type = "text/javascript">
const {ipcRenderer, remote} = require('electron')
const {globalShortcut} = remote
globalShortcut.register('CommandOrControl+O', () => {
ipcRenderer.send('openFile', () => {
console.log("Event sent.");
})
ipcRenderer.on('fileData', (event, data) => {
document.write(data)
})
})
</script>
</body>
</html>
新しいショートカットを登録し、このショートカットを押すたびに実行されるコールバックを渡しました。ショートカットは、必要のないときに登録を解除できます。
アプリを開くと、定義したショートカットを使用してファイルを開くようにというメッセージが表示されます。
これらのショートカットは、ユーザーが定義されたアクションに対して独自のショートカットを選択できるようにすることで、カスタマイズ可能にすることができます。