|
Bitwig Studio Control Surface API
4.0.1
|
Public Member Functions | |
| String | createIsCCExpression (int controlNumber) |
| String | createIsCCExpression (int channel, int controlNumber) |
| String | createIsCCValueExpression (int channel, int control, int value) |
| String | createIsPitchBendExpression (int channel) |
| String | createIsNoteOnExpression (int channel, int note) |
| String | createIsNoteOffExpression (int channel, int note) |
| String | createIsPolyAftertouch (int channel, int note) |
Creates useful MIDI expressions that can be used to match MIDI events.
Definition at line 8 of file MidiExpressions.java.
| String createIsCCExpression | ( | int | controlNumber | ) |
Creates an expression that recognizes a MIDI CC event regardless of its channel.
| String createIsCCExpression | ( | int | channel, |
| int | controlNumber | ||
| ) |
Creates an expression that recognizes a MIDI CC event.
| String createIsCCValueExpression | ( | int | channel, |
| int | control, | ||
| int | value | ||
| ) |
Creates an expression that recognizes a MIDI CC event with a specific value. This expression can be used in createActionMatcher(String) or createAbsoluteValueMatcher(String, String, int), for example.
| String createIsNoteOffExpression | ( | int | channel, |
| int | note | ||
| ) |
Creates an expression that recognizes a note off event. This expression can be used in createActionMatcher(String) or createAbsoluteValueMatcher(String, String, int), for example.
| String createIsNoteOnExpression | ( | int | channel, |
| int | note | ||
| ) |
Creates an expression that recognizes a note on event. This expression can be used in createActionMatcher(String) or createAbsoluteValueMatcher(String, String, int), for example.
| String createIsPitchBendExpression | ( | int | channel | ) |
Creates an expression that recognizes a pitch bend event. This expression can be used in createActionMatcher(String) or createAbsoluteValueMatcher(String, String, int), for example.
| String createIsPolyAftertouch | ( | int | channel, |
| int | note | ||
| ) |
Creates an expression that recognizes a polyphonic aftertouch event. This expression can be used in createActionMatcher(String) or createAbsoluteValueMatcher(String, String, int), for example.