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/OpaqueWidget.hpp>
 - #include <widget/FramebufferWidget.hpp>
 - #include <app/CircularShadow.hpp>
 - #include <widget/SvgWidget.hpp>
 - 
 - 
 - namespace rack {
 - namespace app {
 - 
 - 
 - struct SvgButton : widget::OpaqueWidget {
 - 	widget::FramebufferWidget* fb;
 - 	CircularShadow* shadow;
 - 	widget::SvgWidget* sw;
 - 	std::vector<std::shared_ptr<Svg>> frames;
 - 
 - 	SvgButton();
 - 	void addFrame(std::shared_ptr<Svg> svg);
 - 	void onDragStart(const DragStartEvent& e) override;
 - 	void onDragEnd(const DragEndEvent& e) override;
 - 	void onDragDrop(const DragDropEvent& e) override;
 - };
 - 
 - 
 - DEPRECATED typedef SvgButton SVGButton;
 - 
 - 
 - } // namespace app
 - } // namespace rack
 
 
  |