2016-10-07 21:44:35 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
2023-09-12 09:28:45 +00:00
|
|
|
<input type="text" id="input" autofocus/>
|
2016-10-07 21:44:35 +00:00
|
|
|
<script type="text/javascript" charset="utf-8">
|
2023-09-12 09:28:45 +00:00
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
|
2016-10-07 21:44:35 +00:00
|
|
|
document.onkeydown = function (e) {
|
2023-09-12 09:28:45 +00:00
|
|
|
ipcRenderer.send('keydown', e.key, e.code, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey)
|
2016-10-07 21:44:35 +00:00
|
|
|
}
|
2016-10-07 22:12:35 +00:00
|
|
|
document.onkeypress = function (e) {
|
2023-09-12 09:28:45 +00:00
|
|
|
ipcRenderer.send('keypress', e.key, e.code, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey)
|
|
|
|
}
|
|
|
|
document.onkeyup = function (e) {
|
|
|
|
ipcRenderer.send('keyup', e.key, e.code, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey)
|
2016-10-07 22:12:35 +00:00
|
|
|
}
|
2016-10-07 21:44:35 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|