Blame view

app/gui/oven_control/keepwarmpopup.h 692 Bytes
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #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();
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
19
20
21
  protected:
      void keyPressEvent(QKeyEvent *event);
      void keyReleaseEvent(QKeyEvent *event);
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
22
23
24
25
26
  private:
      Ui::KeepWarmPopup *ui;
  
      QTime startTime;
      QTimer updateViewTimer;
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
27
28
29
30
31
      QWidget *pushed = NULL;
  
      void onEncoderLeft();
      void onEncoderRight();
      void onEncoderClicked(QWidget *clicked);
6a81d38e4   김태훈   자동 요리 관련 로직 전면 재작성
32
33
34
35
36
37
38
  
  private slots:
      void updateView();
      void on_stopButton_clicked();
  };
  
  #endif // KEEPWARMPOPUP_H