annotate widgets/PluginParameterDialog.h @ 140:b9235b62fe31

* add window size/increment/shape settings to plugin parameter dialog, though they aren't yet connected up
author Chris Cannam
date Mon, 11 Sep 2006 16:40:18 +0000
parents 551d7ae05526
children bcb6d71be63c
rev   line source
Chris@62 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@62 2
Chris@62 3 /*
Chris@62 4 Sonic Visualiser
Chris@62 5 An audio file viewer and annotation editor.
Chris@62 6 Centre for Digital Music, Queen Mary, University of London.
Chris@62 7 This file copyright 2006 Chris Cannam.
Chris@62 8
Chris@62 9 This program is free software; you can redistribute it and/or
Chris@62 10 modify it under the terms of the GNU General Public License as
Chris@62 11 published by the Free Software Foundation; either version 2 of the
Chris@62 12 License, or (at your option) any later version. See the file
Chris@62 13 COPYING included with this distribution for more information.
Chris@62 14 */
Chris@62 15
Chris@62 16 #ifndef _PLUGIN_PARAMETER_DIALOG_H_
Chris@62 17 #define _PLUGIN_PARAMETER_DIALOG_H_
Chris@62 18
Chris@62 19 #include <QDialog>
Chris@62 20
Chris@71 21 namespace Vamp { class PluginBase; }
Chris@62 22 class PluginParameterBox;
Chris@62 23
Chris@62 24 /**
Chris@62 25 * A dialog for editing the parameters of a given plugin, using a
Chris@62 26 * PluginParameterBox. This dialog does not contain any mechanism for
Chris@62 27 * selecting the plugin in the first place. Note that the dialog
Chris@62 28 * directly modifies the parameters of the plugin, so they will remain
Chris@62 29 * modified even if the dialog is then cancelled.
Chris@62 30 */
Chris@62 31
Chris@62 32 class PluginParameterDialog : public QDialog
Chris@62 33 {
Chris@62 34 Q_OBJECT
Chris@62 35
Chris@62 36 public:
Chris@71 37 PluginParameterDialog(Vamp::PluginBase *,
Chris@69 38 int sourceChannels,
Chris@69 39 int targetChannels,
Chris@69 40 int defaultChannel,
Chris@106 41 QString output = "",
Chris@140 42 bool showWindowSize = false,
Chris@140 43 bool showFrequencyDomainOptions = false,
Chris@69 44 QWidget *parent = 0);
Chris@62 45 ~PluginParameterDialog();
Chris@62 46
Chris@71 47 Vamp::PluginBase *getPlugin() { return m_plugin; }
Chris@62 48
Chris@69 49 int getChannel() const { return m_channel; }
Chris@69 50
Chris@64 51 signals:
Chris@64 52 void pluginConfigurationChanged(QString);
Chris@64 53
Chris@69 54 protected slots:
Chris@69 55 void channelComboChanged(int);
Chris@69 56
Chris@62 57 protected:
Chris@71 58 Vamp::PluginBase *m_plugin;
Chris@69 59 int m_channel;
Chris@62 60 PluginParameterBox *m_parameterBox;
Chris@62 61 };
Chris@62 62
Chris@62 63 #endif
Chris@62 64