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.

31 lines
522B

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