6a81d38e4
김태훈
자동 요리 관련 로직 전면 재작성
|
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
|
#ifndef KEEPWARMPOPUP_H
#define KEEPWARMPOPUP_H
#include <QWidget>
#include <QTime>
#include <QTimer>
namespace Ui {
class KeepWarmPopup;
}
class KeepWarmPopup : public QWidget
{
Q_OBJECT
public:
explicit KeepWarmPopup(QWidget *parent = 0);
~KeepWarmPopup();
private:
Ui::KeepWarmPopup *ui;
QTime startTime;
QTimer updateViewTimer;
private slots:
void updateView();
void on_stopButton_clicked();
};
#endif // KEEPWARMPOPUP_H
|