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.

23 lines
418B

  1. #pragma once
  2. #include <app/common.hpp>
  3. #include <app/LedDisplay.hpp>
  4. #include <midi.hpp>
  5. namespace rack {
  6. namespace app {
  7. struct MidiWidget : LedDisplay {
  8. LedDisplayChoice* driverChoice;
  9. LedDisplaySeparator* driverSeparator;
  10. LedDisplayChoice* deviceChoice;
  11. LedDisplaySeparator* deviceSeparator;
  12. LedDisplayChoice* channelChoice;
  13. void setMidiPort(midi::Port* port);
  14. };
  15. } // namespace app
  16. } // namespace rack