Wired quit keybinding and fullscreen toggle binding
This commit is contained in:
parent
0eed524575
commit
3ba44c43d8
@ -65,6 +65,8 @@ const loadProcessSignalHandlers = () => {
|
||||
}
|
||||
|
||||
const loadHandlers = () => {
|
||||
ipcMain.handle('quit', (eve) => app.quit());
|
||||
ipcMain.handle('toggleFullScreen', (eve) => { window.setFullScreen(!window.isFullScreen()); });
|
||||
ipcMain.handle('getLspConfigData', (eve) => newton.fs.getLspConfigData());
|
||||
ipcMain.handle('getFileContents', (eve, path) => newton.fs.getFileContents(path));
|
||||
ipcMain.handle('openFiles', (eve, startPath) => newton.fs.openFiles(startPath));
|
||||
@ -109,4 +111,3 @@ app.on('window-all-closed', () => {
|
||||
app.quit()
|
||||
};
|
||||
});
|
||||
|
||||
|
@ -9,6 +9,8 @@ contextBridge.exposeInMainWorld('electron', {
|
||||
|
||||
contextBridge.exposeInMainWorld('main', {
|
||||
onMenuActions: (callback) => ipcRenderer.on('menu-actions', (_event, action) => callback(action)),
|
||||
quit: () => ipcRenderer.invoke("quit"),
|
||||
toggleFullScreen: () => ipcRenderer.invoke("toggleFullScreen"),
|
||||
});
|
||||
|
||||
contextBridge.exposeInMainWorld('fs', {
|
||||
|
@ -1,5 +1,13 @@
|
||||
export const Keybindings: Array<{}> = [
|
||||
{
|
||||
name: "quit",
|
||||
bindKey: {win: "Ctrl-q", mac: "Ctrl-q"},
|
||||
readOnly: false
|
||||
}, {
|
||||
name: "toggleFullScreen",
|
||||
bindKey: {win: "F11", mac: "F11"},
|
||||
readOnly: false
|
||||
}, {
|
||||
name: "showSettingsMenu",
|
||||
bindKey: {win: "Ctrl-Shift-m", mac: "Ctrl-Shift-m"},
|
||||
readOnly: false
|
||||
|
@ -54,6 +54,14 @@ export class NewtonEditorBase {
|
||||
this.editor.session.destroy();
|
||||
}
|
||||
|
||||
protected quit() {
|
||||
window.main.quit();
|
||||
}
|
||||
|
||||
protected toggleFullScreen() {
|
||||
window.main.toggleFullScreen();
|
||||
}
|
||||
|
||||
protected openFiles() {
|
||||
let startDir = "";
|
||||
if (this.activeFile) {
|
||||
|
@ -20,6 +20,8 @@ declare global {
|
||||
},
|
||||
main: {
|
||||
onMenuActions: (arg0: any) => Promise<string>,
|
||||
quit: any,
|
||||
toggleFullScreen: any,
|
||||
},
|
||||
fs: {
|
||||
getLspConfigData: () => Promise<string>,
|
||||
|
Loading…
Reference in New Issue
Block a user