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.

23 lines
371B

  1. #pragma once
  2. #include "app/common.hpp"
  3. #include "app/PortWidget.hpp"
  4. #include "widgets/FramebufferWidget.hpp"
  5. #include "widgets/SVGWidget.hpp"
  6. #include "app/CircularShadow.hpp"
  7. namespace rack {
  8. struct SVGPort : PortWidget {
  9. FramebufferWidget *fb;
  10. SVGWidget *sw;
  11. CircularShadow *shadow;
  12. SVGPort();
  13. void setSVG(std::shared_ptr<SVG> svg);
  14. };
  15. } // namespace rack