You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
538 B

#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
#include <QPointer>
#include "videoform.h"
namespace Ui {
class Dialog;
}
class QYUVOpenGLWidget;
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = 0);
~Dialog();
private slots:
void on_adbProcess_clicked();
void on_startServerBtn_clicked();
void on_stopServerBtn_clicked();
protected:
void keyPressEvent(QKeyEvent *event);
private:
Ui::Dialog *ui;
QPointer<VideoForm> m_videoForm;
};
#endif // DIALOG_H