mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
46 lines
1005 B
C++
46 lines
1005 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#include <QAbstractSocket>
|
|
#include <QHash>
|
|
#include <QHostAddress>
|
|
|
|
#include "server.h"
|
|
|
|
class PeerManager;
|
|
|
|
class Client : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Client();
|
|
|
|
void sendMessage(const QString &message);
|
|
QString nickName() const;
|
|
bool hasConnection(const QHostAddress &senderIp, int senderPort = -1) const;
|
|
|
|
signals:
|
|
void newMessage(const QString &from, const QString &message);
|
|
void newParticipant(const QString &nick);
|
|
void participantLeft(const QString &nick);
|
|
|
|
private slots:
|
|
void newConnection(Connection *connection);
|
|
void connectionError(QAbstractSocket::SocketError socketError);
|
|
void disconnected();
|
|
void readyForUse();
|
|
|
|
private:
|
|
void removeConnection(Connection *connection);
|
|
|
|
PeerManager *peerManager;
|
|
Server server;
|
|
QMultiHash<QHostAddress, Connection *> peers;
|
|
};
|
|
|
|
#endif
|