comparison widgets/PluginParameterBox.h @ 74:195ad6178ef8

* Support latest changes to Vamp API (value names for parameters, FFT alignment, value -> bin terminology change)
author Chris Cannam
date Wed, 05 Apr 2006 16:52:30 +0000
parents 72fa239a4880
children 53b9c7656798
comparison
equal deleted inserted replaced
73:ad1fe715b480 74:195ad6178ef8
23 23
24 class AudioDial; 24 class AudioDial;
25 class QDoubleSpinBox; 25 class QDoubleSpinBox;
26 class QCheckBox; 26 class QCheckBox;
27 class QGridLayout; 27 class QGridLayout;
28 class QComboBox;
28 29
29 class PluginParameterBox : public QFrame 30 class PluginParameterBox : public QFrame
30 { 31 {
31 Q_OBJECT 32 Q_OBJECT
32 33
53 54
54 struct ParamRec { 55 struct ParamRec {
55 AudioDial *dial; 56 AudioDial *dial;
56 QDoubleSpinBox *spin; 57 QDoubleSpinBox *spin;
57 QCheckBox *check; 58 QCheckBox *check;
59 QComboBox *combo;
58 Vamp::PluginBase::ParameterDescriptor param; 60 Vamp::PluginBase::ParameterDescriptor param;
59 }; 61 };
60 62
61 std::map<QString, ParamRec> m_params; 63 std::map<QString, ParamRec> m_params;
62 }; 64 };