资源简介
Qt课程表界面
简洁
代码片段和文件信息
#include “course.h“
#include
Course::Course()
{
year = -1;
term = -1;
cName = ““; // key
regularGrade = -1;
finalExamGrade = -1;
sumGrade = -1; // key;
credit = -1; // key;
teacherName = ““;
}
Course::Course(QString s)
{
QStringList slist = s.split(QRegExp(“\\s+“));
qDebug()< year = slist[0].toInt();
term = slist[1].toInt();
cName = slist[2];
regularGrade = slist[3].toFloat();
finalExamGrade = slist[4].toFloat();
sumGrade = slist[5].toFloat();
credit = slist[6].toFloat();
teacherName = slist[7];
}
QString Course::toString()
{
return QString::number(year)+“ “+QString::number(term)+“ “+
cName +“ “+
QString::number(regularGrade)+“ “+QString::number(finalExamGrade)+“ “+
QString::number(sumGrade) +“ “+QString::number(credit)+“ “+
teacherName;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-04-18 22:35 GPAMananger\
文件 963 2017-01-24 10:45 GPAMananger\course.cpp
文件 537 2017-01-24 10:43 GPAMananger\course.h
文件 718 2017-01-23 20:30 GPAMananger\diagremove.cpp
文件 503 2017-01-23 20:18 GPAMananger\diagremove.h
文件 5943 2017-01-23 21:09 GPAMananger\diagremove.ui
文件 201 2017-01-22 17:05 GPAMananger\dialog.cpp
文件 273 2017-01-22 17:05 GPAMananger\dialog.h
文件 2748 2017-01-22 17:12 GPAMananger\dialog.ui
文件 639 2017-01-24 11:43 GPAMananger\GPAMananger.pro
文件 18087 2017-01-24 10:15 GPAMananger\GPAMananger.pro.user
文件 477 2017-01-24 11:59 GPAMananger\main.cpp
文件 6313 2017-01-24 12:18 GPAMananger\mainwindow.cpp
文件 1553 2017-01-24 12:08 GPAMananger\mainwindow.h
文件 21386 2017-01-24 11:40 GPAMananger\mainwindow.ui
目录 0 2018-04-18 22:35 GPAMananger\res\
文件 349 2017-01-24 11:59 GPAMananger\res.qrc
目录 0 2018-04-18 22:35 GPAMananger\res\db\
文件 752 2017-01-24 11:38 GPAMananger\res\db\stuInfo.db
目录 0 2018-04-18 22:35 GPAMananger\res\ico\
文件 366 2017-01-20 22:16 GPAMananger\res\ico\arrow.png
文件 2959 2017-01-22 21:52 GPAMananger\res\ico\arrow_down.png
文件 2579 2017-01-22 17:11 GPAMananger\res\ico\caution.png
文件 145126 2017-01-21 19:38 GPAMananger\res\ico\nwafu_1.png
文件 301318 2017-01-21 19:39 GPAMananger\res\ico\nwafu_2.png
目录 0 2018-04-18 22:35 GPAMananger\res\ss\
文件 3046 2017-01-24 11:56 GPAMananger\res\ss\st
文件 5062 2017-01-24 11:17 GPAMananger\student.cpp
文件 1362 2017-01-24 11:28 GPAMananger\student.h
文件 5868 2017-01-24 11:30 GPAMananger\tableview.cpp
文件 1289 2017-01-24 11:30 GPAMananger\tableview.h
............此处省略0个文件信息
- 上一篇:竖形通用界面
- 下一篇:quartus9.0专用破解64位
相关资源
- Ubuntu下操作Excel,qt代码
- Qt图片浏览器 --基于Qt的Graphics View f
- qtnribbon2破解
- Qt软件开发 完整项目代码
- MQTT_3.1protocol_Specific中文版
- 在QT中使用RTP进行视频的采集和传输
- Mini6410 Qt4和Qtopia编程开发指南
- Qt实现Code39条形码
- qt_ffmpeg_mp4_export_and_import.zip
- QT5.5入门与项目实战
- Huffman Compress 霍夫曼编码 压缩 解压缩
- 基于QT的黑白棋游戏设计和实现
- Qt写的连连看小游戏
- QTranslate_6.7.2.7z
- Qt基于FFmpeg播放本地 H.264H264文件
- QT编的MP3播放器
- linux系统的二级文件系统(QT实现了简
- QT生成DLL库文件的方法和使用方法详解
- QT+opencv+OCR 身份证号码,银行卡号识别
- Qt实现的简单的中国象棋程序
- Qt时钟Demo,在原来基础上添加了秒针
- 基于Qt和opencv的身份证号码识别系统
- 基于FFmpeg4.0.2的AAC编码器
- Qt写的Windows下屏幕录制程序源码
- QT旅游攻略软件程序源代码
- mp4_play.zip
- ffmpeg+qt的简单播放器
- MyPeppa_Release_V1.0.rar
- 从零开始学习音视频编程技术十二 录
- Qt 日历可显示阴历生宵和时钟基于Q
评论
共有 条评论