summaryrefslogtreecommitdiffstats
path: root/arts/modules/effects/stereocompressorguifactory_impl.cc
blob: d5209ebd32fa4cbdc1c8857f226eeea8127677bf (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*  This file is part of the KDE project
    Copyright (C) 2002 Arnold Krille <arnold@arnoldarts.de>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License version 2 as published by the Free Software Foundation.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.

*/

#include <kglobal.h>
#include <klocale.h>

#include "artsmoduleseffects.h"
#include "connect.h"
#include "debug.h"

using namespace Arts;

namespace Arts {

class StereoCompressorGuiFactory_impl : virtual public StereoCompressorGuiFactory_skel
{
public:
	Widget createGui( Object object )
	{
		KGlobal::locale()->insertCatalogue( "artsmodules" );

		arts_return_val_if_fail(!object.isNull(), Arts::Widget::null() );

		Synth_STEREO_COMPRESSOR comp = DynamicCast(object);
		arts_return_val_if_fail(!comp.isNull(), Arts::Widget::null());

		Poti attack;
		attack.caption(i18n("attack").utf8().data());
		attack.color("blue");
		attack.min(0.1); attack.max(250);
		attack.value( comp.attack() );
		attack.range(250);
		connect( attack, "value_changed", comp, "attack" );

		Poti release;
		release.caption(i18n("release").utf8().data());
		release.color("blue");
		release.min(0.1); release.max(250);
		release.value( comp.release() );
		release.range(250);
		connect( release, "value_changed", comp, "release" );

		Poti threshold;
		threshold.caption(i18n("thresh.").utf8().data());
		threshold.min(0.00001); threshold.max(1);
		threshold.value( comp.threshold() );
		threshold.logarithmic( 2.0 );
		threshold.range(200);
		connect( threshold, "value_changed", comp, "threshold" );

		Poti ratio;
		ratio.caption(i18n("ratio").utf8().data());
		ratio.min(0); ratio.max(1);
		ratio.value( comp.ratio() );
		ratio.range(200);
		connect( ratio, "value_changed", comp, "ratio" );

		Poti output;
		output.caption(i18n("output").utf8().data());
		output.min(0.1); output.max(10.0);
		output.value( comp.output() );
		output.logarithmic( 2.0 );
		output.range(200);
		connect( output, "value_changed", comp, "output" );

		Button bon;
		bon.text(i18n("Bypass").utf8().data());
		bon.toggle( true );
		connect( bon, "pressed_changed", comp, "thru" );

		LayoutBox hbox;
		hbox.direction( LeftToRight ); hbox.tqlayoutmargin( 5 ); hbox.spacing( 5 );
		PopupBox timesbox;
		timesbox.name( "Timings" ); timesbox.direction( LeftToRight );
		LayoutBox times;
		times.direction( LeftToRight ); times.spacing( 5 );

		hbox.addWidget( timesbox );
			times.addSpace( 5 );
			times.addWidget( attack );
			times.addWidget( release );
			times.addSpace( 5 );
		timesbox.widget( times );
		hbox.addWidget( threshold );
		hbox.addWidget( ratio );
		hbox.addWidget( output );
		hbox.addWidget( bon );
		hbox.addStretch( 10 );

		return hbox;
	}
};

// vim:sw=4:ts=4

REGISTER_IMPLEMENTATION(StereoCompressorGuiFactory_impl);

}