mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-01 21:02:39 +08:00
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2021 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include "gui/Messages.h"
|
|
#include "gui/config/IServerConfig.h"
|
|
|
|
namespace deskflow::gui {
|
|
|
|
class ServerConnection : public QObject
|
|
{
|
|
Q_OBJECT
|
|
using IServerConfig = deskflow::gui::IServerConfig;
|
|
|
|
public:
|
|
struct Deps
|
|
{
|
|
virtual ~Deps() = default;
|
|
virtual messages::NewClientPromptResult
|
|
showNewClientPrompt(QWidget *parent, const QString &clientName, bool serverRequiresPeerAuth = false) const;
|
|
};
|
|
|
|
explicit ServerConnection(
|
|
QWidget *parent, IServerConfig &serverConfig, std::shared_ptr<Deps> deps = std::make_shared<Deps>()
|
|
);
|
|
void handleLogLine(const QString &logLine);
|
|
|
|
Q_SIGNALS:
|
|
void messageShowing();
|
|
void configureClient(const QString &clientName);
|
|
void clientsChanged(const QStringList &clients);
|
|
|
|
private:
|
|
void handleNewClient(const QString &clientName);
|
|
QStringList connectedClients() const;
|
|
|
|
QWidget *m_pParent;
|
|
IServerConfig &m_serverConfig;
|
|
std::shared_ptr<Deps> m_pDeps;
|
|
QSet<QString> m_connectedClients;
|
|
bool m_messageShowing = false;
|
|
};
|
|
|
|
} // namespace deskflow::gui
|