41 lines
965 B
C
41 lines
965 B
C
|
#pragma once
|
||
|
|
||
|
#include "tasks/Task.h"
|
||
|
#include "multimc_logic_export.h"
|
||
|
#include "net/NetJob.h"
|
||
|
#include <QUrl>
|
||
|
#include "settings/SettingsObject.h"
|
||
|
|
||
|
class BaseInstanceProvider;
|
||
|
|
||
|
class MULTIMC_LOGIC_EXPORT InstanceImportTask : public Task
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit InstanceImportTask(SettingsObjectPtr settings, const QUrl sourceUrl, BaseInstanceProvider * target, const QString &instName,
|
||
|
const QString &instIcon, const QString &instGroup);
|
||
|
|
||
|
protected:
|
||
|
//! Entry point for tasks.
|
||
|
virtual void executeTask() override;
|
||
|
|
||
|
private:
|
||
|
void extractAndTweak();
|
||
|
|
||
|
private slots:
|
||
|
void downloadSucceeded();
|
||
|
void downloadFailed(QString reason);
|
||
|
void downloadProgressChanged(qint64 current, qint64 total);
|
||
|
|
||
|
private: /* data */
|
||
|
SettingsObjectPtr m_globalSettings;
|
||
|
NetJobPtr m_filesNetJob;
|
||
|
QUrl m_sourceUrl;
|
||
|
BaseInstanceProvider * m_target;
|
||
|
QString m_archivePath;
|
||
|
bool m_downloadRequired = false;
|
||
|
QString m_instName;
|
||
|
QString m_instIcon;
|
||
|
QString m_instGroup;
|
||
|
};
|