-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathView.java
152 lines (127 loc) · 5.19 KB
/
View.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
import java.security.AllPermission;
import java.util.ArrayList;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
public class View {
private Controller controller;
private JFrame frame;
private ViewCategoryPanel viewCategoryPanel;
private ViewStudyModePanel viewStudyModePanel;
private ViewLevelSelectPanel viewLevelSelectPanel;
private ViewGrammarQuestionPanel viewGrammarQuestionPanel;
private ViewTeacherModePanel viewTeacherModePanel;
private ViewAddQuestionPanel viewAddQuestionPanel;
private ViewAddQuestionPreviewDialog viewAddQuestionPreviewDialog;
private ViewAddEditSelectPanel viewAddEditSelectPanel;
private ViewEditQuestionPanel viewEditQuestionPanel;
private ViewDiagnoseModePanel viewDiagnoseModePanel; //burak
private ViewDiagnoseResultPanel viewDiagnoseResultPanel;
public View(Controller controller) {
this.controller = controller;
this.frame = new JFrame("Grammar Quiz");
this.viewCategoryPanel = new ViewCategoryPanel(controller);
this.viewStudyModePanel = new ViewStudyModePanel(controller);
this.viewLevelSelectPanel = new ViewLevelSelectPanel(controller);
this.viewGrammarQuestionPanel = new ViewGrammarQuestionPanel(controller);
this.viewTeacherModePanel = new ViewTeacherModePanel(controller);
this.viewAddQuestionPanel = new ViewAddQuestionPanel(controller);
this.viewAddQuestionPreviewDialog = new ViewAddQuestionPreviewDialog(
controller);
this.viewAddEditSelectPanel = new ViewAddEditSelectPanel(controller);
this.viewEditQuestionPanel = new ViewEditQuestionPanel(controller);
this.viewDiagnoseModePanel = new ViewDiagnoseModePanel(controller); //burak
this.viewDiagnoseResultPanel = new ViewDiagnoseResultPanel(controller);
frame.setVisible(true);
frame.pack();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setBounds(50, 50, 800, 600);
frame.setResizable(false);
changePanel(viewCategoryPanel);
}
public void Update() {
choosePanel(controller.getChoosenPanelName());
viewGrammarQuestionPanel.Update();
viewTeacherModePanel.Update();
viewAddQuestionPreviewDialog.Update();
}
private void choosePanel(String choosenPanelName) {
if (choosenPanelName.equals("DiagnosticModePanel")) {
changePanel(viewDiagnoseModePanel);
} else if (choosenPanelName.equals("StudyModePanel")) {
changePanel(viewStudyModePanel);
} else if (choosenPanelName.equals("QuizModePanel")) {
// changePanel(viewQuizModePanel);
} else if (choosenPanelName.equals("TeacherModePanel")) {
changePanel(viewTeacherModePanel);
} else if (choosenPanelName.equals("CategoryPanel")) {
changePanel(viewCategoryPanel);
} else if (choosenPanelName.equals("LevelSelectPanel")) {
changePanel(viewLevelSelectPanel);
} else if (choosenPanelName.equals("GrammarQuestionPanel")) {
changePanel(viewGrammarQuestionPanel);
} else if (choosenPanelName.equals("AddQuestionPanel")) {
changePanel(viewAddQuestionPanel);
} else if (choosenPanelName.equals("AddEditSelectPanel")) {
changePanel(viewAddEditSelectPanel);
} else if (choosenPanelName.equals("EditQuestionPanel")) {
changePanel(viewEditQuestionPanel);
} else if (choosenPanelName.equals("DiagnoseResultPanel")){
changePanel(viewDiagnoseResultPanel);
}
}
public void setAllFillBlankQuestion(ArrayList<IQuestion> allFillBlankQuestion) {
viewEditQuestionPanel.setAllFillBlankQuestion(allFillBlankQuestion);
}
public void setAllMultipleChoiceQuestion(ArrayList<IQuestion> allMultipleChoiceQuestion) {
viewEditQuestionPanel.setAllMultipleChoiceQuestion(allMultipleChoiceQuestion);
}
public int getFillBlankNumberOfDeletedQuestion() {
return viewEditQuestionPanel.getFillBlankNumberOfDeletedQuestion();
}
public int getMultipleChoiceNumberOfDeletedQuestion() {
return viewEditQuestionPanel.getMultipleChoiceNumberOfDeletedQuestion();
}
public void changePanel(JPanel panel) {
frame.getContentPane().removeAll();
frame.getContentPane().add(panel);
frame.revalidate();
frame.repaint();
System.out.println("ss");
}
private void changePanel(JTabbedPane panel) {
frame.getContentPane().removeAll();
frame.getContentPane().add(panel);
frame.revalidate();
frame.repaint();
}
public ViewAddQuestionPanel getViewAddQuestionPanel() {
return viewAddQuestionPanel;
}
public void setDialogVisible(boolean b){
viewAddQuestionPreviewDialog.setVisible(b);
}
public void setRandomQuestion( ArrayList<IQuestion> list)
{
viewDiagnoseModePanel.getRandomQuestions(list);
}
public void setAllScore( int presentScore,int presentPerfectScore, int pastScore, int pastPerfectScore, int futureScore)
{
this.viewDiagnoseResultPanel = new ViewDiagnoseResultPanel(controller);
viewDiagnoseResultPanel.createChart(presentScore, presentPerfectScore, pastScore, pastPerfectScore, futureScore);
}
public String getUrlText(){
return viewAddQuestionPanel.getUrlText();
}
public String getTitleText(){
return viewAddQuestionPanel.getTitleText();
}
public int getDragDropNumberOfDeleted() {
// TODO Auto-generated method stub
return viewEditQuestionPanel.getDragDropNumberOfDeletedQuestion();
}
public void setAllDragDropQuestion(
ArrayList<DragDropMemory> dragDropQuestions) {
viewEditQuestionPanel.setAllDragDropQuestion(dragDropQuestions);
}
}