Added StereoMono display.
This commit is contained in:
parent
eaa2e021a6
commit
76b9131d03
9 changed files with 117 additions and 12 deletions
27
StereoMono.h
Normal file
27
StereoMono.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#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;
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue