reservetimepopup.h
789 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
#ifndef RESERVETIMEPOPUP_H
#define RESERVETIMEPOPUP_H
#include <QWidget>
namespace Ui {
class ReserveTimePopup;
}
class ReserveTimePopup : public QWidget
{
Q_OBJECT
public:
explicit ReserveTimePopup(QWidget *parent = 0);
~ReserveTimePopup();
bool eventFilter(QObject *watched, QEvent *event);
protected:
void keyPressEvent(QKeyEvent* event);
void keyReleaseEvent(QKeyEvent* event);
private slots:
void revert();
void on_okButton_clicked();
void on_cancelButton_clicked();
private:
Ui::ReserveTimePopup *ui;
int lastValue;
QWidget *pushed = NULL;
void onEncoderLeft();
void onEncoderRight();
void onEncoderClicked(QWidget *clicked);
signals:
void timeout();
void canceled();
};
#endif // RESERVETIMEPOPUP_H