1 #ifndef CONTROLS_H
2 #define CONTROLS_H
3 
4 #include <QToolButton>
5 #include <QProgressBar>
6 #include <QLabel>
7 
8 namespace Playback {
9   class Controls {
10   public:
11     explicit Controls();
12 
13     QToolButton *stop;
14     QToolButton *play;
15     QToolButton *pause;
16     QToolButton *prev;
17     QToolButton *next;
18     QProgressBar *seekbar;
19     QLabel *time;
20   };
21 }
22 
23 #endif // CONTROLS_H
24