autocooksettingwidget.h
978 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
40
41
42
43
44
45
46
47
48
49
50
#ifndef AUTOCOOKSETTINGWIDGET_H
#define AUTOCOOKSETTINGWIDGET_H
#include <QWidget>
#include <QPushButton>
#include <QLabel>
#include <QSlider>
#include "define.h"
#include "cook.h"
#include "cookhistory.h"
namespace Ui {
class AutoCookSettingWidget;
}
class AutoCookSettingWidget : public QWidget
{
Q_OBJECT
struct ConfigWidget {
QPushButton *button;
QLabel *minimum;
QLabel *maximum;
QLabel *current;
QSlider *slider;
};
public:
explicit AutoCookSettingWidget(AutoCookSetting setting, QWidget *parent = 0);
~AutoCookSettingWidget();
protected:
void keyPressEvent(QKeyEvent *event);
void keyReleaseEvent(QKeyEvent *event);
private:
Ui::AutoCookSettingWidget *ui;
QList<ConfigWidget> configWidgets;
void setupUi(Cook cook);
QWidget *pushed = NULL;
void onEncoderLeft();
void onEncoderRight();
void onEncoderClicked(QWidget *clicked);
};
#endif // AUTOCOOKSETTINGWIDGET_H