2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef FORTUNETHREAD_H
|
|
|
|
#define FORTUNETHREAD_H
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
|
|
|
|
|
|
|
//! [0]
|
|
|
|
class FortuneThread : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-11-01 12:21:32 +00:00
|
|
|
FortuneThread(QObject *parent = nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
~FortuneThread();
|
|
|
|
|
|
|
|
void requestNewFortune(const QString &hostName, quint16 port);
|
2016-06-15 08:12:35 +00:00
|
|
|
void run() override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void newFortune(const QString &fortune);
|
|
|
|
void error(int socketError, const QString &message);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString hostName;
|
|
|
|
quint16 port;
|
|
|
|
QMutex mutex;
|
|
|
|
QWaitCondition cond;
|
|
|
|
bool quit;
|
|
|
|
};
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
#endif
|