summaryrefslogtreecommitdiffstats
path: root/noatun/modules/artseffects/extrastereogui_impl.h
blob: 47311d377d01a392ac3e207e71f3f1259ca0c42c (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 <tqwidget.h>

class TQSlider;

namespace Arts {

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

	ExtraStereoGUI_impl();

	void setEffect(StereoEffect newEffect);

public slots:
	void changeSlider(int);

private:
	TQSlider *mSlider;
};


};