Change playlist to use Esperanza's playlistmodel

This commit is contained in:
Thomas Frauendorfer 2007-10-07 14:34:53 +02:00
parent 85cf6a8d1c
commit 503385309b
96 changed files with 2010 additions and 412 deletions

31
src/StereoMono.h Normal file
View file

@ -0,0 +1,31 @@
#ifndef __STEREOMONO_H__
#define __STEREOMONO_H__
#include "PixWidget.h"
class StereoMono : public PixWidget
{
public:
StereoMono (QWidget *parent);
~StereoMono () { }
void setStereoMono (bool, bool);
public slots:
void setPixmaps (Skin *skin);
private:
void drawPixmaps ();
bool m_stereo;
bool m_mono;
QPixmap m_pixmap_stereo_on;
QPixmap m_pixmap_stereo_off;
QPixmap m_pixmap_mono_on;
QPixmap m_pixmap_mono_off;
QPixmap m_pixmap_mono;
QPixmap m_pixmap_stereo;
};
#endif