/* * eqcontrolsdialog.h - defination of EqControlsDialog class. * * Copyright (c) 2014 David French * * This file is part of LMMS - http://lmms.io * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program (see COPYING); if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * */ #ifndef EQCONTROLSDIALOG_H #define EQCONTROLSDIALOG_H #include "EffectControlDialog.h" #include "Fader.h" #include "Knob.h" #include "LedCheckbox.h" #include "EqParameterWidget.h" #include "MainWindow.h" #include "qpushbutton.h" #include "EqSpectrumView.h" class EqControls; class EqControlsDialog : public EffectControlDialog { Q_OBJECT public: EqControlsDialog( EqControls* controls ); virtual ~EqControlsDialog() { } EqBand * setBand(EqControls *controls); private: EqControls * m_controls; Fader* m_inGainFader; Fader* m_outGainFader; Fader* m_gainFader; Knob* m_resKnob; Knob* m_freqKnob; LedCheckBox* m_activeBox; LedCheckBox* m_lp12Box; LedCheckBox* m_lp24Box; LedCheckBox* m_lp48Box; LedCheckBox* m_hp12Box; LedCheckBox* m_hp24Box; LedCheckBox* m_hp48Box; LedCheckBox* m_analyzeBox; EqParameterWidget* m_parameterWidget; EqSpectrumView* m_inSpec; EqSpectrumView* m_outSpec; virtual void mouseDoubleClickEvent(QMouseEvent *event); EqBand* setBand( int index, BoolModel* active, FloatModel* freq, FloatModel* res, FloatModel* gain, QColor color, QString name, float* peakL, float* peakR) { EqBand* filterModels = m_parameterWidget->getBandModels( index ); filterModels->active = active; filterModels->freq = freq; filterModels->res = res; filterModels->color = color; filterModels->gain = gain; filterModels->peakL = peakL; filterModels->peakR = peakR; return filterModels; } int m_originalHeight; }; #endif // EQCONTROLSDIALOG_H