Erster Commit

This commit is contained in:
2026-08-27 09:47:58 +02:00
commit 7d3adbf8b0
87 changed files with 26885 additions and 0 deletions

22
src/VideoWidget.h Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include <QWidget>
#include <QImage>
#include <QPixmap>
class VideoWidget : public QWidget
{
Q_OBJECT
public:
explicit VideoWidget(QWidget* parent = nullptr);
public slots:
void setFrame(const QImage& image);
protected:
void paintEvent(QPaintEvent* event) override;
private:
QPixmap m_pixmap;
};