This repository was archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectGUI.java
More file actions
662 lines (447 loc) · 16.4 KB
/
ProjectGUI.java
File metadata and controls
662 lines (447 loc) · 16.4 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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
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.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import javafx.application.*;
import javafx.collections.FXCollections;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.*;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
public class ProjectGUI extends Application {
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>() {
public int compare(Student stu1, Student stu2) {
if (stu1.getGPA() > stu2.getGPA())
return 1;
else if (stu1.getGPA() < stu2.getGPA())
return -1;
else
return 0;
}
};
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);
}
};
@SuppressWarnings("unchecked")
public static LinkedList<Department> retrieveData() {
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 objPrint = new ObjectOutputStream(new FileOutputStream("departments.dat"));
objPrint.writeObject(dpt);
objPrint.close();
} catch (FileNotFoundException fe) {
} catch (IOException e) {
}
}
public static void errorWindow(String title, String message) {
Stage errorWindow = new Stage();
VBox layout = new VBox();
Label errorMessage = new Label(message);
Button closeButton = new Button("Ok");
closeButton.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
errorWindow.close();
}
});
layout.getChildren().addAll(errorMessage, closeButton);
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout, 400, 70);
errorWindow.setTitle(title);
errorWindow.setScene(scene);
errorWindow.showAndWait();
}
public static void listStudents(LinkedList<Department> dpt, int departmentIndex, int order) {
GridPane layout = new GridPane();
layout.setVgap(5);
layout.setHgap(5);
LinkedList<Student> students = dpt.get(departmentIndex).getStudents();
if (order == 0)
Collections.sort(students, ID_ORDER);
else if (order == 1)
Collections.sort(students, GPA_ORDER);
else if (order == 2)
Collections.sort(students, NAME_ORDER);
layout.add(new Label(dpt.get(departmentIndex).getStudents().toString()), 0, 0);
layout.setAlignment(Pos.CENTER);
Scene resultWindow = new Scene(layout, 1000, 500);
Stage print = new Stage();
print.setTitle("Students");
print.setScene(resultWindow);
print.show();
}
public static void orderStudents(LinkedList<Department> dpt) {
GridPane actionWindow = new GridPane();
actionWindow.setVgap(5);
actionWindow.setHgap(5);
Stage secondaryStage = new Stage();
ChoiceBox<Department> departments = new ChoiceBox<Department>(FXCollections.observableList(dpt));
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";
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();
}
});
Button print = new Button("Print");
actionWindow.add(print, 2, 4);
print.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
int departmentIndex = departments.getSelectionModel().getSelectedIndex();
if (departmentIndex == 0) {
listStudents(dpt, departmentIndex, 0);
} else if (departmentIndex == 1) {
listStudents(dpt, departmentIndex, 1);
} else if (departmentIndex == 2) {
listStudents(dpt, departmentIndex, 2);
} else
errorWindow("Invalid Order", "Please select a valid order option!");
}
});
actionWindow.setAlignment(Pos.CENTER);
Scene popUp = new Scene(actionWindow, 400, 150);
secondaryStage.setScene(popUp);
secondaryStage.setTitle("Organise Students");
secondaryStage.show();
}
public static void listDepartments(LinkedList<Department> dpt) {
Stage displayWindow = new Stage();
GridPane display = new GridPane();
display.setVgap(5);
display.setHgap(5);
Label[] output = new Label[dpt.size()];
int index = 0;
int row = 0;
int total = 0;
for (Department department : dpt) {
output[index] = new Label();
output[index].setText(department + "\n" + department.getStudents());
display.add(output[index], 0, row);
index++;
row += 2;
total += department.getStudents().size();
}
display.add(new Label("Total number of students: " + total), 0, row);
Scene displayScene = new Scene(display, 1000, 800);
displayWindow.setTitle("Departments");
displayWindow.setScene(displayScene);
displayWindow.show();
}
public static void addStudent(LinkedList<Department> dpt) {
Stage secondaryStage = new Stage();
GridPane actionWindow = new GridPane();
ChoiceBox<Department> departments = new ChoiceBox<Department>(FXCollections.observableList(dpt));
RadioButton underGraduate = new RadioButton("Undergraduate");
RadioButton graduate = new RadioButton("graduate");
ToggleGroup btns = new ToggleGroup();
underGraduate.setToggleGroup(btns);
graduate.setToggleGroup(btns);
actionWindow.setVgap(5);
actionWindow.setHgap(5);
actionWindow.add(departments, 2, 2);
actionWindow.add(underGraduate, 2, 0);
actionWindow.add(graduate, 2, 1);
actionWindow.add(new Label("Enter the student's name: "), 0, 0);
actionWindow.add(new Label("Enter the student's ID: "), 0, 1);
actionWindow.add(new Label("Enter the student's GPA: "), 0, 2);
TextField name = new TextField();
TextField ID = new TextField();
TextField GPA = new TextField();
actionWindow.add(name, 1, 0);
actionWindow.add(ID, 1, 1);
actionWindow.add(GPA, 1, 2);
Button add = new Button("Add");
Button back = new Button("Back");
actionWindow.add(add, 3, 4);
actionWindow.add(back, 4, 4);
back.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent arg0) {
secondaryStage.close();
}
});
add.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent arg0) {
if (name.getText().trim().isEmpty()) {
errorWindow("Invalid Name", "Please enter the student's name!");
} else if (ID.getText().trim().isEmpty()) {
errorWindow("Invalid ID", "Please enter the student's ID!");
} else if (GPA.getText().trim().isEmpty()) {
errorWindow("Invalid Name", "Please enter the student's GPA!");
} else {
String stuName = name.getText();
int stuID = Integer.parseInt(ID.getText());
double stuGPA = Double.parseDouble(GPA.getText());
int deptIndex = departments.getSelectionModel().getSelectedIndex();
if (graduate.isSelected()) {
dpt.get(deptIndex).addStudent(new Graduate(stuName, stuID, stuGPA));
errorWindow("Action Complete", "The student has been succesfully added");
} else if (underGraduate.isSelected()) {
dpt.get(deptIndex).addStudent(new Undergraduate(stuName, stuID, stuGPA));
errorWindow("Action Complete", "The student has been succesfully added");
}
}
}
});
actionWindow.setAlignment(Pos.CENTER);
Scene studentAdd = new Scene(actionWindow, 750, 150);
secondaryStage.setScene(studentAdd);
secondaryStage.setTitle("Add Student");
secondaryStage.show();
}
public static void deleteStudentScreen(LinkedList<Department> dpt, int index) {
Stage deleteStage = new Stage();
GridPane layout = new GridPane();
layout.setHgap(5);
ChoiceBox<Student> students = new ChoiceBox<Student>(
FXCollections.observableList(dpt.get(index).getStudents()));
layout.add(students, 0, 0);
Button delete = new Button("Delete");
layout.add(delete, 1, 0);
delete.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
int student = students.getSelectionModel().getSelectedIndex();
dpt.get(index).getStudents().remove(student);
errorWindow("Action Performed", "Student was succesfully removed");
}
});
Button back = new Button("Back");
layout.add(back, 2, 0);
back.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
deleteStage.close();
}
});
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout, 450, 70);
deleteStage.setTitle("Delete Student");
deleteStage.setScene(scene);
deleteStage.show();
}
public static void deleteStudent(LinkedList<Department> dpt) {
Stage secondaryStage = new Stage();
GridPane layout = new GridPane();
layout.setHgap(5);
layout.setVgap(5);
ChoiceBox<Department> departments = new ChoiceBox<Department>(FXCollections.observableList(dpt));
layout.add(departments, 0, 0);
Button select = new Button("Select");
layout.add(select, 1, 0);
select.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
int index = departments.getSelectionModel().getSelectedIndex();
if (index >= 0)
deleteStudentScreen(dpt, index);
else
errorWindow("Invalid Department", "Please choose a department to proceed");
}
});
Button back = new Button("Back");
layout.add(back, 2, 0);
back.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
secondaryStage.close();
}
});
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout, 370, 70);
secondaryStage.setTitle("Choose Department");
secondaryStage.setScene(scene);
secondaryStage.show();
}
public static void swap(LinkedList<Department> dpt, int index, int studentIndex, int newDepartment) {
Student student = dpt.get(index).getStudents().get(studentIndex);
dpt.get(index).getStudents().remove(studentIndex);
dpt.get(newDepartment).addStudent(student);
errorWindow("Action Succesful", "Student was moved succesfully");
}
public static void changingDepartmentScreen(LinkedList<Department> dpt, int index) {
Stage actionWindow = new Stage();
GridPane layout = new GridPane();
layout.setHgap(5);
layout.setVgap(5);
@SuppressWarnings("unchecked")
LinkedList<Department> newDepartment = (LinkedList<Department>) dpt.clone();
newDepartment.remove(index);
ChoiceBox<Student> studentsList = new ChoiceBox<Student>(
FXCollections.observableList(dpt.get(index).getStudents()));
ChoiceBox<Department> departmentsList = new ChoiceBox<Department>(FXCollections.observableList(newDepartment));
layout.add(studentsList, 0, 0);
layout.add(departmentsList, 1, 0);
Button change = new Button("Change");
Button back = new Button("Back");
layout.add(change, 2, 0);
layout.add(back, 3, 0);
change.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
int studentIndex = studentsList.getSelectionModel().getSelectedIndex();
int newDepartment = departmentsList.getSelectionModel().getSelectedIndex();
swap(dpt, index, studentIndex, newDepartment);
}
});
back.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
actionWindow.close();
}
});
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout, 700, 300);
actionWindow.setTitle("Change Department");
actionWindow.setScene(scene);
actionWindow.show();
}
public static void changeDepartment(LinkedList<Department> dpt) {
Stage secondaryStage = new Stage();
GridPane layout = new GridPane();
layout.setHgap(5);
layout.setVgap(5);
ChoiceBox<Department> departments = new ChoiceBox<Department>(FXCollections.observableList(dpt));
layout.add(departments, 0, 0);
Button select = new Button("Select");
Button back = new Button("Back");
layout.add(select, 1, 0);
layout.add(back, 2, 0);
select.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
int index = departments.getSelectionModel().getSelectedIndex();
if (index >= 0) {
changingDepartmentScreen(dpt, index);
} else
errorWindow("Invalid Department", "Please choose a department to proceed");
}
});
back.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
secondaryStage.close();
}
});
layout.setAlignment(Pos.CENTER);
Scene scene = new Scene(layout, 370, 70);
secondaryStage.setTitle("Choose Department");
secondaryStage.setScene(scene);
secondaryStage.show();
}
@Override
public void start(Stage primaryStage) {
LinkedList<Department> dpt = retrieveData();
GridPane mainWindow = new GridPane();
mainWindow.setVgap(5);
mainWindow.setHgap(5);
ToggleGroup choices = new ToggleGroup();
RadioButton[] options = new RadioButton[5];
options[0] = new RadioButton("List a department's students");
options[1] = new RadioButton("List all departments and total students");
options[2] = new RadioButton("Add a 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()) {
changeDepartment(dpt);
} else {
errorWindow("Input Invalid", "Please select a valid option to proceed!");
}
}
});
save.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
printData(dpt);
}
});
exit.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Platform.exit();
}
});
mainWindow.setAlignment(Pos.CENTER);
Scene display = new Scene(mainWindow, 600, 200);
primaryStage.setTitle("Registration Database");
primaryStage.setScene(display);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}