Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
DlgPlayer.h
1// Author: Kang Lin <kl222@126.com>
2
3#ifndef DLGPLAYER_H
4#define DLGPLAYER_H
5
6#include <QDialog>
7#include "ParameterPlayer.h"
8#include "ParameterRecordUI.h"
9
10namespace Ui {
11class CDlgPlayer;
12}
13
14class CDlgPlayer : public QDialog
15{
16 Q_OBJECT
17
18public:
19 explicit CDlgPlayer(CParameterPlayer* pPara, QWidget *parent = nullptr);
21
22private:
23 Ui::CDlgPlayer *ui;
24 CParameterPlayer* m_pParameters;
25 CParameterRecordUI* m_pRecordUI;
26
27 // QDialog interface
28public slots:
29 virtual void accept() override;
30private slots:
31 void on_cmbType_currentIndexChanged(int index);
32 void on_pbUrlBrowse_clicked();
33};
34
35#endif // DLGPLAYER_H