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
355B

  1. #pragma once
  2. #include "widgets/OpaqueWidget.hpp"
  3. #include "ui/Slider.hpp"
  4. #include "ui/RadioButton.hpp"
  5. #include "app/common.hpp"
  6. namespace rack {
  7. struct Toolbar : OpaqueWidget {
  8. // TODO Move these to future Rack app state
  9. float wireOpacity = 0.5;
  10. float wireTension = 0.5;
  11. Toolbar();
  12. void draw(NVGcontext *vg) override;
  13. };
  14. } // namespace rack