Skip to content

Commit

Permalink
fix: restored window.titleBarStyle
Browse files Browse the repository at this point in the history
Ref: #1733

Signed-off-by: Akos Kitta <[email protected]>
  • Loading branch information
Akos Kitta committed Feb 9, 2023
1 parent 65add68 commit 7b8538e
Show file tree
Hide file tree
Showing 9 changed files with 230 additions and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,8 @@ import { ValidateSketch } from './contributions/validate-sketch';
import { RenameCloudSketch } from './contributions/rename-cloud-sketch';
import { CreateFeatures } from './create/create-features';
import { NativeImageCache } from './native-image-cache';
import { rebindWindowPreferences } from '../electron-browser/theia/core/electron-window-preferences';
import { rebindCorePreferences } from './theia/core/core-preferences';

export default new ContainerModule((bind, unbind, isBound, rebind) => {
// Commands and toolbar items
Expand Down Expand Up @@ -1019,4 +1021,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
// manages native images for the electron menu icons
bind(NativeImageCache).toSelf().inSingletonScope();
bind(FrontendApplicationContribution).toService(NativeImageCache);
// enable `'window.titleBarStyle'` on all supported OSs
rebindWindowPreferences(bind, rebind);
// enable `'window.menuBarVisibility'` on all supported OSs
rebindCorePreferences(bind, rebind);
});
13 changes: 13 additions & 0 deletions arduino-ide-extension/src/browser/style/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,19 @@
background-color: var(--theia-titleBar-activeBackground);
}

#arduino-toolbar-panel {
background: var(--theia-titleBar-activeBackground);
color: var(--theia-titleBar-activeForeground);
display: flex;
min-height: var(--theia-private-menubar-height);
border-bottom: 1px solid var(--theia-titleBar-border);
}
#arduino-toolbar-panel:window-inactive,
#arduino-toolbar-panel:-moz-window-inactive {
background: var(--theia-titleBar-inactiveBackground);
color: var(--theia-titleBar-inactiveForeground);
}

#arduino-toolbar-container {
display: flex;
width: 100%;
Expand Down
61 changes: 58 additions & 3 deletions arduino-ide-extension/src/browser/theia/core/application-shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import {
SHELL_TABBAR_CONTEXT_MENU,
TabBar,
Widget,
Layout,
SplitPanel,
} from '@theia/core/lib/browser';
import {
ConnectionStatus,
Expand All @@ -17,17 +19,23 @@ import { MessageService } from '@theia/core/lib/common/message-service';
import { inject, injectable } from '@theia/core/shared/inversify';
import { ToolbarAwareTabBar } from './tab-bars';

interface WidgetOptions
extends Omit<TheiaApplicationShell.WidgetOptions, 'area'> {
area?: TheiaApplicationShell.Area | 'toolbar';
}

@injectable()
export class ApplicationShell extends TheiaApplicationShell {
@inject(MessageService)
private readonly messageService: MessageService;

@inject(ConnectionStatusService)
private readonly connectionStatusService: ConnectionStatusService;
private toolbarPanel: Panel;

override async addWidget(
widget: Widget,
options: Readonly<TheiaApplicationShell.WidgetOptions> = {}
options: Readonly<WidgetOptions> = {}
): Promise<void> {
// By default, Theia open a widget **next** to the currently active in the target area.
// Instead of this logic, we want to open the new widget after the last of the target area.
Expand All @@ -37,8 +45,12 @@ export class ApplicationShell extends TheiaApplicationShell {
);
return;
}
if (options.area === 'toolbar') {
this.toolbarPanel.addWidget(widget);
return;
}
const area = options.area || 'main';
let ref: Widget | undefined = options.ref;
const area: TheiaApplicationShell.Area = options.area || 'main';
if (!ref && (area === 'main' || area === 'bottom')) {
const tabBar = this.getTabBarFor(area);
if (tabBar) {
Expand All @@ -48,14 +60,57 @@ export class ApplicationShell extends TheiaApplicationShell {
}
}
}
return super.addWidget(widget, { ...options, ref });
return super.addWidget(widget, {
...(<TheiaApplicationShell.WidgetOptions>options),
ref,
});
}

override handleEvent(): boolean {
// NOOP, dragging has been disabled
return false;
}

protected override initializeShell(): void {
this.toolbarPanel = this.createToolbarPanel();
super.initializeShell();
}

private createToolbarPanel(): Panel {
const toolbarPanel = new Panel();
toolbarPanel.id = 'arduino-toolbar-panel';
toolbarPanel.show();
return toolbarPanel;
}

protected override createLayout(): Layout {
const bottomSplitLayout = this.createSplitLayout(
[this.mainPanel, this.bottomPanel],
[1, 0],
{ orientation: 'vertical', spacing: 0 }
);
const panelForBottomArea = new SplitPanel({ layout: bottomSplitLayout });
panelForBottomArea.id = 'theia-bottom-split-panel';

const leftRightSplitLayout = this.createSplitLayout(
[
this.leftPanelHandler.container,
panelForBottomArea,
this.rightPanelHandler.container,
],
[0, 1, 0],
{ orientation: 'horizontal', spacing: 0 }
);
const panelForSideAreas = new SplitPanel({ layout: leftRightSplitLayout });
panelForSideAreas.id = 'theia-left-right-split-panel';

return this.createBoxLayout(
[this.topPanel, this.toolbarPanel, panelForSideAreas, this.statusBar],
[0, 0, 1, 0],
{ direction: 'top-to-bottom', spacing: 0 }
);
}

// Avoid hiding top panel as we use it for arduino toolbar
protected override createTopPanel(): Panel {
const topPanel = super.createTopPanel();
Expand Down
34 changes: 34 additions & 0 deletions arduino-ide-extension/src/browser/theia/core/core-preferences.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import {
CorePreferenceContribution,
CorePreferences,
corePreferenceSchema,
createCorePreferences,
} from '@theia/core/lib/browser/core-preferences';
import { PreferenceContribution } from '@theia/core/lib/browser/preferences/preference-contribution';
import { PreferenceService } from '@theia/core/lib/browser/preferences/preference-service';
import { deepClone } from '@theia/core/lib/common/objects';
import { PreferenceSchema } from '@theia/core/lib/common/preferences/preference-schema';
import { interfaces } from '@theia/core/shared/inversify';

const copy = deepClone(corePreferenceSchema);
copy.properties['window.menuBarVisibility'].included = true; // https://github.com/arduino/arduino-ide/issues/1733#issuecomment-1424186676
const corePreferencesSchema: PreferenceSchema = copy;

export function rebindCorePreferences(
bind: interfaces.Bind,
rebind: interfaces.Rebind
): void {
rebind(CorePreferences)
.toDynamicValue((ctx) => {
const preferences =
ctx.container.get<PreferenceService>(PreferenceService);
const contribution = ctx.container.get<PreferenceContribution>(
CorePreferenceContribution
);
return createCorePreferences(preferences, contribution.schema);
})
.inSingletonScope();
rebind(CorePreferenceContribution).toConstantValue({
schema: corePreferencesSchema,
});
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export class ArduinoToolbarContainer extends Widget {
this.toolbars = toolbars;
}

override onAfterAttach(msg: Message) {
override onAfterAttach(msg: Message): void {
super.onAfterAttach(msg);
for (const toolbar of this.toolbars) {
Widget.attach(toolbar, this.node);
}
Expand Down Expand Up @@ -56,9 +57,11 @@ export class ArduinoToolbarContribution
);
}

onStart(app: FrontendApplication) {
app.shell.addWidget(this.arduinoToolbarContainer, {
area: 'top',
});
onStart(app: FrontendApplication): void {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const options = <any>{
area: 'toolbar',
};
app.shell.addWidget(this.arduinoToolbarContainer, options);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
CommandMenuNode,
CompoundMenuNode,
CompoundMenuNodeRole,
MAIN_MENU_BAR,
MenuNode,
MenuPath,
} from '@theia/core/lib/common/menu';
Expand All @@ -28,7 +27,7 @@ export class ElectronMainMenuFactory extends TheiaElectronMainMenuFactory {
@inject(FrontendApplicationStateService)
private readonly appStateService: FrontendApplicationStateService;

private appReady = false;
appReady = false;
private updateWhenReady = false;

override postConstruct(): void {
Expand All @@ -41,18 +40,9 @@ export class ElectronMainMenuFactory extends TheiaElectronMainMenuFactory {
});
}

override createElectronMenuBar(): Electron.Menu {
override createElectronMenuBar(): Electron.Menu | null {
this._toggledCommands.clear(); // https://github.com/eclipse-theia/theia/issues/8977
const menuModel = this.menuProvider.getMenu(MAIN_MENU_BAR);
const template = this.fillMenuTemplate([], menuModel, [], {
rootMenuPath: MAIN_MENU_BAR,
});
if (isOSX) {
template.unshift(this.createOSXMenu());
}
const menu = remote.Menu.buildFromTemplate(this.escapeAmpersand(template));
this._menu = menu;
return menu;
return super.createElectronMenuBar();
}

override async setMenuBar(): Promise<void> {
Expand All @@ -63,13 +53,7 @@ export class ElectronMainMenuFactory extends TheiaElectronMainMenuFactory {
this.updateWhenReady = true;
return;
}
await this.preferencesService.ready;
const createdMenuBar = this.createElectronMenuBar();
if (isOSX) {
remote.Menu.setApplicationMenu(createdMenuBar);
} else {
remote.getCurrentWindow().setMenu(createdMenuBar);
}
return super.setMenuBar();
}

override createElectronContextMenu(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,53 +1,61 @@
import { inject, injectable } from '@theia/core/shared/inversify';
import {
getCurrentWebContents,
getCurrentWindow,
Menu,
} from '@theia/core/electron-shared/@electron/remote';
import {
BrowserWindow,
Menu as ElectronMenu,
} from '@theia/core/electron-shared/electron';
import { FrontendApplication } from '@theia/core/lib/browser/frontend-application';
import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding';
import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope';
import { CommandRegistry } from '@theia/core/lib/common/command';
import { MenuModelRegistry } from '@theia/core/lib/common/menu';
import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding';
import { isOSX } from '@theia/core/lib/common/os';
import {
ElectronMenuContribution as TheiaElectronMenuContribution,
ElectronCommands,
ElectronMenuContribution as TheiaElectronMenuContribution,
} from '@theia/core/lib/electron-browser/menu/electron-menu-contribution';
import { MainMenuManager } from '../../../common/main-menu-manager';
import { FrontendApplicationStateService } from '@theia/core/lib/browser/frontend-application-state';
import { FrontendApplication } from '@theia/core/lib/browser/frontend-application';
import { ZoomLevel } from '@theia/core/lib/electron-browser/window/electron-window-preferences';
import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope';
import {
getCurrentWindow,
getCurrentWebContents,
} from '@theia/core/electron-shared/@electron/remote';
import { injectable } from '@theia/core/shared/inversify';
import { MainMenuManager } from '../../../common/main-menu-manager';

@injectable()
export class ElectronMenuContribution
extends TheiaElectronMenuContribution
implements MainMenuManager
{
@inject(FrontendApplicationStateService)
private readonly appStateService: FrontendApplicationStateService;

// private appReady = false;
// private updateWhenReady = false;
private app: FrontendApplication;

override onStart(app: FrontendApplication): void {
this.app = app;
super.onStart(app);
this.appStateService.reachedState('ready').then(() => {
// this.appReady = true;
// if (this.updateWhenReady) {
// this.update();
// }
});
}

protected override hideTopPanel(): void {
// NOOP
// We reuse the `div` for the Arduino toolbar.
update(): void {
// no menu updates before `onStart`
if (!this.app) {
return;
}
this.setMenu(this.app);
}

update(): void {
// if (this.appReady) {
(this as any).setMenu();
// } else {
// this.updateWhenReady = true;
// }
protected override setMenu(
app: FrontendApplication,
electronMenu: ElectronMenu | null = this.factory.createElectronMenuBar(),
electronWindow: BrowserWindow = getCurrentWindow()
): void {
this.hideTopPanel(app); // Updates the top panel's visibility on all operating systems.
if (this.titleBarStyle === 'custom' && !this.menuBar) {
this.createCustomTitleBar(app, electronWindow);
}
if (isOSX) {
Menu.setApplicationMenu(electronMenu);
} else {
// Unix/Windows: Set the per-window menus
electronWindow.setMenu(electronMenu);
}
}

override registerCommands(registry: CommandRegistry): void {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import { PreferenceContribution } from '@theia/core/lib/browser/preferences/preference-contribution';
import { PreferenceService } from '@theia/core/lib/browser/preferences/preference-service';
import { deepClone } from '@theia/core/lib/common/objects';
import { PreferenceSchema } from '@theia/core/lib/common/preferences/preference-schema';
import {
createElectronWindowPreferences,
ElectronWindowPreferenceContribution,
ElectronWindowPreferences,
electronWindowPreferencesSchema as theiaElectronWindowPreferencesSchema,
} from '@theia/core/lib/electron-browser/window/electron-window-preferences';
import { interfaces } from '@theia/core/shared/inversify';

const copy = deepClone(theiaElectronWindowPreferencesSchema);
copy.properties['window.titleBarStyle'].included = true; // https://github.com/eclipse-theia/theia/pull/10044#issuecomment-1423841453
copy.properties['window.titleBarStyle'].default = 'custom';
const electronWindowPreferencesSchema: PreferenceSchema = copy;

export function rebindWindowPreferences(
bind: interfaces.Bind,
rebind: interfaces.Rebind
): void {
rebind(ElectronWindowPreferences)
.toDynamicValue((ctx) => {
const preferences =
ctx.container.get<PreferenceService>(PreferenceService);
const contribution = ctx.container.get<PreferenceContribution>(
ElectronWindowPreferenceContribution
);
return createElectronWindowPreferences(preferences, contribution.schema);
})
.inSingletonScope();
rebind(ElectronWindowPreferenceContribution).toConstantValue({
schema: electronWindowPreferencesSchema,
});
}
Loading

0 comments on commit 7b8538e

Please sign in to comment.