2017-07-25 14:52:57 -07:00
|
|
|
package org.nwapw.abacus.window;
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public class Window extends JFrame {
|
2017-07-25 21:13:18 -07:00
|
|
|
|
2017-07-25 14:52:57 -07:00
|
|
|
private String history;
|
|
|
|
private String lastOutput;
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
private JPanel outputPanel;
|
|
|
|
private JTextArea lastOutputArea;
|
|
|
|
private JTextArea historyArea;
|
|
|
|
private JScrollPane historyAreaScroll;
|
|
|
|
|
|
|
|
private JPanel inputPanel;
|
|
|
|
private JTextField inputField;
|
|
|
|
private JButton inputEnterButton;
|
|
|
|
|
|
|
|
private JPanel sidePanel;
|
|
|
|
private JPanel numberSystemPanel;
|
|
|
|
private JComboBox<String> numberSystemList;
|
|
|
|
private JButton functionSelectButton;
|
|
|
|
private JPanel functionSelectPanel;
|
|
|
|
private JComboBox<String> functionList;
|
|
|
|
|
|
|
|
public Window() {
|
2017-07-25 14:52:57 -07:00
|
|
|
super();
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
|
|
|
|
history = "";
|
|
|
|
lastOutput = "";
|
|
|
|
|
|
|
|
setSize(640, 480);
|
|
|
|
|
|
|
|
inputField = new JTextField();
|
|
|
|
inputEnterButton = new JButton("Calculate");
|
|
|
|
|
|
|
|
inputPanel = new JPanel();
|
|
|
|
inputPanel.setLayout(new BorderLayout());
|
2017-07-25 22:08:12 -07:00
|
|
|
inputPanel.add(inputField, BorderLayout.CENTER);
|
|
|
|
inputPanel.add(inputEnterButton, BorderLayout.EAST);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
historyArea = new JTextArea(history);
|
|
|
|
historyAreaScroll = new JScrollPane(historyArea);
|
|
|
|
lastOutputArea = new JTextArea(lastOutput);
|
|
|
|
lastOutputArea.setEditable(false);
|
|
|
|
lastOutputArea.setText(":)");
|
|
|
|
|
|
|
|
outputPanel = new JPanel();
|
|
|
|
outputPanel.setLayout(new BorderLayout());
|
2017-07-25 22:08:12 -07:00
|
|
|
outputPanel.add(historyAreaScroll, BorderLayout.CENTER);
|
|
|
|
outputPanel.add(lastOutputArea, BorderLayout.SOUTH);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
numberSystemList = new JComboBox<>();
|
|
|
|
|
|
|
|
numberSystemPanel = new JPanel();
|
|
|
|
numberSystemPanel.setLayout(new BorderLayout());
|
2017-07-25 22:08:12 -07:00
|
|
|
numberSystemPanel.add(new JLabel("Number Type:"), BorderLayout.NORTH);
|
|
|
|
numberSystemPanel.add(numberSystemList, BorderLayout.CENTER);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
functionList = new JComboBox<>();
|
|
|
|
functionSelectButton = new JButton("Select");
|
|
|
|
|
|
|
|
functionSelectPanel = new JPanel();
|
|
|
|
functionSelectPanel.setLayout(new BorderLayout());
|
2017-07-25 22:08:12 -07:00
|
|
|
functionSelectPanel.add(new JLabel("Functions:"), BorderLayout.NORTH);
|
|
|
|
functionSelectPanel.add(functionList, BorderLayout.CENTER);
|
|
|
|
functionSelectPanel.add(functionSelectButton, BorderLayout.SOUTH);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
sidePanel = new JPanel();
|
|
|
|
sidePanel.setLayout(new BorderLayout());
|
2017-07-25 22:08:12 -07:00
|
|
|
sidePanel.add(numberSystemPanel, BorderLayout.NORTH);
|
|
|
|
sidePanel.add(functionSelectPanel, BorderLayout.SOUTH);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
add(outputPanel, BorderLayout.CENTER);
|
|
|
|
add(sidePanel, BorderLayout.EAST);
|
|
|
|
add(inputPanel, BorderLayout.SOUTH);
|
2017-07-25 14:52:57 -07:00
|
|
|
}
|
|
|
|
}
|