Imagine you have a SWT.Browser and want to create a DropTarget.
The Problem I encountered is the following:
Neither the Shell nor the Display gets the drop-event, because the browsercontrol consumes it.
My Idea was to put something invisible on top of the browser. This should consume the events. But for this case it seems, as if I have to deliver all mouse events to the SWT-Browser.
Now I am stuck, because I don't get the notification running. I have a mousemove listener running. All events on that schell are captured.
How can I resend this events to the browser notifyListener(int type, Event e) does not work for a SWT.Mozilla browser (in eclipse 3.4.2). I know this eclipse framework is incredible old, but that version is delivered by IBM lotus notes 9.
How can I dispatch these events?