summaryrefslogtreecommitdiffstats
path: root/titleloadjob.cpp
blob: b59470a318a9cd9fd2d6122b3f63a1c90b9a6fb2 (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
#include "titleloadjob.h"
#include <QWidget>
#include <QLabel>

TitleLoadJob::TitleLoadJob(Video *video) :
		Job(video, false)
{
}
Video::Jobs TitleLoadJob::jobType() const
{
	return Video::TitleLoad;
}
bool TitleLoadJob::executeJob()
{
	//TODO: title load the whole thing
	sleep(5);
	return true;
}
QWidget* TitleLoadJob::gui()
{
	//TODO: make a gui
	return new QLabel("Bet your ass this is title loading.");
}
void TitleLoadJob::terminate()
{
	//TODO: implement terminating
}