summaryrefslogtreecommitdiffstats
path: root/titleloadjob.h
blob: 4a1729e8d76f4d7297e3e40077871453be264c48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TITLELOADJOB_H
#define TITLELOADJOB_H

#include "job.h"
#include "video.h"

class TitleLoadJob : public Job
{
	Q_OBJECT
public:
	TitleLoadJob(Video *video, QString subtitlePath, QString posterPath);
	Video::Jobs jobType() const;
protected:
	bool executeJob();
	QWidget* gui();
private:
	QString m_subtitlePath;
	QString m_posterPath;
};

#endif // TITLELOADJOB_H