manualviewerdlg.h
660 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 MANUALVIEWERDLG_H
#define MANUALVIEWERDLG_H
#include <QDialog>
#define MAX_MANUAL_PAGE 60
#define START_X 0
#define START_Y 0
#define SIZE_WIDTH 900
#define SIZE_HEIGHT 1450
#define AUTO_COOK_PAGE 30
#define MANUAL_COOK_PAGE 36
namespace Ui {
class ManualViewerDlg;
}
class ManualViewerDlg : public QDialog
{
Q_OBJECT
public:
explicit ManualViewerDlg(QWidget *parent = 0, uint32_t start=1);
~ManualViewerDlg();
private slots:
void on_backButton_clicked();
void on_leftButton_clicked();
void on_rightButton_clicked();
private:
Ui::ManualViewerDlg *ui;
uint32_t m_nCurPage;
};
#endif // MANUALVIEWERDLG_H