Fix include order to respect the Coding Conventions. Include individual headers instead of "generic" headers. Remove QT_{BEGIN,END}_NAMESPACE because these are private Qt macros that should not be used in the examples. Task-number: QTBUG-117036 Pick-to: 6.6 6.5 Change-Id: I33f9c54098824bfcfacac7c2f624554e105a291a Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
40 lines
759 B
C++
40 lines
759 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 <QDataStream>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QLocalSocket>
|
|
#include <QPushButton>
|
|
|
|
class Client : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Client(QWidget *parent = nullptr);
|
|
|
|
private slots:
|
|
void requestNewFortune();
|
|
void readFortune();
|
|
void displayError(QLocalSocket::LocalSocketError socketError);
|
|
void enableGetFortuneButton();
|
|
|
|
private:
|
|
QLineEdit *hostLineEdit;
|
|
QPushButton *getFortuneButton;
|
|
QLabel *statusLabel;
|
|
|
|
QLocalSocket *socket;
|
|
QDataStream in;
|
|
quint32 blockSize;
|
|
|
|
QString currentFortune;
|
|
};
|
|
|
|
#endif
|