This repository was archived by the owner on Feb 16, 2022. It is now read-only.
forked from ajN2O/ICS201
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectGUI.java
More file actions
531 lines (388 loc) · 14.5 KB
/
ProjectGUI.java
File metadata and controls
531 lines (388 loc) · 14.5 KB
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
package application;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import javafx.application.*;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.scene.text.*;
import javafx.stage.*;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
public class ProjectGUI extends Application implements Serializable {
mvn compile com.softwaresecured.reshift:maven-plugin:LATEST:analyse
com.softwaresecured.reshift:maven-plugin:LATEST:upload
-Dreshift.token=iyYQeF+BCMzRrel60pVCiTR8KTYpNIJ49te09TXxR4M=
public static LinkedList<Department> open(String path) {
LinkedList<Department> dpt = new LinkedList<>();
try {
ObjectInputStream in = new ObjectInputStream(new FileInputStream(path));
dpt = (LinkedList<Department>) in.readObject();
in.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return dpt;
}
private static final String PATH = "Dept.dat";
static final Comparator<Student> ID_ORDER = new Comparator<Student>() {
@Override
public int compare(Student stu1, Student stu2) {
int ID1 = stu1.getId();
int ID2 = stu2.getId();
if (ID1 == ID2)
return 0;
else if (ID1 >= ID2)
return 1;
else
return -1;
}
};
static final Comparator<Student> GPA_ORDER = new Comparator<Student>() {
@Override
public int compare(Student stu1, Student stu2) {
double GPA1 = stu1.getGPA();
double GPA2 = stu2.getGPA();
if (GPA1 == GPA2)
return 0;
else if (GPA1 >= GPA2)
return 1;
else
return -1;
}
};
static final Comparator<Student> NAME_ORDER = new Comparator<Student>() {
@Override
public int compare(Student stu1, Student stu2) {
String name1 = stu1.getName();
String name2 = stu2.getName();
return name1.compareTo(name2);
}
};
public static void orderStudents(LinkedList<Department> dpt) {
GridPane actionWindow = new GridPane();
actionWindow.setVgap(5);
actionWindow.setHgap(5);
Stage secondaryStage = new Stage();
final ChoiceBox<Department> departments = new ChoiceBox<Department>(FXCollections.observableList(dpt));
departments.setValue(dpt.get(0));
actionWindow.add(departments, 0, 0);
String[] ordOpt = new String[3];
ordOpt[0] = "Order students by ID";
ordOpt[1] = "Order students by name";
ordOpt[2] = "Order students by GPA";
final ChoiceBox<String> setOrder = new ChoiceBox<String>(FXCollections.observableArrayList(ordOpt));
actionWindow.add(setOrder, 0, 1);
Button back = new Button("Back");
actionWindow.add(back, 3, 4);
back.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
secondaryStage.hide();
}
});
LinkedList<Student> students = (LinkedList<Student>) dpt.get(departments.getSelectionModel().getSelectedIndex()).getStudents();
Button print = new Button("Print");
actionWindow.add(print, 2, 4);
print.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
GridPane result = new GridPane();
result.setVgap(5);
result.setHgap(5);
if (departments.getSelectionModel().getSelectedIndex() == 0) {
listStudents(result, students, ID_ORDER);
} else if (departments.getSelectionModel().getSelectedIndex() == 1) {
listStudents(result, students, NAME_ORDER);
} else if (departments.getSelectionModel().getSelectedIndex() == 2) {
listStudents(result, students, GPA_ORDER);
} else
actionWindow.add(new Label("Please select an order option"), 3, 5);
}
});
Scene popUp = new Scene(actionWindow, 400, 150);
secondaryStage.setScene(popUp);
secondaryStage.show();
}
public static void listStudents(GridPane result, LinkedList<Student> students, Comparator<Student> order) {
Collections.sort(students, order);
result.add(new Label(students.toString()), 0, 0);
Scene resultWindow = new Scene(result, 800, 500);
Stage print = new Stage();
print.setScene(resultWindow);
print.show();
}
public static void listDepartments(LinkedList<Department> dpt) { // Add students then test method | implemented serializable but haven't tested
Stage displayWindow = new Stage();
VBox display = new VBox();
Button back=new Button("Back");
Label[] numbersOfStu = new Label[dpt.size()];
for (int i = 0; i < dpt.size(); i++) {
numbersOfStu[i] = new Label();
numbersOfStu[i].setText(dpt.get(i).getName() + " " + dpt.get(i).getStudents().size());
display.getChildren().add(numbersOfStu[i]);
}
display.getChildren().add(back);
back.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
displayWindow.close();
}
});
Scene displayScene = new Scene(display, 500,500);
displayWindow.setScene(displayScene);
displayWindow.show();
}
public static void addStudent(LinkedList<Department> dpt) {
ChoiceBox<Department> departments =
new ChoiceBox<Department>(FXCollections.observableList(dpt));
Stage secondaryStage = new Stage();
GridPane actionWindow = new GridPane();
RadioButton under=new RadioButton("Undergraduate");
RadioButton grad=new RadioButton("graduate");
ToggleGroup btns=new ToggleGroup();
under.setToggleGroup(btns);
grad.setToggleGroup(btns);
actionWindow.setVgap(5);
actionWindow.setHgap(5);
actionWindow.add(departments, 3,0);
actionWindow.add(under,2, 0);
actionWindow.add(grad,2, 1);
actionWindow.add(new Label("Enter the student's name: "), 0, 0);
actionWindow.add(new Label("Enter the student's ID: "), 0, 1);
TextField name = new TextField();
TextField ID = new TextField();
actionWindow.add(name, 1, 0);
actionWindow.add(ID, 1, 1);
Button add = new Button("Add");
Button back = new Button("Back");
actionWindow.add(add, 0, 2);
actionWindow.add(back, 0, 3);
back.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
secondaryStage.close();
}
});
add.setOnAction(new EventHandler<ActionEvent>() {
Label errorName=new Label("Please enter a name");
Label errorID=new Label("Please enter an ID");
@Override
public void handle(ActionEvent arg0) {
if(name.getText().trim().isEmpty()) {
actionWindow.add(errorName, 0,4);
}
else if(ID.getText().trim().isEmpty()) {
actionWindow.add(errorID, 0, 4);
}
else {
String stuName=name.getText();
int stuID= Integer.parseInt(ID.getText());
int deptIndex=departments.getSelectionModel().getSelectedIndex();
if(grad.isSelected()) {
dpt.get(deptIndex).addStudent(new Graduate(stuName,stuID,0));
actionWindow.add(new Label("it has been added"), 0,5);
}
if(under.isSelected()) {
dpt.get(deptIndex).addStudent(new Undergraduate(stuName,stuID,0));
actionWindow.add(new Label("it has been added"), 0,5);
}
}
}
});
Scene studentAdd = new Scene(actionWindow, 750, 300);
secondaryStage.setScene(studentAdd);
secondaryStage.show();
}
public static void deleteStudent(LinkedList<Department> dpt) {
ChoiceBox<Department> departments =
new ChoiceBox<Department>(FXCollections.observableList(dpt));
Stage secondaryStage = new Stage();
VBox actionWindow = new VBox();
actionWindow.getChildren().add(departments);
Button sub=new Button("submit");
actionWindow.getChildren().add(sub);
sub.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
int deptIndex=departments.getSelectionModel().getSelectedIndex();
ChoiceBox<Student> stu =
new ChoiceBox<Student>(FXCollections.observableList(dpt.get(deptIndex).getStudents()));
actionWindow.getChildren().add(stu);
Button removing=new Button("remove");
actionWindow.getChildren().add(removing);
removing.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent arg0) {
int stuIndex=stu.getSelectionModel().getSelectedIndex();
dpt.get(deptIndex).getStudents().remove(stuIndex);
actionWindow.getChildren().add(new Label("it has been removed"));
}
});
}
});
Button back=new Button("back");
actionWindow.getChildren().add(back);
back.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
secondaryStage.close();
}
});
Scene popUp=new Scene(actionWindow,500,500);
secondaryStage.setScene(popUp);
secondaryStage.show();
}
public static LinkedList<Department> retrieveData() { // Refuses to read data
LinkedList<Department> dpt = null;
try {
ObjectInputStream readObj = new ObjectInputStream(new FileInputStream("departments.dat"));
dpt = (LinkedList<Department>) readObj.readObject();
readObj.close();
} catch (FileNotFoundException fe) {
dpt = new LinkedList<Department>();
try {
ObjectOutputStream objPrint = new ObjectOutputStream(new FileOutputStream("departments.dat"));
objPrint.writeObject(dpt);
objPrint.close();
} catch (FileNotFoundException fe2) {
} catch (IOException ie) {
}
} catch (ClassNotFoundException e) {
} catch (IOException e) {
}
return dpt;
}
public static void printData(LinkedList<Department> dpt) {
try {
ObjectOutputStream objReader =
new ObjectOutputStream(new FileOutputStream(PATH));
objReader.writeObject(dpt);
objReader.close();
} catch (FileNotFoundException createFile) {
System.out.println("File was not found, creating file with default values");
} catch (IOException e) {
}
}
public static void changeDept(LinkedList<Department> dpt) {
ChoiceBox<Department> departmentsOut =
new ChoiceBox<Department>(FXCollections.observableList(dpt));
ChoiceBox<Department> departmentsIn =
new ChoiceBox<Department>(FXCollections.observableList(dpt));
Stage secondaryStage = new Stage();
VBox actionWindow = new VBox();
actionWindow.getChildren().add(new Label("select department"));
actionWindow.getChildren().add(departmentsOut);
Button sub=new Button("submit");
actionWindow.getChildren().add(sub);
sub.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
int deptOutIndex=departmentsOut.getSelectionModel().getSelectedIndex();
ChoiceBox<Student> stu =
new ChoiceBox<Student>(FXCollections.observableList(dpt.get(deptOutIndex).getStudents()));
actionWindow.getChildren().add(new Label("select Student"));
actionWindow.getChildren().add(stu);
actionWindow.getChildren().add(new Label("select new department"));
actionWindow.getChildren().add(departmentsIn);
Button change=new Button("change");
actionWindow.getChildren().add(change);
change.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent arg0) {
int deptInIndex=departmentsIn.getSelectionModel().getSelectedIndex();
int stuIndex=stu.getSelectionModel().getSelectedIndex();
dpt.get(deptInIndex).getStudents().add(dpt.get(deptOutIndex).getStudents().get(stuIndex));
dpt.get(deptOutIndex).getStudents().remove(stuIndex);
actionWindow.getChildren().add(new Label("changed has been completed"));
}
});
}
});
Button back=new Button("back");
actionWindow.getChildren().add(back);
back.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
secondaryStage.close();
}
});
Scene popUp=new Scene(actionWindow,500,500);
secondaryStage.setScene(popUp);
secondaryStage.show();
}
@Override
public void start(Stage primaryStage) {
// LinkedList<Department> dpt = retrieveData();
LinkedList<Department> dpt =open(PATH);
GridPane mainWindow = new GridPane();
mainWindow.setVgap(5);
mainWindow.setHgap(5);
ToggleGroup choices = new ToggleGroup();
RadioButton[] options = new RadioButton[5];
options[0] = new RadioButton("List department students");
options[1] = new RadioButton("List all departments and number of students");
options[2] = new RadioButton("Add new student to a department");
options[3] = new RadioButton("Delete a student from a department");
options[4] = new RadioButton("Change the department of a student");
for (int i = 0; i < options.length; i++) {
options[i].setToggleGroup(choices);
mainWindow.add(options[i], 0, i);
}
Button submit = new Button("Submit");
Button save = new Button("Save");
Button exit = new Button("Exit");
mainWindow.add(submit, 2, 5);
mainWindow.add(save, 3, 5);
mainWindow.add(exit, 4, 5);
submit.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
if (options[0].isSelected()) {
orderStudents(dpt);
} else if (options[1].isSelected()) {
listDepartments(dpt);
} else if (options[2].isSelected()) {
addStudent(dpt);
} else if (options[3].isSelected()) {
deleteStudent(dpt);
} else if (options[4].isSelected()) {
changeDept( dpt);
} else {
Label message = new Label("You have not chosen a valid option!");
mainWindow.add(message, 5, 5);
}
}
});
save.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
printData(dpt);
}
});
exit.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
primaryStage.close();
}
});
Scene display = new Scene(mainWindow, 600, 200);
primaryStage.setScene(display);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}