ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/packageWizard/packagewizard.h
Revision: 1093
Committed: Sat Dec 30 13:57:32 2017 UTC (7 years, 9 months ago) by s10k
Content type: text/x-chdr
File size: 748 byte(s)
Log Message:
Vago 1.4

File Contents

# Content
1 #ifndef PACKAGEWIZARD_H
2 #define PACKAGEWIZARD_H
3
4 #include "abstractwizard.h"
5 #include "packagepage2.h"
6 #include "packagepage3.h"
7 #include "packagepage4.h"
8 #include "packagepagefinal.h"
9
10 #include <JlCompress.h>
11
12 class PackageWizard: public AbstractWizard // for signals and slots
13 {
14 private:
15 QString packagesLocation;
16 PackagePage4 *page4Pointer = nullptr;
17 private:
18 void copyPackageFolders(const DropTableWidget *myTable, QString tableDir, QString modDir, bool &bslExist);
19 void createPackage();
20 void beforeClose(QDialog::DialogCode resultStatus);
21 protected:
22 PackageWizard(const QString &appDir, QString workspaceWizardLocation, QSettings *vagoSettings);
23 void exec();
24 };
25
26 #endif // PACKAGEWIZARD_H