Blame view

app/gui/oven_control/realtimesensorwindow.h 987 Bytes
6a965b9f1   고영탁   엔지니어 모드 2차 구현
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
  #ifndef REALTIMESENSORWINDOW_H
  #define REALTIMESENSORWINDOW_H
  
  #include <QMainWindow>
  #include <qlabel.h>
  #include "servicedatas.h"
  
  #define REALSENSOR_CONTROL_LIST_COL_MAX    4
  #define REALSENSOR_CONTROL_LIST_ITEM_MAX   9
  
  namespace Ui {
  class realtimeSensorWindow;
  }
  
  class realtimeSensorWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit realtimeSensorWindow(QWidget *parent = 0);
      ~realtimeSensorWindow();
  
  private slots:
      void on_backButton_clicked();
  
  private:
      const uint16_t m_arrSensorItemIdxs[REALSENSOR_CONTROL_LIST_ITEM_MAX]={
          0,1,4,5,6,7,8,12,13
      };
      const uint16_t m_arrCriticalValue[REALSENSOR_CONTROL_LIST_ITEM_MAX] = {
          320,120,270,300,300,300,300,80,80
      };
  
      Ui::realtimeSensorWindow *ui;
      QLabel *m_arrLbState[REALSENSOR_CONTROL_LIST_COL_MAX][REALSENSOR_CONTROL_LIST_ITEM_MAX];
      sensor_log_item* m_arrSensorItems[REALSENSOR_CONTROL_LIST_ITEM_MAX];
  
  
      void reloadUi(void);
  };
  
  #endif // REALTIMESENSORWINDOW_H