-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStuManagement.cpp
376 lines (266 loc) · 8.5 KB
/
StuManagement.cpp
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
#include "StuManagement.h"
#include<iostream>
#include"Window.h"
#include<conio.h>
#include<stdlib.h>
StuManagement::StuManagement()
{
//load the backgroundPicture;
::loadimage(&backgroundPicture, "./imags/bg.jpg", Window::width(), Window::height());
//the style of font
::settextstyle(25, 0, "ÀŒÃÂ");
//mainview button init
menu_btns.push_back(new PushButton("查看学生"));
menu_btns.push_back(new PushButton("添加学生"));
menu_btns.push_back(new PushButton("删除学生"));
menu_btns.push_back(new PushButton("修改学生"));
menu_btns.push_back(new PushButton("退出系统"));
//the number of buttons
int btnNum = menu_btns.size();
//make the buttons in the center
int totalHeight = btnNum * menu_btns[0]->getMH();
//the start height of buttons
int startHeight = (Window::height() - totalHeight) / 2;
//set every button
for (int i = 0; i < menu_btns.size(); i++) {
//set sizes
menu_btns[i]->setFixSize(250, 50);
int bx = (Window::width() - menu_btns[i]->getMW()) / 2;
int by = startHeight + i * menu_btns[i]->getMH();
menu_btns[i]->move(bx, by);
}
tableHeader = "学号\t姓名\t性别\t年龄\t籍贯\t学院";
//init the table
stuTable = new StuTable;
stuTable->setRowNum(10);
stuTable->setColNum(6);
stuTable->setHeader(tableHeader);
//move to
//stuTable->move(20,30);
//made the table in center
stuTable->move((Window::width() - stuTable->getGridWidth() * stuTable->getColNum())/2,60);
//init the addBtn
addBtn.reset(new PushButton("添加",900,300,80,40));
//init the line
addStuLine.reset(new EditLine(200, 300,650));
//set Line
addStuLine->setTitle("请输入学生信息");
addStuLine->setTipMessage("按照如下格式\n\t姓名 性别 年龄 籍贯 院系\n输入信息");
//init the delBtn
delBtn.reset(new PushButton("删除", 900, 300, 80, 40));
//init the line
delStuLine.reset(new EditLine(200, 300, 650));
//set Line
delStuLine->setTitle("请输入学生学号");
delStuLine->setTipMessage("输入学生学号");
//modify
updateBtn.reset(new PushButton("提交", 900, 300, 80, 40));
updateLine.reset(new EditLine(150, 260, 500, 40));
updateLine->move((Window::width() - updateLine->getMW()) / 2, 260);
}
void StuManagement::run() {
int op = menu();
vector<Student>stuLsit;
//get the StudentList
stuLsit = showAllStu();
stuTable->setData(stuLsit);
////setRowNum
//stuTable->setRowNum(stuLsit.size());
Window::beginDraw();
while (true)
{
Window::clear();
//start to draw the background
drawBackground();
//test the window class
if (Window::hasMessage()) {
//getMessage
message = Window::getMessage();
//deal with the message
switch (message.message)
{
//when a key was pressed
case WM_KEYDOWN:
//back to the mainMenu when ESC was pressed
cout << "a key was pressed" << endl;
if (message.vkcode == VK_ESCAPE) {
cout << "ESC was pressed!" << endl;
op = Menu;
}
break;
//when mouse was clicked
default:
eventLoop();
break;
}
}
switch (op) {
case StuManagement::ShowAll:
showAllStu();
break;
case StuManagement::Add:
AddStu();
break;
case StuManagement::Del:
DelStu();
break;
case StuManagement::Update:
UpdateStu();
break;
case StuManagement::SearchByName:
CheckByName();
break;
default:
break;
}
Window::flushDraw();
}
Window::endDraw();
}
int StuManagement::menu() {
for (int i = 0; i < menu_btns.size(); i++) {
//draw the button
menu_btns[i]->show();
menu_btns[i]->eventLoop(message);
//if a button is clicked
if (menu_btns[i]->isClicked()) {
//show which button is clicked
cout << menu_btns[i]->getText() << "±ªµ„ª˜£°" << endl;
//system("pause");
//return the index of button
return i;
}
}
return Menu;
}
void StuManagement::showAllStu() {
outtextxy(0, 0, "SHOW");
vector<Student> stuList = studentDao.GetAllStudent();
//return the list
return stuList;
}
int StuManagement::AddStu() {
//set the title of addIng student
const char* addTitle = "请输入学生记录:姓名 性别 年龄 籍贯 院系";
//set the style of font
settextstyle(30, 0, "宋体");
//begin to draw the font
outtextxy((Window::width() - textwidth(addTitle)) / 2, 200, addTitle);
//btn show
addBtn->show();
addStuLine->show();
auto str = addStuLine->getContent();
//when the content is not null
if (addBtn->isClicked()) {
if (str.empty()) {
MessageBox(NULL, "值不能为空", "提示", MB_ICONERROR | MB_OK);
return -1;
}
//cout << addStuLine->getContent() << endl;
Student stu = Student::StringToStu(str);
//check the student
cout << stu << endl;
if (stu.getAge() <= 0) {
return -1;
}
//insert into database
studentDao.AddStudent(stu);
MessageBox(NULL, "插入成功", "提示", MB_OK);
//clear the content
addStuLine->clear();
}
return 0;
}
int StuManagement::DelStu() {
//set the title of addIng student
const char* addTitle = "请输入学生学号";
//set the style of font
settextstyle(30, 0, "宋体");
//begin to draw the font
outtextxy((Window::width() - textwidth(addTitle)) / 2, 200, addTitle);
delBtn->show();
delStuLine->show();
string num = delStuLine->getContent();
//when delBtn is clicked
if (delBtn->isClicked()) {
//when the num is null
if (num.empty()) {
MessageBox(NULL, "值不能为空", "提示", MB_ICONERROR | MB_OK);
return -1;
}
//get the object id
int id = stoi(num);
//get the Student and show
Student s = studentDao.CheckById(id);
cout << s;
if (s.getId() == -1) {
MessageBox(NULL, "查无此人!", "提示", MB_ICONERROR | MB_OK);
outtextxy(delStuLine->getMX(), delStuLine->getMY(), string("对不起,没有找到学号为" + num + "的学生!").data());
cout << num << endl;
}
else {
outtextxy(delStuLine->getMX(), delStuLine->getMX(), s.toString().data());
//delete
studentDao.DelStudent(id);
}
//clear
delStuLine->clear();
}
return 0;
}
int StuManagement::UpdateStu() {
const char* addTitle = "请按照格式输入修改后的学生信息 学号 姓名 性别 年龄 籍贯 院系";
//set the style of font
settextstyle(30, 0, "宋体");
//begin to draw the font
outtextxy((Window::width() - textwidth(addTitle)) / 2, 200, addTitle);
//show
updateLine->show();
updateBtn->show();
string val = updateLine->getContent();
if (!val.empty()&&updateBtn->isClicked()) {
cout << "Val:" << val << endl;
stringstream ss(val);
string sid, sex, age,sname, dept, native;
ss >> sid >> sname >> sex >> age >> native >> dept;
Student s;
s.setId(stoi(sid));
s.setSname(sname);
s.setSex(sex);
s.setAge(stoi(age));
s.setNative(native);
s.setDept(dept);
cout << s << endl;
studentDao.UpdateStudent(s);
updateLine->clear();
MessageBox(NULL, "更新成功!", "提示", MB_OK);
}
return 0;
}
vector<Student> StuManagement::CheckByName() {
outtextxy(0, 0, "CHECKBYNAME");
cout << "CHECKBYNAME" << endl;
return vector<Student>();
}
void StuManagement::drawBackground()
{
::putimage(0, 0, &backgroundPicture);
}
void StuManagement::eventLoop()
{
stuTable->eventLoop(message);
//add event
addBtn->event();
//Line show
addStuLine->event();
//del event
delBtn->event();
//Line show
delStuLine->event();
//line Show
updateLine->event();
//event
updateBtn->event();
//btn show
updateBtn->show();
}