新增通用视频控件

This commit is contained in:
feiyangqingyun
2019-12-19 09:48:23 +08:00
parent ff16b64855
commit 37af550e76
9 changed files with 1306 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
#ifndef FRMVIDEOWIDGET_H
#define FRMVIDEOWIDGET_H
#include <QWidget>
namespace Ui {
class frmVideoWidget;
}
class frmVideoWidget : public QWidget
{
Q_OBJECT
public:
explicit frmVideoWidget(QWidget *parent = 0);
~frmVideoWidget();
private:
Ui::frmVideoWidget *ui;
private slots:
void initForm();
void btnClicked(const QString &objName);
};
#endif // FRMVIDEOWIDGET_H