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.

22 lines
488B

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