Blame view

app/gui/oven_control/configpanelbutton.h 1.15 KB
5a38a241e   김태훈   환경 설정 뼈대 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef CONFIGPANELBUTTON_H
  #define CONFIGPANELBUTTON_H
  
  #include <QWidget>
  
  namespace Ui {
  class ConfigPanelButton;
  }
  
  class ConfigPanelButton : public QWidget
  {
      Q_OBJECT
  
  public:
81b55e046   고영탁   config pannel but...
15
      explicit ConfigPanelButton(QWidget *parent = 0,uint16_t id = 0);
5a38a241e   김태훈   환경 설정 뼈대 추가
16
17
18
19
20
21
22
23
24
25
      ~ConfigPanelButton();
  
      const QString &text() { return text_; }
      const QString &value() { return value_; }
  
  public slots:
      void setText(const QString &text);
      void setValue(const QString &value);
      void showFavoriteButton();
      void hideFavoriteButton();
81b55e046   고영탁   config pannel but...
26
27
      bool isFavoriteChecked();
      void setFavoriteCheck(bool checked);
5a38a241e   김태훈   환경 설정 뼈대 추가
28
29
30
31
32
33
34
35
36
37
38
39
  
  private:
      Ui::ConfigPanelButton *ui;
  
      QString text_;
      QString value_;
  
      QRect textRect;
      QRect valueRect;
  
      bool showingFavoriteButton;
      bool isFavorited;
81b55e046   고영탁   config pannel but...
40
      uint16_t btnid;
5a38a241e   김태훈   환경 설정 뼈대 추가
41
42
43
  
  private slots:
      void updateIcon();
81b55e046   고영탁   config pannel but...
44
45
46
47
48
49
50
      void on_favoriteButton_clicked(bool checked);
  
      void on_pushButton_clicked();
  
      void on_pushButton_released();
  
      void on_pushButton_pressed();
5a38a241e   김태훈   환경 설정 뼈대 추가
51
  signals:
81b55e046   고영탁   config pannel but...
52
53
54
55
      void pressed(uint16_t);
      void released(uint16_t);
      void clicked(uint16_t);
      void checkButtonClicked(uint16_t, bool checked);
5a38a241e   김태훈   환경 설정 뼈대 추가
56
57
58
  };
  
  #endif // CONFIGPANELBUTTON_H