comparison libgui/src/welcome-wizard.h @ 17611:0dd2cf2e3174

don't use ui designer for welcome dialog box * welcome-wizard.ui: Delete. * module.mk: Update file list. * welcome-wizard.cc, welcome-wizard.h: Rewrite.
author John W. Eaton <jwe@octave.org>
date Tue, 08 Oct 2013 18:38:40 -0400
parents c8c0dff02538
children d63878346099
comparison
equal deleted inserted replaced
17610:3f8b3588a9f0 17611:0dd2cf2e3174
1 /* 1 /*
2 2
3 Copyright (C) 2013 John W. Eaton
3 Copyright (C) 2011-2012 Jacob Dawid 4 Copyright (C) 2011-2012 Jacob Dawid
4 5
5 This file is part of Octave. 6 This file is part of Octave.
6 7
7 Octave is free software; you can redistribute it and/or modify it 8 Octave is free software; you can redistribute it and/or modify it
23 #ifndef WELCOMEWIZARD_H 24 #ifndef WELCOMEWIZARD_H
24 #define WELCOMEWIZARD_H 25 #define WELCOMEWIZARD_H
25 26
26 #include <QDialog> 27 #include <QDialog>
27 28
28 namespace Ui {
29 class welcome_wizard;
30 }
31
32 class welcome_wizard : public QDialog 29 class welcome_wizard : public QDialog
33 { 30 {
34 Q_OBJECT 31 Q_OBJECT
35 32
36 public: 33 public:
37 explicit welcome_wizard (QWidget *parent = 0);
38 ~welcome_wizard ();
39 34
40 public slots: 35 welcome_wizard (QWidget *parent = 0);
41 36
42 private: 37 ~welcome_wizard (void) { }
43 Ui::welcome_wizard *_ui;
44 }; 38 };
45 39
46 #endif // WELCOMEWIZARD_H 40 #endif // WELCOMEWIZARD_H