Blame view

app/gui/oven_control/manualcookwindow.h 2.67 KB
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
  #ifndef MANUALCOOKWINDOW_H
  #define MANUALCOOKWINDOW_H
  
  #include <QMainWindow>
  
  #include "oven.h"
  #include "udphandler.h"
f588aa273   김태훈   부가 기능 로직 추가
8
  #include "cookhistory.h"
8c2952457   김태훈   응용 프로그램 추가
9
10
11
12
13
14
15
16
17
18
  
  namespace Ui {
  class ManualCookWindow;
  }
  
  class ManualCookWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
19
      explicit ManualCookWindow(QWidget *parent, Define::Mode mode);
f588aa273   김태훈   부가 기능 로직 추가
20
      explicit ManualCookWindow(QWidget *parent, ManualCookSetting setting);
8c2952457   김태훈   응용 프로그램 추가
21
22
23
      ~ManualCookWindow();
  
  signals:
8c2952457   김태훈   응용 프로그램 추가
24
25
26
      void cookStopRequested();
  
  public slots:
8c2952457   김태훈   응용 프로그램 추가
27
28
  
  private slots:
bb26a0523   김태훈   소스 코드 정리
29
      void setupAnimation();
d0cfbd177   김태훈   GUI V0.1.10 (이 버전...
30
      void setOvenDefault(Define::Mode mode);
bb26a0523   김태훈   소스 코드 정리
31
32
      void start();
      void stop();
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
33
      void updateView();
8c2952457   김태훈   응용 프로그램 추가
34
35
36
37
      void showCurrentHumidity();
      void hideCurrentHumidity();
      void showCurrentTemp();
      void hideCurrentTemp();
bb26a0523   김태훈   소스 코드 정리
38
      void onOvenUpdated(Oven *oven);
e00c6a2a9   김태훈   기능 추가 구현
39
40
41
42
      void addFavorite();
      void jumpConfig();
      void jumpFavorites();
      void jumpWash();
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
43
44
45
      void onMonitor1Timeout();
      void onMonitor2Timeout();
      void onMonitor3Timeout();
bb26a0523   김태훈   소스 코드 정리
46
47
48
49
50
51
52
53
54
      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   김태훈   응용 프로그램 추가
55
bb26a0523   김태훈   소스 코드 정리
56
57
      void on_runStopButton_clicked();
      void on_fanButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
58
      void on_preheatButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
59
      void on_damperButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
60
      void on_humidificationButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
61
      void on_repeatButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
62
      void on_cooldownButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
63
      void on_reserveButton_clicked();
213c24135   김태훈   수동 요리 반복 추가
64
      void on_favoriteButton_clicked();
bb26a0523   김태훈   소스 코드 정리
65
66
67
68
      void on_goBackStackButton_clicked();
      void on_goFrontStackButton_clicked();
  
      void on_backButton_clicked();
e00c6a2a9   김태훈   기능 추가 구현
69
70
71
72
      void on_configButton_clicked();
      void on_favoritesButton_clicked();
      void on_washButton_clicked();
      void on_helpButton_clicked();
8c2952457   김태훈   응용 프로그램 추가
73
a2de3cbfc   김태훈   수동 요리에 새 슬라이더 적용
74
      void on_timeSlider_valueChanged();
8c2952457   김태훈   응용 프로그램 추가
75
76
77
  private:
      Ui::ManualCookWindow *ui;
      Oven *oven;
bb26a0523   김태훈   소스 코드 정리
78
79
  
      QTimer startCookingTimer;
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
80
      QTimer updateViewTimer;
bb26a0523   김태훈   소스 코드 정리
81
82
83
  
      QTimer showCurrentHumidityTimer;
      QTimer showCurrentTempTimer;
8c2952457   김태훈   응용 프로그램 추가
84
85
86
87
88
89
90
91
  
      int humidity;
      int temp;
      int time;
      int interTemp;
  
      bool showCurrentHumidity_ = false;
      bool showCurrentTemp_ = false;
213c24135   김태훈   수동 요리 반복 추가
92
7c415d2f7   김태훈   현재 습도/온도 값을 볼 때 슬...
93
94
95
96
97
98
99
100
101
      int lastViewHumidity;
      int lastViewTemp;
      int lastViewTime;
      int lastViewInterTemp;
      bool lastViewInterTempEnabled;
      bool lastViewCooking;
      bool lastViewDamper;
      bool lastViewHumidification;
      int lastViewFan;
ea536cd1d   김태훈   적재 / 조리 중 문 열림 시간...
102
103
104
105
106
      int monitorLevel;
      QTimer monitor1;
      QTimer monitor2;
      QTimer monitor3;
      bool monitorTriggered;
213c24135   김태훈   수동 요리 반복 추가
107
108
      ManualCookSetting repeatSetting;
      bool repeat;
a2de3cbfc   김태훈   수동 요리에 새 슬라이더 적용
109
110
111
  
      int sliderToTime(int value);
      int timeToSlider(int secs);
8c2952457   김태훈   응용 프로그램 추가
112
113
114
  };
  
  #endif // MANUALCOOKWINDOW_H