no message

This commit is contained in:
2024-03-19 02:24:02 +03:00
parent 05097bc22e
commit eaeaee869b
3 changed files with 6 additions and 12 deletions

10
.idea/workspace.xml generated
View File

@@ -7,14 +7,8 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment=""> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/ProjectForm.form" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/ProjectForm.form" afterDir="false" />
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/ProjectForm.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/ProjectForm.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Common/GlobalProperties.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Common/GlobalProperties.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Common/UI/Menus_2023/ExpandCollapseButton.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Common/UI/Menus_2023/ExpandCollapseButton.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Common/UI/Menus_2023/FileMenuBar/FileMenuBar.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Common/UI/Menus_2023/FileMenuBar/FileMenuBar.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Interface/FileWindow.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Interface/FileWindow.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/FileForm.form" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/FileForm.form" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/FileForm.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/UI/Main/FileForm.java" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@@ -53,7 +53,7 @@
</properties> </properties>
<border type="none"/> <border type="none"/>
<children> <children>
<grid id="b29f8" binding="filePanel" layout-manager="BorderLayout" hgap="0" vgap="0"> <grid id="b29f8" binding="fileBackground" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints> <constraints>
<splitpane position="left"/> <splitpane position="left"/>
</constraints> </constraints>

View File

@@ -37,7 +37,7 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
private TreeForm inlineForm2; private TreeForm inlineForm2;
private Viewer logText; private Viewer logText;
private JPanel includesPanel; private JPanel includesPanel;
private JPanel filePanel; private JPanel fileBackground;
private JPanel arraysFormPanel; private JPanel arraysFormPanel;
private JPanel functionsFormPanel; private JPanel functionsFormPanel;
private JPanel analysisFormPanel; private JPanel analysisFormPanel;
@@ -151,7 +151,7 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
//filesTabs.setTabComponentAt(0, //filesTabs.setTabComponentAt(0,
// new TabToolBar(Current.getFile().name, PassCode_2021.CloseCurrentFile)); // new TabToolBar(Current.getFile().name, PassCode_2021.CloseCurrentFile));
// projectTabs.setTitleAt(0, "Файл: " + Current.getFile().name); // projectTabs.setTitleAt(0, "Файл: " + Current.getFile().name);
filePanel.add((Current.getFile().form = new FileForm(Current.getFile())).getContent()); fileBackground.add((Current.getFile().form = new FileForm(Current.getFile())).getContent());
projectTabs.setTabComponentAt(0, projectTabs.setTabComponentAt(0,
new TabToolBar("Файл: " + Current.getFile().name, PassCode_2021.CloseCurrentFile) { new TabToolBar("Файл: " + Current.getFile().name, PassCode_2021.CloseCurrentFile) {
@Override @Override
@@ -169,7 +169,7 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
projectTabs.setSelectedIndex(0); projectTabs.setSelectedIndex(0);
} }
}); });
UI.Clear(filePanel); UI.Clear(fileBackground);
//filesTabs.removeAll(); //filesTabs.removeAll();
} }
@Override @Override