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.

26 lines
415B

  1. #pragma once
  2. #include "common.hpp"
  3. #include "LedDisplay.hpp"
  4. namespace rack {
  5. struct MidiIO;
  6. struct MidiWidget : LedDisplay {
  7. /** Not owned */
  8. MidiIO *midiIO = NULL;
  9. LedDisplayChoice *driverChoice;
  10. LedDisplaySeparator *driverSeparator;
  11. LedDisplayChoice *deviceChoice;
  12. LedDisplaySeparator *deviceSeparator;
  13. LedDisplayChoice *channelChoice;
  14. MidiWidget();
  15. void step() override;
  16. };
  17. } // namespace rack