PrismLauncher/launcher/screenshots/ImgurUpload.h

30 lines
678 B
C
Raw Normal View History

2014-02-23 21:14:24 +00:00
#pragma once
#include "QObjectPtr.h"
2015-02-09 00:51:14 +00:00
#include "net/NetAction.h"
2014-02-24 23:51:24 +00:00
#include "Screenshot.h"
2014-02-23 21:14:24 +00:00
class ImgurUpload : public NetAction {
2014-02-23 21:14:24 +00:00
public:
using Ptr = shared_qobject_ptr<ImgurUpload>;
explicit ImgurUpload(ScreenShot::Ptr shot);
static Ptr make(ScreenShot::Ptr shot) {
return Ptr(new ImgurUpload(shot));
2018-07-15 13:51:05 +01:00
}
2014-02-23 21:14:24 +00:00
protected
slots:
2018-07-15 13:51:05 +01:00
virtual void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
virtual void downloadError(QNetworkReply::NetworkError error);
virtual void downloadFinished();
virtual void downloadReadyRead() {}
2014-02-23 21:14:24 +00:00
public
slots:
void startImpl() override;
2014-02-23 21:14:24 +00:00
private:
ScreenShot::Ptr m_shot;
2018-07-15 13:51:05 +01:00
bool finished = true;
2014-02-23 21:14:24 +00:00
};