05f2a7552
김태훈
image 관리 구조 변경
|
1
2
3
4
|
#ifndef PREHEATPOPUP_H
#define PREHEATPOPUP_H
#include <QWidget>
|
61ba89b34
김태훈
GUI V0.1.6
|
5
|
#include <QTimer>
|
05f2a7552
김태훈
image 관리 구조 변경
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "oven.h"
namespace Ui {
class PreheatPopup;
}
class PreheatPopup : public QWidget
{
Q_OBJECT
public:
explicit PreheatPopup(QWidget *parent = 0, Oven *oven = 0);
~PreheatPopup();
private slots:
void updateView();
|
61ba89b34
김태훈
GUI V0.1.6
|
23
24
25
26
27
|
void start();
void stop();
void showCurrentHumidity();
void showCurrentTemp();
|
05f2a7552
김태훈
image 관리 구조 변경
|
28
29
30
|
void on_closeButton_clicked();
void on_closeButton_2_clicked();
|
61ba89b34
김태훈
GUI V0.1.6
|
31
32
33
34
35
36
37
|
void on_humidityGaugeButton_pressed();
void on_humidityGaugeButton_released();
void on_heatGaugeButton_pressed();
void on_heatGaugeButton_released();
|
05f2a7552
김태훈
image 관리 구조 변경
|
38
39
40
|
private:
Ui::PreheatPopup *ui;
Oven *oven;
|
61ba89b34
김태훈
GUI V0.1.6
|
41
42
43
44
45
|
QTimer showCurrentHumidityTimer;
QTimer showCurrentTempTimer;
bool showingCurrentHumidity;
bool showingCurrentTemp;
|
05f2a7552
김태훈
image 관리 구조 변경
|
46
47
48
|
};
#endif // PREHEATPOPUP_H
|