25 #include <QStringList>
29 #define MIDI_CHANNELS 16
30 #define MIDI_GM_DRUM_CHANNEL (10-1)
31 #define MIDI_CTL_MSB_MAIN_VOLUME 0x07
32 #define MIDI_CTL_ALL_SOUNDS_OFF 0x78
33 #define MIDI_CTL_ALL_NOTES_OFF 0x7b
34 #define MIDI_CTL_RESET_CONTROLLERS 0x79
36 #define MIDI_STATUS_NOTEOFF 0x80
37 #define MIDI_STATUS_NOTEON 0x90
38 #define MIDI_STATUS_KEYPRESURE 0xa0
39 #define MIDI_STATUS_CONTROLCHANGE 0xb0
40 #define MIDI_STATUS_PROGRAMCHANGE 0xc0
41 #define MIDI_STATUS_CHANNELPRESSURE 0xd0
42 #define MIDI_STATUS_PITCHBEND 0xe0
43 #define MIDI_STATUS_SYSEX 0xf0
44 #define MIDI_STATUS_ENDSYSEX 0xf7
45 #define MIDI_STATUS_REALTIME 0xf8
47 #define MIDI_STATUS_MASK 0xf0
48 #define MIDI_CHANNEL_MASK 0x0f
50 #define MIDI_COMMON_QTRFRAME 0xF1
51 #define MIDI_COMMON_SONGPP 0xF2
52 #define MIDI_COMMON_SONSELECT 0xF3
53 #define MIDI_COMMON_TUNEREQ 0xF6
55 #define MIDI_REALTIME_CLOCK 0xF8
56 #define MIDI_REALTIME_START 0xFA
57 #define MIDI_REALTIME_CONTINUE 0xFB
58 #define MIDI_REALTIME_STOP 0xFC
59 #define MIDI_REALTIME_SENSING 0xFE
60 #define MIDI_REALTIME_RESET 0xFF
62 #define MIDI_LSB(x) (x % 0x80)
63 #define MIDI_MSB(x) (x / 0x80)
89 virtual void initialize(QSettings* settings) = 0;
109 virtual QStringList
connections(
bool advanced =
false) = 0;
119 virtual void open(QString name) = 0;
123 virtual void close() = 0;
137 virtual void sendNoteOff(
int chan,
int note,
int vel) = 0;
145 virtual void sendNoteOn(
int chan,
int note,
int vel) = 0;
161 virtual void sendController(
int chan,
int control,
int value) = 0;
168 virtual void sendProgram(
int chan,
int program) = 0;
188 virtual void sendSysex(
const QByteArray& data) = 0;
virtual void setPublicName(QString name)=0
setPublicName
virtual void sendNoteOff(int chan, int note, int vel)=0
sendNoteOff 0x8
virtual void sendSysex(const QByteArray &data)=0
sendSysex
virtual void sendChannelPressure(int chan, int value)=0
sendChannelPressure 0xD
virtual void open(QString name)=0
open the MIDI port by name
The QObject class is the base class of all Qt objects.
virtual void close()=0
close the MIDI port
virtual void sendSystemMsg(const int status)=0
sendSystemMsg
virtual void sendController(int chan, int control, int value)=0
sendController 0xB
virtual void setExcludedConnections(QStringList conns)=0
setExcludedConnections
virtual QString publicName()=0
publicName
virtual void sendKeyPressure(int chan, int note, int value)=0
sendKeyPressure 0xA
virtual QString backendName()=0
backendName
virtual QString currentConnection()=0
currentConnection
virtual void sendProgram(int chan, int program)=0
sendProgram 0xC
virtual void initialize(QSettings *settings)=0
initialize
virtual void sendPitchBend(int chan, int value)=0
sendPitchBend 0xE
virtual ~MIDIOutput()
~MIDIOutput destructor
virtual QStringList connections(bool advanced=false)=0
connections
virtual void sendNoteOn(int chan, int note, int vel)=0
sendNoteOn 0x9
MIDIOutput(QObject *parent=0)
MIDIOutput constructor.