Skip to content

Commit 479628b

Browse files
author
Akos Kitta
committed
fix: enabled window.titleBarStyle on macOS
Signed-off-by: Akos Kitta <[email protected]>
1 parent 65add68 commit 479628b

File tree

3 files changed

+44
-19
lines changed

3 files changed

+44
-19
lines changed

arduino-ide-extension/src/browser/arduino-ide-frontend-module.ts

+3
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ import { ValidateSketch } from './contributions/validate-sketch';
348348
import { RenameCloudSketch } from './contributions/rename-cloud-sketch';
349349
import { CreateFeatures } from './create/create-features';
350350
import { NativeImageCache } from './native-image-cache';
351+
import { rebindWindowPreferences } from '../electron-browser/theia/core/electron-window-preferences';
351352

352353
export default new ContainerModule((bind, unbind, isBound, rebind) => {
353354
// Commands and toolbar items
@@ -1019,4 +1020,6 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
10191020
// manages native images for the electron menu icons
10201021
bind(NativeImageCache).toSelf().inSingletonScope();
10211022
bind(FrontendApplicationContribution).toService(NativeImageCache);
1023+
// enable `'window.titleBarStyle'` on all supported OSs
1024+
rebindWindowPreferences(bind, rebind);
10221025
});

arduino-ide-extension/src/electron-browser/theia/core/electron-menu-contribution.ts

+7-19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { inject, injectable } from '@theia/core/shared/inversify';
1+
import { injectable } from '@theia/core/shared/inversify';
22
import { CommandRegistry } from '@theia/core/lib/common/command';
33
import { MenuModelRegistry } from '@theia/core/lib/common/menu';
44
import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding';
@@ -7,7 +7,6 @@ import {
77
ElectronCommands,
88
} from '@theia/core/lib/electron-browser/menu/electron-menu-contribution';
99
import { MainMenuManager } from '../../../common/main-menu-manager';
10-
import { FrontendApplicationStateService } from '@theia/core/lib/browser/frontend-application-state';
1110
import { FrontendApplication } from '@theia/core/lib/browser/frontend-application';
1211
import { ZoomLevel } from '@theia/core/lib/electron-browser/window/electron-window-preferences';
1312
import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope';
@@ -21,33 +20,22 @@ export class ElectronMenuContribution
2120
extends TheiaElectronMenuContribution
2221
implements MainMenuManager
2322
{
24-
@inject(FrontendApplicationStateService)
25-
private readonly appStateService: FrontendApplicationStateService;
26-
27-
// private appReady = false;
28-
// private updateWhenReady = false;
23+
private app: FrontendApplication;
2924

3025
override onStart(app: FrontendApplication): void {
26+
this.app = app;
3127
super.onStart(app);
32-
this.appStateService.reachedState('ready').then(() => {
33-
// this.appReady = true;
34-
// if (this.updateWhenReady) {
35-
// this.update();
36-
// }
37-
});
3828
}
3929

4030
protected override hideTopPanel(): void {
4131
// NOOP
42-
// We reuse the `div` for the Arduino toolbar.
32+
// IDE2 reuses the `div` for the toolbar.
4333
}
4434

4535
update(): void {
46-
// if (this.appReady) {
47-
(this as any).setMenu();
48-
// } else {
49-
// this.updateWhenReady = true;
50-
// }
36+
if (this.app) {
37+
this.setMenu(this.app);
38+
}
5139
}
5240

5341
override registerCommands(registry: CommandRegistry): void {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { PreferenceContribution } from '@theia/core/lib/browser/preferences/preference-contribution';
2+
import { PreferenceService } from '@theia/core/lib/browser/preferences/preference-service';
3+
import { deepClone } from '@theia/core/lib/common/objects';
4+
import { PreferenceSchema } from '@theia/core/lib/common/preferences/preference-schema';
5+
import {
6+
createElectronWindowPreferences,
7+
ElectronWindowPreferenceContribution,
8+
ElectronWindowPreferences,
9+
electronWindowPreferencesSchema as theiaElectronWindowPreferencesSchema,
10+
} from '@theia/core/lib/electron-browser/window/electron-window-preferences';
11+
import { interfaces } from '@theia/core/shared/inversify';
12+
13+
const copy = deepClone(theiaElectronWindowPreferencesSchema);
14+
copy.properties['window.titleBarStyle'].included = true; // https://github.com/eclipse-theia/theia/pull/10044#issuecomment-1423841453
15+
const electronWindowPreferencesSchema: PreferenceSchema = copy;
16+
17+
export function rebindWindowPreferences(
18+
bind: interfaces.Bind,
19+
rebind: interfaces.Rebind
20+
): void {
21+
rebind(ElectronWindowPreferences)
22+
.toDynamicValue((ctx) => {
23+
const preferences =
24+
ctx.container.get<PreferenceService>(PreferenceService);
25+
const contribution = ctx.container.get<PreferenceContribution>(
26+
ElectronWindowPreferenceContribution
27+
);
28+
return createElectronWindowPreferences(preferences, contribution.schema);
29+
})
30+
.inSingletonScope();
31+
rebind(ElectronWindowPreferenceContribution).toConstantValue({
32+
schema: electronWindowPreferencesSchema,
33+
});
34+
}

0 commit comments

Comments
 (0)