GH-1949 Allow Technic pack downloads to be aborted

This supports both 'single zip' modpacks and Solder packs, through the
Technic mod platform page.
This commit is contained in:
Jamie Mansfield
2021-07-06 15:12:39 +01:00
parent db392b4994
commit d5c4489313
4 changed files with 34 additions and 0 deletions

View File

@ -36,6 +36,9 @@ class MULTIMC_LOGIC_EXPORT SingleZipPackInstallTask : public InstanceTask
public:
SingleZipPackInstallTask(const QUrl &sourceUrl, const QString &minecraftVersion);
bool canAbort() const override { return true; }
bool abort() override;
protected:
void executeTask() override;
@ -48,6 +51,8 @@ private slots:
void extractAborted();
private:
bool m_abortable = false;
QUrl m_sourceUrl;
QString m_minecraftVersion;
QString m_archivePath;