Files
lmms/include/SendButtonIndicator.h
Yashraj Shinde bf323d2024 Rename FxMixer to Mixer (#6239)
... as decided in #6089 and #5592.

This PR replaces every occurrence of "FX" where "Mixer Channel" is meant.
2022-01-09 08:15:23 +01:00

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