annotate widgets/PluginParameterDialog.h @ 447:84ada1c89510

* Make scale bar more accurate (if no more helpful) in log scaled colour 3d plot
author Chris Cannam
date Wed, 12 Nov 2008 16:39:29 +0000
parents 08d6bc698d16
children f7de84fd10ec
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@182 7 This file copyright 2006 Chris Cannam and QMUL.
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@145 21 #include "base/Window.h"
Chris@145 22
Chris@71 23 namespace Vamp { class PluginBase; }
Chris@62 24 class PluginParameterBox;
Chris@143 25 class QWidget;
Chris@143 26 class QPushButton;
Chris@163 27 class QLabel;
Chris@163 28 class QGroupBox;
Chris@164 29 class QComboBox;
Chris@302 30 class QCheckBox;
Chris@62 31
Chris@62 32 /**
Chris@62 33 * A dialog for editing the parameters of a given plugin, using a
Chris@62 34 * PluginParameterBox. This dialog does not contain any mechanism for
Chris@62 35 * selecting the plugin in the first place. Note that the dialog
Chris@62 36 * directly modifies the parameters of the plugin, so they will remain
Chris@62 37 * modified even if the dialog is then cancelled.
Chris@62 38 */
Chris@62 39
Chris@62 40 class PluginParameterDialog : public QDialog
Chris@62 41 {
Chris@62 42 Q_OBJECT
Chris@62 43
Chris@62 44 public:
Chris@163 45 PluginParameterDialog(Vamp::PluginBase *, QWidget *parent = 0);
Chris@62 46 ~PluginParameterDialog();
Chris@62 47
Chris@163 48 void setChannelArrangement(int sourceChannels,
Chris@163 49 int targetChannels,
Chris@163 50 int defaultChannel);
Chris@163 51
Chris@208 52 void setOutputLabel(QString output, QString description);
Chris@163 53
Chris@440 54 void setMoreInfoUrl(QString url);
Chris@440 55
Chris@163 56 void setShowProcessingOptions(bool showWindowSize,
Chris@163 57 bool showFrequencyDomainOptions);
Chris@163 58
Chris@336 59 void setCandidateInputModels(const QStringList &names,
Chris@336 60 QString defaultName);
Chris@302 61 void setShowSelectionOnlyOption(bool show);
Chris@164 62
Chris@71 63 Vamp::PluginBase *getPlugin() { return m_plugin; }
Chris@62 64
Chris@69 65 int getChannel() const { return m_channel; }
Chris@69 66
Chris@164 67 QString getInputModel() const;
Chris@302 68 bool getSelectionOnly() const;
Chris@164 69
Chris@146 70 //!!! merge with PluginTransform::ExecutionContext
Chris@146 71
Chris@145 72 void getProcessingParameters(size_t &blockSize) const;
Chris@145 73 void getProcessingParameters(size_t &stepSize, size_t &blockSize,
Chris@145 74 WindowType &windowType) const;
Chris@145 75
Chris@64 76 signals:
Chris@64 77 void pluginConfigurationChanged(QString);
Chris@164 78 void inputModelChanged(QString);
Chris@64 79
Chris@69 80 protected slots:
Chris@69 81 void channelComboChanged(int);
Chris@155 82 void blockSizeComboChanged(const QString &);
Chris@155 83 void incrementComboChanged(const QString &);
Chris@145 84 void windowTypeChanged(WindowType type);
Chris@143 85 void advancedToggled();
Chris@440 86 void moreInfo();
Chris@163 87 void setAdvancedVisible(bool);
Chris@294 88 void inputModelComboChanged(int);
Chris@302 89 void selectionOnlyChanged(int);
Chris@294 90 void dialogAccepted();
Chris@69 91
Chris@62 92 protected:
Chris@71 93 Vamp::PluginBase *m_plugin;
Chris@163 94
Chris@69 95 int m_channel;
Chris@145 96 size_t m_stepSize;
Chris@145 97 size_t m_blockSize;
Chris@163 98
Chris@145 99 WindowType m_windowType;
Chris@62 100 PluginParameterBox *m_parameterBox;
Chris@163 101
Chris@163 102 QLabel *m_outputLabel;
Chris@163 103 QLabel *m_outputValue;
Chris@208 104 QLabel *m_outputDescription;
Chris@208 105 QLabel *m_outputSpacer;
Chris@164 106
Chris@440 107 QPushButton *m_moreInfo;
Chris@440 108 QString m_moreInfoUrl;
Chris@440 109
Chris@163 110 QGroupBox *m_channelBox;
Chris@163 111 bool m_haveChannelBoxData;
Chris@164 112
Chris@163 113 QGroupBox *m_windowBox;
Chris@163 114 bool m_haveWindowBoxData;
Chris@163 115
Chris@164 116 QGroupBox *m_inputModelBox;
Chris@164 117 QComboBox *m_inputModels;
Chris@302 118 QCheckBox *m_selectionOnly;
Chris@294 119 QStringList m_inputModelList;
Chris@296 120 QString m_currentInputModel;
Chris@302 121 bool m_currentSelectionOnly;
Chris@164 122
Chris@143 123 QPushButton *m_advancedButton;
Chris@143 124 QWidget *m_advanced;
Chris@163 125 bool m_advancedVisible;
Chris@62 126 };
Chris@62 127
Chris@62 128 #endif
Chris@62 129