Chris@62: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@62: Chris@62: /* Chris@62: Sonic Visualiser Chris@62: An audio file viewer and annotation editor. Chris@62: Centre for Digital Music, Queen Mary, University of London. Chris@62: This file copyright 2006 Chris Cannam. Chris@62: Chris@62: This program is free software; you can redistribute it and/or Chris@62: modify it under the terms of the GNU General Public License as Chris@62: published by the Free Software Foundation; either version 2 of the Chris@62: License, or (at your option) any later version. See the file Chris@62: COPYING included with this distribution for more information. Chris@62: */ Chris@62: Chris@62: #ifndef _PLUGIN_PARAMETER_DIALOG_H_ Chris@62: #define _PLUGIN_PARAMETER_DIALOG_H_ Chris@62: Chris@62: #include Chris@62: Chris@62: class PluginInstance; Chris@62: class PluginParameterBox; Chris@62: Chris@62: /** Chris@62: * A dialog for editing the parameters of a given plugin, using a Chris@62: * PluginParameterBox. This dialog does not contain any mechanism for Chris@62: * selecting the plugin in the first place. Note that the dialog Chris@62: * directly modifies the parameters of the plugin, so they will remain Chris@62: * modified even if the dialog is then cancelled. Chris@62: */ Chris@62: Chris@62: class PluginParameterDialog : public QDialog Chris@62: { Chris@62: Q_OBJECT Chris@62: Chris@62: public: Chris@62: PluginParameterDialog(PluginInstance *, QWidget *parent = 0); Chris@62: ~PluginParameterDialog(); Chris@62: Chris@62: PluginInstance *getPlugin() { return m_plugin; } Chris@62: Chris@62: protected: Chris@62: PluginInstance *m_plugin; Chris@62: PluginParameterBox *m_parameterBox; Chris@62: }; Chris@62: Chris@62: #endif Chris@62: