8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MANUALCOOKWINDOW_H
#define MANUALCOOKWINDOW_H
#include <QMainWindow>
#include "oven.h"
#include "udphandler.h"
namespace Ui {
class ManualCookWindow;
}
class ManualCookWindow : public QMainWindow
{
Q_OBJECT
public:
|
538041ab9
김태훈
소스 코드 구조 개선
|
18
|
explicit ManualCookWindow(QWidget *parent, Oven::Mode mode);
|
8c2952457
김태훈
응용 프로그램 추가
|
19
20
21
|
~ManualCookWindow();
signals:
|
8c2952457
김태훈
응용 프로그램 추가
|
22
23
24
|
void cookStopRequested();
public slots:
|
8c2952457
김태훈
응용 프로그램 추가
|
25
26
|
private slots:
|
bb26a0523
김태훈
소스 코드 정리
|
27
28
29
30
|
void setupAnimation();
void setOvenDefault(Oven::Mode mode);
void start();
void stop();
|
8c2952457
김태훈
응용 프로그램 추가
|
31
32
33
34
35
36
|
void checkTime();
void updateLabels();
void showCurrentHumidity();
void hideCurrentHumidity();
void showCurrentTemp();
void hideCurrentTemp();
|
bb26a0523
김태훈
소스 코드 정리
|
37
38
39
40
41
42
43
44
45
46
47
|
void onOvenUpdated(Oven *oven);
void on_steamButton_clicked();
void on_combiButton_clicked();
void on_dryheatButton_clicked();
void on_humidityButton_pressed();
void on_humidityButton_released();
void on_tempButton_pressed();
void on_tempButton_released();
void on_interTempButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
48
49
|
void on_goOuterButton_clicked();
void on_applyButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
50
|
|
bb26a0523
김태훈
소스 코드 정리
|
51
52
|
void on_runStopButton_clicked();
void on_fanButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
53
|
void on_preheatButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
54
|
void on_damperButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
55
|
void on_humidificationButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
56
|
void on_repeatButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
57
|
void on_cooldownButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
58
|
void on_reserveButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
59
|
void on_favoritesButton_clicked();
|
bb26a0523
김태훈
소스 코드 정리
|
60
61
62
63
|
void on_goBackStackButton_clicked();
void on_goFrontStackButton_clicked();
void on_backButton_clicked();
|
8c2952457
김태훈
응용 프로그램 추가
|
64
65
66
67
|
private:
Ui::ManualCookWindow *ui;
Oven *oven;
|
bb26a0523
김태훈
소스 코드 정리
|
68
69
70
71
72
73
|
QTimer startCookingTimer;
QTimer checkTimeTimer;
QTimer showCurrentHumidityTimer;
QTimer showCurrentTempTimer;
|
8c2952457
김태훈
응용 프로그램 추가
|
74
75
76
77
78
79
80
81
82
83
84
|
int humidity;
int temp;
int time;
int interTemp;
bool showCurrentHumidity_ = false;
bool showCurrentTemp_ = false;
};
#endif // MANUALCOOKWINDOW_H
|