qt_demoe/tool/nettool/form/frmudpclient.h

47 lines
841 B
C
Raw Permalink Normal View History

2019-12-05 08:01:43 +00:00
#ifndef FRMUDPCLIENT_H
#define FRMUDPCLIENT_H
#include <QWidget>
#include <QtNetwork>
namespace Ui {
class frmUdpClient;
}
class frmUdpClient : public QWidget
{
Q_OBJECT
public:
explicit frmUdpClient(QWidget *parent = 0);
~frmUdpClient();
2021-08-22 02:57:02 +00:00
protected:
bool eventFilter(QObject *watched, QEvent *event);
2019-12-05 08:01:43 +00:00
private:
Ui::frmUdpClient *ui;
QUdpSocket *socket;
2019-12-05 08:01:43 +00:00
QTimer *timer;
private slots:
void initForm();
void initConfig();
void saveConfig();
void initTimer();
2019-12-05 08:01:43 +00:00
void append(int type, const QString &data, bool clear = false);
private slots:
2021-08-22 02:57:02 +00:00
void error();
2019-12-05 08:01:43 +00:00
void readData();
void sendData(const QString &ip, int port, const QString &data);
private slots:
void on_btnSave_clicked();
void on_btnClear_clicked();
void on_btnSend_clicked();
};
#endif // FRMUDPCLIENT_H