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

  1. #pragma once
  2. #include "app/common.hpp"
  3. #include "widgets/TransparentWidget.hpp"
  4. #include "widgets/FramebufferWidget.hpp"
  5. #include "widgets/SVGWidget.hpp"
  6. #include "app.hpp"
  7. namespace rack {
  8. struct PanelBorder : TransparentWidget {
  9. void draw(const DrawContext &ctx) override;
  10. };
  11. struct SVGPanel : FramebufferWidget {
  12. void step() override;
  13. void setBackground(std::shared_ptr<SVG> svg);
  14. };
  15. } // namespace rack