PrismLauncher/api/logic/InstanceCopyTask.h

32 lines
746 B
C
Raw Normal View History

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