3#include <QLoggingCategory>
4#include <QDesktopServices>
7#include <QWidgetAction>
10#include "ConnecterThread.h"
11#include "ConnectThread.h"
12#include "PluginClient.h"
14static Q_LOGGING_CATEGORY(log,
"Client.Connecter.Thread")
19 , m_pFrmViewer(
nullptr)
21 , m_pZoomToWindow(
nullptr)
22 , m_pZoomAspectRatio(
nullptr)
23 , m_pZoomOriginal(
nullptr)
26 , m_psbZoomFactor(
nullptr)
27 , m_pScreenShot(
nullptr)
30 , m_pRecordPause(
nullptr)
33 qDebug(log) << Q_FUNC_INFO;
36CConnecterThread::~CConnecterThread()
38 qDebug(log) << Q_FUNC_INFO;
43 qDebug(log) << Q_FUNC_INFO;
50 Q_ASSERT(!(m_pFrmViewer && m_pScroll));
61 qDebug(log) << Q_FUNC_INFO;
73int CConnecterThread::InitialMenu()
78 QMenu* pMenuZoom =
new QMenu(&m_Menu);
79 pMenuZoom->setTitle(tr(
"Zoom"));
80 pMenuZoom->setIcon(QIcon::fromTheme(
"zoom"));
81 m_pMenuZoom = m_Menu.addMenu(pMenuZoom);
82 m_pZoomToWindow = pMenuZoom->addAction(
83 QIcon::fromTheme(
"zoom-fit-best"), tr(
"Zoom to window"));
84 m_pZoomToWindow->setCheckable(
true);
85 check = connect(m_pZoomToWindow, &QAction::toggled,
this,
87 m_pScroll->slotSetAdaptWindows(
91 m_pZoomAspectRatio = pMenuZoom->addAction(
92 QIcon::fromTheme(
"zoom-aspect-ratio"),
93 tr(
"Keep aspect ration to windows"));
94 m_pZoomAspectRatio->setCheckable(
true);
95 check = connect(m_pZoomAspectRatio, &QAction::toggled,
this,
97 m_pScroll->slotSetAdaptWindows(
101 m_pZoomOriginal = pMenuZoom->addAction(
102 QIcon::fromTheme(
"zoom-original"), tr(
"Original"));
103 m_pZoomOriginal->setCheckable(
true);
104 check = connect(m_pZoomOriginal, &QAction::toggled,
this,
106 m_pScroll->slotSetAdaptWindows(
110 m_pZoomIn = pMenuZoom->addAction(QIcon::fromTheme(
"zoom-in"), tr(
"Zoom in"));
111 m_pZoomIn->setCheckable(
true);
113 m_pZoomIn, &QAction::toggled,
this,
116 m_psbZoomFactor->setValue((m_pFrmViewer->
GetZoomFactor() + 0.1) * 100);
119 m_pZoomOut = pMenuZoom->addAction(
120 QIcon::fromTheme(
"zoom-out"), tr(
"Zoom out"));
121 m_pZoomOut->setCheckable(
true);
123 m_pZoomOut, &QAction::toggled,
this,
126 m_psbZoomFactor->setValue((m_pFrmViewer->
GetZoomFactor() - 0.1) * 100);
129 QActionGroup* pGBViewZoom =
new QActionGroup(
this);
131 pGBViewZoom->addAction(m_pZoomToWindow);
132 pGBViewZoom->addAction(m_pZoomAspectRatio);
133 pGBViewZoom->addAction(m_pZoomOriginal);
134 pGBViewZoom->addAction(m_pZoomIn);
135 pGBViewZoom->addAction(m_pZoomOut);
137 m_psbZoomFactor =
new QSpinBox(pMenuZoom);
138 m_psbZoomFactor->setRange(0, 9999999);
139 m_psbZoomFactor->setValue(100);
140 m_psbZoomFactor->setSuffix(
"%");
141 m_psbZoomFactor->setEnabled(
false);
142 m_psbZoomFactor->setFocusPolicy(Qt::NoFocus);
144 m_psbZoomFactor, SIGNAL(valueChanged(
int)),
147 QWidgetAction* pFactor =
new QWidgetAction(pMenuZoom);
148 pFactor->setDefaultWidget(m_psbZoomFactor);
149 pMenuZoom->insertAction(m_pZoomOut, pFactor);
151 m_Menu.addSeparator();
152 m_pScreenShot =
new QAction(QIcon::fromTheme(
"camera-photo"),
153 tr(
"ScreenShot"), &m_Menu);
154 check = connect(m_pScreenShot, SIGNAL(triggered()),
155 this, SLOT(slotScreenShot()));
157 m_Menu.addAction(m_pScreenShot);
159 m_pRecord =
new QAction(
160 QIcon::fromTheme(
"media-record"), tr(
"Start record"), &m_Menu);
161 m_pRecord->setCheckable(
true);
162 check = connect(m_pRecord, SIGNAL(toggled(
bool)),
163 this, SLOT(slotRecord(
bool)));
165 m_Menu.addAction(m_pRecord);
166 m_pRecordPause =
new QAction(
167 QIcon::fromTheme(
"media-playback-pause"), tr(
"Record pause"), &m_Menu);
168 m_pRecordPause->setCheckable(
true);
169 m_pRecordPause->setEnabled(
false);
170 check = connect(m_pRecordPause, SIGNAL(toggled(
bool)),
171 this, SIGNAL(sigRecordPause(
bool)));
173 m_Menu.addAction(m_pRecordPause);
176 m_Menu.addSeparator();
178 m_Menu.addAction(m_pSettings);
190 qDebug(log) << Q_FUNC_INFO;
194 qCritical(log) <<
"new CConnectThread fail";
205 qDebug(log) << Q_FUNC_INFO;
232 Q_ASSERT(m_pFrmViewer);
236 m_pFrmViewer->slotSetZoomFactor(
GetParameter()->GetZoomFactor());
238 m_psbZoomFactor->setValue(m_pFrmViewer->
GetZoomFactor() * 100);
242 m_pZoomToWindow->setChecked(
true);
244 if(m_pZoomAspectRatio)
245 m_pZoomAspectRatio->setChecked(
true);
248 m_pZoomOriginal->setChecked(
true);
251 m_pZoomIn->setChecked(
true);
263 GetParameter()->SetAdaptWindows(m_pFrmViewer->GetAdaptWindows());
271void CConnecterThread::slotRecord(
bool checked)
273 qDebug(log) << Q_FUNC_INFO << checked;
274 QAction* pRecord = qobject_cast<QAction*>(sender());
279 pRecord->setText(tr(
"Stop record"));
282 pRecord->setText(tr(
"Start record"));
284 m_pRecordPause->setEnabled(checked);
285 emit sigRecord(checked);
289void CConnecterThread::slotRecorderStateChanged(
290 QMediaRecorder::RecorderState state)
292 qDebug(log) << Q_FUNC_INFO << state;
293 if(QMediaRecorder::StoppedState == state)
295 m_pRecord->setChecked(
false);
296 m_pRecordPause->setChecked(
false);
303 if(!m_pScroll || !m_pFrmViewer)
return;
304 m_pFrmViewer->slotSetZoomFactor(((
double)v) / 100);
308void CConnecterThread::slotScreenShot()
313 QString szFile = record.GetImageFile(
true);
314 bool bRet = m_pFrmViewer->GrabImage().save(szFile);
316 qDebug(log) <<
"Success: save screenshot to" << szFile;
318 qCritical(log) <<
"Fail: save screenshot to" << szFile;
319 if(record.GetEndAction() != CParameterRecord::ENDACTION::No)
320 QDesktopServices::openUrl(QUrl::fromLocalFile(szFile));
The class only is used by CConnecterThread.
The connector interface of the plug-in, which is only used by the plug-in.
virtual CParameterBase * GetParameter()
Get parameter.
virtual QString ServerName()
Current connect server name (remote desktop name, if not present, then IP:PORT).
It starts a background thread by default.
virtual int Load(QSettings &set) override
Load parameters.
virtual QWidget * GetViewer() override
Get Viewer.
virtual int Initial() override
Initial parameters and resource.
void slotValueChanged(int v)
emit by zoom menu in the class
virtual int Clean() override
Clean parameters and resource.
virtual int DisConnect() override
emit sigConnected() in CConnectThread::run()
virtual QString ServerName() override
Current connect server name (remote desktop name, if not present, then IP:PORT).
virtual int Connect() override
Start a background thread, and create an instance of CConnect .
virtual int Save(QSettings &set) override
Save parameters.
virtual int Load(QSettings &set)
Load parameters.
virtual Q_INVOKABLE int Clean()
Clean parameters and resource.
virtual int Save(QSettings &set)
Save parameters.
virtual Q_INVOKABLE int Initial()
Initial parameters and resource.
A widget which displays output image from a CConnectDesktop and sends input keypresses and mouse acti...
ADAPT_WINDOWS
The ADAPT_WINDOWS enum.
@ Original
Original desktop size, the left-top of the desktop is aligned with the left-top of the window.
@ Zoom
zoom windows = desktop size * factor
@ KeepAspectRationToWindow
Keep desktop aspectration adapt to windows.
@ ZoomToWindow
Desktop adapt to windows.
double GetZoomFactor() const
Adjust the zoom factor.