1 Star 0 Fork 37

Yve/SuperDT

forked from 我是唐/SuperDT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMainWindow.h 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
我是唐 提交于 2021-07-01 18:48 . 引入状态恢复
#ifndef CMAINWINDOW_H
#define CMAINWINDOW_H
#include <QMainWindow>
#include <QLabel>
#include <QPushButton>
#include "CGlobalData.h"
namespace Ui {
class CMainWindow;
}
class CMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit CMainWindow(QWidget *parent = nullptr);
~CMainWindow();
static CMainWindow *getInstance();
public slots:
void slotSendBytes(int nBytes);
void slotRecvBytes(int nBytes);
void slotTextCode(QString strTextCode);
signals:
void sigRecount();
private:
void initToolBar();
void initStatusBar();
void initData(); //恢复状态
private:
Ui::CMainWindow *ui;
//状态栏
QLabel *m_pTextCodeLabel = nullptr;
QLabel *m_pSendLabel = nullptr;
QLabel *m_pRecvLabel = nullptr;
QPushButton *m_pBtnRecount = nullptr;
//数据
CGlobalData m_globalData;
};
#endif // CMAINWINDOW_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yvessss/super-dt.git
[email protected]:yvessss/super-dt.git
yvessss
super-dt
SuperDT
master

搜索帮助