mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-18 22:18:27 -04:00
* calcuculate curve path only when data has changed * calculate spectrum analyzer only if signal input * code clean up / coding conventions * changes according coding guidelines/performance improvements in spectrum analyser/curves painting * minor changes/white spaces * change init order * connect analyze view to gui->mainWindow()->periodicUpdate() * consolidate some functions (d.r.y.) * minor syntax changes * fixes a right mouse button bug * correct steepness of flanks in high and low pass filters * Whitespaces
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
/*
|
|
* eqcontrolsdialog.h - defination of EqControlsDialog class.
|
|
*
|
|
* Copyright (c) 2014 David French <dave/dot/french3/at/googlemail/dot/com>
|
|
*
|
|
* 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 <QLabel>
|
|
#include <QPushButton>
|
|
|
|
#include "EffectControlDialog.h"
|
|
#include "EqParameterWidget.h"
|
|
#include "EqSpectrumView.h"
|
|
#include "Fader.h"
|
|
#include "Knob.h"
|
|
#include "LedCheckbox.h"
|
|
#include "MainWindow.h"
|
|
#include "PixmapButton.h"
|
|
|
|
|
|
|
|
class EqControls;
|
|
|
|
class EqControlsDialog : public EffectControlDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
EqControlsDialog( EqControls * controls );
|
|
virtual ~EqControlsDialog()
|
|
{
|
|
}
|
|
|
|
EqBand * setBand( EqControls * controls );
|
|
|
|
private:
|
|
EqControls * m_controls;
|
|
EqParameterWidget * m_parameterWidget;
|
|
|
|
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, BoolModel *hp12, BoolModel *hp24, BoolModel *hp48, BoolModel *lp12, BoolModel *lp24, BoolModel *lp48 )
|
|
{
|
|
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;
|
|
filterModels->hp12 = hp12;
|
|
filterModels->hp24 = hp24;
|
|
filterModels->hp48 = hp48;
|
|
filterModels->lp12 = lp12;
|
|
filterModels->lp24 = lp24;
|
|
filterModels->lp48 = lp48;
|
|
return filterModels;
|
|
}
|
|
|
|
int m_originalHeight;
|
|
};
|
|
|
|
#endif // EQCONTROLSDIALOG_H
|