summaryrefslogtreecommitdiffstats
path: root/job.cpp
blob: bbc55b40b081b7cded02057831365f190c37c5ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "job.h"
#include "video.h"
#include <QtConcurrentRun>

Job::Job(Video *parent, bool threaded)
		: QObject(parent),
		m_gui(0),
		m_video(parent)
{
	if (threaded) {
		m_watcher = new QFutureWatcher<bool>;
		m_watcher->setParent(this);
		connect(m_watcher, SIGNAL(finished()), this, SLOT(jobFinished()));
	} else
		m_watcher = 0;
}
Video* Job::video() const
{
	return m_video;
}
void Job::runJob()
{
	if (m_watcher)
		m_watcher->setFuture(QtConcurrent::run(this, &Job::executeJob));
	else
		executeJob();
}
void Job::jobFinished()
{
	emit completed(m_watcher->future().result());
}
QWidget* Job::widget()
{
	if (!m_gui)
		m_gui = gui();
	return m_gui;
}
QFutureWatcher<bool>* Job::watcher() const
{
	return m_watcher;
}