Blame view

app/gui/oven_control/formatterspinbox.h 593 Bytes
92fef6124   고영탁   환경 설정 - 설정 UI 완료
1
2
3
4
5
6
7
8
9
10
11
12
13
  #ifndef FORMATTERSPINBOX_H
  #define FORMATTERSPINBOX_H
  
  #include <QWidget>
  #include <QSpinBox>
  
  
  
  class FormatterSpinBox : public QSpinBox
  {
      Q_OBJECT
  private:
      int m_nwidth;
be7d2a625   고영탁   엔코더 기능 구현
14
15
16
  signals:
      void focusInEdit(void);
      void focusOutEdit(void);
92fef6124   고영탁   환경 설정 - 설정 UI 완료
17
18
19
20
21
22
23
  public:
      explicit FormatterSpinBox(QWidget *parent = Q_NULLPTR);
  
      int valueFromText(const QString &text) const Q_DECL_OVERRIDE;
      QString textFromValue(int value) const Q_DECL_OVERRIDE;
  
      void setFormatterWidth(int wid);
d0ee3ccc8   고영탁   버그 수정 및 비밀 번호 입력창 개발
24
25
  
      void focusInEvent(QFocusEvent *event);
be7d2a625   고영탁   엔코더 기능 구현
26
      void focusOutEvent(QFocusEvent *event);
92fef6124   고영탁   환경 설정 - 설정 UI 완료
27
28
29
  };
  
  #endif // SPINBOX_H