qt5base-lts/examples/network/network-chat/client.h
Mårten Nordheim c437c33f29 Network chat: update includes
Prefer own headers, avoid full-module includes

Task-number: QTBUG-108873
Change-Id: I4282d4aab5fd66c64fc27cd130b223d33069d80f
Reviewed-by: Konrad Kujawa <konrad.kujawa@qt.io>
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
2023-05-31 12:55:54 +02:00

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 "server.h"
#include <QAbstractSocket>
#include <QHash>
#include <QHostAddress>
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