упорядочил папки с кодом.

This commit is contained in:
2023-11-19 01:53:56 +03:00
parent 4883b4af51
commit 44c6daffa3
596 changed files with 2140 additions and 1569 deletions

View File

@@ -0,0 +1,37 @@
package Common.UI.Windows.Main;
import Common.UI.Menus_2023.VisualiserMenuBar;
import Common.Passes.PassCode_2021;
import Common.Passes.Pass_2021;
import Common.UI.Windows.Interface.CommentInterface;
import javax.swing.*;
public class CommentFields implements CommentInterface {
public JSplitPane SC26;
private JPanel content;
private JToolBar commentTools;
private JToolBar commentAdditionTools;
private JPanel editorPanel;
private JPanel additionPanel;
public CommentFields() {
LoadSplitters();
commentTools.add(Pass_2021.passes.get(PassCode_2021.SaveBugReportComment).createButton());
commentAdditionTools.add(Pass_2021.passes.get(PassCode_2021.AppendBugReportComment).createButton());
}
@Override
public void setEditorScroll(JScrollPane scroll_in) {
editorPanel.add(scroll_in);
}
@Override
public void setAdditionScroll(JScrollPane scroll_in) {
additionPanel.add(scroll_in);
}
@Override
public JPanel getContent() {
return content;
}
private void createUIComponents() {
// TODO: place custom component creation code here
commentTools = new VisualiserMenuBar();
commentAdditionTools = new VisualiserMenuBar();
}
}