Blame view

app/gui/oven_control/haccpdownloaddlg.h 640 Bytes
fa41bb40d   고영탁   HACCP 데이터 파일 다운로드...
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
  #ifndef HACCPDOWNLOADDLG_H
  #define HACCPDOWNLOADDLG_H
  
  #include <QDialog>
  
  namespace Ui {
  class HaccpDownloadDlg;
  }
  
  class HaccpDownloadDlg : public QDialog
  {
      Q_OBJECT
  
  public:
      explicit HaccpDownloadDlg(QWidget *parent = 0);
      ~HaccpDownloadDlg();
  
  private slots:
      void on_ctrBtnCancel_clicked();
  
      void on_ctrBtnOk_clicked();
  
      void keyCancel_clicked();
      void keyEnter_clicked();
  
      void focusInSpinBox(QWidget *widget);
  
  protected:
      void keyReleaseEvent(QKeyEvent* event);
      void keyPressEvent(QKeyEvent* event);
  
  private:
      Ui::HaccpDownloadDlg *ui;
      int m_nFocusValue;
  };
  
  #endif // HACCPDOWNLOADDLG_H