-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUIMain.java
More file actions
586 lines (404 loc) · 16.3 KB
/
Copy pathGUIMain.java
File metadata and controls
586 lines (404 loc) · 16.3 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
// rollover and update social credit
// scrollable panel 3 period data - DONE
// add total duties column - DONE
// colors
// export as csv/excel
// saving and loading on main panel
// stating panel has load from save, or create new - DONE
// undo
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.plaf.metal.DefaultMetalTheme;
import javax.swing.plaf.metal.MetalLookAndFeel;
import javax.swing.plaf.metal.OceanTheme;
import java.awt.*;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Scanner;
//Justin Yoo
//Program Description:
//Sep 20, 2024
public class GUIMain extends JPanel implements KeyListener, MouseListener {
//DECOR
// Specify the look and feel to use by defining the LOOKANDFEEL constant
// Valid values are: null (use the default), "Metal", "System", "Motif",
// and "GTK"
final static String LOOKANDFEEL = "Metal";
// If you choose the Metal L&F, you can also choose a theme.
// Specify the theme to use by defining the THEME constant
// Valid values are: "DefaultMetal", "Ocean", and "Test"
final static String THEME = "Ocean";
//Frame
private int flexWidth;
private int flexHeight;
public static final int WIDTH = 800; //temp
public static final int HEIGHT = 900; //temp
public static ArrayList<PopUp> menus = new ArrayList<>();
//Data
private int periodNum;
private String demoSchedule;
private Object[][] data;
private Teacher teacher;
private Course course;
// private FileReadIn dataset;
// private BigDuty bigDuty;
//Panels
private CustomPanel panel1, panel2, helpPanel, panel3, panel4, teachersPanel, homePanel;
public JTabbedPane semesterTabs;
private static JFrame frame;
public ArrayList<SemesterTab> semesters;
public GUIMain() //default constructor
{
System.out.println(BigDuty.BACKUP_LOCATION);
new File(BigDuty.BACKUP_LOCATION).mkdir();
//Initial Init
this.addKeyListener(this);
this.addMouseListener(this);
this.setFocusable(true);
this.setLayout(new BorderLayout()); //setting layout
this.semesters = new ArrayList<>();
// bigDuty = new BigDuty("src/PollingerProject-DutyData.csv", this);
// Component contents = this.createComponents();
JPanel panel = makeLandingScreen();
this.add(panel, BorderLayout.CENTER);
// this.add(contents);
SemesterTab.gui = this;
}
public static void setWarningMsg(String text) {
Toolkit.getDefaultToolkit().beep();
JOptionPane optionPane = new JOptionPane(text, JOptionPane.OK_OPTION);
JDialog dialog = optionPane.createDialog(text);
dialog.setAlwaysOnTop(true);
dialog.setVisible(true);
}
public static void main(String[] args) {
try {
// Set cross-platform Java L&F (also called "Metal")
UIManager.setLookAndFeel(
UIManager.getCrossPlatformLookAndFeelClassName());
} catch (UnsupportedLookAndFeelException e) {
// handle exception
} catch (ClassNotFoundException e) {
// handle exception
} catch (InstantiationException e) {
// handle exception
} catch (IllegalAccessException e) {
// handle exception
}
SwingUtilities.invokeLater(new Runnable() {
public void run() {
//Turn off metal's use of bold fonts
UIManager.put("swing.boldMetal", Boolean.FALSE);
createAndShowGUI(); //initializes all GUI stuff
}
});
}
public JPanel makeLandingScreen() {
JPanel frame = new JPanel();
frame.setLayout(new GridLayout(3, 0));
JButton loadNewPolButton = new JButton("Load save from .pol");
loadNewPolButton.addActionListener(e -> {
JFileChooser chooser = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter(".pol", "pol", "csv");
chooser.setFileFilter(filter);
chooser.showDialog(frame, "Load Save");
if(chooser.getSelectedFile() != null) {
ArrayList<BigDuty> duties = FileUtility.createBigDuties(chooser.getSelectedFile(), this);
this.remove(frame);
Component screen = this.createComponents(duties);
this.add(screen);
refreshPanels();
}
});
frame.add(loadNewPolButton);
JButton loadPolButton = new JButton("Load OLD save from .pol(remove this button before we send to pollinger)");
loadPolButton.addActionListener(e -> {
JFileChooser chooser = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter(".pol", "pol", "csv");
chooser.setFileFilter(filter);
chooser.showDialog(frame, "Load Save");
if (chooser.getSelectedFile() != null) {
ArrayList<Teacher> teachers = FileUtility.readSaveFile(chooser.getSelectedFile());
BigDuty bd = new BigDuty(teachers, this);
this.remove(frame);
Component screen = this.createComponents(bd);
this.add(screen);
refreshPanels();
}
});
JButton loadReportButton = new JButton("Load from Genesis");
loadReportButton.addActionListener(e -> {
JFileChooser chooser = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter(".csv", "csv");
chooser.setFileFilter(filter);
chooser.showDialog(frame, "Load Genesis Report");
if (chooser.getSelectedFile() != null) {
BigDuty bd = new BigDuty(chooser.getSelectedFile(), this);
this.remove(frame);
Component screen = this.createComponents(bd);
this.add(screen);
bd.refreshPanels();
}
});
frame.add(loadPolButton, BorderLayout.WEST);
frame.add(loadReportButton, BorderLayout.EAST);
return frame;
}
public void refreshPanels() {
for(SemesterTab tab : semesters) {
tab.refreshPanels();
}
repaint();
revalidate();
}
public Component createComponents(BigDuty bd) {
//Initial Init
JPanel pane = new JPanel(new BorderLayout());
semesterTabs = new JTabbedPane();
semesterTabs.setVisible(true);
pane.add(semesterTabs);
SemesterTab panedTabs = makeTeachersTabs(bd);
semesters.add(panedTabs);
//Initialization
semesterTabs.add(panedTabs, panedTabs.getName());
pane.add(semesterTabs);
return pane;
}
public Component createComponents(ArrayList<BigDuty> duties) {
JPanel pane = new JPanel(new BorderLayout());
semesterTabs = new JTabbedPane();
semesterTabs.setVisible(true);
pane.add(semesterTabs);
for(BigDuty bd : duties) {
SemesterTab panedTabs = makeTeachersTabs(bd);
bd.setPane(panedTabs);
semesters.add(panedTabs);
//Initialization
semesterTabs.add(panedTabs, panedTabs.getName());
}
pane.add(semesterTabs);
return pane;
}
public static SemesterTab makeTeachersTabs(BigDuty bigDuty) {
String[] colHeadingsPanel1 = {"TEACHER", "COURSES", "ROOM", "DEPT", "YEAR"}; //tables
String[] colHeadingsPanel2 = {"TEACHER", "ROOM", "DEPT", "NAME", "PERIOD", "DAY", "SEMESTER"};
Object[][] data = new Object[bigDuty.getTeachers().size()][colHeadingsPanel1.length]; //size of the dataframe
int numRows = data.length; //number of rows
SemesterTab panedTabs = new SemesterTab(bigDuty, bigDuty.getSemester());
panedTabs.setVisible(true);
// panedTabs.setPreferredSize(new Dimension(0, 100));
//*********************PANELS BEGIN**********************//
//Panel1 #homepage#
String panel1HoverMessage = "Shows all teachers' general information";
CustomPanel panel1 = new Panel1("All Teacher View", new Dimension(WIDTH, HEIGHT), new BorderLayout(), bigDuty, colHeadingsPanel1, data, panel1HoverMessage);
CustomPanel homePanel = new HomePanel("Home Panel", new Dimension(WIDTH, HEIGHT), bigDuty);
CustomPanel semesterConfig = new SemesterConfigPanel("Semester Config", new Dimension(WIDTH, HEIGHT), bigDuty);
//panel2 #no function yet#
String panel2HoverMessage = "Shows individual teachers' general information";
CustomPanel panel2 = new Panel2("Individual Teacher View", new Dimension(WIDTH, HEIGHT), new BorderLayout(), bigDuty, colHeadingsPanel2, numRows, panel2HoverMessage);
// panel3
CustomPanel panel3 = new PollingerView("Pollinger View", new Dimension(WIDTH, HEIGHT), bigDuty);
CustomPanel panel4 = new Panel4("Panel 4", new Dimension(WIDTH, HEIGHT), bigDuty);
CustomPanel teachersPanel = new TeachersPanel("Teacher View", new Dimension(WIDTH, HEIGHT), bigDuty);
CustomPanel freePanel = new FreesView("Frees View", new Dimension(WIDTH, HEIGHT), bigDuty);
// panel 4
// panel4 = new Panel4("Panel 4", new Dimension(WIDTH, HEIGHT), bigDuty);
// panedTabs.addTab("Panel 4", panel4);
String helpPanelHoverMessage = "\" UHL \" love this help desk!";
CustomPanel helpPanel = new HelpPanel("Help Panel", new Dimension(WIDTH, HEIGHT), new BorderLayout(), helpPanelHoverMessage);
panedTabs.addTab(homePanel.getName(), homePanel);
panedTabs.addTab(semesterConfig.getName(), semesterConfig);
panedTabs.addTab(panel1.getName(), panel1);
panedTabs.addTab(panel2.getName(), panel2);
panedTabs.addTab("Pollinger View", panel3);
// panedTabs.addTab("Panel 4", panel4);
panedTabs.addTab("Teacher View", teachersPanel);
// panedTabs.addTab(helpPanel.getName(), helpPanel);
panedTabs.addTab("Frees View", freePanel);
return panedTabs;
}
public JTabbedPane getSemesterTabs() {
return semesterTabs;
}
public static ArrayList<String> readData(String fileName) { //file reading
ArrayList<String> textData = new ArrayList<String>();
File filePath = new File(fileName);
try {
System.out.println("Reading data...");
Scanner dataGetter = new Scanner(filePath);
while (dataGetter.hasNext())
textData.add(dataGetter.nextLine());
dataGetter.close();
} catch (FileNotFoundException e) {
System.out.println("Cannot find data file.");
}
return textData;
}
private static void createAndShowGUI() {
initLookAndFeel();
//imports a mainframe
// JFrame.setDefaultLookAndFeelDecorated(true);
frame = new GUIMainFrame();
}
private static void initLookAndFeel() {
String lookAndFeel = null;
if (LOOKANDFEEL != null) {
if (LOOKANDFEEL.equals("Metal")) {
lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
// an alternative way to set the Metal L&F is to replace the
// previous line with:
// lookAndFeel = "javax.swing.plaf.metal.MetalLookAndFeel";
} else if (LOOKANDFEEL.equals("System")) {
lookAndFeel = UIManager.getSystemLookAndFeelClassName();
} else if (LOOKANDFEEL.equals("Motif")) {
lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
} else if (LOOKANDFEEL.equals("GTK")) {
lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
} else {
System.err.println("Unexpected value of LOOKANDFEEL specified: "
+ LOOKANDFEEL);
lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
}
try {
UIManager.setLookAndFeel(lookAndFeel);
// If L&F = "Metal", set the theme
if (LOOKANDFEEL.equals("Metal")) {
if (THEME.equals("DefaultMetal"))
MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
else if (THEME.equals("Ocean"))
MetalLookAndFeel.setCurrentTheme(new OceanTheme());
UIManager.setLookAndFeel(new MetalLookAndFeel());
}
} catch (ClassNotFoundException e) {
System.err.println("Couldn't find class for specified look and feel:"
+ lookAndFeel);
System.err.println("Did you include the L&F library in the class path?");
System.err.println("Using the default look and feel.");
} catch (UnsupportedLookAndFeelException e) {
System.err.println("Can't use the specified look and feel ("
+ lookAndFeel
+ ") on this platform.");
System.err.println("Using the default look and feel.");
} catch (Exception e) {
System.err.println("Couldn't get specified look and feel ("
+ lookAndFeel
+ "), for some reason.");
System.err.println("Using the default look and feel.");
e.printStackTrace();
}
}
}
public Dimension getPreferredSize() {
return new Dimension(WIDTH, HEIGHT);
}
@Override
public void mouseClicked(MouseEvent e) {
}
@Override
public void mousePressed(MouseEvent e) {
for (PopUp popUp : menus) {
popUp.popUp(e);
}
}
@Override
public void mouseReleased(MouseEvent e) {
int i = 0;
for (PopUp popUp : menus) {
popUp.popUp(e);
}
}
@Override
public void mouseEntered(MouseEvent e) {
}
@Override
public void mouseExited(MouseEvent e) {
}
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
// bigDuty.rankTeacher("Uhl");
for(SemesterTab tab : semesters) {
tab.keyPressed(e);
}
}
@Override
public void keyReleased(KeyEvent e) {
}
public int getGetWidth() {
return getWidth();
}
public int getGetHeight() {
return getHeight();
}
public int getFlexWidth() {
return flexWidth;
}
public void setFlexWidth(int flexWidth) {
this.flexWidth = flexWidth;
}
public int getFlexHeight() {
return flexHeight;
}
public void setFlexHeight(int flexHeight) {
this.flexHeight = flexHeight;
}
public int getPeriodNum() {
return periodNum;
}
public void setPeriodNum(int periodNum) {
this.periodNum = periodNum;
}
public String getDemoSchedule() {
return demoSchedule;
}
public void setDemoSchedule(String demoSchedule) {
this.demoSchedule = demoSchedule;
}
// public static ArrayList<String> getData()
// {
// return data;
// }
//
// public static void setData(ArrayList<String> data)
// {
// GUIMain.data = data;
// }
public Teacher getTeacher() {
return teacher;
}
public void setTeacher(Teacher teacher) {
this.teacher = teacher;
}
public CustomPanel getPanel1() {
return panel1;
}
public void setPanel1(CustomPanel panel1) {
this.panel1 = panel1;
}
public CustomPanel getPanel2() {
return panel2;
}
public void setPanel2(CustomPanel panel2) {
this.panel2 = panel2;
}
public int getWIDTH() {
return WIDTH;
}
public int getHEIGHT() {
return HEIGHT;
}
@Override
public String toString() {
return "GUIMain [flexWidth=" + flexWidth + ", flexHeight=" + flexHeight + ", WIDTH=" + WIDTH + ", HEIGHT="
+ HEIGHT + ", periodNum=" + periodNum + ", demoSchedule=" + demoSchedule + ", teacher=" + teacher
+ ", panel1=" + panel1 + ", panel2=" + panel2 + "]";
}
}