Blame view

app/gui/oven_control/configresttimeformatdlg.h 815 Bytes
92fef6124   고영탁   환경 설정 - 설정 UI 완료
1
2
3
4
5
  #ifndef CONFIGRESTTIMEFORMATDLG_H
  #define CONFIGRESTTIMEFORMATDLG_H
  
  #include <QDialog>
  #include <QSignalMapper>
40f5d047f   고영탁   엔코더 작업 진행 중
6
7
  #include <QKeyEvent>
  #include <QVector>
92fef6124   고영탁   환경 설정 - 설정 UI 완료
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  
  namespace Ui {
  class configResttimeFormatDlg;
  }
  
  class configResttimeFormatDlg : public QDialog
  {
      Q_OBJECT
  
      void reloadUi(void);
  
  public:
      explicit configResttimeFormatDlg(QWidget *parent = 0);
      ~configResttimeFormatDlg();
  
  private slots:
      void on_ctrBtnOk_clicked();
  
      void on_ctrBtnCancel_clicked();
  
  public slots:
      void onConfigBtnClicked(const int sel);
40f5d047f   고영탁   엔코더 작업 진행 중
30
31
32
  protected:
      void keyReleaseEvent(QKeyEvent* event);
      void keyPressEvent(QKeyEvent* event);
92fef6124   고영탁   환경 설정 - 설정 UI 완료
33
34
35
36
  private:
      Ui::configResttimeFormatDlg *ui;
      QSignalMapper *m_pSignalMapper;
      int m_nCurSel;
40f5d047f   고영탁   엔코더 작업 진행 중
37
      QVector<QWidget*> m_vectorTabOrder;
92fef6124   고영탁   환경 설정 - 설정 UI 완료
38
39
40
  };
  
  #endif // CONFIGRESTTIMEFORMATDLG_H