Blame view

app/gui/oven_control/preheatpopup.h 959 Bytes
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
  
  #include "oven.h"
  
  namespace Ui {
  class PreheatPopup;
  }
  
  class PreheatPopup : public QWidget
  {
      Q_OBJECT
  
  public:
      explicit PreheatPopup(QWidget *parent = 0, Oven *oven = 0);
      ~PreheatPopup();
271dda4ae   김태훈   엔코더 구현
20
21
  protected:
      void keyReleaseEvent(QKeyEvent *event);
05f2a7552   김태훈   image 관리 구조 변경
22
23
  private slots:
      void updateView();
61ba89b34   김태훈   GUI V0.1.6
24
25
26
27
28
      void start();
      void stop();
  
      void showCurrentHumidity();
      void showCurrentTemp();
05f2a7552   김태훈   image 관리 구조 변경
29
6eb13ba2e   김태훈   예열 팝업 동작 보완 및 동작 ...
30
      void onOvenChanged();
05f2a7552   김태훈   image 관리 구조 변경
31
32
      void on_closeButton_clicked();
      void on_closeButton_2_clicked();
61ba89b34   김태훈   GUI V0.1.6
33
      void on_humidityGaugeButton_pressed();
61ba89b34   김태훈   GUI V0.1.6
34
      void on_humidityGaugeButton_released();
61ba89b34   김태훈   GUI V0.1.6
35
      void on_heatGaugeButton_pressed();
61ba89b34   김태훈   GUI V0.1.6
36
      void on_heatGaugeButton_released();
05f2a7552   김태훈   image 관리 구조 변경
37
38
39
  private:
      Ui::PreheatPopup *ui;
      Oven *oven;
61ba89b34   김태훈   GUI V0.1.6
40
41
42
43
44
  
      QTimer showCurrentHumidityTimer;
      QTimer showCurrentTempTimer;
      bool showingCurrentHumidity;
      bool showingCurrentTemp;
05f2a7552   김태훈   image 관리 구조 변경
45
46
47
  };
  
  #endif // PREHEATPOPUP_H