diff widgets/PluginParameterDialog.h @ 143:bcb6d71be63c

* Put channel and windowing parameters on an "advanced" bit of the plugin parameter window
author Chris Cannam
date Fri, 15 Sep 2006 13:50:22 +0000
parents b9235b62fe31
children 4d132a06db9b
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.h	Thu Sep 14 11:20:09 2006 +0000
+++ b/widgets/PluginParameterDialog.h	Fri Sep 15 13:50:22 2006 +0000
@@ -20,6 +20,8 @@
 
 namespace Vamp { class PluginBase; }
 class PluginParameterBox;
+class QWidget;
+class QPushButton;
 
 /**
  * A dialog for editing the parameters of a given plugin, using a
@@ -53,11 +55,14 @@
 
 protected slots:
     void channelComboChanged(int);
+    void advancedToggled();
 
 protected:
     Vamp::PluginBase *m_plugin;
     int m_channel;
     PluginParameterBox *m_parameterBox;
+    QPushButton *m_advancedButton;
+    QWidget *m_advanced;
 };
 
 #endif