Blame view

app/gui/oven_control/gasmodelsettingwindow.h 798 Bytes
22f83e90f   김태훈   모델 설정 UI 추가
1
2
3
4
  #ifndef GASMODELSETTINGWINDOW_H
  #define GASMODELSETTINGWINDOW_H
  
  #include <QMainWindow>
5cf78e0e6   김태훈   모델 설정을 환경 설정에 반영
5
  #include "config.h"
22f83e90f   김태훈   모델 설정 UI 추가
6
7
8
9
10
11
12
13
14
15
16
17
18
  namespace Ui {
  class GasModelSettingWindow;
  }
  
  class GasModelSettingWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit GasModelSettingWindow(QWidget *parent = 0);
      ~GasModelSettingWindow();
  
  private slots:
5cf78e0e6   김태훈   모델 설정을 환경 설정에 반영
19
      void setModel(Define::model_type model);
22f83e90f   김태훈   모델 설정 UI 추가
20
      void on_lpg10Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
21
      void on_lng10Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
22
      void on_lpg20Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
23
      void on_lng20Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
24
      void on_lpg24Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
25
      void on_lng24Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
26
      void on_lpg40Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
27
28
29
30
31
32
      void on_lng40Button_clicked();
  
      void on_backButton_clicked();
  
  private:
      Ui::GasModelSettingWindow *ui;
ec04831f5   고영탁   모델 설정 변경
33
      uint32_t selitem;
22f83e90f   김태훈   모델 설정 UI 추가
34
35
36
  };
  
  #endif // GASMODELSETTINGWINDOW_H