Added PlayStatus widget.

This commit is contained in:
Tobias Rundstrom 2006-02-20 16:21:35 -03:00
parent a50e7afd4a
commit 46a0fd1b29
8 changed files with 86 additions and 6 deletions

27
PlayStatus.h Normal file
View 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