2017-07-25 14:52:57 -07:00
|
|
|
package org.nwapw.abacus.window;
|
|
|
|
|
2017-07-26 13:31:05 -07:00
|
|
|
import org.nwapw.abacus.plugin.PluginManager;
|
|
|
|
import org.nwapw.abacus.tree.NumberReducer;
|
|
|
|
import org.nwapw.abacus.tree.TreeNode;
|
|
|
|
|
2017-07-25 14:52:57 -07:00
|
|
|
import javax.swing.*;
|
|
|
|
import java.awt.*;
|
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The main UI window for the calculator.
|
|
|
|
*/
|
2017-07-25 14:52:57 -07:00
|
|
|
public class Window extends JFrame {
|
2017-07-25 21:13:18 -07:00
|
|
|
|
2017-07-26 13:31:05 -07:00
|
|
|
private static final String CALC_STRING = "Calculate";
|
|
|
|
private static final String SELECT_STRING = "Select";
|
|
|
|
private static final String SYNTAX_ERR_STRING = "Syntax Error";
|
|
|
|
private static final String NUMBER_SYSTEM_LABEL = "Number Type:";
|
|
|
|
private static final String FUNCTION_LABEL = "Functions:";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The plugin manager used to retrieve functions.
|
|
|
|
*/
|
|
|
|
private PluginManager manager;
|
|
|
|
/**
|
|
|
|
* The reducer used to evaluate the tree.
|
|
|
|
*/
|
|
|
|
private NumberReducer reducer;
|
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* A collection of outputs from the calculator.
|
|
|
|
*/
|
2017-07-25 14:52:57 -07:00
|
|
|
private String history;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The last output by the calculator.
|
|
|
|
*/
|
2017-07-25 14:52:57 -07:00
|
|
|
private String lastOutput;
|
2017-07-25 21:13:18 -07:00
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The panel where the output occurs.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JPanel outputPanel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The text area reserved for the last output.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JTextArea lastOutputArea;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
2017-07-26 14:34:19 -07:00
|
|
|
* The table used for storing history results.
|
2017-07-26 10:10:37 -07:00
|
|
|
*/
|
2017-07-26 14:34:19 -07:00
|
|
|
private JTable historyTable;
|
|
|
|
/**
|
|
|
|
* The table model used for managing history.
|
|
|
|
*/
|
|
|
|
private HistoryTableModel historyModel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The scroll pane for the history area.
|
|
|
|
*/
|
2017-07-26 14:34:19 -07:00
|
|
|
private JScrollPane historyScroll;
|
2017-07-25 21:13:18 -07:00
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The panel where the input occurs.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JPanel inputPanel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The input text field.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JTextField inputField;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The "submit" button.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JButton inputEnterButton;
|
|
|
|
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The side panel for separate configuration.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JPanel sidePanel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* Panel for elements relating to number
|
|
|
|
* system selection.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JPanel numberSystemPanel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The possible list of number systems.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JComboBox<String> numberSystemList;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The panel for elements relating to
|
|
|
|
* function selection.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JPanel functionSelectPanel;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The list of functions available to the user.
|
|
|
|
*/
|
2017-07-25 21:13:18 -07:00
|
|
|
private JComboBox<String> functionList;
|
2017-07-26 10:10:37 -07:00
|
|
|
/**
|
|
|
|
* The button used to select a function.
|
|
|
|
*/
|
|
|
|
private JButton functionSelectButton;
|
2017-07-25 21:13:18 -07:00
|
|
|
|
2017-07-26 13:31:05 -07:00
|
|
|
/**
|
|
|
|
* Creates a new window with the given manager.
|
|
|
|
* @param manager the manager to use.
|
|
|
|
*/
|
|
|
|
public Window(PluginManager manager){
|
|
|
|
this();
|
|
|
|
this.manager = manager;
|
|
|
|
reducer = new NumberReducer(manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new window.
|
|
|
|
*/
|
|
|
|
private 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();
|
2017-07-26 13:31:05 -07:00
|
|
|
inputEnterButton = new JButton(CALC_STRING);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
2017-07-26 14:34:19 -07:00
|
|
|
historyModel = new HistoryTableModel();
|
|
|
|
historyTable = new JTable(historyModel);
|
|
|
|
historyScroll = new JScrollPane(historyTable);
|
2017-07-25 21:13:18 -07:00
|
|
|
lastOutputArea = new JTextArea(lastOutput);
|
|
|
|
lastOutputArea.setEditable(false);
|
|
|
|
|
|
|
|
outputPanel = new JPanel();
|
|
|
|
outputPanel.setLayout(new BorderLayout());
|
2017-07-26 14:34:19 -07:00
|
|
|
outputPanel.add(historyScroll, BorderLayout.CENTER);
|
2017-07-25 22:08:12 -07:00
|
|
|
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-26 13:31:05 -07:00
|
|
|
numberSystemPanel.add(new JLabel(NUMBER_SYSTEM_LABEL), BorderLayout.NORTH);
|
2017-07-25 22:08:12 -07:00
|
|
|
numberSystemPanel.add(numberSystemList, BorderLayout.CENTER);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
functionList = new JComboBox<>();
|
2017-07-26 13:31:05 -07:00
|
|
|
functionSelectButton = new JButton(SELECT_STRING);
|
2017-07-25 21:13:18 -07:00
|
|
|
|
|
|
|
functionSelectPanel = new JPanel();
|
|
|
|
functionSelectPanel.setLayout(new BorderLayout());
|
2017-07-26 13:31:05 -07:00
|
|
|
functionSelectPanel.add(new JLabel(FUNCTION_LABEL), BorderLayout.NORTH);
|
2017-07-25 22:08:12 -07:00
|
|
|
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-26 14:34:19 -07:00
|
|
|
|
|
|
|
inputEnterButton.addActionListener((event) -> {
|
|
|
|
TreeNode parsedExpression = TreeNode.fromString(inputField.getText());
|
|
|
|
if(parsedExpression == null){
|
|
|
|
lastOutputArea.setText(SYNTAX_ERR_STRING);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lastOutput = parsedExpression.reduce(reducer).toString();
|
|
|
|
history += (history.length() == 0) ? "" : "\n\n";
|
|
|
|
history += lastOutput;
|
|
|
|
|
|
|
|
historyModel.addEntry(new HistoryTableModel.HistoryEntry(inputField.getText(), parsedExpression, lastOutput));
|
|
|
|
historyTable.invalidate();
|
|
|
|
lastOutputArea.setText(lastOutput);
|
|
|
|
inputField.setText(lastOutput);
|
|
|
|
});
|
2017-07-25 14:52:57 -07:00
|
|
|
}
|
|
|
|
}
|