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.

25 lines
505B

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