ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/s10k/Vago/bgImageWizard/bgimagepage2.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: 659 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 BGIMAGEPAGE2_H
2 #define BGIMAGEPAGE2_H
3
4 #include <QWizardPage>
5 #include <QBitmap>
6
7 #include "utilvago.h"
8 #include "logger.h"
9
10 namespace Ui {
11 class BGImagePage2;
12 }
13
14 class BGImagePage2 : public QWizardPage
15 {
16 Q_OBJECT
17
18 public:
19 explicit BGImagePage2(Logger *myLogger, QWidget *parent = 0);
20 ~BGImagePage2();
21
22 private slots:
23 void on_pbBrowse_clicked();
24
25 private:
26 Logger *myLogger;
27
28 Ui::BGImagePage2 *ui;
29 bool validateField(QString &field);
30 bool validatePage();
31 void setImage(const QString &imagePath, const QImage &image);
32 void initializePage();
33 };
34
35 #endif // BGIMAGEPAGE2_H