Blame view

app/gui/oven_control/gasmodelsettingwindow.h 1.05 KB
22f83e90f   김태훈   모델 설정 UI 추가
1
2
3
4
  #ifndef GASMODELSETTINGWINDOW_H
  #define GASMODELSETTINGWINDOW_H
  
  #include <QMainWindow>
9146b87b4   고영탁   엔코더 작업 진행중
5
  #include <QPushButton>
22f83e90f   김태훈   모델 설정 UI 추가
6
5cf78e0e6   김태훈   모델 설정을 환경 설정에 반영
7
  #include "config.h"
22f83e90f   김태훈   모델 설정 UI 추가
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();
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
19
20
21
  protected:
      void keyPressEvent(QKeyEvent *event);
      void keyReleaseEvent(QKeyEvent *event);
22f83e90f   김태훈   모델 설정 UI 추가
22
  private slots:
5cf78e0e6   김태훈   모델 설정을 환경 설정에 반영
23
      void setModel(Define::model_type model);
22f83e90f   김태훈   모델 설정 UI 추가
24
      void on_lpg10Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
25
      void on_lng10Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
26
      void on_lpg20Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
27
      void on_lng20Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
28
      void on_lpg24Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
29
      void on_lng24Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
30
      void on_lpg40Button_clicked();
22f83e90f   김태훈   모델 설정 UI 추가
31
32
33
34
35
36
      void on_lng40Button_clicked();
  
      void on_backButton_clicked();
  
  private:
      Ui::GasModelSettingWindow *ui;
ec04831f5   고영탁   모델 설정 변경
37
      uint32_t selitem;
9e1f8d093   김태훈   엔코더 구현 대비 선행 수정
38
39
40
41
42
43
  
      QWidget *pushed = NULL;
  
      void onEncoderLeft();
      void onEncoderRight();
      void onEncoderClicked(QWidget *clicked);
9146b87b4   고영탁   엔코더 작업 진행중
44
      QPushButton* m_ctrChkedBtn;
22f83e90f   김태훈   모델 설정 UI 추가
45
46
47
  };
  
  #endif // GASMODELSETTINGWINDOW_H