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
| #ifndef CRTSPPARAMS_H
| #define CRTSPPARAMS_H
|
| #include <QtGui/QDialog>
| #include "ui_crtspparams.h"
|
| class CRtspParams : public QDialog
| {
| Q_OBJECT
|
| public:
| CRtspParams(QWidget *parent = 0);
| ~CRtspParams();
|
| int setUserID(long lUserID);
|
| //get rtsp info
| int getRtspInfo();
| //set rtsp info
| int setRtspInfo();
|
| //event
| void showEvent ( QShowEvent * event );
|
| public slots:
| void clickSave();
| void clickRefresh();
| void on_btnExit_clicked();
|
| private:
| Ui::CRtspParamsClass ui;
| long m_lUserID;
| };
|
| #endif // CRTSPPARAMS_H
|
|