Miam-Player  0.8.0
A nice music player
playbutton.h
Go to the documentation of this file.
1 #ifndef PLAYBUTTON_H
2 #define PLAYBUTTON_H
3 
4 #include "mediabutton.h"
5 #include "mediaplayer.h"
6 
13 {
14  Q_OBJECT
15 private:
16  MediaPlayer *_mediaPlayer;
17 
18 public:
19  explicit PlayButton(QWidget *parent = nullptr);
20 
21  void setMediaPlayer(MediaPlayer *mediaPlayer);
22 };
23 
24 #endif // PLAYBUTTON_H
The PlayButton class can change its icon automatically when the status of the player has changed...
Definition: playbutton.h:12
The MediaButton class is useful for buttons like "Play", "Stop", etc.
Definition: mediabutton.h:13
#define MIAMCORE_LIBRARY
Definition: miamcore_global.h:11
The MediaPlayer class is a central class which controls local and remote sources. ...
Definition: mediaplayer.h:22