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 <widget/TransparentWidget.hpp>
#include <widget/FramebufferWidget.hpp>
#include <widget/SvgWidget.hpp>
#include <app.hpp>
namespace rack {
namespace app {
struct PanelBorder : widget::TransparentWidget {
	void draw(const DrawArgs &args) override;
};
struct SvgPanel : widget::FramebufferWidget {
	void step() override;
	void setBackground(std::shared_ptr<Svg> svg);
};
DEPRECATED typedef SvgPanel SVGPanel;
} // namespace app
} // namespace rack
 |