Blame view

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