forked from microsoft/copilot-for-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUiConstants.java
More file actions
44 lines (36 loc) · 2.38 KB
/
Copy pathUiConstants.java
File metadata and controls
44 lines (36 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package com.microsoft.copilot.eclipse.ui;
/**
* A class to hold all the public constants used in the GitHub Copilot UI.
*/
public class UiConstants {
public static final String WORKBENCH_TEXTEDITOR = "org.eclipse.ui.workbench.texteditor";
public static final String INSERT_ICON = "icons/full/elcl16/insert_template.png";
private UiConstants() {
// prevent instantiation
}
public static final int TOOLBAR_ICON_WIDTH_IN_PIEXL = 16;
public static final int TOOLBAR_ICON_HEIGHT_IN_PIEXL = 16;
public static final int BTN_PADDING = 3;
/**
* The URL constants for the Copilot menu.
*/
public static final String OPEN_URL_COMMAND_ID = "com.microsoft.copilot.eclipse.commands.openUrl";
public static final String OPEN_URL_PARAMETER_NAME = "com.microsoft.copilot.eclipse.commands.openUrl.url";
public static final String OPEN_CHAT_VIEW_COMMAND_ID = "com.microsoft.copilot.eclipse.commands.openChatView";
public static final String OPEN_QUICK_START_COMMAND_ID = "com.microsoft.copilot.eclipse.commands.openQuickStart";
public static final String OPEN_WHATS_NEW_COMMAND_ID = "com.microsoft.copilot.eclipse.commands.showWhatIsNew";
public static final String COPILOT_FEEDBACK_FORUM_URL = "https://aka.ms/copiloteclipse-feedback";
public static final String COPILOT_UPGRADE_PLAN_URL = "https://aka.ms/github-copilot-upgrade-plan";
public static final String MANAGE_COPILOT_URL = "https://aka.ms/github-copilot-settings";
public static final String MANAGE_COPILOT_OVERAGE_URL = "https://aka.ms/github-copilot-manage-overage";
public static final String OPEN_CHAT_VIEW_INPUT_VALUE =
"com.microsoft.copilot.eclipse.commands.openChatView.inputValue";
public static final String OPEN_CHAT_VIEW_AUTO_SEND = "com.microsoft.copilot.eclipse.commands.openChatView.autoSend";
public static final String OPEN_CHAT_VIEW_MODE = "com.microsoft.copilot.eclipse.commands.openChatView.mode";
public static final String GITHUB_COPILOT_CODING_AGENT_SLUG = "github-copilot-coding-agent";
public static final String GITHUB_COPILOT_CODING_AGENT_LEARN_MORE_URL = "https://aka.ms/learn-copilot-coding-agent";
public static final String TERMINAL_DEPENDENCY_GUIDE_URL = "https://aka.ms/terminal-dependency-guide";
public static final String COPILOT_RATE_LIMIT_INFO_URL = "https://aka.ms/github-copilot-rate-limit-error";
}