Mercurial > hg > octave-lyh
diff 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 |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/gui/src/WelcomeWizard.h @@ -0,0 +1,26 @@ +#ifndef WELCOMEWIZARD_H +#define WELCOMEWIZARD_H + +#include <QDialog> + +namespace Ui { +class WelcomeWizard; +} + +class WelcomeWizard : public QDialog +{ + Q_OBJECT + +public: + explicit WelcomeWizard(QWidget *parent = 0); + ~WelcomeWizard(); + +public slots: + void next (); + void previous (); + +private: + Ui::WelcomeWizard *ui; +}; + +#endif // WELCOMEWIZARD_H