SpectMorph
smmorphsourceview.hh
1 // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
2 
3 #ifndef SPECTMORPH_MORPH_SOURCE_VIEW_HH
4 #define SPECTMORPH_MORPH_SOURCE_VIEW_HH
5 
6 #include "smmorphoperatorview.hh"
7 #include "smmorphsource.hh"
8 
9 #include <QComboBox>
10 
11 namespace SpectMorph
12 {
13 
15 {
16  Q_OBJECT
17 
18  MorphSource *morph_source;
19  QComboBox *instrument_combobox;
20 
21 public:
22  MorphSourceView (MorphSource *morph_source, MorphPlanWindow *morph_plan_window);
23 
24 public slots:
25  void on_index_changed();
26  void on_instrument_changed();
27 };
28 
29 }
30 
31 #endif
Definition: smmorphsource.hh:13
Definition: smmorphplanwindow.hh:25
Definition: smmorphsourceview.hh:14
Definition: smaudio.hh:15
Definition: smmorphoperatorview.hh:14