manualviewerdlg.h 660 Bytes
#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