2013-12-08 21:35:57 +01:00
|
|
|
#ifndef INTROPAGE_HPP
|
|
|
|
#define INTROPAGE_HPP
|
|
|
|
|
|
|
|
#include "ui_intropage.h"
|
|
|
|
|
2022-10-10 13:41:36 +02:00
|
|
|
#include <QWizard>
|
|
|
|
|
2013-12-08 21:35:57 +01:00
|
|
|
namespace Wizard
|
|
|
|
{
|
2013-12-13 13:38:49 +01:00
|
|
|
class MainWizard;
|
2013-12-08 21:35:57 +01:00
|
|
|
|
|
|
|
class IntroPage : public QWizardPage, private Ui::IntroPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-04-18 13:17:37 +02:00
|
|
|
IntroPage(QWidget* parent);
|
2013-12-08 21:35:57 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
int nextId() const override;
|
2013-12-08 22:58:29 +01:00
|
|
|
|
2013-12-13 13:38:49 +01:00
|
|
|
private:
|
|
|
|
MainWizard* mWizard;
|
2013-12-08 21:35:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // INTROPAGE_HPP
|