diff widgets/PluginParameterBox.h @ 63:fb02fe13ff47

* Add editing for auralisation plugin parameters and programs * Rename and reorganise the sample plugin sample set
author Chris Cannam
date Thu, 23 Mar 2006 15:49:41 +0000
parents 50429a56680f
children 10bcd53ddc71
line wrap: on
line diff
--- a/widgets/PluginParameterBox.h	Wed Mar 22 17:38:29 2006 +0000
+++ b/widgets/PluginParameterBox.h	Thu Mar 23 15:49:41 2006 +0000
@@ -23,6 +23,7 @@
 
 class AudioDial;
 class QDoubleSpinBox;
+class QCheckBox;
 class QGridLayout;
 
 class PluginParameterBox : public QFrame
@@ -38,6 +39,8 @@
 protected slots:
     void dialChanged(int);
     void spinBoxChanged(double);
+    void checkBoxChanged(int);
+    void programComboChanged(const QString &);
 
 protected:
     void populate();
@@ -48,6 +51,7 @@
     struct ParamRec {
         AudioDial *dial;
         QDoubleSpinBox *spin;
+        QCheckBox *check;
         PluginInstance::ParameterDescriptor param;
     };