12f0d51c0c
- convert qt connect calls to use function pointers instead of the signal/slot macros wherever practical (UI classes were mostly left alone, target was tasks and processes) - give signals an explicit receivers to use the static method over the instance method wherever practical - ensure networks tasks are using the `errorOccured` signal added in Qt5.15 over the deprecated `error` signal - ensure all networks tasks have an sslErrors signal connected - add seemingly missing `MinecraftAccount::authSucceeded` connection for `MSAInteractive` login flow Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
34 lines
639 B
C++
34 lines
639 B
C++
#pragma once
|
|
|
|
#include <QFile>
|
|
#include <QtNetwork/QtNetwork>
|
|
#include <memory>
|
|
#include "tasks/Task.h"
|
|
#include "QObjectPtr.h"
|
|
|
|
class CapeChange : public Task
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CapeChange(QObject *parent, QString token, QString capeId);
|
|
virtual ~CapeChange() {}
|
|
|
|
private:
|
|
void setCape(QString & cape);
|
|
void clearCape();
|
|
|
|
private:
|
|
QString m_capeId;
|
|
QString m_token;
|
|
shared_qobject_ptr<QNetworkReply> m_reply;
|
|
|
|
protected:
|
|
virtual void executeTask();
|
|
|
|
public slots:
|
|
void downloadError(QNetworkReply::NetworkError);
|
|
void sslErrors(const QList<QSslError>& errors);
|
|
void downloadFinished();
|
|
};
|
|
|