summaryrefslogtreecommitdiffstats
path: root/noatun/modules/artseffects/extrastereogui_impl.h
blob: 56104ae8e6d28c7ca008d98d4725dd28d1f880ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "artseffects.h"
#include "stdsynthmodule.h"
#include <qwidget.h>

class QSlider;

namespace Arts {

class ExtraStereoGUI_impl : public QWidget, virtual public ExtraStereoGUI_skel
{
public:
	ExtraStereo effect;

	ExtraStereoGUI_impl();

	void setEffect(StereoEffect newEffect);

public slots:
	void changeSlider(int);

private:
	QSlider *mSlider;
};


};