1 Star 0 Fork 0

chenhaoyang2019/myPing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dialog.h 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenhaoyang2019 提交于 2020-06-13 18:36 . frist commit
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
#include <QLabel>
#include <mutex>
#include <thread>
#include <chrono>
#include <map>
#define IP_PER_NUM 256
#define THREAD_NUM 15
namespace Ui {
class Dialog;
}
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = 0);
~Dialog();
private slots:
void on_EditIPStart_textChanged(const QString &arg1);
void on_pushButton_clicked();
void RecvSetLableColor(int i , bool isConnectAbel);
void closeEvent(QCloseEvent *);
private:
static void handlePing(void *arg);
Ui::Dialog *ui;
QLabel *m_ipLabel[IP_PER_NUM];
int m_IPNum;
std::mutex m_ipMtx;
QStringList m_IPlist;
std::map<int /*labelIndex*/, QString /*ip*/> m_mapIPList;
bool m_isExit;
signals:
void setButtonEable(bool isEnabled);
void setLableColor(int i , bool isConnectAbel);
};
#endif // DIALOG_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/chenhaoyang2019/myPing.git
[email protected]:chenhaoyang2019/myPing.git
chenhaoyang2019
myPing
myPing
master

搜索帮助