You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/noatun/modules/artseffects/extrastereogui_impl.h

27 lines
367 B

#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;
};
};