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.

30 lines
529B

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