You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
316B

  1. #pragma once
  2. class MidiSequencer;
  3. class MidiKeyboardHandler
  4. {
  5. public:
  6. static bool handle(MidiSequencer* sequencer, unsigned key, unsigned mods);
  7. private:
  8. enum class ChangeType { lessThan, plus, bracket };
  9. static void handleNoteEditorChange(MidiSequencer* sequencer, ChangeType type, bool increase);
  10. };