-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteinfopage.h
43 lines (34 loc) · 878 Bytes
/
siteinfopage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef SITEINFOPAGE_H
#define SITEINFOPAGE_H
#include <QTime>
#include <QTimeEdit>
#include <QDate>
#include <QDateEdit>
#include <QLineEdit>
#include <QRadioButton>
#include <QWizardPage>
#include "wizdata.h"
class SiteInfoPage : public QWizardPage
{
Q_OBJECT
public:
explicit SiteInfoPage(QWidget *parent = 0, WizData *tmpWizData = 0);
int nextId() const;
bool validatePage();
QString getLocationSelected();
signals:
public slots:
private:
WizData *wizData;
QString logFileName;
QString logtimeDisplayFormat;
QString logdateDisplayFormat;
QString timeDisplayFormat;
//radiobuttons for location(conroy, michael strandherd, innes, clyde)
QRadioButton *conroyRadio;
QRadioButton *michaelRadio;
QRadioButton *strandherdRadio;
QRadioButton *innesRadio;
QRadioButton *clydeRadio;
};
#endif // SITEINFOPAGE_H