mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-04 14:18:58 -05:00
... as decided in #6089 and #5592. This PR replaces every occurrence of "FX" where "Mixer Channel" is meant.
34 lines
592 B
C++
34 lines
592 B
C++
#ifndef SENDBUTTONINDICATOR_H
|
|
#define SENDBUTTONINDICATOR_H
|
|
|
|
#include <QDebug>
|
|
#include <QLabel>
|
|
#include <QPixmap>
|
|
|
|
#include "MixerLine.h"
|
|
#include "MixerView.h"
|
|
|
|
class MixerLine;
|
|
class MixerView;
|
|
|
|
class SendButtonIndicator : public QLabel
|
|
{
|
|
public:
|
|
SendButtonIndicator( QWidget * _parent, MixerLine * _owner,
|
|
MixerView * _mv);
|
|
|
|
void mousePressEvent( QMouseEvent * e ) override;
|
|
void updateLightStatus();
|
|
|
|
private:
|
|
|
|
MixerLine * m_parent;
|
|
MixerView * m_mv;
|
|
static QPixmap * s_qpmOn;
|
|
static QPixmap * s_qpmOff;
|
|
|
|
FloatModel * getSendModel();
|
|
};
|
|
|
|
#endif // SENDBUTTONINDICATOR_H
|