Blame view

app/gui/oven_control/programmingautoconfigwindow.h 1006 Bytes
382b586e9   김태훈   프로그래밍 모드 임시 구현
1
2
3
4
5
6
7
8
9
  #ifndef PROGRAMMINGAUTOCONFIGWINDOW_H
  #define PROGRAMMINGAUTOCONFIGWINDOW_H
  
  #include <QMainWindow>
  #include <QPushButton>
  #include <QLabel>
  #include <QSlider>
  
  #include "cookbook.h"
935b853a4   김태훈   새 슬라이더 적용
10
  #include "slider.h"
382b586e9   김태훈   프로그래밍 모드 임시 구현
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  
  namespace Ui {
  class ProgrammingAutoConfigWindow;
  }
  
  class ProgrammingAutoConfigWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit ProgrammingAutoConfigWindow(QWidget *parent, Cook cook);
      ~ProgrammingAutoConfigWindow();
  
  private:
      Ui::ProgrammingAutoConfigWindow *ui;
      Cook cook;
  
      struct ConfigWidget {
          QPushButton *button;
          QLabel *minimum;
          QLabel *maximum;
          QLabel *current;
935b853a4   김태훈   새 슬라이더 적용
33
          Slider *slider;
382b586e9   김태훈   프로그래밍 모드 임시 구현
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
      };
  
      QList<ConfigWidget> configWidgets;
  
  private slots:
      void setupUi();
      void updateView();
      void updateConfig();
  
      void on_backButton_clicked();
  
      void on_configButton_clicked();
  
      void on_helpButton_clicked();
  
      void on_okButton_clicked();
  
  signals:
      void added();
  };
  
  #endif // PROGRAMMINGAUTOCONFIGWINDOW_H