30 lines
682 B
C
Raw Normal View History

2014-02-23 16:14:24 -05:00
#pragma once
#include "QObjectPtr.h"
2015-02-09 01:51:14 +01:00
#include "net/NetAction.h"
2014-02-25 00:51:24 +01:00
#include "Screenshot.h"
2014-02-23 16:14:24 -05:00
class ImgurUpload : public NetAction {
2014-02-23 16:14:24 -05: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 14:51:05 +02:00
}
2014-02-23 16:14:24 -05:00
protected
slots:
2021-11-21 23:42:55 +01:00
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal) override;
void downloadError(QNetworkReply::NetworkError error) override;
void downloadFinished() override;
void downloadReadyRead() override {}
2014-02-23 16:14:24 -05:00
public
slots:
void startImpl() override;
2014-02-23 16:14:24 -05:00
private:
ScreenShot::Ptr m_shot;
2018-07-15 14:51:05 +02:00
bool finished = true;
2014-02-23 16:14:24 -05:00
};