3 Star 11 Fork 3

luoboQAQ/ChargeManager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
studentdialog.h 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
luoboQAQ 提交于 2021-05-30 22:33 . 🎨 排序头文件调用
#ifndef STUDENTDIALOG_H
#define STUDENTDIALOG_H
#include "logindialog.h"
#include "squerydialog.h"
#include <QCloseEvent>
#include <QDateTime>
#include <QDebug>
#include <QDialog>
#include <QInputDialog>
#include <QMessageBox>
#include <QSqlError>
#include <QSqlQuery>
#include <QTime>
#include <QTimer>
namespace Ui
{
class StudentDialog;
}
class StudentDialog : public QDialog
{
Q_OBJECT
public:
explicit StudentDialog(QString user, QWidget *parent = nullptr);
~StudentDialog();
protected:
void closeEvent(QCloseEvent *event);
private slots:
void on_loginBtn_clicked();
void on_searchBtn_clicked();
void on_reportLossBtn_clicked();
void on_rechargeBtn_clicked();
void onTimeOut(void);
void DialogClosed();
private:
Ui::StudentDialog *ui;
QString computer_id;
bool isOnline;
bool isCardOk;
double banlance;
double cost;
QString cardid;
QString serial_num; //本次上机的流水号
QString userid; //sno
QTimer m_timer;
int stime; //秒
int mtime; //分钟
SQueryDialog *querydialog;
};
#endif // STUDENTDIALOG_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/luoboQAQ/charge-manager.git
git@gitee.com:luoboQAQ/charge-manager.git
luoboQAQ
charge-manager
ChargeManager
master

搜索帮助