summaryrefslogtreecommitdiffstats
path: root/noatun/modules/artseffects/extrastereogui_impl.cc
blob: 5952c80e16c5d647b0d4180f4d3200c46491c72a (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
27
28
#include <qlayout.h>
#include <qslider.h>
#include "extrastereogui_impl.h"

namespace Arts {

ExtraStereoGUI_impl::ExtraStereoGUI_impl() : QWidget(0)
{
		(new QHBoxLayout(this))->setAutoAdd(true);
		mSlider=new QSlider(0,100,10, 0, Horizontal, this);
		mSlider->show();
		show();
}

void ExtraStereoGUI_impl::changeSlider(int v)
{
	effect.intensity((float)v/100.0);
}

void ExtraStereoGUI_impl::setEffect(StereoEffect newEffect)
{
	effect = DynamicCast(newEffect);
}

REGISTER_IMPLEMENTATION(ExtraStereoGUI_impl);

};