промежуточный. Перенос отладки текущего проекта к его вкладкам.

This commit is contained in:
2023-10-11 01:31:38 +03:00
parent 7a1d5211ae
commit 08e3c87b78
13 changed files with 525 additions and 11 deletions

View File

@@ -77,6 +77,7 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
//-
filesForm.Show();
InstallVersionsPanel();
InstallDebugPanel();
ShowAllAnalyses();
ShowProjectView();
SwitchScreen(Global.db.settings.get(SettingName.SmallScreen).toBoolean());
@@ -285,6 +286,12 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
UI.getVersionsWindow().getContent(),
"Версии", 5);
}
private void InstallDebugPanel(){
projectTabs.insertTab("",
Utils.getIcon("/icons/Command.png"),
UI.getDebugWindow().getContent(),
"Компиляция и запуск", 6);
}
@Override
public void FocusVersions() {
projectTabs.setSelectedIndex(5);