first commit

This commit is contained in:
Maik Jurischka
2025-12-18 16:10:55 +01:00
commit 69e2f3ae1d
19 changed files with 2707 additions and 0 deletions

33
mainwindow.h Normal file
View 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