pollymc/api/logic/screenshots/ImgurAlbumCreation.h

45 lines
989 B
C
Raw Normal View History

2014-02-24 16:00:27 +05:30
#pragma once
2015-02-09 06:21:14 +05:30
#include "net/NetAction.h"
2014-02-25 05:21:24 +05:30
#include "Screenshot.h"
2014-02-24 16:00:27 +05:30
#include "multimc_logic_export.h"
typedef std::shared_ptr<class ImgurAlbumCreation> ImgurAlbumCreationPtr;
class MULTIMC_LOGIC_EXPORT ImgurAlbumCreation : public NetAction
2014-02-24 16:00:27 +05:30
{
public:
2018-07-15 18:21:05 +05:30
explicit ImgurAlbumCreation(QList<ScreenshotPtr> screenshots);
static ImgurAlbumCreationPtr make(QList<ScreenshotPtr> screenshots)
{
return ImgurAlbumCreationPtr(new ImgurAlbumCreation(screenshots));
}
2014-02-24 16:00:27 +05:30
2018-07-15 18:21:05 +05:30
QString deleteHash() const
{
return m_deleteHash;
}
QString id() const
{
return m_id;
}
2014-02-24 16:00:27 +05:30
protected
slots:
2018-07-15 18:21:05 +05:30
virtual void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
virtual void downloadError(QNetworkReply::NetworkError error);
virtual void downloadFinished();
virtual void downloadReadyRead()
{
}
2014-02-24 16:00:27 +05:30
public
slots:
2018-07-15 18:21:05 +05:30
virtual void start();
2014-02-24 16:00:27 +05:30
private:
2018-07-15 18:21:05 +05:30
QList<ScreenshotPtr> m_screenshots;
2014-02-24 16:00:27 +05:30
2018-07-15 18:21:05 +05:30
QString m_deleteHash;
QString m_id;
2014-02-24 16:00:27 +05:30
};