1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/videotest3/mainwindow.h
2019-06-08 22:22:57 +08:00

42 lines
890 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <qqtvideomanager.h>
#include <cameracontrollerform.h>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow ( QWidget* parent = 0 );
~MainWindow();
public slots:
void slotISOModelChanged ( bool );
private:
Ui::MainWindow* ui;
QQtVideoManager* manager;
CameraControllerForm* form;
// QWidget interface
protected:
virtual void moveEvent ( QMoveEvent* event ) override;
virtual void resizeEvent ( QResizeEvent* event ) override;
// QWidget interface
protected:
virtual void closeEvent ( QCloseEvent* event ) override;
virtual void showEvent ( QShowEvent* event ) override;
virtual void hideEvent ( QHideEvent* event ) override;
};
#endif // MAINWINDOW_H