pollymc/launcher/tasks/SequentialTask.h

31 lines
570 B
C
Raw Normal View History

#pragma once
#include "Task.h"
2021-11-20 21:38:34 +05:30
#include "QObjectPtr.h"
#include <QQueue>
class SequentialTask : public Task
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit SequentialTask(QObject *parent = 0);
virtual ~SequentialTask() {};
2021-11-20 21:38:34 +05:30
void addTask(shared_qobject_ptr<Task> task);
protected:
2018-07-15 18:21:05 +05:30
void executeTask();
private
slots:
2018-07-15 18:21:05 +05:30
void startNext();
void subTaskFailed(const QString &msg);
void subTaskStatus(const QString &msg);
void subTaskProgress(qint64 current, qint64 total);
private:
2021-11-20 21:38:34 +05:30
QQueue<shared_qobject_ptr<Task> > m_queue;
2018-07-15 18:21:05 +05:30
int m_currentIndex;
};