PrismLauncher/api/logic/screenshots/ImgurUpload.h

34 lines
698 B
C
Raw Normal View History

2014-02-23 21:14:24 +00:00
#pragma once
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
#include "multimc_logic_export.h"
typedef std::shared_ptr<class ImgurUpload> ImgurUploadPtr;
class MULTIMC_LOGIC_EXPORT ImgurUpload : public NetAction
2014-02-23 21:14:24 +00:00
{
public:
2014-02-24 23:51:24 +00:00
explicit ImgurUpload(ScreenshotPtr shot);
static ImgurUploadPtr make(ScreenshotPtr shot)
2014-02-23 21:14:24 +00:00
{
2014-02-24 10:30:27 +00:00
return ImgurUploadPtr(new ImgurUpload(shot));
2014-02-23 21:14:24 +00:00
}
protected
slots:
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:
virtual void start();
2014-02-23 21:14:24 +00:00
private:
2014-02-24 23:51:24 +00:00
ScreenshotPtr m_shot;
bool finished = true;
2014-02-23 21:14:24 +00:00
};