1
- import { injectable } from '@theia/core/shared/inversify' ;
1
+ import {
2
+ getCurrentWebContents ,
3
+ getCurrentWindow ,
4
+ Menu ,
5
+ } from '@theia/core/electron-shared/@electron/remote' ;
6
+ import {
7
+ BrowserWindow ,
8
+ Menu as ElectronMenu ,
9
+ } from '@theia/core/electron-shared/electron' ;
10
+ import { FrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
11
+ import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding' ;
12
+ import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope' ;
2
13
import { CommandRegistry } from '@theia/core/lib/common/command' ;
3
14
import { MenuModelRegistry } from '@theia/core/lib/common/menu' ;
4
- import { KeybindingRegistry } from '@theia/core/lib/browser/keybinding ' ;
15
+ import { isOSX } from '@theia/core/lib/common/os ' ;
5
16
import {
6
- ElectronMenuContribution as TheiaElectronMenuContribution ,
7
17
ElectronCommands ,
18
+ ElectronMenuContribution as TheiaElectronMenuContribution ,
8
19
} from '@theia/core/lib/electron-browser/menu/electron-menu-contribution' ;
9
- import { MainMenuManager } from '../../../common/main-menu-manager' ;
10
- import { FrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
11
20
import { ZoomLevel } from '@theia/core/lib/electron-browser/window/electron-window-preferences' ;
12
- import { PreferenceScope } from '@theia/core/lib/browser/preferences/preference-scope' ;
13
- import {
14
- getCurrentWindow ,
15
- getCurrentWebContents ,
16
- } from '@theia/core/electron-shared/@electron/remote' ;
21
+ import { injectable } from '@theia/core/shared/inversify' ;
22
+ import { MainMenuManager } from '../../../common/main-menu-manager' ;
17
23
18
24
@injectable ( )
19
25
export class ElectronMenuContribution
@@ -27,14 +33,28 @@ export class ElectronMenuContribution
27
33
super . onStart ( app ) ;
28
34
}
29
35
30
- protected override hideTopPanel ( ) : void {
31
- // NOOP
32
- // IDE2 reuses the `div` for the toolbar.
36
+ update ( ) : void {
37
+ // no menu updates before `onStart`
38
+ if ( ! this . app ) {
39
+ return ;
40
+ }
41
+ this . setMenu ( this . app ) ;
33
42
}
34
43
35
- update ( ) : void {
36
- if ( this . app ) {
37
- this . setMenu ( this . app ) ;
44
+ protected override setMenu (
45
+ app : FrontendApplication ,
46
+ electronMenu : ElectronMenu | null = this . factory . createElectronMenuBar ( ) ,
47
+ electronWindow : BrowserWindow = getCurrentWindow ( )
48
+ ) : void {
49
+ this . hideTopPanel ( app ) ; // Updates the top panel's visibility on all operating systems.
50
+ if ( this . titleBarStyle === 'custom' && ! this . menuBar ) {
51
+ this . createCustomTitleBar ( app , electronWindow ) ;
52
+ }
53
+ if ( isOSX ) {
54
+ Menu . setApplicationMenu ( electronMenu ) ;
55
+ } else {
56
+ // Unix/Windows: Set the per-window menus
57
+ electronWindow . setMenu ( electronMenu ) ;
38
58
}
39
59
}
40
60
0 commit comments