| 1 |
#ifndef BGIMAGEPAGE3_H |
| 2 |
#define BGIMAGEPAGE3_H |
| 3 |
|
| 4 |
#include <QWizardPage> |
| 5 |
#include "util.h" |
| 6 |
|
| 7 |
namespace Ui { |
| 8 |
class BGImagePage3; |
| 9 |
} |
| 10 |
|
| 11 |
class BGImagePage3 : public QWizardPage |
| 12 |
{ |
| 13 |
Q_OBJECT |
| 14 |
|
| 15 |
public: |
| 16 |
explicit BGImagePage3(QWidget *parent = 0); |
| 17 |
~BGImagePage3(); |
| 18 |
|
| 19 |
private slots: |
| 20 |
void on_cbCreateTXMP_toggled(bool checked); |
| 21 |
|
| 22 |
void on_leLevelId_textChanged(const QString &arg1); |
| 23 |
|
| 24 |
void on_cbTargetForImage_currentIndexChanged(const QString); |
| 25 |
|
| 26 |
void on_cbCreateTXMB_toggled(bool checked); |
| 27 |
|
| 28 |
private: |
| 29 |
Ui::BGImagePage3 *ui; |
| 30 |
|
| 31 |
void generateImageName(); |
| 32 |
void initializePage(); |
| 33 |
bool validatePage(); |
| 34 |
}; |
| 35 |
|
| 36 |
#endif // BGIMAGEPAGE3_H |