-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCalculatorGUI.java
161 lines (137 loc) · 6.19 KB
/
CalculatorGUI.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/**
Author: Holly Mills
Creation Date: Feb. 14, 2015
Last Edited: March 18, 2015
Description: Uses CreateButton class and OrderOfOperations class to simplify code and
also uses getActionEvent() to identify button being pressed
Can accept multiple inputs and uses order of operations to calculate currect answer
CalculatorApp
Copyright (C) 2015 Holly Mills
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
import javax.swing.JButton;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JFrame;
import java.awt.GridLayout;
import java.awt.BorderLayout;
import java.awt.event.*;
import java.text.DecimalFormat;
import java.lang.Math;
public class CalculatorGUI {
CreateButton one, two, three, four, five, six, seven,
eight, nine, dot, zero, addition, subtract,
multiply, divide, equals, clear,
sqrt, close, open, exp, ans, neg;
JTextField displayBox;
private String button = "";
//The "input" variable holds user input that is readable to the "Calculator" class
private String input = "";
//The variable "newEntry" resets the screen when the user clicks any button after evaluating the expression
//It removes the dependency on the "clear" button
private boolean newEntry = false;
private double result;
DecimalFormat formater = new DecimalFormat("0.##########");
public static void main(String[] args) {
CalculatorGUI gui = new CalculatorGUI();
gui.go();
}
public void go() {
JFrame frame = new JFrame("Calculator");
JPanel centerPane = new JPanel();
JPanel bottomPane = new JPanel();
centerPane.setLayout(new GridLayout(5,4));
bottomPane.setLayout( new GridLayout(1,2,2,2));
displayBox = new JTextField(20);
sqrt = new CreateButton("sqrt", new OperationButton(), centerPane);
exp = new CreateButton(" ^ ", new OperationButton(), centerPane);
open = new CreateButton("( ", new OperationButton(), centerPane);
close = new CreateButton(" )", new OperationButton(), centerPane);
seven = new CreateButton("7", new NumberButton(), centerPane);
eight = new CreateButton("8", new NumberButton(), centerPane);
nine = new CreateButton("9", new NumberButton(), centerPane);
addition = new CreateButton(" + ", new OperationButton(), centerPane);
four = new CreateButton("4", new NumberButton(), centerPane);
five = new CreateButton("5", new NumberButton(), centerPane);
six = new CreateButton("6", new NumberButton(), centerPane);
subtract = new CreateButton(" - ", new OperationButton(), centerPane);
one = new CreateButton("1", new NumberButton(), centerPane);
two = new CreateButton("2", new NumberButton(), centerPane);
three = new CreateButton("3", new NumberButton(), centerPane);
multiply = new CreateButton(" * ", new OperationButton(), centerPane);
dot = new CreateButton(".", new NumberButton(), centerPane);
zero = new CreateButton("0", new NumberButton(), centerPane);
equals = new CreateButton(" = ", new EqualsButton(), centerPane);
divide = new CreateButton(" / ", new OperationButton(), centerPane);
ans = new CreateButton("ans", new OperationButton(), bottomPane);
neg = new CreateButton("(-)", new OperationButton(), bottomPane);
clear = new CreateButton("clear", new OperationButton(), bottomPane);
frame.getContentPane().add(BorderLayout.NORTH, displayBox);
frame.getContentPane().add(BorderLayout.CENTER, centerPane);
frame.getContentPane().add(BorderLayout.SOUTH, bottomPane);
frame.setSize(250,300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
class NumberButton implements ActionListener {
public void actionPerformed(ActionEvent event) {
if (newEntry){
displayBox.setText("");
newEntry = false;
input = "";
}
button = event.getActionCommand();
displayBox.setText(displayBox.getText() + button);
input = input + button;
}
}
class OperationButton implements ActionListener {
public void actionPerformed(ActionEvent event) {
double ans = 0.0;
button = event.getActionCommand();
if (newEntry){
displayBox.setText("");
newEntry = false;
input = "";
}
if (button == "ans"){
displayBox.setText(displayBox.getText() + formater.format(result));
input = input + Double.toString(result);
}else if (button == "(-)"){
displayBox.setText(displayBox.getText() + "-");
input = input + "-";
}else if (button == "clear"){
displayBox.setText("");
input = "";
}else if (button == "sqrt"){
displayBox.setText(displayBox.getText() + "sqrt( ");
input = input + "sqrt ( "; //extra spaces makes string readable to "Calculator" class
}else{
displayBox.setText(displayBox.getText() + button);
input = input + button;
}
}
}
class EqualsButton implements ActionListener {
Calculator evaluate = new Calculator();
public void actionPerformed(ActionEvent event){
newEntry = true;
if (evaluate.checkInput(input)){
button = event.getActionCommand();
result = evaluate.readInput(input);
displayBox.setText(displayBox.getText() + button + formater.format(result));
} else
displayBox.setText(evaluate.getException());
}
}
}