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.

28 lines
441B

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