ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/windowMessagesWizard/wmsetuppage.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: 886 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 WMSETUPPAGE_H
2 #define WMSETUPPAGE_H
3
4 #include <QWizardPage>
5
6 #include "utilvago.h"
7
8 namespace Ui {
9 class WmSetupPage;
10 }
11
12 enum class WINDOW_TYPE{
13 OBJECTIVE = 0,
14 TEXT_CONSOLE,
15 WEAPON,
16 ITEM,
17 DIARY,
18 HELP,
19 ENUM_END
20 };
21
22 class WmSetupPage : public QWizardPage
23 {
24 Q_OBJECT
25 public:
26 explicit WmSetupPage(QWidget *parent = 0);
27 ~WmSetupPage();
28
29 private slots:
30 bool validatePage();
31
32 void on_leLevelId_textChanged(const QString &arg1);
33
34 void on_lePageNumber_textChanged(const QString &arg1);
35
36 void on_cbWindowType_currentTextChanged(const QString &arg1);
37
38 void on_leWeaponClassName_textChanged(const QString &arg1);
39
40 private:
41 Ui::WmSetupPage *ui;
42 private:
43 void generateDiaryFileName();
44 QString getWindowTypeDescription(const WINDOW_TYPE wt);
45 };
46
47 #endif // WMSETUPPAGE_H