├── .gitignore ├── CQUPTstudent.pro ├── CQUPTstudent.pro.user ├── LICENSE ├── README.md ├── button.cpp ├── button.h ├── globle.cpp ├── globle.h ├── image.qrc ├── image ├── deng.gif ├── logo.jpg └── school.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── student.cpp ├── student.h ├── student.ui ├── studentwindow.cpp ├── studentwindow.h ├── studentwindow.ui ├── teacher.cpp ├── teacher.h └── teacher.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/.gitignore -------------------------------------------------------------------------------- /CQUPTstudent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/CQUPTstudent.pro -------------------------------------------------------------------------------- /CQUPTstudent.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/CQUPTstudent.pro.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/README.md -------------------------------------------------------------------------------- /button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/button.cpp -------------------------------------------------------------------------------- /button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/button.h -------------------------------------------------------------------------------- /globle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/globle.cpp -------------------------------------------------------------------------------- /globle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/globle.h -------------------------------------------------------------------------------- /image.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/image.qrc -------------------------------------------------------------------------------- /image/deng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/image/deng.gif -------------------------------------------------------------------------------- /image/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/image/logo.jpg -------------------------------------------------------------------------------- /image/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/image/school.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/student.cpp -------------------------------------------------------------------------------- /student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/student.h -------------------------------------------------------------------------------- /student.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/student.ui -------------------------------------------------------------------------------- /studentwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/studentwindow.cpp -------------------------------------------------------------------------------- /studentwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/studentwindow.h -------------------------------------------------------------------------------- /studentwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/studentwindow.ui -------------------------------------------------------------------------------- /teacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/teacher.cpp -------------------------------------------------------------------------------- /teacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/teacher.h -------------------------------------------------------------------------------- /teacher.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githublss/QtStudentManage/HEAD/teacher.ui --------------------------------------------------------------------------------