mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-04 14:18:58 -05:00
41 lines
807 B
C++
41 lines
807 B
C++
#ifndef MIDI_CC_RACK_VIEW_H
|
|
#define MIDI_CC_RACK_VIEW_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "GroupBox.h"
|
|
#include "Knob.h"
|
|
#include "Midi.h"
|
|
#include "SerializingObject.h"
|
|
|
|
class InstrumentTrack;
|
|
|
|
class MidiCCRackView : public QWidget, public SerializingObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MidiCCRackView(InstrumentTrack * track);
|
|
~MidiCCRackView() override;
|
|
|
|
void saveSettings(QDomDocument & doc, QDomElement & parent) override;
|
|
void loadSettings(const QDomElement &) override;
|
|
|
|
inline QString nodeName() const override
|
|
{
|
|
return "MidiCCRackView";
|
|
}
|
|
|
|
private slots:
|
|
void renameWindow();
|
|
|
|
private:
|
|
InstrumentTrack *m_track;
|
|
|
|
GroupBox *m_midiCCGroupBox; // MIDI CC GroupBox (used to enable disable MIDI CC)
|
|
|
|
Knob *m_controllerKnob[MidiControllerCount]; // Holds the knob widgets for each controller
|
|
|
|
};
|
|
|
|
#endif
|