-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentryitempage.h
More file actions
39 lines (31 loc) · 777 Bytes
/
entryitempage.h
File metadata and controls
39 lines (31 loc) · 777 Bytes
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
#ifndef ENTRYITEMPAGE_H
#define ENTRYITEMPAGE_H
#include <QTime>
#include <QTimeEdit>
#include <QDate>
#include <QDateEdit>
#include <QLineEdit>
#include <QRadioButton>
#include <QWizardPage>
#include "wizdata.h"
class EntryItemPage : public QWizardPage
{
Q_OBJECT
public:
explicit EntryItemPage(QWidget *parent = 0, WizData *tmpWizData = 0);
int nextId() const;
bool validatePage();
QString getCountForItemType();
signals:
public slots:
private:
WizData *wizData;
QString logFileName;
QString logtimeDisplayFormat;
QString logdateDisplayFormat;
QString timeDisplayFormat;
//radiobuttons for Load Count Sheet Target(passes, tickets)
QRadioButton *passesRadio;
QRadioButton *ticketsRadio;
};
#endif // ENTRYITEMPAGE_H