-
Notifications
You must be signed in to change notification settings - Fork 1k
/
nettestresult.h
61 lines (46 loc) · 1.27 KB
/
nettestresult.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef NETTESTRESULT_H
#define NETTESTRESULT_H
#include <qevent.h>
#include <Memory>
#include "nettestdetail.h"
#include <QMainWindow>
#include <IAgoraRtcEngine.h>
using namespace agora::rtc;
namespace Ui {
class NetTestResult;
}
class NetTestResult : public QMainWindow
{
Q_OBJECT
public:
explicit NetTestResult(QWidget *parent = 0);
~NetTestResult();
signals:
void sender_network_detail(int quality,const LastmileProbeResult& lr);
protected slots:
void receiver_network_result(int quality,const LastmileProbeResult& lr);
protected:
virtual void mousePressEvent(QMouseEvent *e);
virtual void mouseMoveEvent(QMouseEvent *e);
virtual void mouseReleaseEvent(QMouseEvent *e);
private slots:
void on_btn_detail_clicked();
void on_btn_ok_clicked();
void on_btn_min_clicked();
void on_btn_close_clicked();
void on_btn_back_clicked();
private:
const int lnGapWidth = 18;
const int lnGapHeight = 12;
const int lnTitleWidth = 718;
const int lnTitleHeight = 30;
QPoint m_mousePosition;
bool m_bMousePressed;
private:
int m_nQuality;
LastmileProbeResult m_lr;
QMainWindow* m_pLastWnd;
Ui::NetTestResult *ui;
std::unique_ptr<NetTestDetail> m_upntd;
};
#endif // NETTESTRESULT_H