Rev | Line | |
---|
[771] | 1 | #ifndef SOUNDWIZARD_H
|
---|
| 2 | #define SOUNDWIZARD_H
|
---|
| 3 |
|
---|
| 4 | // System includes
|
---|
| 5 | #include <QString>
|
---|
| 6 | #include <QWizard>
|
---|
| 7 | #include <QWizardPage>
|
---|
| 8 | #include <QLabel>
|
---|
| 9 | #include <QDesktopWidget>
|
---|
| 10 | #include <QVBoxLayout>
|
---|
| 11 | #include <QPushButton>
|
---|
| 12 |
|
---|
| 13 | // Local includes
|
---|
| 14 | #include "util.h"
|
---|
[1061] | 15 | #include "abstractwizard.h"
|
---|
[771] | 16 | #include "soundpage2.h"
|
---|
| 17 | #include "soundpage3.h"
|
---|
| 18 | #include "soundpage4.h"
|
---|
[1054] | 19 | #include "soundpage5.h"
|
---|
[771] | 20 | #include "soundpagefinal.h"
|
---|
| 21 |
|
---|
[1061] | 22 | class SoundWizard: public AbstractWizard
|
---|
[771] | 23 | {
|
---|
[1061] | 24 | protected:
|
---|
[1093] | 25 | SoundWizard(QString appLocation, QString workspaceWizardLocation, QSettings *vagoSettings, QHash<QString, QString> *commandMap);
|
---|
[1061] | 26 | void exec();
|
---|
| 27 | QHash<QString, QString> *commandMap;
|
---|
[771] | 28 | private:
|
---|
| 29 | QString soundsLocation;
|
---|
[1061] | 30 | void beforeClose(QDialog::DialogCode resultStatus);
|
---|
[771] | 31 | };
|
---|
| 32 |
|
---|
| 33 | #endif // SOUNDWIZARD_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.