JUCE icon indicating copy to clipboard operation
JUCE copied to clipboard

Add disableInternalMouseEvents flag in Component

Open benkuper opened this issue 11 months ago • 0 comments

Discussion on the forum about this here : https://forum.juce.com/t/duplicate-events-when-using-addmouselistener-this/64201/10

This adds support for a component to listen for mouse event with proper propagation and "originalComponent" assignation to both itself and its children recursively, without duplicating the events when they are coming from the component itself.

usage : this->addMouseListener(this, true); //add recursive listening to all nested children and to this component setDisableInternalMouseEvents(true); //avoids the component to also dispatch an event, because it will be sent anyway with the mouseListener

benkuper avatar Nov 13 '24 19:11 benkuper