I have a WebBrowserComponent as a child of a frame window (DocumentWindow) that inherits FileDragAndDropTarget. I’d like to get drag/drop notifications for items dragged onto both the window and the web browser, but Juce only passes the events for the exposed portion of the parent window.
If I build the same app construct in MFC, I get the events for the browser too. Note that in both cases I have called put_RegisterAsDropTarget(FALSE) on the underlying ActiveX control to prevent the browser from grabbing the events.
Is there any way to get Juce to pass those events to me like MFC does?