-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mandelbrot.java
executable file
·253 lines (175 loc) · 7.2 KB
/
Mandelbrot.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import javax.swing.*;
//import com.apple.eawt.ApplicationListener;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.io.*;
import javax.imageio.ImageIO;
import javax.swing.*;
public class Mandelbrot extends JFrame implements ActionListener {
// Class Variables
private Canvas canvas;
private JButton increaseButton;
private JButton decreaseButton;
private JButton resetButton;
private JButton saveImageButton;
private JComboBox comboBox;
private JFileChooser fc;
private String setName = "Mandelbrot Set";
public Mandelbrot() {
//Action Listeners
ActionListener increaseLimit = new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Increase Limit");
canvas.increaseLimit();
canvas.resetRender();
}
};
ActionListener decreaseLimit = new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("decrease limit");
canvas.decreaseLimit();
canvas.resetRender();
}
};
ActionListener reset = new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Reset");
canvas.resetLimit();
setCalculator.changeSet(setName);
canvas.resetRender();
}
};
ActionListener saveImage = new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("save image");
File cool;
JFileChooser fc = new JFileChooser();
int r = fc.showSaveDialog(null);
if (r == JFileChooser.APPROVE_OPTION){
// the path to put into imageIO
cool = fc.getSelectedFile();
try {
ImageIO.write(canvas.getIMG(), "png", cool);
} catch (Exception b) {
// TODO Auto-generated catch block
System.out.println("error");
}
}
}
};
ActionListener combo = new ActionListener(){
public void actionPerformed(ActionEvent e){
JComboBox cb = (JComboBox)e.getSource();
setName = (String)cb.getSelectedItem();
setCalculator.changeSet(setName);
canvas.setSetName(setName);
canvas.resetRender();
}
};
ActionListener combo2 = new ActionListener(){
public void actionPerformed(ActionEvent e){
JComboBox cb2 = (JComboBox)e.getSource();
String gradientName = (String)cb2.getSelectedItem();
canvas.setGradient(gradientName);
canvas.resetRender();
}
};
/*
ActionListener editGradient = new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println("Edit Gradient");
UIManager.put("OptionPane.minimumSize",new Dimension(1000,300));
String[] gradients= {"Rainbow Set", "GreyScale", "GreenScale"};
JComboBox jcd = new JComboBox(gradients);
JOptionPane jop = new JOptionPane(null,
JOptionPane.PLAIN_MESSAGE,
JOptionPane.OK_OPTION,
null);
//add combos to JOptionPane
jop.add(jcd);
//create a JDialog and add JOptionPane to it
JDialog diag = new JDialog();
diag.getContentPane().add(jop);
diag.pack();
diag.setVisible(true);
}
};
*/
//put method into canvas
// Use a GridBagLayout
setLayout(new GridBagLayout());
GridBagConstraints positionConst = new GridBagConstraints();
positionConst.insets = new Insets(10, 10, 10, 10);
// Set up the window
setSize(1100,800);
setTitle("Mandelbrot App");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Add the canvas
positionConst.gridx = 0;
positionConst.gridy = 0;
positionConst.fill = GridBagConstraints.BOTH;
positionConst.gridwidth = GridBagConstraints.REMAINDER;
positionConst.weightx = 1;
positionConst.weighty = 1;
canvas = new Canvas(3); // Scaled up by 3x
add(canvas, positionConst);
//adding buttons
// Create "Increase Limit" Button
increaseButton = new JButton("Increase Limit");
increaseButton.addActionListener(increaseLimit);
increaseButton.getText();
positionConst.gridx = 0;
positionConst.gridy = 1;
positionConst.gridwidth = 1;
positionConst.weighty = .05;
add(increaseButton, positionConst);
// Create "Decrease Limit" Button
decreaseButton = new JButton("Decrease Limit");
decreaseButton.addActionListener(decreaseLimit);
decreaseButton.getText();
positionConst.gridx = 1;
positionConst.gridy = 1;
positionConst.gridwidth = 1;
add(decreaseButton, positionConst);
// Create "Reset" Button
resetButton = new JButton("Reset");
resetButton.addActionListener(reset);
resetButton.getText();
positionConst.gridx = 2;
positionConst.gridy = 1;
add(resetButton, positionConst);
// Create "Save Image" Button
saveImageButton = new JButton("Save Image");
saveImageButton.addActionListener(saveImage);
saveImageButton.getText();
positionConst.gridx = 0;
positionConst.gridy = 2;
add(saveImageButton, positionConst);
// Create Julia/Mandelbrot Combo Box
String[] setStrings = {"Mandelbrot Set", "Julia Set"};
JComboBox comboBox = new JComboBox<String>(setStrings);
comboBox.addActionListener(combo);
comboBox.setSelectedIndex(0);
positionConst.gridx = 3;
positionConst.gridy = 1;
add(comboBox, positionConst);
// Create Julia/Mandelbrot Combo Box
String[] gradientStrings = {"Rainbow", "BlueScale", "GreyScale"};
JComboBox comboBox2 = new JComboBox<String>(gradientStrings);
comboBox2.addActionListener(combo2);
comboBox2.setSelectedIndex(0);
positionConst.gridx = 3;
positionConst.gridy = 2;
add(comboBox2, positionConst);
}
@Override
public void actionPerformed(ActionEvent e){
}
public static void main(String[] args) {
// Main frame
Mandelbrot appFrame = new Mandelbrot();
// Show window
appFrame.setVisible(true);
}
}