-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuizTopicUI.java
91 lines (74 loc) · 2.17 KB
/
QuizTopicUI.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
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class QuizTopicUI extends JPanel implements ActionListener {
private JLabel topic, description, instruction;
private JTextField top, desc;
private JButton submit, cancel;
private JPanel labelPanel, buttonPanel, fieldPanel;
adminMakeQuizControl control;
// Contstructor
public QuizTopicUI(adminMakeQuizControl control) {
this.control = control;
// Initializing the Container
this.setLayout(new BorderLayout());
// Initializing the Buttons
submit = new JButton("Submit");
cancel = new JButton("Cancel");
// Initializing the Labels
topic = new JLabel("Quiz Topic: ");
description = new JLabel("Quiz Description: ");
instruction = new JLabel("");
// Initializing the textfield
top = new JTextField(15);
desc = new JTextField(30);
// Initializing the panels
labelPanel = new JPanel();
buttonPanel = new JPanel();
fieldPanel = new JPanel();
// Initializing the Panel
labelPanel.add(topic);
labelPanel.add(top);
this.add(labelPanel, "North");
fieldPanel.add(description);
fieldPanel.add(desc);
this.add(fieldPanel, "Center");
buttonPanel.add(instruction);
buttonPanel.add(submit);
buttonPanel.add(cancel);
this.add(buttonPanel, "South");
// Adding the actionlistener
submit.addActionListener(this);
cancel.addActionListener(this);
}
// Action Event Method
public void actionPerformed(ActionEvent e) {
Object source = e.getSource();
QuizListObj quiz = new QuizListObj();
boolean result = false;
if (source == submit) {
quiz.putData(desc.getText(), top.getText());
result = control.processQuiz(quiz);
if (result == true) {
MakeQuizAdminUI frame = new MakeQuizAdminUI(control);
frame.setSize(450, 250);
frame.setVisible(true);
this.removeAll();
this.add(frame);
this.revalidate();
this.repaint();
} else if (result == false) {
instruction.setText("Your username or password is incorrect.");
}
}
if (source == cancel) {
MainUI frame = new MainUI();
frame.setSize(500, 400);
frame.setVisible(true);
this.removeAll();
this.add(frame.getBodyPanel());
this.revalidate();
this.repaint();
}
}
}