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

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