summaryrefslogtreecommitdiffstats
path: root/titleloadjob.h
blob: d4ff9aba541eff65b5ca08bc068e5d7c38688b2c (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;
	QWidget* gui();
protected:
	bool executeJob();
private:
	QString m_subtitlePath;
	QString m_posterPath;
};

#endif // TITLELOADJOB_H