PrismLauncher/api/logic/InstanceCopyTask.h

32 lines
746 B
C
Raw Normal View History

2016-10-03 00:55:54 +02:00
#pragma once
#include "tasks/Task.h"
#include "multimc_logic_export.h"
#include "net/NetJob.h"
#include <QUrl>
#include <QFuture>
#include <QFutureWatcher>
2016-10-03 00:55:54 +02:00
#include "settings/SettingsObject.h"
#include "BaseVersion.h"
#include "BaseInstance.h"
2018-03-19 02:36:12 +01:00
#include "InstanceTask.h"
2018-03-19 02:36:12 +01:00
class MULTIMC_LOGIC_EXPORT InstanceCopyTask : public InstanceTask
2016-10-03 00:55:54 +02:00
{
2018-07-15 14:51:05 +02:00
Q_OBJECT
2016-10-03 00:55:54 +02:00
public:
2018-07-15 14:51:05 +02:00
explicit InstanceCopyTask(InstancePtr origInstance, bool copySaves);
2016-10-03 00:55:54 +02:00
protected:
2018-07-15 14:51:05 +02:00
//! Entry point for tasks.
virtual void executeTask() override;
void copyFinished();
void copyAborted();
2016-10-03 00:55:54 +02:00
private: /* data */
2018-07-15 14:51:05 +02:00
InstancePtr m_origInstance;
QFuture<bool> m_copyFuture;
QFutureWatcher<bool> m_copyFutureWatcher;
std::unique_ptr<IPathMatcher> m_matcher;
2016-10-03 00:55:54 +02:00
};