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.

32 lines
478B

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