Blame view

app/gui/oven_control/autocookconfigwindow.h 940 Bytes
6f96c947a   김태훈   GUI 0.1.4
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
42
43
44
45
46
47
48
49
50
  #ifndef AUTOCOOKCONFIGWINDOW_H
  #define AUTOCOOKCONFIGWINDOW_H
  
  #include <QMainWindow>
  #include <QTimer>
  #include <QPushButton>
  #include <QLabel>
  #include <QSlider>
  
  #include "oven.h"
  #include "cook.h"
  
  namespace Ui {
  class AutoCookConfigWindow;
  }
  
  class AutoCookConfigWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit AutoCookConfigWindow(QWidget *parent = 0, Oven *oven = 0, AbstractCook *cook = 0);
      ~AutoCookConfigWindow();
  
  private:
      Ui::AutoCookConfigWindow *ui;
      Oven *oven;
      AbstractCook *cook;
  
      QTimer cookStartTimer;
      bool interTempEnabled;
  
      struct ConfigWidget {
          QPushButton *button;
          QWidget *block;
          QLabel *minimum;
          QLabel *maximum;
          QLabel *current;
          QSlider *slider;
      };
  
      QList<ConfigWidget> configWidgets;
  
  private slots:
      void updateView();
      void updateConfig();
      void changeInterTemp();
  };
  
  #endif // AUTOCOOKCONFIGWINDOW_H