Added PlayStatus widget.
This commit is contained in:
parent
a50e7afd4a
commit
46a0fd1b29
8 changed files with 86 additions and 6 deletions
27
PlayStatus.h
Normal file
27
PlayStatus.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef __PLAYSTATUS_H__
|
||||
#define __PLAYSTATUS_H__
|
||||
|
||||
#include <xmmsclient/xmmsclient.h>
|
||||
#include "PixWidget.h"
|
||||
|
||||
class PlayStatus : public PixWidget
|
||||
{
|
||||
public:
|
||||
PlayStatus (QWidget *parent);
|
||||
~PlayStatus () { }
|
||||
|
||||
void setStatus (int);
|
||||
|
||||
public slots:
|
||||
void setPixmaps (Skin *skin);
|
||||
|
||||
private:
|
||||
int m_status;
|
||||
|
||||
QPixmap m_pixmap_stop;
|
||||
QPixmap m_pixmap_play;
|
||||
QPixmap m_pixmap_pause;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue