Blame view

app/gui/oven_control/primewindow.h 998 Bytes
b85726132   김태훈   부가 기능 UI 추가
1
2
3
4
  #ifndef PRIMEWINDOW_H
  #define PRIMEWINDOW_H
  
  #include <QMainWindow>
f588aa273   김태훈   부가 기능 로직 추가
5
  #include <QTimer>
b85726132   김태훈   부가 기능 UI 추가
6
  #include <QList>
f588aa273   김태훈   부가 기능 로직 추가
7
  #include "cookpanelbutton.h"
b85726132   김태훈   부가 기능 UI 추가
8
9
10
11
12
13
14
15
16
17
18
  namespace Ui {
  class PrimeWindow;
  }
  
  class PrimeWindow : public QMainWindow
  {
      Q_OBJECT
  
  public:
      explicit PrimeWindow(QWidget *parent = 0);
      ~PrimeWindow();
f588aa273   김태훈   부가 기능 로직 추가
19
20
21
22
      void listMostCooked();
      void listRecents();
      void listFavorites();
      void focusFavorite(int id);
b85726132   김태훈   부가 기능 UI 추가
23
  private slots:
f588aa273   김태훈   부가 기능 로직 추가
24
25
26
27
28
29
30
      void on_mostCookedButton_toggled(bool checked);
      void on_recentsButton_toggled(bool checked);
      void on_favoritesButton_toggled(bool checked);
  
      void listButtons(QList<CookRecord> records);
      void clear();
      CookPanelButton *newButton(CookRecord record);
b85726132   김태훈   부가 기능 UI 추가
31
f588aa273   김태훈   부가 기능 로직 추가
32
33
      void onInfoButtonClicked(CookPanelButton *panelButton);
      void onDeleteButtonClicked(CookPanelButton *panelButton);
b85726132   김태훈   부가 기능 UI 추가
34
35
  
      void on_backButton_clicked();
f588aa273   김태훈   부가 기능 로직 추가
36
b85726132   김태훈   부가 기능 UI 추가
37
38
  private:
      Ui::PrimeWindow *ui;
f588aa273   김태훈   부가 기능 로직 추가
39
40
      QList<CookPanelButton *> list;
      CookPanelButton *lastInfoDisplayed;
b85726132   김태훈   부가 기능 UI 추가
41
42
43
  };
  
  #endif // PRIMEWINDOW_H