Blame view

app/gui/oven_control/manualcookfinishpopup.h 826 Bytes
16ef5d842   김태훈   V2.0.01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  #ifndef MANUALCOOKFINISHPOPUP_H
  #define MANUALCOOKFINISHPOPUP_H
  
  #include <QWidget>
  
  namespace Ui {
  class ManualCookFinishPopup;
  }
  
  class ManualCookFinishPopup : public QWidget
  {
      Q_OBJECT
  
  public:
      explicit ManualCookFinishPopup(QWidget *parent = nullptr, bool keepWarmStartable = true);
      ~ManualCookFinishPopup();
  
  signals:
      void keepWarm();
  
  protected:
      void keyPressEvent(QKeyEvent *event);
      void keyReleaseEvent(QKeyEvent *event);
  
  private:
      Ui::ManualCookFinishPopup *ui;
  
      QWidget *pushed = Q_NULLPTR;
  
      void onEncoderLeft();
      void onEncoderRight();
      void onEncoderClicked(QWidget *clicked);
  
  private slots:
      void on_closeButton_clicked();
      void on_closeButton_2_clicked();
      void on_warmupButton_clicked();
      void on_okButton_clicked();
  };
  
  #endif // MANUALCOOKFINISHPOPUP_H