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.

29 lines
435B

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