-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhysicsModifyQuestion.java
234 lines (195 loc) · 8.28 KB
/
PhysicsModifyQuestion.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author abhiram
*/
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;
public class PhysicsModifyQuestion extends java.awt.Frame {
/**
* Creates new form InsertPhysicsQuestion
*/
public PhysicsModifyQuestion() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
btngrpQuestionType = new javax.swing.ButtonGroup();
btnBack = new java.awt.Button();
lblDisplay = new java.awt.Label();
lblQuestionNumber = new java.awt.Label();
txtQuestionNumber = new java.awt.TextField();
btnMcq = new java.awt.Button();
btnFillBlank = new java.awt.Button();
btnTrueFalse = new java.awt.Button();
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
exitForm(evt);
}
});
setLayout(new FlowLayout());
setSize(1000,1000);
btnBack.setLabel("Back");
btnBack.setActionCommand("back");
add(btnBack);
btnBack.setBounds(235, 253, 43, 24);
btnBack.addActionListener(new ButtonClickListener());
if(Subject.Subject.equals("phy"))
lblDisplay.setText("Modify Physics Question");
else{
lblDisplay.setText("Modify Chemistry Question");
}
add(lblDisplay);
lblDisplay.setBounds(132, 40, 200, 20);
add(txtQuestionNumber);
txtQuestionNumber.setBounds(216, 63, 73, 20);
lblQuestionNumber.setText("Question Number");
add(lblQuestionNumber);
lblQuestionNumber.setBounds(52, 63, 102, 20);
btnMcq.setLabel("MCQ");
btnMcq.setActionCommand("mcq");
add(btnMcq);
btnMcq.setBounds(64, 151, 43, 24);
btnMcq.addActionListener(new ButtonClickListener());
btnFillBlank.setLabel("Fill in the blank");
btnFillBlank.setActionCommand("fill");
add(btnFillBlank);
btnFillBlank.setBounds(64, 185, 98, 24);
btnFillBlank.addActionListener(new ButtonClickListener());
btnTrueFalse.setLabel("True False");
btnTrueFalse.setActionCommand("true");
add(btnTrueFalse);
btnTrueFalse.setBounds(64, 219, 75, 24);
btnTrueFalse.addActionListener(new ButtonClickListener());
setLayout(null);
}// </editor-fold>//GEN-END:initComponents
/**
* Exit the Application
*/
private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
System.exit(0);
}//GEN-LAST:event_exitForm
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new PhysicsInsertQuestion().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private java.awt.Button btnBack;
private java.awt.Button btnFillBlank;
private java.awt.Button btnMcq;
private java.awt.Button btnTrueFalse;
private javax.swing.ButtonGroup btngrpQuestionType;
private java.awt.Label lblDisplay;
private java.awt.Label lblQuestionNumber;
private java.awt.TextField txtQuestionNumber;
String filenameQuest ;
String filenameAns ;
// End of variables declaration//GEN-END:variables
/*if(btnMcq.isSelected()||btnFillBlank.isSelected()){
btnTrueFalse.setSelected();
}
if(btnFillBlank.isSelected()||btnTrueFalse.isSelected()){
btnMcq.setSelected(false);
}
if(btnMcq.isSelected()||btnTrueFalse.isSelected()){
btnFillBlank.setSelected(false);
}
*/
public class ButtonClickListener implements ActionListener{
public void actionPerformed(ActionEvent e){
try{
if(Subject.Subject.equals("phy")){
filenameQuest = ("PhysicsQuestions.txt");
filenameAns = ("PhysicsAnswers.txt");
}
if(Subject.Subject.equals("chem")){
filenameQuest = ("ChemistryQuestions.txt");
filenameAns = ("ChemAnswers.txt");
}
FileReader fileReaderQuest = new FileReader(filenameQuest);
BufferedReader bufferedReaderQuest = new BufferedReader(fileReaderQuest);
FileReader fileReaderAns = new FileReader(filenameAns);
BufferedReader bufferedReaderAns = new BufferedReader(fileReaderAns);
int numberofQuestions = 0;
String command = e.getActionCommand();
String strQuest;
if(command.equals("back")){
btnBack.getParent().setVisible(false);
new PhysicsHomePage().setVisible(true);
}
else if(command.equals("mcq")){
while((strQuest = bufferedReaderQuest.readLine())!=null){
numberofQuestions++;
}
int questionNumberToModify = Integer.parseInt(txtQuestionNumber.getText().toString());
if(questionNumberToModify<=numberofQuestions){
btnTrueFalse.getParent().setVisible(false);
String strquestionNumber = txtQuestionNumber.getText().toString();
int intquestionNumber = Integer.parseInt(strquestionNumber);
new PhysicsModifyMcqQuest(intquestionNumber).setVisible(true);
}
else if(questionNumberToModify>numberofQuestions){
lblDisplay.setText("enter valid Question Number");
}
}
else if(command.equals("fill")){
while((strQuest = bufferedReaderQuest.readLine())!=null){
numberofQuestions++;
}
int questionNumberToModify = Integer.parseInt(txtQuestionNumber.getText().toString());
if(questionNumberToModify<=numberofQuestions){
btnTrueFalse.getParent().setVisible(false);
String strquestionNumber = txtQuestionNumber.getText().toString();
int intquestionNumber = Integer.parseInt(strquestionNumber);
new PhysicsModifyFillInTheBlank(intquestionNumber).setVisible(true);
}
else if(questionNumberToModify>numberofQuestions){
lblDisplay.setText("enter valid Question Number");
}
}
else if(command.equals("true")){
while((strQuest = bufferedReaderQuest.readLine())!=null){
numberofQuestions++;
}
int questionNumberToModify = Integer.parseInt(txtQuestionNumber.getText().toString());
if(questionNumberToModify<=numberofQuestions){
btnTrueFalse.getParent().setVisible(false);
String strquestionNumber = txtQuestionNumber.getText().toString();
int intquestionNumber = Integer.parseInt(strquestionNumber);
new PhysicsModifyTrueFalseQuest1(intquestionNumber).setVisible(true);
}
else if(questionNumberToModify>numberofQuestions){
lblDisplay.setText("enter valid Question Number");
}
}
else if(txtQuestionNumber.getText().toString().equals("")){
lblDisplay.setText("Enter Question Number");
}
}
catch(NumberFormatException ex){
lblDisplay.setText("please enter a question number");
new PhysicsModifyQuestion().setVisible(true);
}
catch(IOException ioe){
System.out.println("IO Exception caught");
}
}
}
}