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 <widget/Widget.hpp>
namespace rack {
namespace widget {
/** A Widget that stops propagation of all recursive PositionEvents (such as ButtonEvent) but gives a chance for children to consume first.
Also consumes HoverEvent and ButtonEvent for left-clicks.
*/
struct OpaqueWidget : Widget {
	void onHover(const HoverEvent& e) override {
		Widget::onHover(e);
		e.stopPropagating();
		// Consume if not consumed by child
		if (!e.isConsumed())
			e.consume(this);
	}
	void onButton(const ButtonEvent& e) override {
		Widget::onButton(e);
		e.stopPropagating();
		if (e.button == GLFW_MOUSE_BUTTON_LEFT) {
			// Consume if not consumed by child
			if (!e.isConsumed())
				e.consume(this);
		}
	}
	void onHoverKey(const HoverKeyEvent& e) override {
		Widget::onHoverKey(e);
		e.stopPropagating();
	}
	void onHoverText(const HoverTextEvent& e) override {
		Widget::onHoverText(e);
		e.stopPropagating();
	}
	void onHoverScroll(const HoverScrollEvent& e) override {
		Widget::onHoverScroll(e);
		e.stopPropagating();
	}
	void onDragHover(const DragHoverEvent& e) override {
		Widget::onDragHover(e);
		e.stopPropagating();
		// Consume if not consumed by child
		if (!e.isConsumed())
			e.consume(this);
	}
	void onPathDrop(const PathDropEvent& e) override {
		Widget::onPathDrop(e);
		e.stopPropagating();
	}
};
} // namespace widget
} // namespace rack
 |