mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-23 22:08:02 -05:00
Add peak indicators to the mixer strips. They show the maximum peak value that was observed and can be reset by clicking on them. ## Implementation details The implementation works via a signal/slot mechanism. The `Fader` class has a new signal `peakChanged` which reports peak values as amplifications. A new class `PeakIndicator` is added which has a slot `updatePeak` which is connected to the new signal in `Fader`. The `PeakIndicator` inherits from `QLabel` and mainly deals with updating the label text from the current peak value. Add a `PeakIndicator` instance to `MixerChannelView`. Add a `reset` method to `MixerChannelView` so that the mixer channel can be reset on the loading of new projects, etc. The current implementation resets the peak indicator back to -inf dbFS. The `reset` method is called in `MixerView::clear`. Remove the clamping in `Fader::setPeak` so that all peaks are reported. Emit the new signal if the peak changes.
167 lines
4.9 KiB
C++
167 lines
4.9 KiB
C++
/*
|
|
* Fader.h - fader-widget used in Mixer - partly taken from Hydrogen
|
|
*
|
|
* Copyright (c) 2008-2012 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of LMMS - https://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.
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Hydrogen
|
|
* Copyright(c) 2002-2008 by Alex >Comix< Cominu [comix@users.sourceforge.net]
|
|
*
|
|
* http://www.hydrogen-music.org
|
|
*
|
|
* 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; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef LMMS_GUI_FADER_H
|
|
#define LMMS_GUI_FADER_H
|
|
|
|
#include <QElapsedTimer>
|
|
#include <QPixmap>
|
|
#include <QWidget>
|
|
|
|
|
|
#include "AutomatableModelView.h"
|
|
#include "embed.h"
|
|
#include "lmms_math.h"
|
|
|
|
|
|
namespace lmms::gui
|
|
{
|
|
|
|
class SimpleTextFloat;
|
|
|
|
|
|
class LMMS_EXPORT Fader : public QWidget, public FloatModelView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_PROPERTY(QColor peakOk MEMBER m_peakOk)
|
|
Q_PROPERTY(QColor peakClip MEMBER m_peakClip)
|
|
Q_PROPERTY(QColor peakWarn MEMBER m_peakWarn)
|
|
Q_PROPERTY(bool levelsDisplayedInDBFS MEMBER m_levelsDisplayedInDBFS)
|
|
Q_PROPERTY(bool renderUnityLine READ getRenderUnityLine WRITE setRenderUnityLine)
|
|
Q_PROPERTY(QColor unityMarker MEMBER m_unityMarker)
|
|
|
|
Fader(FloatModel* model, const QString& name, QWidget* parent);
|
|
Fader(FloatModel* model, const QString& name, QWidget* parent, const QPixmap& knob);
|
|
~Fader() override = default;
|
|
|
|
void setPeak_L(float fPeak);
|
|
float getPeak_L() { return m_fPeakValue_L; }
|
|
|
|
void setPeak_R(float fPeak);
|
|
float getPeak_R() { return m_fPeakValue_R; }
|
|
|
|
inline float getMinPeak() const { return m_fMinPeak; }
|
|
inline void setMinPeak(float minPeak) { m_fMinPeak = minPeak; }
|
|
|
|
inline float getMaxPeak() const { return m_fMaxPeak; }
|
|
inline void setMaxPeak(float maxPeak) { m_fMaxPeak = maxPeak; }
|
|
|
|
inline bool getRenderUnityLine() const { return m_renderUnityLine; }
|
|
inline void setRenderUnityLine(bool value = true) { m_renderUnityLine = value; }
|
|
|
|
void setDisplayConversion(bool b)
|
|
{
|
|
m_conversionFactor = b ? 100.0 : 1.0;
|
|
}
|
|
|
|
inline void setHintText(const QString& txt_before,
|
|
const QString& txt_after)
|
|
{
|
|
setDescription(txt_before);
|
|
setUnit(txt_after);
|
|
}
|
|
|
|
signals:
|
|
void peakChanged(float peak);
|
|
|
|
private:
|
|
void contextMenuEvent(QContextMenuEvent* me) override;
|
|
void mousePressEvent(QMouseEvent* ev) override;
|
|
void mouseDoubleClickEvent(QMouseEvent* mouseEvent) override;
|
|
void mouseMoveEvent(QMouseEvent* ev) override;
|
|
void mouseReleaseEvent(QMouseEvent* me) override;
|
|
void wheelEvent(QWheelEvent* ev) override;
|
|
void paintEvent(QPaintEvent* ev) override;
|
|
|
|
void paintLevels(QPaintEvent* ev, QPainter& painter, bool linear = false);
|
|
|
|
int knobPosY() const
|
|
{
|
|
float fRange = model()->maxValue() - model()->minValue();
|
|
float realVal = model()->value() - model()->minValue();
|
|
|
|
return height() - ((height() - m_knob.height()) * (realVal / fRange));
|
|
}
|
|
|
|
void setPeak(float fPeak, float& targetPeak, float& persistentPeak, QElapsedTimer& lastPeakTimer);
|
|
|
|
void updateTextFloat();
|
|
|
|
// Private members
|
|
private:
|
|
float m_fPeakValue_L {0.};
|
|
float m_fPeakValue_R {0.};
|
|
float m_persistentPeak_L {0.};
|
|
float m_persistentPeak_R {0.};
|
|
float m_fMinPeak {dbfsToAmp(-42)};
|
|
float m_fMaxPeak {dbfsToAmp(9)};
|
|
|
|
QElapsedTimer m_lastPeakTimer_L;
|
|
QElapsedTimer m_lastPeakTimer_R;
|
|
|
|
QPixmap m_knob {embed::getIconPixmap("fader_knob")};
|
|
|
|
bool m_levelsDisplayedInDBFS {true};
|
|
|
|
int m_moveStartPoint {-1};
|
|
float m_startValue {0.};
|
|
|
|
static SimpleTextFloat* s_textFloat;
|
|
|
|
QColor m_peakOk {10, 212, 92};
|
|
QColor m_peakClip {193, 32, 56};
|
|
QColor m_peakWarn {214, 236, 82};
|
|
QColor m_unityMarker {63, 63, 63, 255};
|
|
|
|
bool m_renderUnityLine {true};
|
|
} ;
|
|
|
|
|
|
} // namespace lmms::gui
|
|
|
|
#endif // LMMS_GUI_FADER_H
|