pollymc/logic/screenshots/ImgurUpload.h

31 lines
625 B
C
Raw Normal View History

2014-02-24 02:44:24 +05:30
#pragma once
2014-02-25 05:21:24 +05:30
#include "logic/net/NetAction.h"
#include "Screenshot.h"
2014-02-24 02:44:24 +05:30
2014-02-24 16:00:27 +05:30
typedef std::shared_ptr<class ImgurUpload> ImgurUploadPtr;
class ImgurUpload : public NetAction
2014-02-24 02:44:24 +05:30
{
public:
2014-02-25 05:21:24 +05:30
explicit ImgurUpload(ScreenshotPtr shot);
static ImgurUploadPtr make(ScreenshotPtr shot)
2014-02-24 02:44:24 +05:30
{
2014-02-24 16:00:27 +05:30
return ImgurUploadPtr(new ImgurUpload(shot));
2014-02-24 02:44:24 +05:30
}
protected
slots:
virtual void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
virtual void downloadError(QNetworkReply::NetworkError error);
virtual void downloadFinished();
virtual void downloadReadyRead()
{
}
2014-02-24 02:44:24 +05:30
public
slots:
virtual void start();
private:
2014-02-25 05:21:24 +05:30
ScreenshotPtr m_shot;
2014-02-24 02:44:24 +05:30
};