ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/soundWizard/soundwizard.h
Revision: 1092
Committed: Sat Dec 30 13:43:28 2017 UTC (7 years, 9 months ago) by s10k
Content type: text/x-chdr
File size: 843 byte(s)
Log Message:
moved files to s10k directory since now vago uses the same libs structures as my other projects (e.g. XmlTools)

File Contents

# Content
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"
15 #include "abstractwizard.h"
16 #include "logger.h"
17 #include "soundpage2.h"
18 #include "soundpage3.h"
19 #include "soundpage4.h"
20 #include "soundpage5.h"
21 #include "soundpagefinal.h"
22
23 class SoundWizard: public AbstractWizard
24 {
25 protected:
26 SoundWizard(QString appLocation, QString workspaceWizardLocation, QSettings *vagoSettings, Logger *myLogger, QHash<QString, QString> *commandMap);
27 void exec();
28 QHash<QString, QString> *commandMap;
29 private:
30 QString soundsLocation;
31 void beforeClose(QDialog::DialogCode resultStatus);
32 };
33
34 #endif // SOUNDWIZARD_H