Sayonara Player
GUI_History.h
1 #ifndef GUI_HISTORY_H
2 #define GUI_HISTORY_H
3 
4 #include "Gui/Utils/Widgets/Dialog.h"
5 #include "Utils/Pimpl.h"
6 
7 class QFrame;
8 
9 UI_FWD(GUI_History)
10 
11 class GUI_History :
12  public Gui::Dialog
13 {
14  Q_OBJECT
15  PIMPL(GUI_History)
16  UI_CLASS(GUI_History)
17 
18 public:
19  explicit GUI_History(QWidget* parent=nullptr);
20  ~GUI_History();
21 
22  QFrame* header() const;
23 
24 
25 private:
26  QWidget* addNewPage();
27  bool changePage(int index);
28 
29 
30 private slots:
31  void olderClicked();
32  void newerClicked();
33 };
34 
35 #endif // GUI_HISTORY_H
Definition: GUI_History.h:11