first commit
This commit is contained in:
33
mainwindow.h
Normal file
33
mainwindow.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include "socketclient.h"
|
||||
#include "gstreamerpipelinewidget.h"
|
||||
#include "cameracontrolwidget.h"
|
||||
#include "videoviewerwidget.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MainWindow(QWidget *parent = nullptr);
|
||||
~MainWindow();
|
||||
|
||||
private:
|
||||
void setupUI();
|
||||
|
||||
Ui::MainWindow *ui;
|
||||
SocketClient* m_socketClient;
|
||||
GStreamerPipelineWidget* m_pipelineWidget;
|
||||
CameraControlWidget* m_cameraWidget;
|
||||
VideoViewerWidget* m_videoWidget;
|
||||
};
|
||||
#endif // MAINWINDOW_H
|
||||
Reference in New Issue
Block a user