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

#include <QWizard>
#include "subtitlebrowserpage.h"

class SubtitleBrowserPage;
class SubtitleWizard : public QWizard
{
	Q_OBJECT

public:
	SubtitleWizard(QWidget *parent = 0);
	QSize sizeHint() const;
private:
	SubtitleBrowserPage *m_browserPage;
private slots:
	void handleCustomButton(int which);
	void setCustomButtons(int id);
};

#endif // SUBTITLEWIZARD_H