Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/sessions/browser/menus.ts
13389 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { MenuId } from '../../platform/actions/common/actions.js';
7
8
/**
9
* Menu IDs for the Agent Sessions workbench layout.
10
*/
11
export const Menus = {
12
ChatBarTitle: new MenuId('ChatBarTitle'),
13
CommandCenter: new MenuId('SessionsCommandCenter'),
14
CommandCenterCenter: new MenuId('SessionsCommandCenterCenter'),
15
TitleBarContext: new MenuId('SessionsTitleBarContext'),
16
TitleBarLeftLayout: new MenuId('SessionsTitleBarLeftLayout'),
17
TitleBarSessionTitle: new MenuId('SessionsTitleBarSessionTitle'),
18
TitleBarSessionMenu: new MenuId('SessionsTitleBarSessionMenu'),
19
TitleBarRightLayout: new MenuId('SessionsTitleBarRightLayout'),
20
MobileTitleBarCenter: new MenuId('SessionsMobileTitleBarCenter'),
21
PanelTitle: new MenuId('SessionsPanelTitle'),
22
SidebarTitle: new MenuId('SessionsSidebarTitle'),
23
SidebarSessionsHeader: new MenuId('SessionsSidebarSessionsHeader'),
24
AuxiliaryBarTitle: new MenuId('SessionsAuxiliaryBarTitle'),
25
SidebarFooter: new MenuId('SessionsSidebarFooter'),
26
SidebarCustomizations: new MenuId('SessionsSidebarCustomizations'),
27
AccountMenu: new MenuId('SessionsAccountMenu'),
28
AgentFeedbackEditorContent: new MenuId('AgentFeedbackEditorContent'),
29
30
NewSessionConfig: new MenuId('NewSessions.SessionConfigMenu'),
31
NewSessionControl: new MenuId('NewSessions.SessionControlMenu'),
32
NewSessionRepositoryConfig: new MenuId('NewSessions.RepositoryConfigMenu'),
33
SessionWorkspaceManage: new MenuId('Sessions.SessionWorkspaceManage'),
34
} as const;
35
36