blob: 867fde27f63d206a7a8f5b7608c7e0ad55e73fee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SUBTITLEWIZARD_H
#define SUBTITLEWIZARD_H
#include "subtitlebrowserpage.h"
#include <QWizard>
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
|