Updated SWH plugins and added missing hermes_filter plugin
[lmms/mlankhorst.git] / include / InstrumentSoundShapingView.h
blob51bea29e80817c3ea11605b310f43a5ab1fa6f47
1 /*
2 * InstrumentSoundShapingView.h - view for InstrumentSoundShaping class
4 * Copyright (c) 2004-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
6 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this program (see COPYING); if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301 USA.
25 #ifndef _INSTRUMENT_SOUND_SHAPING_VIEW_H
26 #define _INSTRUMENT_SOUND_SHAPING_VIEW_H
28 #include <QtGui/QWidget>
30 #include "InstrumentSoundShaping.h"
31 #include "ModelView.h"
33 class EnvelopeAndLfoView;
34 class comboBox;
35 class groupBox;
36 class knob;
37 class tabWidget;
40 class InstrumentSoundShapingView : public QWidget, public ModelView
42 Q_OBJECT
43 public:
44 InstrumentSoundShapingView( QWidget * _parent );
45 virtual ~InstrumentSoundShapingView();
48 private:
49 virtual void modelChanged();
52 InstrumentSoundShaping * m_ss;
53 tabWidget * m_targetsTabWidget;
54 EnvelopeAndLfoView * m_envLfoViews[InstrumentSoundShaping::NumTargets];
56 // filter-stuff
57 groupBox * m_filterGroupBox;
58 comboBox * m_filterComboBox;
59 knob * m_filterCutKnob;
60 knob * m_filterResKnob;
62 } ;
64 #endif