6#include <QLoggingCategory>
9#include <QDesktopServices>
11#include "ConnectDesktop.h"
12#include "ConnecterThread.h"
14static Q_LOGGING_CATEGORY(log,
"Client.Connect.Desktop")
15static Q_LOGGING_CATEGORY(logMouse, "Client.Connect.Desktop.Mouse")
17#define TypeRecordVideo (QEvent::User + 1)
33int g_QtKeyboardModifiers = qRegisterMetaType<Qt::KeyboardModifiers>(
"KeyboardModifiers");
34int g_QtMouseButtons = qRegisterMetaType<Qt::MouseButtons>(
"MouseButtons");
35int g_QtMouseButton = qRegisterMetaType<Qt::MouseButton>(
"MouseButton");
36int g_QMessageBox_Icon = qRegisterMetaType<Qt::MouseButton>(
"QMessageBox::Icon");
41 , m_pParameterRecord(nullptr)
42 , m_VideoFrameInput(this)
43 , m_AudioBufferInput(this)
44 , m_AudioBufferOutput(this)
52 SetViewer(pView, pConnecter, bDirectConnection);
54 QString szErr = pConnecter->metaObject()->className();
55 szErr +=
"::GetViewer() is not CFrmViewer";
56 qWarning(log) << szErr.toStdString().c_str();
59 QString szErr = pConnecter->metaObject()->className();
60 szErr +=
"::GetViewer() is not CFrmScroll";
61 qWarning(log) << szErr.toStdString().c_str();
63 SetConnecter(pConnecter);
68 &m_Recorder, &QMediaRecorder::errorOccurred,
69 this, [&](QMediaRecorder::Error error,
const QString &errorString) {
70 qDebug(log) <<
"Recorder error occurred:" << error << errorString;
76 &m_Recorder, &QMediaRecorder::recorderStateChanged,
77 this, [&](QMediaRecorder::RecorderState state){
78 qDebug(log) <<
"Recorder state changed:" << state;
79 if(QMediaRecorder::StoppedState == state)
82 if(m_pParameterRecord) {
83 qDebug(log) <<
"End action:"
84 << m_pParameterRecord->GetEndAction()
85 << m_Recorder.actualLocation();
86 switch(m_pParameterRecord->GetEndAction())
88 case CParameterRecord::ENDACTION::OpenFile:
89 QDesktopServices::openUrl(m_Recorder.actualLocation());
91 case CParameterRecord::ENDACTION::OpenFolder: {
92 QFileInfo fi(m_Recorder.actualLocation().toLocalFile());
93 QDesktopServices::openUrl(
94 QUrl::fromLocalFile(fi.absolutePath()));
104 check = connect(&m_Recorder, &QMediaRecorder::actualLocationChanged,
105 this, [&](
const QUrl &location){
106 qInfo(log) <<
"Recorder actual location changed:" << location;
112CConnectDesktop::~CConnectDesktop()
114 qDebug(log) <<
"CConnectDesktop::~CConnectDesktop()";
117int CConnectDesktop::SetConnecter(
CConnecter* pConnecter)
119 qDebug(log) <<
"CConnectDesktop::SetConnecter" << pConnecter;
120 Q_ASSERT(pConnecter);
121 if(!pConnecter)
return -1;
124 check = connect(
this, SIGNAL(sigServerName(
const QString&)),
125 pConnecter, SLOT(slotSetServerName(
const QString&)));
127 check = connect(pConnecter, SIGNAL(sigClipBoardChanged()),
130 check = connect(
this, SIGNAL(sigSetClipboard(QMimeData*)),
131 pConnecter, SLOT(slotSetClipboard(QMimeData*)));
137 check = connect(p, SIGNAL(sigRecord(
bool)),
138 this, SLOT(slotRecord(
bool)));
141 check = connect(p, SIGNAL(sigRecordPause(
bool)),
142 this, SLOT(slotRecordPause(
bool)));
146 SIGNAL(recorderStateChanged(QMediaRecorder::RecorderState)),
147 p, SLOT(slotRecorderStateChanged(QMediaRecorder::RecorderState)));
154int CConnectDesktop::SetViewer(
CFrmViewer *pView,
155 CConnecter* pConnecter,
bool bDirectConnection)
158 if(!pView)
return -1;
161 check = connect(
this, SIGNAL(
sigConnected()), pView, SLOT(slotConnected()));
163 check = connect(
this, SIGNAL(sigSetDesktopSize(
int,
int)),
164 pView, SLOT(slotSetDesktopSize(
int,
int)));
166 check = connect(
this, SIGNAL(sigServerName(
const QString&)),
167 pView, SLOT(slotSetName(
const QString&)));
170 check = connect(
this, SIGNAL(
sigUpdateRect(
const QRect&,
const QImage&)),
171 pView, SLOT(slotUpdateRect(
const QRect&,
const QImage&)));
174 pView, SLOT(slotUpdateRect(
const QImage&)));
176 check = connect(
this, SIGNAL(sigUpdateCursor(
const QCursor&)),
177 pView, SLOT(slotUpdateCursor(
const QCursor&)));
179 check = connect(
this, SIGNAL(sigUpdateCursorPosition(
const QPoint&)),
180 pView, SLOT(slotUpdateCursorPosition(
const QPoint&)));
182 check = connect(
this, SIGNAL(sigUpdateLedState(
unsigned int)),
183 pView, SLOT(slotUpdateLedState(
unsigned int)));
187 check = connect(
this, SIGNAL(sigRecordVideo(
bool)),
188 pView, SLOT(slotRecordVideo(
bool)));
190 check = connect(pView, SIGNAL(sigRecordVideo(QImage)),
191 this, SLOT(slotRecordVideo(QImage)),
192 Qt::DirectConnection);
195 if(bDirectConnection)
204 check = connect(pView, SIGNAL(sigMousePressEvent(QMouseEvent*, QPoint)),
205 this, SLOT(slotMousePressEvent(QMouseEvent*, QPoint)),
206 Qt::DirectConnection);
208 check = connect(pView, SIGNAL(sigMouseReleaseEvent(QMouseEvent*, QPoint)),
209 this, SLOT(slotMouseReleaseEvent(QMouseEvent*, QPoint)),
210 Qt::DirectConnection);
212 check = connect(pView, SIGNAL(sigMouseMoveEvent(QMouseEvent*, QPoint)),
213 this, SLOT(slotMouseMoveEvent(QMouseEvent*, QPoint)),
214 Qt::DirectConnection);
216 check = connect(pView, SIGNAL(sigWheelEvent(QWheelEvent*, QPoint)),
217 this, SLOT(slotWheelEvent(QWheelEvent*, QPoint)),
218 Qt::DirectConnection);
220 check = connect(pView, SIGNAL(sigKeyPressEvent(QKeyEvent*)),
221 this, SLOT(slotKeyPressEvent(QKeyEvent*)),
222 Qt::DirectConnection);
224 check = connect(pView, SIGNAL(sigKeyReleaseEvent(QKeyEvent*)),
225 this, SLOT(slotKeyReleaseEvent(QKeyEvent*)),
226 Qt::DirectConnection);
229 check = connect(pView, SIGNAL(sigMousePressEvent(QMouseEvent*, QPoint)),
230 this, SLOT(slotMousePressEvent(QMouseEvent*, QPoint)));
232 check = connect(pView, SIGNAL(sigMouseReleaseEvent(QMouseEvent*, QPoint)),
233 this, SLOT(slotMouseReleaseEvent(QMouseEvent*, QPoint)));
235 check = connect(pView, SIGNAL(sigMouseMoveEvent(QMouseEvent*, QPoint)),
236 this, SLOT(slotMouseMoveEvent(QMouseEvent*, QPoint)));
238 check = connect(pView, SIGNAL(sigWheelEvent(QWheelEvent*, QPoint)),
239 this, SLOT(slotWheelEvent(QWheelEvent*, QPoint)));
241 check = connect(pView, SIGNAL(sigKeyPressEvent(QKeyEvent*)),
242 this, SLOT(slotKeyPressEvent(QKeyEvent*)));
244 check = connect(pView, SIGNAL(sigKeyReleaseEvent(QKeyEvent*)),
245 this, SLOT(slotKeyReleaseEvent(QKeyEvent*)));
252void CConnectDesktop::slotWheelEvent(QWheelEvent *event, QPoint pos)
254 QWheelEvent* e =
new QWheelEvent(
256#
if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
257 event->globalPosition(),
261 event->pixelDelta(), event->angleDelta(), event->buttons(),
262 event->modifiers(), event->phase(), event->inverted(), event->source());
263 QCoreApplication::postEvent(
this, e);
267void CConnectDesktop::slotMouseMoveEvent(QMouseEvent *event, QPoint pos)
269 QMouseEvent* e =
new QMouseEvent(event->type(), pos, event->button(),
270 event->buttons(), event->modifiers());
271 QCoreApplication::postEvent(
this, e);
275void CConnectDesktop::slotMousePressEvent(QMouseEvent *event, QPoint pos)
277 QMouseEvent* e =
new QMouseEvent(event->type(), pos, event->button(),
278 event->buttons(), event->modifiers());
279 QCoreApplication::postEvent(
this, e);
283void CConnectDesktop::slotMouseReleaseEvent(QMouseEvent *event, QPoint pos)
285 QMouseEvent* e =
new QMouseEvent(event->type(), pos, event->button(),
286 event->buttons(), event->modifiers());
287 QCoreApplication::postEvent(
this, e);
291void CConnectDesktop::slotKeyPressEvent(QKeyEvent *event)
293 QKeyEvent* e =
new QKeyEvent(event->type(), event->key(),
294 event->modifiers(), event->text());
295 QCoreApplication::postEvent(
this, e);
299void CConnectDesktop::slotKeyReleaseEvent(QKeyEvent *event)
301 QKeyEvent* e =
new QKeyEvent(event->type(), event->key(),
302 event->modifiers(), event->text());
303 QCoreApplication::postEvent(
this, e);
307void CConnectDesktop::mouseMoveEvent(QMouseEvent *event)
309 qDebug(logMouse) <<
"Need to implement CConnectDesktop::mouseMoveEvent";
312void CConnectDesktop::mousePressEvent(QMouseEvent *event)
314 qDebug(logMouse) <<
"Need to implement CConnectDesktop::mousePressEvent";
317void CConnectDesktop::mouseReleaseEvent(QMouseEvent *event)
319 qDebug(logMouse) <<
"Need to implement CConnectDesktop::mouseReleaseEvent";
322void CConnectDesktop::wheelEvent(QWheelEvent *event)
324 qDebug(logMouse) <<
"Need to implement CConnectDesktop::wheelEvent";
327void CConnectDesktop::keyPressEvent(QKeyEvent *event)
329 qDebug(logMouse) <<
"Need to implement CConnectDesktop::keyPressEvent";
332void CConnectDesktop::keyReleaseEvent(QKeyEvent *event)
334 qDebug(logMouse) <<
"Need to implement CConnectDesktop::keyReleaseEvent";
342bool CConnectDesktop::event(QEvent *event)
345 switch (event->type()) {
346 case QEvent::MouseButtonPress:
347 case QEvent::MouseButtonDblClick:
348 mousePressEvent((QMouseEvent*)event);
350 case QEvent::MouseButtonRelease:
351 mouseReleaseEvent((QMouseEvent*)event);
353 case QEvent::MouseMove:
354 mouseMoveEvent((QMouseEvent*)event);
357 wheelEvent((QWheelEvent*)event);
359 case QEvent::KeyPress:
360 keyPressEvent((QKeyEvent*)event);
362 case QEvent::KeyRelease:
363 keyReleaseEvent((QKeyEvent*)event);
366 case TypeRecordVideo:
371 return QObject::event(event);
379void CConnectDesktop::slotRecord(
bool bRecord)
381 qDebug(log) << Q_FUNC_INFO << bRecord;
383 if(QMediaRecorder::RecordingState == m_Recorder.recorderState())
385 (*m_pParameterRecord) >> m_Recorder;
386 m_CaptureSession.setVideoFrameInput(&m_VideoFrameInput);
387 m_CaptureSession.setRecorder(&m_Recorder);
391 m_CaptureSession.setVideoFrameInput(
nullptr);
392 m_CaptureSession.setAudioBufferInput(
nullptr);
393 m_CaptureSession.setRecorder(
nullptr);
395 emit sigRecordVideo(bRecord);
398void CConnectDesktop::slotRecordPause(
bool bPause)
400 qDebug(log) << Q_FUNC_INFO << bPause;
402 if(m_Recorder.recorderState() == QMediaRecorder::RecordingState)
405 if(m_Recorder.recorderState() == QMediaRecorder::PausedState)
410void CConnectDesktop::slotRecordVideo(
const QImage &img)
414 QCoreApplication::postEvent(
this, e);
420 qDebug(log) <<
"Update image";
422 if(QMediaRecorder::RecordingState != m_Recorder.recorderState()) {
423 qCritical(log) <<
"Recorder is inavailable";
426 QVideoFrame frame(e->GetImage());
427 bool bRet = m_VideoFrameInput.sendVideoFrame(frame);
431 qDebug(log) <<
"m_VideoFrameInput.sendVideoFrame fail";
CConnectDesktop(CConnecter *pConnecter, bool bDirectConnection=true)
void sigUpdateRect(const QRect &r, const QImage &image)
Notify the CFrmView update image.
virtual int WakeUp()
Wake up Connect thread(background thread)
virtual void slotClipBoardChanged()=0
Be called when the clip board change.
void sigError(const int nError, const QString &szError=QString())
Triggered when an error is generated.
void sigConnected()
Emitted when the plugin is successfully connected.
virtual int Disconnect()
Disconnect.
virtual CParameterBase * GetParameter()
Get parameter.
It starts a background thread by default.
virtual QWidget * GetViewer()=0
Get Viewer.
A widget which displays output image from a CConnectDesktop and sends input keypresses and mouse acti...