Blame view

app/gui/oven_control/cookpanelbutton.h 471 Bytes
b85726132   김태훈   부가 기능 UI 추가
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
  #ifndef COOKPANELBUTTON_H
  #define COOKPANELBUTTON_H
  
  #include <QWidget>
  
  namespace Ui {
  class CookPanelButton;
  }
  
  class CookPanelButton : public QWidget
  {
      Q_OBJECT
  
  signals:
      void clicked(QWidget *);
      void showInfoRequested(QWidget *);
      void deleteRequested(QWidget *);
  
  public:
      explicit CookPanelButton(QWidget *parent = 0);
      ~CookPanelButton();
  
      void setText(QString text);
  
  private:
      Ui::CookPanelButton *ui;
  };
  
  #endif // COOKPANELBUTTON_H