fix: touch bar functionality on BaseWindow (#43422)
* fix: touch bar functionality on BaseWindow Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * test: add test for BaseWindow.setTouchBar Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
parent
706d416284
commit
85bac873e7
6 changed files with 96 additions and 90 deletions
|
@ -1,5 +1,7 @@
|
||||||
import { EventEmitter } from 'events';
|
import { EventEmitter } from 'events';
|
||||||
import type { BaseWindow as TLWT } from 'electron/main';
|
import type { BaseWindow as TLWT } from 'electron/main';
|
||||||
|
import { TouchBar } from 'electron/main';
|
||||||
|
|
||||||
const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWindow: typeof TLWT };
|
const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWindow: typeof TLWT };
|
||||||
|
|
||||||
Object.setPrototypeOf(BaseWindow.prototype, EventEmitter.prototype);
|
Object.setPrototypeOf(BaseWindow.prototype, EventEmitter.prototype);
|
||||||
|
@ -15,6 +17,10 @@ BaseWindow.prototype._init = function (this: TLWT) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
BaseWindow.prototype.setTouchBar = function (touchBar) {
|
||||||
|
(TouchBar as any)._setOnWindow(touchBar, this);
|
||||||
|
};
|
||||||
|
|
||||||
// Properties
|
// Properties
|
||||||
|
|
||||||
Object.defineProperty(BaseWindow.prototype, 'autoHideMenuBar', {
|
Object.defineProperty(BaseWindow.prototype, 'autoHideMenuBar', {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { BaseWindow, WebContents, TouchBar, BrowserView } from 'electron/main';
|
import { BaseWindow, WebContents, BrowserView } from 'electron/main';
|
||||||
import type { BrowserWindow as BWT } from 'electron/main';
|
import type { BrowserWindow as BWT } from 'electron/main';
|
||||||
const { BrowserWindow } = process._linkedBinding('electron_browser_window') as { BrowserWindow: typeof BWT };
|
const { BrowserWindow } = process._linkedBinding('electron_browser_window') as { BrowserWindow: typeof BWT };
|
||||||
|
|
||||||
|
@ -100,10 +100,6 @@ BrowserWindow.fromBrowserView = (browserView: BrowserView) => {
|
||||||
return BrowserWindow.fromWebContents(browserView.webContents);
|
return BrowserWindow.fromWebContents(browserView.webContents);
|
||||||
};
|
};
|
||||||
|
|
||||||
BrowserWindow.prototype.setTouchBar = function (touchBar) {
|
|
||||||
(TouchBar as any)._setOnWindow(touchBar, this);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Forwarded to webContents:
|
// Forwarded to webContents:
|
||||||
|
|
||||||
BrowserWindow.prototype.loadURL = function (...args) {
|
BrowserWindow.prototype.loadURL = function (...args) {
|
||||||
|
|
|
@ -284,7 +284,7 @@ const escapeItemSymbol = Symbol('escape item');
|
||||||
|
|
||||||
class TouchBar extends EventEmitter implements Electron.TouchBar {
|
class TouchBar extends EventEmitter implements Electron.TouchBar {
|
||||||
// Bind a touch bar to a window
|
// Bind a touch bar to a window
|
||||||
static _setOnWindow (touchBar: TouchBar | Electron.TouchBarConstructorOptions['items'], window: Electron.BrowserWindow) {
|
static _setOnWindow (touchBar: TouchBar | Electron.TouchBarConstructorOptions['items'], window: Electron.BaseWindow) {
|
||||||
if (window._touchBar != null) {
|
if (window._touchBar != null) {
|
||||||
window._touchBar._removeFromWindow(window);
|
window._touchBar._removeFromWindow(window);
|
||||||
}
|
}
|
||||||
|
@ -383,7 +383,7 @@ class TouchBar extends EventEmitter implements Electron.TouchBar {
|
||||||
return this[escapeItemSymbol];
|
return this[escapeItemSymbol];
|
||||||
}
|
}
|
||||||
|
|
||||||
_addToWindow (window: Electron.BrowserWindow) {
|
_addToWindow (window: Electron.BaseWindow) {
|
||||||
const { id } = window;
|
const { id } = window;
|
||||||
|
|
||||||
// Already added to window
|
// Already added to window
|
||||||
|
@ -439,7 +439,7 @@ class TouchBar extends EventEmitter implements Electron.TouchBar {
|
||||||
escapeItemListener(this.escapeItem);
|
escapeItemListener(this.escapeItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
_removeFromWindow (window: Electron.BrowserWindow) {
|
_removeFromWindow (window: Electron.BaseWindow) {
|
||||||
const removeListeners = this.windowListeners.get(window.id);
|
const removeListeners = this.windowListeners.get(window.id);
|
||||||
if (removeListeners != null) removeListeners();
|
if (removeListeners != null) removeListeners();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1251,7 +1251,6 @@ void BaseWindow::BuildPrototype(v8::Isolate* isolate,
|
||||||
.SetMethod("setHiddenInMissionControl",
|
.SetMethod("setHiddenInMissionControl",
|
||||||
&BaseWindow::SetHiddenInMissionControl)
|
&BaseWindow::SetHiddenInMissionControl)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
.SetMethod("_setTouchBarItems", &BaseWindow::SetTouchBar)
|
.SetMethod("_setTouchBarItems", &BaseWindow::SetTouchBar)
|
||||||
.SetMethod("_refreshTouchBarItem", &BaseWindow::RefreshTouchBarItem)
|
.SetMethod("_refreshTouchBarItem", &BaseWindow::RefreshTouchBarItem)
|
||||||
.SetMethod("_setEscapeTouchBarItem", &BaseWindow::SetEscapeTouchBarItem)
|
.SetMethod("_setEscapeTouchBarItem", &BaseWindow::SetEscapeTouchBarItem)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import * as path from 'node:path';
|
import * as path from 'node:path';
|
||||||
import { BrowserWindow, TouchBar } from 'electron/main';
|
import { BaseWindow, BrowserWindow, TouchBar } from 'electron/main';
|
||||||
import { closeWindow } from './lib/window-helpers';
|
import { closeWindow } from './lib/window-helpers';
|
||||||
import { expect } from 'chai';
|
import { expect } from 'chai';
|
||||||
|
|
||||||
|
@ -47,17 +47,19 @@ describe('TouchBar module', () => {
|
||||||
}).to.throw('Cannot add a single instance of TouchBarItem multiple times in a TouchBar');
|
}).to.throw('Cannot add a single instance of TouchBarItem multiple times in a TouchBar');
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('BrowserWindow behavior', () => {
|
describe('Window behavior', () => {
|
||||||
let window: BrowserWindow;
|
for (const WindowType of [BrowserWindow, BaseWindow]) {
|
||||||
|
describe(`in ${WindowType.name}`, () => {
|
||||||
|
let window: BaseWindow | BrowserWindow;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
window = new BrowserWindow({ show: false });
|
window = new WindowType({ show: false });
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(async () => {
|
afterEach(async () => {
|
||||||
window.setTouchBar(null);
|
window.setTouchBar(null);
|
||||||
await closeWindow(window);
|
await closeWindow(window);
|
||||||
window = null as unknown as BrowserWindow;
|
window = null as unknown as BaseWindow | BrowserWindow;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('can be added to and removed from a window', () => {
|
it('can be added to and removed from a window', () => {
|
||||||
|
@ -125,4 +127,6 @@ describe('TouchBar module', () => {
|
||||||
window.emit('-touch-bar-interaction', {}, (button as any).id);
|
window.emit('-touch-bar-interaction', {}, (button as any).id);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
15
typings/internal-electron.d.ts
vendored
15
typings/internal-electron.d.ts
vendored
|
@ -29,22 +29,23 @@ declare namespace Electron {
|
||||||
|
|
||||||
interface BaseWindow {
|
interface BaseWindow {
|
||||||
_init(): void;
|
_init(): void;
|
||||||
}
|
|
||||||
|
|
||||||
interface BrowserWindow {
|
|
||||||
_init(): void;
|
|
||||||
_touchBar: Electron.TouchBar | null;
|
_touchBar: Electron.TouchBar | null;
|
||||||
_setTouchBarItems: (items: TouchBarItemType[]) => void;
|
_setTouchBarItems: (items: TouchBarItemType[]) => void;
|
||||||
_setEscapeTouchBarItem: (item: TouchBarItemType | {}) => void;
|
_setEscapeTouchBarItem: (item: TouchBarItemType | {}) => void;
|
||||||
_refreshTouchBarItem: (itemID: string) => void;
|
_refreshTouchBarItem: (itemID: string) => void;
|
||||||
|
on(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
||||||
|
removeListener(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BrowserWindow extends BaseWindow {
|
||||||
|
_init(): void;
|
||||||
_getWindowButtonVisibility: () => boolean;
|
_getWindowButtonVisibility: () => boolean;
|
||||||
_getAlwaysOnTopLevel: () => string;
|
_getAlwaysOnTopLevel: () => string;
|
||||||
devToolsWebContents: WebContents;
|
devToolsWebContents: WebContents;
|
||||||
frameName: string;
|
frameName: string;
|
||||||
|
_browserViews: BrowserView[];
|
||||||
on(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
on(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
||||||
removeListener(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
removeListener(event: '-touch-bar-interaction', listener: (event: Event, itemID: string, details: any) => void): this;
|
||||||
|
|
||||||
_browserViews: BrowserView[];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface BrowserView {
|
interface BrowserView {
|
||||||
|
@ -67,7 +68,7 @@ declare namespace Electron {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TouchBar {
|
interface TouchBar {
|
||||||
_removeFromWindow: (win: BrowserWindow) => void;
|
_removeFromWindow: (win: BaseWindow) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WebContents {
|
interface WebContents {
|
||||||
|
|
Loading…
Reference in a new issue