comparison gui/src/WelcomeWizard.h @ 13668:421afeae929b

Added a settings wizard that appears at first startup of Octave GUI.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Sat, 10 Sep 2011 18:33:58 +0200
parents
children c0e66d6e3dc8
comparison
equal deleted inserted replaced
13667:9b74f97919e1 13668:421afeae929b
1 #ifndef WELCOMEWIZARD_H
2 #define WELCOMEWIZARD_H
3
4 #include <QDialog>
5
6 namespace Ui {
7 class WelcomeWizard;
8 }
9
10 class WelcomeWizard : public QDialog
11 {
12 Q_OBJECT
13
14 public:
15 explicit WelcomeWizard(QWidget *parent = 0);
16 ~WelcomeWizard();
17
18 public slots:
19 void next ();
20 void previous ();
21
22 private:
23 Ui::WelcomeWizard *ui;
24 };
25
26 #endif // WELCOMEWIZARD_H