pollymc/launcher/InstanceCopyTask.h

32 lines
735 B
C
Raw Normal View History

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