1
0
forked from BRT/arc
arc/views/scrcpy/ScrcpyWindow.h
slava 327b206fe8 Add ScrcpyWindow integration for screen mirroring
Introduced a ScrcpyWindow to enable integration of the scrcpy tool for device screen mirroring within the application. Platform-specific embedding is supported for macOS and Windows, with structure adjustments made in MainWindow and the build system (CMakeLists.txt).
2025-04-26 10:11:29 +07:00

23 lines
327 B
C++

#pragma once
#include <QWidget>
#include <QProcess>
class ScrcpyWindow final : public QWidget {
Q_OBJECT
public:
explicit ScrcpyWindow(QWidget *parent = nullptr);
~ScrcpyWindow() override;
private:
QProcess *m_process;
void startScrcpy();
void stopScrcpy();
void embedPlatformSpecific();
};