OpenShot Audio Library | OpenShotAudio 0.3.2
|
#include <juce_MPEInstrument.h>
Derive from this class to be informed about any changes in the expressive MIDI notes played by this instrument.
Note: This listener type receives its callbacks immediately, and not via the message thread (so you might be for example in the MIDI thread). Therefore you should never do heavy work such as graphics rendering etc. inside those callbacks.
Definition at line 255 of file juce_MPEInstrument.h.
|
virtualdefault |
Destructor.
Implement this callback to be informed whenever a new expressive MIDI note is triggered.
Reimplemented in juce::MPESynthesiser.
Definition at line 264 of file juce_MPEInstrument.h.
|
inlinevirtual |
Implement this callback to be informed whether a currently playing MPE note's key state (whether the key is down and/or the note is sustained) has changed.
Note: If the key state changes to MPENote::off, noteReleased is called instead.
Reimplemented in juce::MPESynthesiser.
Definition at line 292 of file juce_MPEInstrument.h.
|
inlinevirtual |
Implement this callback to be informed whenever a currently playing MPE note's pitchbend value changes.
Note: This can happen if the note itself is bent, if there is a master channel pitchbend event, or if both occur simultaneously. Call MPENote::getFrequencyInHertz to get the effective note frequency.
Reimplemented in juce::MPESynthesiser.
Definition at line 278 of file juce_MPEInstrument.h.
|
inlinevirtual |
Implement this callback to be informed whenever a currently playing MPE note's pressure value changes.
Reimplemented in juce::MPESynthesiser.
Definition at line 269 of file juce_MPEInstrument.h.
Implement this callback to be informed whenever an MPE note is released (either by a note-off message, or by a sustain/sostenuto pedal release for a note that already received a note-off), and should therefore stop playing.
Reimplemented in juce::MPESynthesiser.
Definition at line 299 of file juce_MPEInstrument.h.
Implement this callback to be informed whenever a currently playing MPE note's timbre value changes.
Reimplemented in juce::MPESynthesiser.
Definition at line 283 of file juce_MPEInstrument.h.