mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 13:44:17 +00:00
0ab07303c9
* Add quit cli command and app quit option after stream session. Fixes #92 * Code review fixes.
40 lines
726 B
C++
40 lines
726 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QVariant>
|
|
|
|
class ComputerManager;
|
|
class NvComputer;
|
|
|
|
namespace CliQuitStream
|
|
{
|
|
|
|
class LauncherPrivate;
|
|
|
|
class Launcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_DECLARE_PRIVATE_D(m_DPtr, Launcher)
|
|
|
|
public:
|
|
explicit Launcher(QString computer, QObject *parent = nullptr);
|
|
~Launcher();
|
|
|
|
Q_INVOKABLE void execute(ComputerManager *manager);
|
|
Q_INVOKABLE bool isExecuted() const;
|
|
|
|
signals:
|
|
void searchingComputer();
|
|
void quittingApp();
|
|
void failed(QString text);
|
|
|
|
private slots:
|
|
void onComputerFound(NvComputer *computer);
|
|
void onComputerSeekTimeout();
|
|
void onQuitAppCompleted(QVariant error);
|
|
|
|
private:
|
|
QScopedPointer<LauncherPrivate> m_DPtr;
|
|
};
|
|
|
|
}
|