I'm working with the eclipse SWT toolkit, and I'm trying to use it to create a browser window that only passes mouse clicks to the underlying document conditionally (I want to stop Flash and Javascript in the page from getting clicks). I'd like some way of doing one of:
- Examining mouse events as they come in, and only passing them on to other listeners based on conditions I specify.
- Removing all listeners from a window, and only putting back the ones I want.
Are either of these possible?
