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.
|
- #pragma once
- #include "app/common.hpp"
- #include "app/PortWidget.hpp"
- #include "widget/FramebufferWidget.hpp"
- #include "widget/SvgWidget.hpp"
- #include "app/CircularShadow.hpp"
-
-
- namespace rack {
- namespace app {
-
-
- struct SvgPort : PortWidget {
- widget::FramebufferWidget *fb;
- CircularShadow *shadow;
- widget::SvgWidget *sw;
-
- SvgPort();
- void setSvg(std::shared_ptr<Svg> svg);
- DEPRECATED void setSVG(std::shared_ptr<Svg> svg) {setSvg(svg);}
- };
-
-
- DEPRECATED typedef SvgPort SVGPort;
-
-
- } // namespace app
- } // namespace rack
|